blob: 2eec40df89d45606bcc4ea3a57362e60cf143a54 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
wdenk7ebf7442002-11-02 23:17:16 +00003# 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
Wolfgang Denkc98368a2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# 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
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +010024VERSION = 1
25PATCHLEVEL = 1
26SUBLEVEL = 4
27EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
29VERSION_FILE = include/version_autogenerated.h
30
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkaf03f732005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkaf03f732005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
48
49TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
50export TOPDIR
51
52ifeq (include/config.mk,$(wildcard include/config.mk))
53# load ARCH, BOARD, and CPU configuration
54include include/config.mk
wdenkf8e9a232004-10-09 22:21:29 +000055export ARCH CPU BOARD VENDOR SOC
wdenk7ebf7442002-11-02 23:17:16 +000056ifndef CROSS_COMPILE
57ifeq ($(HOSTARCH),ppc)
58CROSS_COMPILE =
59else
wdenk7ebf7442002-11-02 23:17:16 +000060ifeq ($(ARCH),ppc)
Eran Liberty9095d4a2005-07-28 10:08:46 -050061CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +000062endif
63ifeq ($(ARCH),arm)
wdenkc8434db2003-03-26 06:55:25 +000064CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +000065endif
wdenk591dda52002-11-18 00:14:45 +000066ifeq ($(ARCH),i386)
wdenkabda5ca2003-05-31 18:35:21 +000067ifeq ($(HOSTARCH),i386)
68CROSS_COMPILE =
69else
70CROSS_COMPILE = i386-linux-
71endif
wdenk7ebf7442002-11-02 23:17:16 +000072endif
wdenk4a5c8a72003-03-06 00:02:04 +000073ifeq ($(ARCH),mips)
74CROSS_COMPILE = mips_4KC-
wdenk7ebf7442002-11-02 23:17:16 +000075endif
wdenk60164a82003-10-08 23:26:14 +000076ifeq ($(ARCH),nios)
77CROSS_COMPILE = nios-elf-
wdenk591dda52002-11-18 00:14:45 +000078endif
wdenkef3386f2004-10-10 21:27:30 +000079ifeq ($(ARCH),nios2)
80CROSS_COMPILE = nios2-elf-
81endif
wdenkabf7a7c2003-12-08 01:34:36 +000082ifeq ($(ARCH),m68k)
83CROSS_COMPILE = m68k-elf-
wdenk4a5c8a72003-03-06 00:02:04 +000084endif
wdenk12490652004-04-18 21:13:41 +000085ifeq ($(ARCH),microblaze)
86CROSS_COMPILE = mb-
wdenk60164a82003-10-08 23:26:14 +000087endif
Wolfgang Denk46d2b522006-03-12 02:10:00 +010088ifeq ($(ARCH),blackfin)
89CROSS_COMPILE = bfin-elf-
wdenkabf7a7c2003-12-08 01:34:36 +000090endif
wdenk12490652004-04-18 21:13:41 +000091endif
Wolfgang Denk46d2b522006-03-12 02:10:00 +010092endif
wdenk7ebf7442002-11-02 23:17:16 +000093
94export CROSS_COMPILE
95
Wolfgang Denkbb874e32006-03-12 01:37:50 +010096# load other configuration
97include $(TOPDIR)/config.mk
98
99
wdenk7ebf7442002-11-02 23:17:16 +0000100#########################################################################
101# U-Boot objects....order is important (i.e. start must be first)
102
wdenk7f00b942003-12-07 23:55:12 +0000103OBJS = cpu/$(CPU)/start.o
wdenk591dda52002-11-18 00:14:45 +0000104ifeq ($(CPU),i386)
wdenk7f00b942003-12-07 23:55:12 +0000105OBJS += cpu/$(CPU)/start16.o
106OBJS += cpu/$(CPU)/reset.o
wdenk591dda52002-11-18 00:14:45 +0000107endif
wdenk7ebf7442002-11-02 23:17:16 +0000108ifeq ($(CPU),ppc4xx)
wdenk7f00b942003-12-07 23:55:12 +0000109OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000110endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500111ifeq ($(CPU),mpc83xx)
112OBJS += cpu/$(CPU)/resetvec.o
113endif
wdenk9c53f402003-10-15 23:53:47 +0000114ifeq ($(CPU),mpc85xx)
115OBJS += cpu/$(CPU)/resetvec.o
116endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500117ifeq ($(CPU),mpc86xx)
118OBJS += cpu/$(CPU)/resetvec.o
119endif
Wolfgang Denk46d2b522006-03-12 02:10:00 +0100120ifeq ($(CPU),bf533)
121OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
122OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
123endif
wdenk7ebf7442002-11-02 23:17:16 +0000124
wdenk7f00b942003-12-07 23:55:12 +0000125LIBS = lib_generic/libgeneric.a
126LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000127LIBS += cpu/$(CPU)/lib$(CPU).a
wdenkf8e9a232004-10-09 22:21:29 +0000128ifdef SOC
129LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
130endif
wdenk7ebf7442002-11-02 23:17:16 +0000131LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk4d01d9e2004-03-25 14:59:05 +0000132LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroese05b88912004-12-16 18:44:40 +0000133 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000134LIBS += net/libnet.a
135LIBS += disk/libdisk.a
136LIBS += rtc/librtc.a
137LIBS += dtt/libdtt.a
138LIBS += drivers/libdrivers.a
Marian Balakowicz6a076752006-04-08 19:08:06 +0200139LIBS += drivers/nand/libnand.a
140LIBS += drivers/nand_legacy/libnand_legacy.a
wdenkeb20ad32003-09-05 23:19:14 +0000141LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000142LIBS += post/libpost.a post/cpu/libcpu.a
143LIBS += common/libcommon.a
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +0100144LIBS += $(BOARDLIBS)
wdenk7f00b942003-12-07 23:55:12 +0000145.PHONY : $(LIBS)
wdenkc0aa5c52003-12-06 19:49:23 +0000146
wdenk4cc02a82003-09-11 23:06:34 +0000147# Add GCC lib
wdenkf1276d42005-02-03 23:00:49 +0000148PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk4989f872004-03-14 15:06:13 +0000149
wdenk7ebf7442002-11-02 23:17:16 +0000150
wdenkc0aa5c52003-12-06 19:49:23 +0000151# The "tools" are needed early, so put this first
152# Don't include stuff already done in $(LIBS)
153SUBDIRS = tools \
154 examples \
155 post \
156 post/cpu
wdenk444f22b2003-12-07 21:39:28 +0000157.PHONY : $(SUBDIRS)
wdenkc0aa5c52003-12-06 19:49:23 +0000158
wdenk7ebf7442002-11-02 23:17:16 +0000159#########################################################################
wdenk0a658552003-08-05 17:43:17 +0000160#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000161
wdenk0a658552003-08-05 17:43:17 +0000162ALL = u-boot.srec u-boot.bin System.map
wdenk7ebf7442002-11-02 23:17:16 +0000163
wdenk0a658552003-08-05 17:43:17 +0000164all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000165
wdenk68005192005-01-09 21:28:15 +0000166u-boot.hex: u-boot
167 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
168
wdenk7ebf7442002-11-02 23:17:16 +0000169u-boot.srec: u-boot
170 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
171
172u-boot.bin: u-boot
173 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
174
wdenk0a658552003-08-05 17:43:17 +0000175u-boot.img: u-boot.bin
176 ./tools/mkimage -A $(ARCH) -T firmware -C none \
177 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100178 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenk0a658552003-08-05 17:43:17 +0000179 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
180 -d $< $@
181
wdenk7ebf7442002-11-02 23:17:16 +0000182u-boot.dis: u-boot
183 $(OBJDUMP) -d $< > $@
184
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100185u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk57b2d802003-06-27 21:31:46 +0000186 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
187 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
wdenkf1276d42005-02-03 23:00:49 +0000188 --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
wdenk67ff36c2002-11-19 23:01:07 +0000189 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000190
wdenkc0aa5c52003-12-06 19:49:23 +0000191$(LIBS):
192 $(MAKE) -C `dirname $@`
193
194$(SUBDIRS):
wdenk444f22b2003-12-07 21:39:28 +0000195 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000196
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100197version:
198 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
199 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
200 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
201 $(TOPDIR)) >> $(VERSION_FILE); \
202 echo "\"" >> $(VERSION_FILE)
203
dzu9b10ef982003-08-07 14:20:31 +0000204gdbtools:
205 $(MAKE) -C tools/gdb || exit 1
206
wdenk7ebf7442002-11-02 23:17:16 +0000207depend dep:
208 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
209
210tags:
211 ctags -w `find $(SUBDIRS) include \
wdenk270a8bd2004-04-15 21:58:11 +0000212 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
213 fs/cramfs fs/fat fs/fdos fs/jffs2 \
214 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000215 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
216
217etags:
218 etags -a `find $(SUBDIRS) include \
wdenka0ebde52004-09-08 22:03:11 +0000219 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
220 fs/cramfs fs/fat fs/fdos fs/jffs2 \
221 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000222 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
223
224System.map: u-boot
225 @$(NM) $< | \
226 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
227 sort > System.map
228
229#########################################################################
230else
231all install u-boot u-boot.srec depend dep:
232 @echo "System not configured - see README" >&2
233 @ exit 1
234endif
235
236#########################################################################
237
238unconfig:
wdenk9c07bf62004-04-10 20:43:50 +0000239 @rm -f include/config.h include/config.mk board/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000240
241#========================================================================
242# PowerPC
243#========================================================================
wdenk359733b2003-03-31 17:27:09 +0000244
245#########################################################################
246## MPC5xx Systems
247#########################################################################
248
wdenkf1d0ff42005-04-13 23:15:10 +0000249canmb_config: unconfig
250 @./mkconfig -a canmb ppc mpc5xxx canmb
251
wdenk359733b2003-03-31 17:27:09 +0000252cmi_mpc5xx_config: unconfig
253 @./mkconfig $(@:_config=) ppc mpc5xx cmi
254
wdenk634d2f72004-04-15 23:14:49 +0000255PATI_config: unconfig
wdenkbc01dd52004-01-02 16:05:07 +0000256 @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
257
wdenk7ebf7442002-11-02 23:17:16 +0000258#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000259## MPC5xxx Systems
260#########################################################################
wdenk8d414a72005-06-10 10:00:19 +0000261
Wolfgang Denk3863d6b2005-08-12 00:22:49 +0200262aev_config: unconfig
263 @./mkconfig -a aev ppc mpc5xxx tqm5200
264
dzu@denx.dec59e4ac2006-04-21 18:30:47 +0200265BC3450_config: unconfig
266 @./mkconfig -a BC3450 ppc mpc5xxx bc3450
267
Stefan Roese99200d22005-08-22 17:51:53 +0200268cpci5200_config: unconfig
269 @./mkconfig -a cpci5200 ppc mpc5xxx cpci5200 esd
270
wdenk8d414a72005-06-10 10:00:19 +0000271hmi1001_config: unconfig
272 @./mkconfig hmi1001 ppc mpc5xxx hmi1001
273
wdenke44b9112004-04-18 23:32:11 +0000274Lite5200_config \
275Lite5200_LOWBOOT_config \
276Lite5200_LOWBOOT08_config \
277icecube_5200_config \
278icecube_5200_LOWBOOT_config \
279icecube_5200_LOWBOOT08_config \
280icecube_5200_DDR_config \
281icecube_5200_DDR_LOWBOOT_config \
282icecube_5200_DDR_LOWBOOT08_config \
283icecube_5100_config: unconfig
wdenk21136db2003-07-16 21:53:01 +0000284 @ >include/config.h
wdenk9c07bf62004-04-10 20:43:50 +0000285 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
286 { if [ "$(findstring DDR,$@)" ] ; \
287 then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
288 else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
289 fi ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000290 echo "... with LOWBOOT configuration" ; \
291 }
292 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
293 { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
294 echo "... with 8 MB flash only" ; \
wdenk9c07bf62004-04-10 20:43:50 +0000295 echo "... with LOWBOOT configuration" ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000296 }
wdenk236d3fc2003-12-20 22:45:10 +0000297 @[ -z "$(findstring DDR,$@)" ] || \
298 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
299 echo "... DDR memory revision" ; \
300 }
wdenk1ebf41e2004-01-02 14:00:00 +0000301 @[ -z "$(findstring 5200,$@)" ] || \
302 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
303 echo "... with MPC5200 processor" ; \
304 }
wdenk55618472003-10-28 09:14:21 +0000305 @[ -z "$(findstring 5100,$@)" ] || \
wdenk21136db2003-07-16 21:53:01 +0000306 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
307 echo "... with MGT5100 processor" ; \
308 }
309 @./mkconfig -a IceCube ppc mpc5xxx icecube
310
Wolfgang Denk07ad17c2006-02-22 00:43:16 +0100311inka4x0_config: unconfig
wdenk4ca32362004-12-16 15:52:40 +0000312 @./mkconfig inka4x0 ppc mpc5xxx inka4x0
313
Wolfgang Denk315b46a2006-03-17 11:42:53 +0100314lite5200b_config \
315lite5200b_LOWBOOT_config: unconfig
316 @ >include/config.h
317 @ echo "#define CONFIG_MPC5200_DDR" >>include/config.h
318 @ echo "... DDR memory revision"
319 @ echo "#define CONFIG_MPC5200" >>include/config.h
320 @ echo "#define CONFIG_LITE5200B" >>include/config.h
321 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
322 { echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
323 echo "... with LOWBOOT configuration" ; \
324 }
325 @ echo "... with MPC5200B processor"
326 @./mkconfig -a IceCube ppc mpc5xxx icecube
327
Stefan Roese531e94c2006-03-04 14:57:03 +0100328mcc200_config \
Wolfgang Denk790dd202006-07-23 22:40:51 +0200329mcc200_SDRAM \
330mcc200_highboot \
331mcc200_highboot_SDRAM: unconfig
Stefan Roese531e94c2006-03-04 14:57:03 +0100332 @ >include/config.h
Wolfgang Denk790dd202006-07-23 22:40:51 +0200333 @[ -n "$(findstring highboot,$@)" ] || \
334 { echo "... with lowboot configuration" ; \
335 }
336 @[ -z "$(findstring highboot,$@)" ] || \
337 { echo "TEXT_BASE = 0xFFF00000" >board/mcc200/config.tmp ; \
338 echo "... with highboot configuration" ; \
339 }
340 @[ -n "$(findstring _SDRAM,$@)" ] || \
341 { echo "... with DDR" ; \
Stefan Roese531e94c2006-03-04 14:57:03 +0100342 }
Wolfgang Denk790dd202006-07-23 22:40:51 +0200343 @[ -z "$(findstring _SDRAM,$@)" ] || \
344 { echo "#define CONFIG_MCC200_SDRAM" >>include/config.h ; \
345 echo "... with SDRAM" ; \
Stefan Roese99200d22005-08-22 17:51:53 +0200346 }
Wolfgang Denk790dd202006-07-23 22:40:51 +0200347 @./mkconfig -a mcc200 ppc mpc5xxx mcc200
wdenkda54bc92004-08-04 21:56:49 +0000348
Wolfgang Denk672f2e82005-08-18 01:22:22 +0200349o2dnt_config:
350 @./mkconfig o2dnt ppc mpc5xxx o2dnt
351
Stefan Roese99200d22005-08-22 17:51:53 +0200352pf5200_config: unconfig
Wolfgang Denk07ad17c2006-02-22 00:43:16 +0100353 @./mkconfig pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese99200d22005-08-22 17:51:53 +0200354
wdenkda54bc92004-08-04 21:56:49 +0000355PM520_config \
356PM520_DDR_config \
357PM520_ROMBOOT_config \
358PM520_ROMBOOT_DDR_config: unconfig
359 @ >include/config.h
360 @[ -z "$(findstring DDR,$@)" ] || \
361 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
362 echo "... DDR memory revision" ; \
363 }
364 @[ -z "$(findstring ROMBOOT,$@)" ] || \
365 { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
366 echo "... booting from 8-bit flash" ; \
367 }
368 @./mkconfig -a PM520 ppc mpc5xxx pm520
369
Wolfgang Denkea055ba2006-02-22 10:25:39 +0100370smmaco4_config: unconfig
371 @./mkconfig -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk2a61ee82006-02-22 01:59:13 +0100372
373spieval_config: unconfig
Wolfgang Denk2a61ee82006-02-22 01:59:13 +0100374 @./mkconfig -a spieval ppc mpc5xxx tqm5200
375
Wolfgang Denkc98368a2006-07-19 17:52:30 +0200376TB5200_B_config \
Wolfgang Denkba940932006-07-19 13:50:38 +0200377TB5200_config: unconfig
Wolfgang Denkc98368a2006-07-19 17:52:30 +0200378 @[ -z "$(findstring _B,$@)" ] || \
379 { echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
380 echo "... with MPC5200B processor" ; \
381 }
Wolfgang Denk99753142006-07-21 11:16:34 +0200382 @./mkconfig -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkba940932006-07-19 13:50:38 +0200383
wdenk1ebf41e2004-01-02 14:00:00 +0000384MINI5200_config \
385EVAL5200_config \
386TOP5200_config: unconfig
387 @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
Wolfgang Denk99753142006-07-21 11:16:34 +0200388 @./mkconfig -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenk1ebf41e2004-01-02 14:00:00 +0000389
wdenkcc3f8a92004-07-11 19:17:20 +0000390Total5100_config \
391Total5200_config \
392Total5200_lowboot_config \
393Total5200_Rev2_config \
394Total5200_Rev2_lowboot_config: unconfig
395 @ >include/config.h
396 @[ -z "$(findstring 5100,$@)" ] || \
397 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
398 echo "... with MGT5100 processor" ; \
399 }
400 @[ -z "$(findstring 5200,$@)" ] || \
401 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
402 echo "... with MPC5200 processor" ; \
403 }
404 @[ -n "$(findstring Rev,$@)" ] || \
405 { echo "#define CONFIG_TOTAL5200_REV 1" >>include/config.h ; \
406 echo "... revision 1 board" ; \
407 }
408 @[ -z "$(findstring Rev2_,$@)" ] || \
409 { echo "#define CONFIG_TOTAL5200_REV 2" >>include/config.h ; \
410 echo "... revision 2 board" ; \
411 }
412 @[ -z "$(findstring lowboot_,$@)" ] || \
413 { echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
414 echo "... with lowboot configuration" ; \
415 }
416 @./mkconfig -a Total5200 ppc mpc5xxx total5200
417
Wolfgang Denk3f2f9dd2006-06-16 16:11:34 +0200418TQM5200_config \
Wolfgang Denkc98368a2006-07-19 17:52:30 +0200419TQM5200_B_config \
Wolfgang Denk5591d9e2006-07-19 18:01:38 +0200420TQM5200_B_HIGHBOOT_config \
Wolfgang Denk99753142006-07-21 11:16:34 +0200421TQM5200S_config \
422TQM5200S_HIGHBOOT_config \
423TQM5200_STK100_config \
Wolfgang Denk641e3572006-07-22 01:20:03 +0200424cam5200_config \
wdenk64519362004-07-11 17:40:54 +0000425MiniFAP_config: unconfig
426 @ >include/config.h
wdenkda54bc92004-08-04 21:56:49 +0000427 @[ -z "$(findstring MiniFAP,$@)" ] || \
wdenk64519362004-07-11 17:40:54 +0000428 { echo "#define CONFIG_MINIFAP" >>include/config.h ; \
wdenkda54bc92004-08-04 21:56:49 +0000429 echo "... TQM5200_AC on MiniFAP" ; \
wdenk64519362004-07-11 17:40:54 +0000430 }
Wolfgang Denk641e3572006-07-22 01:20:03 +0200431 @[ -z "$(findstring cam5200,$@)" ] || \
432 { echo "#define CONFIG_CAM5200" >>include/config.h ; \
Wolfgang Denk99753142006-07-21 11:16:34 +0200433 echo "#define CONFIG_TQM5200S" >>include/config.h ; \
434 echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
Wolfgang Denk641e3572006-07-22 01:20:03 +0200435 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk99753142006-07-21 11:16:34 +0200436 }
Wolfgang Denk3f2f9dd2006-06-16 16:11:34 +0200437 @[ -z "$(findstring STK100,$@)" ] || \
438 { echo "#define CONFIG_STK52XX_REV100" >>include/config.h ; \
439 echo "... on a STK52XX.100 base board" ; \
wdenk64519362004-07-11 17:40:54 +0000440 }
Wolfgang Denk99753142006-07-21 11:16:34 +0200441 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Wolfgang Denkc98368a2006-07-19 17:52:30 +0200442 { echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
wdenk64519362004-07-11 17:40:54 +0000443 }
Wolfgang Denk99753142006-07-21 11:16:34 +0200444 @[ -z "$(findstring TQM5200S,$@)" ] || \
445 { echo "#define CONFIG_TQM5200S" >>include/config.h ; \
446 echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
wdenk64519362004-07-11 17:40:54 +0000447 }
Wolfgang Denk5591d9e2006-07-19 18:01:38 +0200448 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
449 { echo "TEXT_BASE = 0xFFF00000" >board/tqm5200/config.tmp ; \
wdenkdc130442004-12-12 22:06:17 +0000450 }
Wolfgang Denk99753142006-07-21 11:16:34 +0200451 @./mkconfig -n $@ -a TQM5200 ppc mpc5xxx tqm5200
wdenk64519362004-07-11 17:40:54 +0000452
wdenk21136db2003-07-16 21:53:01 +0000453#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000454## MPC8xx Systems
455#########################################################################
456
wdenk9f664dd2004-06-09 21:50:45 +0000457Adder_config \
458Adder87x_config \
wdenkec5dc0d2004-07-09 22:51:01 +0000459AdderII_config \
wdenk9f664dd2004-06-09 21:50:45 +0000460 : unconfig
wdenkec5dc0d2004-07-09 22:51:01 +0000461 $(if $(findstring AdderII,$@), \
wdenk9f664dd2004-06-09 21:50:45 +0000462 @echo "#define CONFIG_MPC852T" > include/config.h)
463 @./mkconfig -a Adder ppc mpc8xx adder
464
wdenkad276f22004-01-04 16:28:35 +0000465ADS860_config \
wdenkad276f22004-01-04 16:28:35 +0000466FADS823_config \
467FADS850SAR_config \
468MPC86xADS_config \
wdenka7556b22004-06-06 21:35:06 +0000469MPC885ADS_config \
wdenkad276f22004-01-04 16:28:35 +0000470FADS860T_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000471 @./mkconfig $(@:_config=) ppc mpc8xx fads
472
473AMX860_config : unconfig
474 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
475
476c2mon_config: unconfig
477 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
478
479CCM_config: unconfig
480 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
481
482cogent_mpc8xx_config: unconfig
483 @./mkconfig $(@:_config=) ppc mpc8xx cogent
484
wdenkef5fe752003-03-12 10:41:04 +0000485ELPT860_config: unconfig
486 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
487
Wolfgang Denk62f1ef52006-03-12 23:17:31 +0100488EP88x_config: unconfig
489 @./mkconfig $(@:_config=) ppc mpc8xx ep88x
490
wdenk7ebf7442002-11-02 23:17:16 +0000491ESTEEM192E_config: unconfig
492 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
493
494ETX094_config : unconfig
495 @./mkconfig $(@:_config=) ppc mpc8xx etx094
496
wdenk7ebf7442002-11-02 23:17:16 +0000497FLAGADM_config: unconfig
498 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
499
wdenk541a76d2003-05-03 15:50:43 +0000500xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
501
502GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000503GEN860T_config: unconfig
wdenk541a76d2003-05-03 15:50:43 +0000504 @ >include/config.h
505 @[ -z "$(findstring _SC,$@)" ] || \
506 { echo "#define CONFIG_SC" >>include/config.h ; \
507 echo "With reduced H/W feature set (SC)..." ; \
508 }
509 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000510
511GENIETV_config: unconfig
512 @./mkconfig $(@:_config=) ppc mpc8xx genietv
513
514GTH_config: unconfig
515 @./mkconfig $(@:_config=) ppc mpc8xx gth
516
517hermes_config : unconfig
518 @./mkconfig $(@:_config=) ppc mpc8xx hermes
519
wdenkf602aa02004-03-13 23:29:43 +0000520HMI10_config : unconfig
521 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
522
wdenk7ebf7442002-11-02 23:17:16 +0000523IAD210_config: unconfig
524 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
525
526xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
527
528ICU862_100MHz_config \
529ICU862_config: unconfig
530 @ >include/config.h
531 @[ -z "$(findstring _100MHz,$@)" ] || \
532 { echo "#define CONFIG_100MHz" >>include/config.h ; \
533 echo "... with 100MHz system clock" ; \
534 }
535 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
536
537IP860_config : unconfig
538 @./mkconfig $(@:_config=) ppc mpc8xx ip860
539
540IVML24_256_config \
541IVML24_128_config \
542IVML24_config: unconfig
543 @ >include/config.h
544 @[ -z "$(findstring IVML24_config,$@)" ] || \
545 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
546 }
547 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
548 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
549 }
550 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
551 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
552 }
553 @./mkconfig -a IVML24 ppc mpc8xx ivm
554
555IVMS8_256_config \
556IVMS8_128_config \
557IVMS8_config: unconfig
558 @ >include/config.h
559 @[ -z "$(findstring IVMS8_config,$@)" ] || \
560 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
561 }
562 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
563 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
564 }
565 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
566 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
567 }
568 @./mkconfig -a IVMS8 ppc mpc8xx ivm
569
wdenk56f94be2002-11-05 16:35:14 +0000570KUP4K_config : unconfig
wdenk65faef92004-03-25 19:29:38 +0000571 @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
572
573KUP4X_config : unconfig
574 @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000575
wdenk7ebf7442002-11-02 23:17:16 +0000576LANTEC_config : unconfig
577 @./mkconfig $(@:_config=) ppc mpc8xx lantec
578
579lwmon_config: unconfig
580 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
581
582MBX_config \
583MBX860T_config: unconfig
584 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
585
586MHPC_config: unconfig
587 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
588
589MVS1_config : unconfig
590 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
591
wdenk70764a32003-06-26 22:04:09 +0000592xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
593
594NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000595NETVIA_config: unconfig
wdenk70764a32003-06-26 22:04:09 +0000596 @ >include/config.h
597 @[ -z "$(findstring NETVIA_config,$@)" ] || \
598 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
599 echo "... Version 1" ; \
600 }
601 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
602 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
603 echo "... Version 2" ; \
604 }
605 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000606
wdenk6203e402004-04-18 10:13:26 +0000607xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
608
609NETPHONE_V2_config \
wdenk3902d702004-04-15 18:22:41 +0000610NETPHONE_config: unconfig
wdenk6203e402004-04-18 10:13:26 +0000611 @ >include/config.h
612 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
613 { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
614 }
615 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
616 { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
617 }
618 @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk3902d702004-04-15 18:22:41 +0000619
wdenkc4e854f2004-06-07 23:46:25 +0000620xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk3902d702004-04-15 18:22:41 +0000621
wdenkc4e854f2004-06-07 23:46:25 +0000622NETTA_ISDN_6412_SWAPHOOK_config \
623NETTA_ISDN_SWAPHOOK_config \
624NETTA_6412_SWAPHOOK_config \
625NETTA_SWAPHOOK_config \
626NETTA_ISDN_6412_config \
wdenk3902d702004-04-15 18:22:41 +0000627NETTA_ISDN_config \
wdenkc4e854f2004-06-07 23:46:25 +0000628NETTA_6412_config \
wdenk3902d702004-04-15 18:22:41 +0000629NETTA_config: unconfig
630 @ >include/config.h
wdenkc4e854f2004-06-07 23:46:25 +0000631 @[ -z "$(findstring ISDN_,$@)" ] || \
632 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
633 }
634 @[ -n "$(findstring ISDN_,$@)" ] || \
wdenk3902d702004-04-15 18:22:41 +0000635 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
636 }
wdenkc4e854f2004-06-07 23:46:25 +0000637 @[ -z "$(findstring 6412_,$@)" ] || \
638 { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
639 }
640 @[ -n "$(findstring 6412_,$@)" ] || \
641 { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
642 }
643 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
644 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
645 }
646 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
647 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
wdenk3902d702004-04-15 18:22:41 +0000648 }
649 @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
650
wdenkc4e854f2004-06-07 23:46:25 +0000651xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
652
653NETTA2_V2_config \
654NETTA2_config: unconfig
655 @ >include/config.h
656 @[ -z "$(findstring NETTA2_config,$@)" ] || \
657 { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
658 }
659 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
660 { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
661 }
662 @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
663
dzu@denx.de8f6fedd2006-04-19 11:52:46 +0200664NC650_Rev1_config \
665NC650_Rev2_config \
666CP850_config: unconfig
667 @ >include/config.h
668 @[ -z "$(findstring CP850,$@)" ] || \
669 { echo "#define CONFIG_CP850 1" >>include/config.h ; \
670 echo "#define CONFIG_IDS852_REV2 1" >>include/config.h ; \
671 }
672 @[ -z "$(findstring Rev1,$@)" ] || \
673 { echo "#define CONFIG_IDS852_REV1 1" >>include/config.h ; \
674 }
675 @[ -z "$(findstring Rev2,$@)" ] || \
676 { echo "#define CONFIG_IDS852_REV2 1" >>include/config.h ; \
677 }
678 @./mkconfig -a NC650 ppc mpc8xx nc650
wdenk0bbcbd22004-08-28 22:45:57 +0000679
wdenk7ebf7442002-11-02 23:17:16 +0000680NX823_config: unconfig
681 @./mkconfig $(@:_config=) ppc mpc8xx nx823
682
683pcu_e_config: unconfig
684 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
685
wdenk174e0e52003-12-07 22:27:15 +0000686QS850_config: unconfig
687 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
688
689QS823_config: unconfig
690 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
691
692QS860T_config: unconfig
693 @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
694
wdenk7d1eb822004-09-29 11:02:56 +0000695quantum_config: unconfig
696 @./mkconfig $(@:_config=) ppc mpc8xx quantum
697
wdenk7ebf7442002-11-02 23:17:16 +0000698R360MPI_config: unconfig
699 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
700
wdenk4e112c12003-06-03 23:54:09 +0000701RBC823_config: unconfig
702 @./mkconfig $(@:_config=) ppc mpc8xx rbc823
703
wdenk7ebf7442002-11-02 23:17:16 +0000704RPXClassic_config: unconfig
705 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
706
707RPXlite_config: unconfig
708 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
709
wdenkec432742004-06-09 21:04:48 +0000710RPXlite_DW_64_config \
711RPXlite_DW_LCD_config \
712RPXlite_DW_64_LCD_config \
713RPXlite_DW_NVRAM_config \
714RPXlite_DW_NVRAM_64_config \
715RPXlite_DW_NVRAM_LCD_config \
716RPXlite_DW_NVRAM_64_LCD_config \
717RPXlite_DW_config: unconfig
718 @ >include/config.h
719 @[ -z "$(findstring _64,$@)" ] || \
720 { echo "#define RPXlite_64MHz" >>include/config.h ; \
721 echo "... with 64MHz system clock ..."; \
722 }
723 @[ -z "$(findstring _LCD,$@)" ] || \
724 { echo "#define CONFIG_LCD" >>include/config.h ; \
725 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
726 echo "... with LCD display ..."; \
727 }
728 @[ -z "$(findstring _NVRAM,$@)" ] || \
729 { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
730 echo "... with ENV in NVRAM ..."; \
731 }
732 @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
733
wdenke6466f62003-06-05 19:27:42 +0000734rmu_config: unconfig
735 @./mkconfig $(@:_config=) ppc mpc8xx rmu
736
wdenk7ebf7442002-11-02 23:17:16 +0000737RRvision_config: unconfig
738 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
739
740RRvision_LCD_config: unconfig
741 @echo "#define CONFIG_LCD" >include/config.h
742 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
743 @./mkconfig -a RRvision ppc mpc8xx RRvision
744
745SM850_config : unconfig
746 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
747
Markus Klotzbuecher8f824852006-07-12 08:48:24 +0200748spc1920_config:
749 @./mkconfig $(@:_config=) ppc mpc8xx spc1920
750
wdenk7ebf7442002-11-02 23:17:16 +0000751SPD823TS_config: unconfig
752 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
753
Wolfgang Denk72fdb6c2005-08-15 15:55:00 +0200754stxxtc_config: unconfig
755 @./mkconfig $(@:_config=) ppc mpc8xx stxxtc
756
wdenkc8434db2003-03-26 06:55:25 +0000757svm_sc8xx_config: unconfig
758 @ >include/config.h
759 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
760
wdenk7ebf7442002-11-02 23:17:16 +0000761SXNI855T_config: unconfig
762 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
763
wdenkb666c8f2003-03-06 00:58:30 +0000764# EMK MPC8xx based modules
765TOP860_config: unconfig
766 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
767
wdenk7ebf7442002-11-02 23:17:16 +0000768# Play some tricks for configuration selection
wdenkc78bf132004-04-24 23:23:30 +0000769# Only 855 and 860 boards may come with FEC
770# and only 823 boards may have LCD support
771xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000772
773FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000774FPS860L_config \
wdenk69141282003-07-07 20:07:54 +0000775NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000776TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000777TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000778TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000779TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000780TQM860L_config \
wdenk6bd14892003-04-10 11:18:18 +0000781TQM862L_config \
wdenkfb229ae2003-08-07 22:18:11 +0000782TQM823M_config \
wdenkfb229ae2003-08-07 22:18:11 +0000783TQM850M_config \
wdenk69141282003-07-07 20:07:54 +0000784TQM855M_config \
wdenk69141282003-07-07 20:07:54 +0000785TQM860M_config \
wdenk69141282003-07-07 20:07:54 +0000786TQM862M_config \
Wolfgang Denk67ffef32006-05-12 16:15:46 +0200787TQM866M_config \
Markus Klotzbuecher13af9f02006-07-12 15:26:01 +0200788TQM885D_config \
Wolfgang Denk67ffef32006-05-12 16:15:46 +0200789virtlab2_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000790 @ >include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000791 @[ -z "$(findstring _LCD,$@)" ] || \
792 { echo "#define CONFIG_LCD" >>include/config.h ; \
wdenkc0d54ae2003-11-25 16:55:19 +0000793 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000794 echo "... with LCD display" ; \
795 }
796 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
797
798TTTech_config: unconfig
799 @echo "#define CONFIG_LCD" >include/config.h
800 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
801 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
802
wdenk11392db2004-12-19 09:58:11 +0000803uc100_config : unconfig
wdenk51242782004-12-18 22:35:43 +0000804 @./mkconfig $(@:_config=) ppc mpc8xx uc100
805
wdenk2dad91b2003-01-13 23:54:46 +0000806v37_config: unconfig
807 @echo "#define CONFIG_LCD" >include/config.h
808 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
809 @./mkconfig $(@:_config=) ppc mpc8xx v37
810
dzu69438f62003-09-25 22:32:40 +0000811wtk_config: unconfig
812 @echo "#define CONFIG_LCD" >include/config.h
813 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
814 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
815
wdenk7ebf7442002-11-02 23:17:16 +0000816#########################################################################
817## PPC4xx Systems
818#########################################################################
wdenk99874b42004-07-01 21:40:08 +0000819xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000820
821ADCIOP_config: unconfig
822 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
823
Wolfgang Denk56811f62005-10-09 01:04:33 +0200824AP1000_config:unconfig
825 @./mkconfig $(@:_config=) ppc ppc4xx ap1000 amirix
826
stroese05b88912004-12-16 18:44:40 +0000827APC405_config: unconfig
828 @./mkconfig $(@:_config=) ppc ppc4xx apc405 esd
829
wdenk7ebf7442002-11-02 23:17:16 +0000830AR405_config: unconfig
831 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
832
stroesebfcc82b2003-05-23 11:41:44 +0000833ASH405_config: unconfig
834 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
835
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200836bamboo_config: unconfig
837 @./mkconfig $(@:_config=) ppc ppc4xx bamboo amcc
838
839bubinga_config: unconfig
840 @./mkconfig $(@:_config=) ppc ppc4xx bubinga amcc
stroesebfcc82b2003-05-23 11:41:44 +0000841
wdenk7ebf7442002-11-02 23:17:16 +0000842CANBT_config: unconfig
843 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
844
wdenk9e7130b2004-09-09 17:44:35 +0000845CATcenter_config \
846CATcenter_25_config \
847CATcenter_33_config: unconfig
wdenkbb33bab2004-05-13 13:23:58 +0000848 @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
849 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
wdenk9e7130b2004-09-09 17:44:35 +0000850 @[ -z "$(findstring _25,$@)" ] || \
851 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
852 echo "SysClk = 25MHz" ; \
853 }
854 @[ -z "$(findstring _33,$@)" ] || \
855 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
856 echo "SysClk = 33MHz" ; \
857 }
wdenkbb33bab2004-05-13 13:23:58 +0000858 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
859
Stefan Roesea34997d2005-09-22 09:16:57 +0200860CPCI2DP_config: unconfig
861 @./mkconfig $(@:_config=) ppc ppc4xx cpci2dp esd
862
stroesebfcc82b2003-05-23 11:41:44 +0000863CPCI405_config \
864CPCI4052_config \
stroese05b88912004-12-16 18:44:40 +0000865CPCI405DT_config \
stroesebfcc82b2003-05-23 11:41:44 +0000866CPCI405AB_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000867 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
868 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
869
870CPCI440_config: unconfig
871 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
872
873CPCIISER4_config: unconfig
874 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
875
wdenk634d2f72004-04-15 23:14:49 +0000876CRAYL1_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000877 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
878
wdenkf70cbb22004-02-23 20:48:38 +0000879csb272_config: unconfig
880 @./mkconfig $(@:_config=) ppc ppc4xx csb272
881
wdenk7e920de2004-06-09 12:47:02 +0000882csb472_config: unconfig
883 @./mkconfig $(@:_config=) ppc ppc4xx csb472
884
wdenk7ebf7442002-11-02 23:17:16 +0000885DASA_SIM_config: unconfig
886 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
887
stroese3361eb72003-09-12 08:57:15 +0000888DP405_config: unconfig
889 @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
890
wdenk7ebf7442002-11-02 23:17:16 +0000891DU405_config: unconfig
892 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
893
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200894ebony_config: unconfig
895 @./mkconfig $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +0000896
wdenk634d2f72004-04-15 23:14:49 +0000897ERIC_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000898 @./mkconfig $(@:_config=) ppc ppc4xx eric
899
wdenk634d2f72004-04-15 23:14:49 +0000900EXBITGEN_config: unconfig
wdenkd9fce812003-06-28 17:24:46 +0000901 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
902
stroese05b88912004-12-16 18:44:40 +0000903G2000_config: unconfig
904 @./mkconfig $(@:_config=) ppc ppc4xx g2000
905
906HH405_config: unconfig
907 @./mkconfig $(@:_config=) ppc ppc4xx hh405 esd
908
stroese3361eb72003-09-12 08:57:15 +0000909HUB405_config: unconfig
910 @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
911
wdenk634d2f72004-04-15 23:14:49 +0000912JSE_config: unconfig
913 @./mkconfig $(@:_config=) ppc ppc4xx jse
914
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200915KAREF_config: unconfig
916 @./mkconfig $(@:_config=) ppc ppc4xx karef sandburst
917
Stefan Roese99644742005-11-29 18:18:21 +0100918luan_config: unconfig
919 @./mkconfig $(@:_config=) ppc ppc4xx luan amcc
920
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200921METROBOX_config: unconfig
922 @./mkconfig $(@:_config=) ppc ppc4xx metrobox sandburst
923
wdenk634d2f72004-04-15 23:14:49 +0000924MIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000925 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
926
wdenk634d2f72004-04-15 23:14:49 +0000927MIP405T_config: unconfig
wdenke39c2842003-06-04 15:05:30 +0000928 @echo "#define CONFIG_MIP405T" >include/config.h
929 @echo "Enable subset config for MIP405T"
930 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
931
wdenk634d2f72004-04-15 23:14:49 +0000932ML2_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000933 @./mkconfig $(@:_config=) ppc ppc4xx ml2
934
wdenk634d2f72004-04-15 23:14:49 +0000935ml300_config: unconfig
wdenke537b3b2004-02-23 23:54:43 +0000936 @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
937
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200938ocotea_config: unconfig
939 @./mkconfig $(@:_config=) ppc ppc4xx ocotea amcc
wdenk00fe1612004-03-14 00:07:33 +0000940
wdenk7ebf7442002-11-02 23:17:16 +0000941OCRTC_config \
942ORSG_config: unconfig
943 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
944
Stefan Roesec443fe92005-11-22 13:20:42 +0100945p3p440_config: unconfig
946 @./mkconfig $(@:_config=) ppc ppc4xx p3p440 prodrive
947
wdenk7ebf7442002-11-02 23:17:16 +0000948PCI405_config: unconfig
949 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
950
Stefan Roese9eba0c82006-06-02 16:18:04 +0200951pcs440ep_config: unconfig
952 @./mkconfig $(@:_config=) ppc ppc4xx pcs440ep
953
wdenk634d2f72004-04-15 23:14:49 +0000954PIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000955 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
956
stroese3361eb72003-09-12 08:57:15 +0000957PLU405_config: unconfig
958 @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
959
stroesebfcc82b2003-05-23 11:41:44 +0000960PMC405_config: unconfig
961 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
962
wdenk7ac16102004-08-01 22:48:16 +0000963PPChameleonEVB_config \
wdenk99874b42004-07-01 21:40:08 +0000964PPChameleonEVB_BA_25_config \
965PPChameleonEVB_ME_25_config \
966PPChameleonEVB_HI_25_config \
967PPChameleonEVB_BA_33_config \
968PPChameleonEVB_ME_33_config \
969PPChameleonEVB_HI_33_config: unconfig
wdenk7182b0f2003-10-06 21:55:32 +0000970 @ >include/config.h
wdenk9e7130b2004-09-09 17:44:35 +0000971 @[ -z "$(findstring EVB_BA,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000972 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
973 echo "... BASIC model" ; \
974 }
wdenk9e7130b2004-09-09 17:44:35 +0000975 @[ -z "$(findstring EVB_ME,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000976 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
977 echo "... MEDIUM model" ; \
978 }
wdenk9e7130b2004-09-09 17:44:35 +0000979 @[ -z "$(findstring EVB_HI,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000980 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
981 echo "... HIGH-END model" ; \
982 }
wdenk99874b42004-07-01 21:40:08 +0000983 @[ -z "$(findstring _25,$@)" ] || \
984 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
wdenk9e7130b2004-09-09 17:44:35 +0000985 echo "SysClk = 25MHz" ; \
wdenk99874b42004-07-01 21:40:08 +0000986 }
987 @[ -z "$(findstring _33,$@)" ] || \
988 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
wdenk9e7130b2004-09-09 17:44:35 +0000989 echo "SysClk = 33MHz" ; \
wdenk99874b42004-07-01 21:40:08 +0000990 }
wdenk7182b0f2003-10-06 21:55:32 +0000991 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk232fe0b2003-09-02 22:48:03 +0000992
wdenkd3341052005-01-09 23:48:14 +0000993sbc405_config: unconfig
994 @./mkconfig $(@:_config=) ppc ppc4xx sbc405
995
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200996sycamore_config: unconfig
997 @echo "Configuring for sycamore board as subset of walnut..."
998 @./mkconfig -a walnut ppc ppc4xx walnut amcc
999
stroese3361eb72003-09-12 08:57:15 +00001000VOH405_config: unconfig
1001 @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
1002
stroese05b88912004-12-16 18:44:40 +00001003VOM405_config: unconfig
1004 @./mkconfig $(@:_config=) ppc ppc4xx vom405 esd
1005
Stefan Roesef2303272005-11-15 10:35:59 +01001006CMS700_config: unconfig
1007 @./mkconfig $(@:_config=) ppc ppc4xx cms700 esd
1008
wdenk7ebf7442002-11-02 23:17:16 +00001009W7OLMC_config \
1010W7OLMG_config: unconfig
1011 @./mkconfig $(@:_config=) ppc ppc4xx w7o
1012
Stefan Roese3e1f1b32005-08-01 16:49:12 +02001013walnut_config: unconfig
1014 @./mkconfig $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001015
stroese05b88912004-12-16 18:44:40 +00001016WUH405_config: unconfig
1017 @./mkconfig $(@:_config=) ppc ppc4xx wuh405 esd
1018
wdenk634d2f72004-04-15 23:14:49 +00001019XPEDITE1K_config: unconfig
wdenk544e9732004-02-06 23:19:44 +00001020 @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
1021
Stefan Roese3e1f1b32005-08-01 16:49:12 +02001022yosemite_config: unconfig
1023 @./mkconfig $(@:_config=) ppc ppc4xx yosemite amcc
1024
1025yellowstone_config: unconfig
1026 @./mkconfig $(@:_config=) ppc ppc4xx yellowstone amcc
1027
Marian Balakowicz49d0eee2006-06-30 16:30:46 +02001028yucca_config: unconfig
1029 @./mkconfig $(@:_config=) ppc ppc4xx yucca amcc
1030
wdenk7ebf7442002-11-02 23:17:16 +00001031#########################################################################
wdenk337f5652004-10-28 00:09:35 +00001032## MPC8220 Systems
1033#########################################################################
Wolfgang Denkdb5f3862005-08-03 22:32:02 +02001034
1035Alaska8220_config \
1036Yukon8220_config: unconfig
wdenk337f5652004-10-28 00:09:35 +00001037 @./mkconfig $(@:_config=) ppc mpc8220 alaska
1038
wdenkccfe25d2005-04-05 21:57:18 +00001039sorcery_config: unconfig
1040 @./mkconfig $(@:_config=) ppc mpc8220 sorcery
1041
wdenk337f5652004-10-28 00:09:35 +00001042#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001043## MPC824x Systems
1044#########################################################################
wdenkc12081a2004-03-23 20:18:25 +00001045xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenkef5fe752003-03-12 10:41:04 +00001046
wdenk8aeb24e2003-06-20 22:36:30 +00001047A3000_config: unconfig
1048 @./mkconfig $(@:_config=) ppc mpc824x a3000
1049
Wolfgang Denka48c7252005-09-25 18:59:36 +02001050barco_config: unconfig
1051 @./mkconfig $(@:_config=) ppc mpc824x barco
1052
wdenk7ebf7442002-11-02 23:17:16 +00001053BMW_config: unconfig
1054 @./mkconfig $(@:_config=) ppc mpc824x bmw
1055
wdenkef5fe752003-03-12 10:41:04 +00001056CPC45_config \
1057CPC45_ROMBOOT_config: unconfig
1058 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
1059 @cd ./include ; \
1060 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1061 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1062 echo "... booting from 8-bit flash" ; \
1063 else \
1064 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1065 echo "... booting from 64-bit flash" ; \
1066 fi; \
1067 echo "export CONFIG_BOOT_ROM" >> config.mk;
1068
wdenk7ebf7442002-11-02 23:17:16 +00001069CU824_config: unconfig
1070 @./mkconfig $(@:_config=) ppc mpc824x cu824
1071
wdenk78924a72004-04-18 21:45:42 +00001072debris_config: unconfig
1073 @./mkconfig $(@:_config=) ppc mpc824x debris etin
1074
wdenk5f495752004-02-26 23:46:20 +00001075eXalion_config: unconfig
1076 @./mkconfig $(@:_config=) ppc mpc824x eXalion
1077
wdenke0c812a2005-04-03 15:51:42 +00001078HIDDEN_DRAGON_config: unconfig
1079 @./mkconfig $(@:_config=) ppc mpc824x hidden_dragon
1080
Wolfgang Denk11f95cb2006-07-21 11:29:20 +02001081kvme080_config: unconfig
1082 @./mkconfig $(@:_config=) ppc mpc824x kvme080 etin
1083
wdenk7ebf7442002-11-02 23:17:16 +00001084MOUSSE_config: unconfig
1085 @./mkconfig $(@:_config=) ppc mpc824x mousse
1086
1087MUSENKI_config: unconfig
1088 @./mkconfig $(@:_config=) ppc mpc824x musenki
1089
wdenk4e7a58a2003-12-07 19:24:00 +00001090MVBLUE_config: unconfig
1091 @./mkconfig $(@:_config=) ppc mpc824x mvblue
1092
wdenk7ebf7442002-11-02 23:17:16 +00001093OXC_config: unconfig
1094 @./mkconfig $(@:_config=) ppc mpc824x oxc
1095
1096PN62_config: unconfig
1097 @./mkconfig $(@:_config=) ppc mpc824x pn62
1098
1099Sandpoint8240_config: unconfig
1100 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
1101
1102Sandpoint8245_config: unconfig
1103 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
1104
wdenk265d2172004-07-10 22:35:59 +00001105sbc8240_config: unconfig
1106 @./mkconfig $(@:_config=) ppc mpc824x sbc8240
1107
wdenkd9fce812003-06-28 17:24:46 +00001108SL8245_config: unconfig
1109 @./mkconfig $(@:_config=) ppc mpc824x sl8245
1110
wdenk7ebf7442002-11-02 23:17:16 +00001111utx8245_config: unconfig
1112 @./mkconfig $(@:_config=) ppc mpc824x utx8245
1113
1114#########################################################################
1115## MPC8260 Systems
1116#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001117
wdenk2f0812d2003-10-08 22:45:44 +00001118atc_config: unconfig
1119 @./mkconfig $(@:_config=) ppc mpc8260 atc
1120
wdenk7ebf7442002-11-02 23:17:16 +00001121cogent_mpc8260_config: unconfig
1122 @./mkconfig $(@:_config=) ppc mpc8260 cogent
1123
1124CPU86_config \
1125CPU86_ROMBOOT_config: unconfig
1126 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
1127 @cd ./include ; \
1128 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1129 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1130 echo "... booting from 8-bit flash" ; \
1131 else \
1132 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1133 echo "... booting from 64-bit flash" ; \
1134 fi; \
1135 echo "export CONFIG_BOOT_ROM" >> config.mk;
1136
wdenk6d3c6d12005-04-03 22:35:21 +00001137CPU87_config \
1138CPU87_ROMBOOT_config: unconfig
1139 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87
1140 @cd ./include ; \
1141 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1142 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1143 echo "... booting from 8-bit flash" ; \
1144 else \
1145 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1146 echo "... booting from 64-bit flash" ; \
1147 fi; \
1148 echo "export CONFIG_BOOT_ROM" >> config.mk;
1149
Wolfgang Denk8dd4d332005-08-06 01:42:58 +02001150ep8248_config \
1151ep8248E_config : unconfig
1152 @./mkconfig ep8248 ppc mpc8260 ep8248
1153
wdenk7ebf7442002-11-02 23:17:16 +00001154ep8260_config: unconfig
1155 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
1156
1157gw8260_config: unconfig
1158 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
1159
1160hymod_config: unconfig
1161 @./mkconfig $(@:_config=) ppc mpc8260 hymod
1162
wdenka7316b02005-05-12 22:48:09 +00001163IDS8247_config: unconfig
1164 @./mkconfig $(@:_config=) ppc mpc8260 ids8247
1165
wdenk7ebf7442002-11-02 23:17:16 +00001166IPHASE4539_config: unconfig
1167 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
1168
wdenk76dd6c72004-06-09 14:47:54 +00001169ISPAN_config \
1170ISPAN_REVB_config: unconfig
1171 @if [ "$(findstring _REVB_,$@)" ] ; then \
1172 echo "#define CFG_REV_B" > include/config.h ; \
1173 fi
1174 @./mkconfig -a ISPAN ppc mpc8260 ispan
1175
wdenk3902d702004-04-15 18:22:41 +00001176MPC8260ADS_config \
wdenk874c6752005-04-03 23:22:21 +00001177MPC8260ADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001178MPC8260ADS_33MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001179MPC8260ADS_33MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001180MPC8260ADS_40MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001181MPC8260ADS_40MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001182MPC8272ADS_config \
wdenk874c6752005-04-03 23:22:21 +00001183MPC8272ADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001184PQ2FADS_config \
wdenk874c6752005-04-03 23:22:21 +00001185PQ2FADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001186PQ2FADS-VR_config \
wdenk874c6752005-04-03 23:22:21 +00001187PQ2FADS-VR_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001188PQ2FADS-ZU_config \
wdenk874c6752005-04-03 23:22:21 +00001189PQ2FADS-ZU_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001190PQ2FADS-ZU_66MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001191PQ2FADS-ZU_66MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001192 : unconfig
1193 $(if $(findstring PQ2FADS,$@), \
1194 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
1195 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
1196 $(if $(findstring MHz,$@), \
1197 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
1198 $(if $(findstring VR,$@), \
1199 @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
wdenk874c6752005-04-03 23:22:21 +00001200 @[ -z "$(findstring lowboot_,$@)" ] || \
1201 { echo "TEXT_BASE = 0xFF800000" >board/mpc8260ads/config.tmp ; \
1202 echo "... with lowboot configuration" ; \
1203 }
wdenk3902d702004-04-15 18:22:41 +00001204 @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001205
wdenkb666c8f2003-03-06 00:58:30 +00001206MPC8266ADS_config: unconfig
1207 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
1208
wdenkc12081a2004-03-23 20:18:25 +00001209# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk4b57dcc2003-03-25 18:06:06 +00001210PM825_config \
wdenkc12081a2004-03-23 20:18:25 +00001211PM825_ROMBOOT_config \
1212PM825_BIGFLASH_config \
1213PM825_ROMBOOT_BIGFLASH_config \
1214PM826_config \
1215PM826_ROMBOOT_config \
1216PM826_BIGFLASH_config \
1217PM826_ROMBOOT_BIGFLASH_config: unconfig
1218 @if [ "$(findstring PM825_,$@)" ] ; then \
1219 echo "#define CONFIG_PCI" >include/config.h ; \
1220 else \
1221 >include/config.h ; \
1222 fi
1223 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
wdenk4b57dcc2003-03-25 18:06:06 +00001224 echo "... booting from 8-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +00001225 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1226 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1227 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1228 echo "... with 32 MB Flash" ; \
1229 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1230 fi; \
wdenk4b57dcc2003-03-25 18:06:06 +00001231 else \
wdenk4b57dcc2003-03-25 18:06:06 +00001232 echo "... booting from 64-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +00001233 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1234 echo "... with 32 MB Flash" ; \
1235 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1236 echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
1237 else \
1238 echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
1239 fi; \
1240 fi
1241 @./mkconfig -a PM826 ppc mpc8260 pm826
wdenk4b57dcc2003-03-25 18:06:06 +00001242
wdenkc12081a2004-03-23 20:18:25 +00001243PM828_config \
1244PM828_PCI_config \
1245PM828_ROMBOOT_config \
1246PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowicz3d8d1252006-04-05 20:37:11 +02001247 @if [ "$(findstring _PCI_,$@)" ] ; then \
wdenkc12081a2004-03-23 20:18:25 +00001248 echo "#define CONFIG_PCI" >>include/config.h ; \
1249 echo "... with PCI enabled" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001250 else \
wdenkc12081a2004-03-23 20:18:25 +00001251 >include/config.h ; \
1252 fi
1253 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1254 echo "... booting from 8-bit flash" ; \
1255 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1256 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1257 fi
1258 @./mkconfig -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001259
1260ppmc8260_config: unconfig
1261 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
1262
wdenkbc3202a2005-04-03 23:11:38 +00001263Rattler8248_config \
1264Rattler_config: unconfig
1265 $(if $(findstring 8248,$@), \
1266 @echo "#define CONFIG_MPC8248" > include/config.h)
1267 @./mkconfig -a Rattler ppc mpc8260 rattler
1268
wdenk7ebf7442002-11-02 23:17:16 +00001269RPXsuper_config: unconfig
1270 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
1271
1272rsdproto_config: unconfig
1273 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
1274
1275sacsng_config: unconfig
1276 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
1277
1278sbc8260_config: unconfig
1279 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
1280
1281SCM_config: unconfig
1282 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
1283
wdenk874ac262003-07-24 23:38:38 +00001284TQM8255_AA_config \
1285TQM8260_AA_config \
1286TQM8260_AB_config \
1287TQM8260_AC_config \
1288TQM8260_AD_config \
1289TQM8260_AE_config \
1290TQM8260_AF_config \
1291TQM8260_AG_config \
1292TQM8260_AH_config \
Wolfgang Denk47673562006-03-07 00:32:07 +01001293TQM8260_AI_config \
wdenk874ac262003-07-24 23:38:38 +00001294TQM8265_AA_config: unconfig
1295 @case "$@" in \
Wolfgang Denk47673562006-03-07 00:32:07 +01001296 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1297 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1298 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1299 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1300 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1301 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1302 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1303 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1304 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1305 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1306 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk874ac262003-07-24 23:38:38 +00001307 esac; \
1308 >include/config.h ; \
1309 if [ "$${CTYPE}" != "MPC8260" ] ; then \
1310 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
1311 fi; \
1312 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
1313 echo "... with $${CFREQ}MHz system clock" ; \
1314 if [ "$${CACHE}" == "yes" ] ; then \
wdenk7ebf7442002-11-02 23:17:16 +00001315 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
wdenk874ac262003-07-24 23:38:38 +00001316 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001317 else \
1318 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
1319 echo "... without L2 Cache support" ; \
wdenk874ac262003-07-24 23:38:38 +00001320 fi; \
1321 if [ "$${BMODE}" == "60x" ] ; then \
1322 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
1323 echo "... with 60x Bus Mode" ; \
1324 else \
1325 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
1326 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001327 fi
wdenkc08f1582003-04-27 22:52:51 +00001328 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001329
wdenkc28149c2005-05-30 23:55:42 +00001330VoVPN-GW_66MHz_config \
1331VoVPN-GW_100MHz_config: unconfig
1332 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > include/config.h
1333 @./mkconfig -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
1334
wdenk2f0812d2003-10-08 22:45:44 +00001335ZPC1900_config: unconfig
1336 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
wdenk541a76d2003-05-03 15:50:43 +00001337
wdenkabf7a7c2003-12-08 01:34:36 +00001338#########################################################################
1339## Coldfire
1340#########################################################################
1341
Wolfgang Denkaaa7c002005-12-12 16:06:05 +01001342cobra5272_config : unconfig
1343 @./mkconfig $(@:_config=) m68k mcf52x2 cobra5272
1344
Wolfgang Denkb4b1c462006-06-10 19:27:47 +02001345EB+MCF-EV123_config : unconfig
1346 @ >include/config.h
1347 @echo "TEXT_BASE = 0xFFE00000"|tee board/BuS/EB+MCF-EV123/textbase.mk
1348 @./mkconfig EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
1349
1350EB+MCF-EV123_internal_config : unconfig
1351 @ >include/config.h
1352 @echo "TEXT_BASE = 0xF0000000"|tee board/BuS/EB+MCF-EV123/textbase.mk
1353 @./mkconfig EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
1354
1355M5271EVB_config : unconfig
1356 @./mkconfig $(@:_config=) m68k mcf52x2 m5271evb
1357
wdenkabf7a7c2003-12-08 01:34:36 +00001358M5272C3_config : unconfig
wdenke65527f2004-02-12 00:47:09 +00001359 @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
wdenkabf7a7c2003-12-08 01:34:36 +00001360
1361M5282EVB_config : unconfig
wdenke65527f2004-02-12 00:47:09 +00001362 @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
wdenkabf7a7c2003-12-08 01:34:36 +00001363
stroese05b88912004-12-16 18:44:40 +00001364TASREG_config : unconfig
1365 @./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd
1366
Zachary P. Landau552d3142006-01-26 17:37:59 -05001367r5200_config : unconfig
1368 @./mkconfig $(@:_config=) m68k mcf52x2 r5200
1369
wdenk7ebf7442002-11-02 23:17:16 +00001370#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -05001371## MPC83xx Systems
1372#########################################################################
1373
1374MPC8349ADS_config: unconfig
1375 @./mkconfig $(@:_config=) ppc mpc83xx mpc8349ads
1376
Marian Balakowicz513b4a12005-10-11 19:09:42 +02001377TQM834x_config: unconfig
1378 @./mkconfig $(@:_config=) ppc mpc83xx tqm834x
1379
Marian Balakowiczd7a3f722006-03-14 16:24:38 +01001380MPC8349EMDS_config: unconfig
1381 @./mkconfig $(@:_config=) ppc mpc83xx mpc8349emds
1382
Eran Liberty9095d4a2005-07-28 10:08:46 -05001383#########################################################################
wdenk9c53f402003-10-15 23:53:47 +00001384## MPC85xx Systems
1385#########################################################################
1386
wdenk13eb2212004-07-09 23:27:13 +00001387MPC8540ADS_config: unconfig
wdenk9c53f402003-10-15 23:53:47 +00001388 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
1389
Lunsheng Wang61e61952005-07-29 10:20:29 -05001390MPC8540EVAL_config \
1391MPC8540EVAL_33_config \
1392MPC8540EVAL_66_config \
1393MPC8540EVAL_33_slave_config \
1394MPC8540EVAL_66_slave_config: unconfig
1395 @echo "" >include/config.h ; \
1396 if [ "$(findstring _33_,$@)" ] ; then \
1397 echo -n "... 33 MHz PCI" ; \
1398 else \
1399 echo "#define CONFIG_SYSCLK_66M" >>include/config.h ; \
1400 echo -n "... 66 MHz PCI" ; \
1401 fi ; \
1402 if [ "$(findstring _slave_,$@)" ] ; then \
1403 echo "#define CONFIG_PCI_SLAVE" >>include/config.h ; \
1404 echo " slave" ; \
1405 else \
1406 echo " host" ; \
1407 fi
1408 @./mkconfig -a MPC8540EVAL ppc mpc85xx mpc8540eval
1409
wdenk13eb2212004-07-09 23:27:13 +00001410MPC8560ADS_config: unconfig
wdenk9c53f402003-10-15 23:53:47 +00001411 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
1412
wdenk0aeb8532004-10-10 21:21:55 +00001413MPC8541CDS_config: unconfig
1414 @./mkconfig $(@:_config=) ppc mpc85xx mpc8541cds cds
1415
Jon Loeliger77a4f6e2005-07-25 14:05:07 -05001416MPC8548CDS_config: unconfig
1417 @./mkconfig $(@:_config=) ppc mpc85xx mpc8548cds cds
1418
wdenk0aeb8532004-10-10 21:21:55 +00001419MPC8555CDS_config: unconfig
1420 @./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk78924a72004-04-18 21:45:42 +00001421
wdenk6d3c6d12005-04-03 22:35:21 +00001422PM854_config: unconfig
1423 @./mkconfig $(@:_config=) ppc mpc85xx pm854
1424
Wolfgang Denk9733b3c2005-08-05 12:19:30 +02001425PM856_config: unconfig
1426 @./mkconfig $(@:_config=) ppc mpc85xx pm856
1427
wdenkadf849c2004-10-10 22:44:24 +00001428sbc8540_config \
1429sbc8540_33_config \
1430sbc8540_66_config: unconfig
1431 @if [ "$(findstring _66_,$@)" ] ; then \
1432 echo "#define CONFIG_PCI_66" >>include/config.h ; \
1433 echo "... 66 MHz PCI" ; \
1434 else \
1435 >include/config.h ; \
1436 echo "... 33 MHz PCI" ; \
1437 fi
1438 @./mkconfig -a SBC8540 ppc mpc85xx sbc8560
1439
wdenk265d2172004-07-10 22:35:59 +00001440sbc8560_config \
1441sbc8560_33_config \
1442sbc8560_66_config: unconfig
wdenk3203c8f2004-07-10 21:45:47 +00001443 @if [ "$(findstring _66_,$@)" ] ; then \
wdenkadf849c2004-10-10 22:44:24 +00001444 echo "#define CONFIG_PCI_66" >>include/config.h ; \
wdenk3203c8f2004-07-10 21:45:47 +00001445 echo "... 66 MHz PCI" ; \
1446 else \
1447 >include/config.h ; \
1448 echo "... 33 MHz PCI" ; \
1449 fi
wdenk265d2172004-07-10 22:35:59 +00001450 @./mkconfig -a sbc8560 ppc mpc85xx sbc8560
wdenk3203c8f2004-07-10 21:45:47 +00001451
wdenk0aeb8532004-10-10 21:21:55 +00001452stxgp3_config: unconfig
1453 @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
1454
Stefan Roese09554022005-11-30 13:06:40 +01001455TQM8540_config \
1456TQM8541_config \
1457TQM8555_config \
1458TQM8560_config: unconfig
Wolfgang Denk3bd697b2005-12-06 15:02:31 +01001459 @CTYPE=$(subst TQM,,$(@:_config=)); \
Stefan Roese09554022005-11-30 13:06:40 +01001460 >include/config.h ; \
1461 echo "... TQM"$${CTYPE}; \
1462 echo "#define CONFIG_MPC$${CTYPE}">>include/config.h; \
1463 echo "#define CONFIG_TQM$${CTYPE}">>include/config.h; \
1464 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>include/config.h; \
1465 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>include/config.h; \
1466 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>include/config.h
1467 @./mkconfig -a TQM85xx ppc mpc85xx tqm85xx
wdenk8e5263c2005-04-05 16:26:47 +00001468
wdenk9c53f402003-10-15 23:53:47 +00001469#########################################################################
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001470## MPC86xx Systems
1471#########################################################################
1472
1473MPC8641HPCN_config: unconfig
1474 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1475
1476
1477#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001478## 74xx/7xx Systems
1479#########################################################################
1480
wdenk452cfd62002-11-19 11:04:11 +00001481AmigaOneG3SE_config: unconfig
1482 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
1483
wdenk9f837932003-10-09 19:00:25 +00001484BAB7xx_config: unconfig
1485 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
1486
stroese05b88912004-12-16 18:44:40 +00001487CPCI750_config: unconfig
1488 @./mkconfig CPCI750 ppc 74xx_7xx cpci750 esd
1489
wdenk5da7f2f2004-01-03 00:43:19 +00001490DB64360_config: unconfig
1491 @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
1492
1493DB64460_config: unconfig
1494 @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
1495
wdenk9f837932003-10-09 19:00:25 +00001496ELPPC_config: unconfig
1497 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
1498
wdenk7ebf7442002-11-02 23:17:16 +00001499EVB64260_config \
1500EVB64260_750CX_config: unconfig
1501 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
1502
wdenk9f837932003-10-09 19:00:25 +00001503P3G4_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +00001504 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1505
1506PCIPPC2_config \
1507PCIPPC6_config: unconfig
1508 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
1509
wdenk9f837932003-10-09 19:00:25 +00001510ZUMA_config: unconfig
wdenk232fe0b2003-09-02 22:48:03 +00001511 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1512
Heiko Schocherd7f77fb2006-06-19 11:02:41 +02001513ppmc7xx_config: unconfig
1514 @./mkconfig $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkba940932006-07-19 13:50:38 +02001515
wdenk7ebf7442002-11-02 23:17:16 +00001516#========================================================================
1517# ARM
1518#========================================================================
1519#########################################################################
1520## StrongARM Systems
1521#########################################################################
1522
wdenke5cda752004-04-15 23:23:39 +00001523assabet_config : unconfig
1524 @./mkconfig $(@:_config=) arm sa1100 assabet
1525
wdenk7ebf7442002-11-02 23:17:16 +00001526dnp1110_config : unconfig
1527 @./mkconfig $(@:_config=) arm sa1100 dnp1110
1528
wdenked2ac4b2004-03-14 18:23:55 +00001529gcplus_config : unconfig
1530 @./mkconfig $(@:_config=) arm sa1100 gcplus
1531
1532lart_config : unconfig
1533 @./mkconfig $(@:_config=) arm sa1100 lart
1534
wdenk7ebf7442002-11-02 23:17:16 +00001535shannon_config : unconfig
1536 @./mkconfig $(@:_config=) arm sa1100 shannon
1537
1538#########################################################################
wdenkf6f96f72003-07-15 20:04:06 +00001539## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001540#########################################################################
1541
wdenkb6b2f0e2003-09-17 22:48:07 +00001542xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk4a5c8a72003-03-06 00:02:04 +00001543
wdenk920e91b2004-06-09 15:25:53 +00001544xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenke97d3d92004-02-23 22:22:28 +00001545
wdenke3a06802004-06-06 23:13:55 +00001546xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1547
wdenk91fcc952005-04-06 13:52:31 +00001548at91rm9200dk_config : unconfig
1549 @./mkconfig $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
1550
1551cmc_pu2_config : unconfig
1552 @./mkconfig $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
1553
Wolfgang Denke35470b2005-10-05 02:00:09 +02001554csb637_config : unconfig
1555 @./mkconfig $(@:_config=) arm arm920t csb637 NULL at91rm9200
1556
Wolfgang Denk756bfd72005-09-26 01:14:38 +02001557mp2usb_config : unconfig
1558 @./mkconfig $(@:_config=) arm arm920t mp2usb NULL at91rm9200
1559
Wolfgang Denkadf20a12005-09-25 01:48:28 +02001560
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001561########################################################################
1562## ARM Integrator boards - see doc/README-integrator for more info.
1563integratorap_config \
1564ap_config \
1565ap966_config \
1566ap922_config \
1567ap922_XA10_config \
1568ap7_config \
1569ap720t_config \
1570ap920t_config \
1571ap926ejs_config \
1572ap946es_config: unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001573 @board/integratorap/split_by_variant.sh $@
wdenk4989f872004-03-14 15:06:13 +00001574
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001575integratorcp_config \
1576cp_config \
1577cp920t_config \
1578cp926ejs_config \
1579cp946es_config \
1580cp1136_config \
1581cp966_config \
1582cp922_config \
1583cp922_XA10_config \
1584cp1026_config: unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001585 @board/integratorcp/split_by_variant.sh $@
wdenkb3a4a702004-12-10 11:40:40 +00001586
Wolfgang Denk9da240c2005-10-05 00:19:34 +02001587kb9202_config : unconfig
1588 @./mkconfig $(@:_config=) arm arm920t kb9202 NULL at91rm9200
1589
wdenk37bdfdf2004-06-10 21:55:33 +00001590lpd7a400_config \
1591lpd7a404_config: unconfig
wdenk9f664dd2004-06-09 21:50:45 +00001592 @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
wdenk4989f872004-03-14 15:06:13 +00001593
wdenk7ac16102004-08-01 22:48:16 +00001594mx1ads_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001595 @./mkconfig $(@:_config=) arm arm920t mx1ads NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001596
1597mx1fs2_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001598 @./mkconfig $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001599
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001600netstar_32_config \
1601netstar_config: unconfig
1602 @if [ "$(findstring _32_,$@)" ] ; then \
1603 echo "... 32MB SDRAM" ; \
1604 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>include/config.h ; \
1605 else \
1606 echo "... 64MB SDRAM" ; \
1607 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>include/config.h ; \
1608 fi
1609 @./mkconfig -a netstar arm arm925t netstar
1610
wdenkf6f96f72003-07-15 20:04:06 +00001611omap1510inn_config : unconfig
1612 @./mkconfig $(@:_config=) arm arm925t omap1510inn
1613
wdenk914be132004-06-08 00:22:43 +00001614omap5912osk_config : unconfig
Wolfgang Denkd86ec382006-03-13 12:37:35 +01001615 @./mkconfig $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk914be132004-06-08 00:22:43 +00001616
wdenke97d3d92004-02-23 22:22:28 +00001617omap1610inn_config \
1618omap1610inn_cs0boot_config \
1619omap1610inn_cs3boot_config \
wdenk920e91b2004-06-09 15:25:53 +00001620omap1610inn_cs_autoboot_config \
wdenke97d3d92004-02-23 22:22:28 +00001621omap1610h2_config \
1622omap1610h2_cs0boot_config \
wdenk920e91b2004-06-09 15:25:53 +00001623omap1610h2_cs3boot_config \
1624omap1610h2_cs_autoboot_config: unconfig
wdenke97d3d92004-02-23 22:22:28 +00001625 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1626 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001627 echo "... configured for CS0 boot"; \
wdenk920e91b2004-06-09 15:25:53 +00001628 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
1629 echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
1630 echo "... configured for CS_AUTO boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001631 else \
1632 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001633 echo "... configured for CS3 boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001634 fi;
Wolfgang Denkd86ec382006-03-13 12:37:35 +01001635 @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk7eaacc52003-08-29 22:00:43 +00001636
wdenke3a06802004-06-06 23:13:55 +00001637omap730p2_config \
1638omap730p2_cs0boot_config \
1639omap730p2_cs3boot_config : unconfig
1640 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1641 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
1642 echo "... configured for CS0 boot"; \
1643 else \
1644 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
1645 echo "... configured for CS3 boot"; \
1646 fi;
Wolfgang Denkd86ec382006-03-13 12:37:35 +01001647 @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenke3a06802004-06-06 23:13:55 +00001648
Wolfgang Denk5873ca52006-07-21 11:31:42 +02001649sbc2410x_config: unconfig
1650 @./mkconfig $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
1651
wdenk7ac16102004-08-01 22:48:16 +00001652scb9328_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001653 @./mkconfig $(@:_config=) arm arm920t scb9328 NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001654
wdenk7ebf7442002-11-02 23:17:16 +00001655smdk2400_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001656 @./mkconfig $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001657
1658smdk2410_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001659 @./mkconfig $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001660
wdenk9f664dd2004-06-09 21:50:45 +00001661SX1_config : unconfig
1662 @./mkconfig $(@:_config=) arm arm925t sx1
1663
wdenk236d3fc2003-12-20 22:45:10 +00001664# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk4a5c8a72003-03-06 00:02:04 +00001665trab_config \
wdenkb6b2f0e2003-09-17 22:48:07 +00001666trab_bigram_config \
1667trab_bigflash_config \
wdenkf6a6ac12003-09-17 15:10:32 +00001668trab_old_config: unconfig
wdenk4a5c8a72003-03-06 00:02:04 +00001669 @ >include/config.h
wdenkb6b2f0e2003-09-17 22:48:07 +00001670 @[ -z "$(findstring _bigram,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001671 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1672 echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001673 echo "... with 8 MB Flash, 32 MB RAM" ; \
1674 }
1675 @[ -z "$(findstring _bigflash,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001676 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1677 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001678 echo "... with 16 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001679 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001680 }
wdenkf6a6ac12003-09-17 15:10:32 +00001681 @[ -z "$(findstring _old,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001682 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1683 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
1684 echo "... with 8 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001685 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenk4a5c8a72003-03-06 00:02:04 +00001686 }
wdenkf8e9a232004-10-09 22:21:29 +00001687 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001688
wdenk1fe2c702003-03-06 21:55:29 +00001689VCMA9_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001690 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1fe2c702003-03-06 21:55:29 +00001691
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001692#========================================================================
1693# ARM supplied Versatile development boards
1694#========================================================================
1695versatile_config \
1696versatileab_config \
1697versatilepb_config : unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001698 @board/versatile/split_by_variant.sh $@
wdenkb98ac282004-02-24 00:16:43 +00001699
wdenke085e5b2005-04-05 23:32:21 +00001700voiceblue_smallflash_config \
1701voiceblue_config: unconfig
1702 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1703 echo "... boot from lower flash bank" ; \
1704 echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \
1705 echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \
1706 else \
1707 echo "... boot from upper flash bank" ; \
1708 >include/config.h ; \
1709 echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \
1710 fi
1711 @./mkconfig -a voiceblue arm arm925t voiceblue
1712
wdenk62cb5cf2005-05-19 22:46:33 +00001713cm4008_config : unconfig
1714 @./mkconfig $(@:_config=) arm arm920t cm4008 NULL ks8695
1715
1716cm41xx_config : unconfig
1717 @./mkconfig $(@:_config=) arm arm920t cm41xx NULL ks8695
1718
Wolfgang Denk39c76422006-06-16 17:32:31 +02001719gth2_config : unconfig
1720 @ >include/config.h
1721 @echo "#define CONFIG_GTH2 1" >>include/config.h
1722 @./mkconfig -a gth2 mips mips gth2
1723
wdenkb98ac282004-02-24 00:16:43 +00001724#########################################################################
1725## S3C44B0 Systems
1726#########################################################################
1727
1728B2_config : unconfig
1729 @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1730
wdenk7ebf7442002-11-02 23:17:16 +00001731#########################################################################
wdenk9f664dd2004-06-09 21:50:45 +00001732## ARM720T Systems
1733#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001734
Wolfgang Denk4dc11462005-09-26 01:06:33 +02001735armadillo_config: unconfig
1736 @./mkconfig $(@:_config=) arm arm720t armadillo
1737
wdenk7ebf7442002-11-02 23:17:16 +00001738ep7312_config : unconfig
1739 @./mkconfig $(@:_config=) arm arm720t ep7312
1740
wdenk9f664dd2004-06-09 21:50:45 +00001741impa7_config : unconfig
1742 @./mkconfig $(@:_config=) arm arm720t impa7
1743
wdenk2ebee312004-02-23 19:30:57 +00001744modnet50_config : unconfig
1745 @./mkconfig $(@:_config=) arm arm720t modnet50
1746
wdenkf2140d52004-07-01 16:30:44 +00001747evb4510_config : unconfig
1748 @./mkconfig $(@:_config=) arm arm720t evb4510
1749
wdenk7ebf7442002-11-02 23:17:16 +00001750#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001751## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00001752#########################################################################
1753
wdenk2a831612005-04-06 00:04:16 +00001754adsvix_config : unconfig
1755 @./mkconfig $(@:_config=) arm pxa adsvix
1756
wdenkb5bb1392004-07-10 23:11:10 +00001757cerf250_config : unconfig
1758 @./mkconfig $(@:_config=) arm pxa cerf250
1759
wdenk7ebf7442002-11-02 23:17:16 +00001760cradle_config : unconfig
wdenk57b2d802003-06-27 21:31:46 +00001761 @./mkconfig $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00001762
1763csb226_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001764 @./mkconfig $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00001765
Wolfgang Denk2105aa22006-03-07 00:22:36 +01001766delta_config :
1767 @./mkconfig $(@:_config=) arm pxa delta
1768
wdenk4a5c8a72003-03-06 00:02:04 +00001769innokom_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001770 @./mkconfig $(@:_config=) arm pxa innokom
wdenk4a5c8a72003-03-06 00:02:04 +00001771
wdenkbd1575f2003-10-14 19:43:55 +00001772ixdp425_config : unconfig
1773 @./mkconfig $(@:_config=) arm ixp ixdp425
1774
Wolfgang Denk4646d2a2006-05-30 15:56:48 +02001775ixdpg425_config : unconfig
1776 @./mkconfig $(@:_config=) arm ixp ixdp425
1777
wdenk4a5c8a72003-03-06 00:02:04 +00001778lubbock_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001779 @./mkconfig $(@:_config=) arm pxa lubbock
wdenk4a5c8a72003-03-06 00:02:04 +00001780
Heiko Schocher221a5062006-05-02 07:51:46 +02001781pleb2_config : unconfig
1782 @./mkconfig $(@:_config=) arm pxa pleb2
1783
wdenk88e72a32003-06-19 23:04:19 +00001784logodl_config : unconfig
1785 @./mkconfig $(@:_config=) arm pxa logodl
1786
Wolfgang Denk4646d2a2006-05-30 15:56:48 +02001787pdnb3_config : unconfig
1788 @./mkconfig $(@:_config=) arm ixp pdnb3 prodrive
1789
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +02001790pxa255_idp_config: unconfig
1791 @./mkconfig $(@:_config=) arm pxa pxa255_idp
1792
wdenkb02744a2003-04-05 00:53:31 +00001793wepep250_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001794 @./mkconfig $(@:_config=) arm pxa wepep250
wdenkb02744a2003-04-05 00:53:31 +00001795
wdenkfa89d7c2004-09-28 16:44:41 +00001796xaeniax_config : unconfig
1797 @./mkconfig $(@:_config=) arm pxa xaeniax
1798
wdenkc12081a2004-03-23 20:18:25 +00001799xm250_config : unconfig
1800 @./mkconfig $(@:_config=) arm pxa xm250
1801
wdenk51108172004-06-09 15:37:23 +00001802xsengine_config : unconfig
1803 @./mkconfig $(@:_config=) arm pxa xsengine
1804
Markus Klotzbücher21e69a02006-02-07 20:04:48 +01001805zylonite_config :
1806 @./mkconfig $(@:_config=) arm pxa zylonite
1807
wdenkf8062712005-01-09 23:16:25 +00001808#########################################################################
1809## ARM1136 Systems
1810#########################################################################
1811omap2420h4_config : unconfig
1812 @./mkconfig $(@:_config=) arm arm1136 omap2420h4
1813
wdenk591dda52002-11-18 00:14:45 +00001814#========================================================================
1815# i386
1816#========================================================================
1817#########################################################################
wdenk1fe2c702003-03-06 21:55:29 +00001818## AMD SC520 CDP
wdenk591dda52002-11-18 00:14:45 +00001819#########################################################################
1820sc520_cdp_config : unconfig
1821 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
1822
wdenkabda5ca2003-05-31 18:35:21 +00001823sc520_spunk_config : unconfig
1824 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1825
1826sc520_spunk_rel_config : unconfig
1827 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1828
wdenk4a5c8a72003-03-06 00:02:04 +00001829#========================================================================
1830# MIPS
1831#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00001832#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001833## MIPS32 4Kc
1834#########################################################################
1835
wdenk5d841732003-08-17 18:55:18 +00001836xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1837
1838incaip_100MHz_config \
1839incaip_133MHz_config \
1840incaip_150MHz_config \
1841incaip_config: unconfig
1842 @ >include/config.h
1843 @[ -z "$(findstring _100MHz,$@)" ] || \
1844 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1845 echo "... with 100MHz system clock" ; \
1846 }
1847 @[ -z "$(findstring _133MHz,$@)" ] || \
1848 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1849 echo "... with 133MHz system clock" ; \
1850 }
1851 @[ -z "$(findstring _150MHz,$@)" ] || \
1852 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1853 echo "... with 150MHz system clock" ; \
1854 }
1855 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1856
wdenk5401de42004-02-07 01:27:10 +00001857tb0229_config: unconfig
1858 @./mkconfig $(@:_config=) mips mips tb0229
1859
wdenk5d841732003-08-17 18:55:18 +00001860#########################################################################
wdenkcd914452004-05-29 16:53:29 +00001861## MIPS32 AU1X00
1862#########################################################################
1863dbau1000_config : unconfig
1864 @ >include/config.h
1865 @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1866 @./mkconfig -a dbau1x00 mips mips dbau1x00
1867
1868dbau1100_config : unconfig
1869 @ >include/config.h
1870 @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1871 @./mkconfig -a dbau1x00 mips mips dbau1x00
1872
1873dbau1500_config : unconfig
1874 @ >include/config.h
1875 @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1876 @./mkconfig -a dbau1x00 mips mips dbau1x00
1877
wdenk96c7a8c2005-01-09 22:28:56 +00001878dbau1550_config : unconfig
1879 @ >include/config.h
1880 @echo "#define CONFIG_DBAU1550 1" >>include/config.h
1881 @./mkconfig -a dbau1x00 mips mips dbau1x00
1882
1883dbau1550_el_config : unconfig
1884 @ >include/config.h
1885 @echo "#define CONFIG_DBAU1550 1" >>include/config.h
Wolfgang Denk09a4ebb2005-08-08 23:06:32 +02001886 @./mkconfig -a dbau1x00 mips mips dbau1x00
wdenk96c7a8c2005-01-09 22:28:56 +00001887
Wolfgang Denk0cbaf642005-09-25 00:53:22 +02001888pb1000_config : unconfig
1889 @ >include/config.h
1890 @echo "#define CONFIG_PB1000 1" >>include/config.h
1891 @./mkconfig -a pb1x00 mips mips pb1x00
1892
wdenkcd914452004-05-29 16:53:29 +00001893#########################################################################
wdenk5d841732003-08-17 18:55:18 +00001894## MIPS64 5Kc
1895#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001896
wdenkb02744a2003-04-05 00:53:31 +00001897purple_config : unconfig
1898 @./mkconfig $(@:_config=) mips mips purple
wdenk4a5c8a72003-03-06 00:02:04 +00001899
wdenk60164a82003-10-08 23:26:14 +00001900#========================================================================
1901# Nios
1902#========================================================================
1903#########################################################################
1904## Nios32
1905#########################################################################
1906
wdenk3be717f2004-01-03 19:43:48 +00001907DK1C20_safe_32_config \
1908DK1C20_standard_32_config \
wdenk60164a82003-10-08 23:26:14 +00001909DK1C20_config: unconfig
wdenk3be717f2004-01-03 19:43:48 +00001910 @ >include/config.h
1911 @[ -z "$(findstring _safe_32,$@)" ] || \
1912 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1913 echo "... NIOS 'safe_32' configuration" ; \
1914 }
1915 @[ -z "$(findstring _standard_32,$@)" ] || \
1916 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1917 echo "... NIOS 'standard_32' configuration" ; \
1918 }
1919 @[ -z "$(findstring DK1C20_config,$@)" ] || \
1920 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1921 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1922 }
1923 @./mkconfig -a DK1C20 nios nios dk1c20 altera
1924
1925DK1S10_safe_32_config \
1926DK1S10_standard_32_config \
wdenkc0bc2e12004-02-09 23:12:24 +00001927DK1S10_mtx_ldk_20_config \
wdenk3be717f2004-01-03 19:43:48 +00001928DK1S10_config: unconfig
1929 @ >include/config.h
1930 @[ -z "$(findstring _safe_32,$@)" ] || \
1931 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1932 echo "... NIOS 'safe_32' configuration" ; \
1933 }
1934 @[ -z "$(findstring _standard_32,$@)" ] || \
1935 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1936 echo "... NIOS 'standard_32' configuration" ; \
1937 }
wdenkc0bc2e12004-02-09 23:12:24 +00001938 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
1939 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
1940 echo "... NIOS 'mtx_ldk_20' configuration" ; \
1941 }
wdenk3be717f2004-01-03 19:43:48 +00001942 @[ -z "$(findstring DK1S10_config,$@)" ] || \
1943 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1944 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1945 }
1946 @./mkconfig -a DK1S10 nios nios dk1s10 altera
wdenk60164a82003-10-08 23:26:14 +00001947
wdenke28cf632004-03-14 15:20:55 +00001948ADNPESC1_DNPEVA2_base_32_config \
1949ADNPESC1_base_32_config \
1950ADNPESC1_config: unconfig
1951 @ >include/config.h
1952 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001953 { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1954 echo "... DNP/EVA2 configuration" ; \
1955 }
wdenke28cf632004-03-14 15:20:55 +00001956 @[ -z "$(findstring _base_32,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001957 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1958 echo "... NIOS 'base_32' configuration" ; \
1959 }
wdenke28cf632004-03-14 15:20:55 +00001960 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001961 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1962 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1963 }
wdenke28cf632004-03-14 15:20:55 +00001964 @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1965
wdenkef3386f2004-10-10 21:27:30 +00001966#########################################################################
1967## Nios-II
1968#########################################################################
1969
Scott McNutt2ca00852006-06-08 13:37:39 -04001970EP1C20_config : unconfig
1971 @./mkconfig EP1C20 nios2 nios2 ep1c20 altera
1972
1973EP1S10_config : unconfig
1974 @./mkconfig EP1S10 nios2 nios2 ep1s10 altera
1975
1976EP1S40_config : unconfig
1977 @./mkconfig EP1S40 nios2 nios2 ep1s40 altera
1978
wdenkef3386f2004-10-10 21:27:30 +00001979PK1C20_config : unconfig
1980 @./mkconfig PK1C20 nios2 nios2 pk1c20 psyent
1981
1982PCI5441_config : unconfig
1983 @./mkconfig PCI5441 nios2 nios2 pci5441 psyent
wdenk12490652004-04-18 21:13:41 +00001984
1985#========================================================================
1986# MicroBlaze
1987#========================================================================
1988#########################################################################
1989## Microblaze
1990#########################################################################
1991suzaku_config: unconfig
1992 @ >include/config.h
1993 @echo "#define CONFIG_SUZAKU 1" >> include/config.h
1994 @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk60164a82003-10-08 23:26:14 +00001995
Wolfgang Denk46d2b522006-03-12 02:10:00 +01001996#########################################################################
1997## Blackfin
1998#########################################################################
1999ezkit533_config : unconfig
2000 @./mkconfig $(@:_config=) blackfin bf533 ezkit533
2001
2002stamp_config : unconfig
2003 @./mkconfig $(@:_config=) blackfin bf533 stamp
2004
2005dspstamp_config : unconfig
2006 @./mkconfig $(@:_config=) blackfin bf533 dsp_stamp
2007
2008#########################################################################
wdenkb02744a2003-04-05 00:53:31 +00002009#########################################################################
2010#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002011
2012clean:
2013 find . -type f \
2014 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2015 -o -name '*.o' -o -name '*.a' \) -print \
2016 | xargs rm -f
wdenk8dba0502003-03-31 16:34:49 +00002017 rm -f examples/hello_world examples/timer \
wdenkb02744a2003-04-05 00:53:31 +00002018 examples/eepro100_eeprom examples/sched \
wdenkeb8f2fb2005-05-09 10:17:32 +00002019 examples/mem_to_mem_idma2intr examples/82559_eeprom \
Wolfgang Denk46d2b522006-03-12 02:10:00 +01002020 examples/smc91111_eeprom \
wdenkeb8f2fb2005-05-09 10:17:32 +00002021 examples/test_burst
wdenk7ebf7442002-11-02 23:17:16 +00002022 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
wdenka0ebde52004-09-08 22:03:11 +00002023 rm -f tools/mpc86x_clk tools/ncb
wdenk7ebf7442002-11-02 23:17:16 +00002024 rm -f tools/easylogo/easylogo tools/bmp_logo
2025 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
wdenk9dfa8d12002-12-08 09:53:23 +00002026 rm -f tools/env/fw_printenv tools/env/fw_setenv
wdenk0893c472003-05-20 14:25:27 +00002027 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
Wolfgang Denk1ad61692006-03-12 00:04:20 +01002028 rm -f board/netstar/eeprom board/netstar/crcek
Wolfgang Denk2bad8682006-03-12 02:55:22 +01002029 rm -f board/netstar/*.srec board/netstar/*.bin
Wolfgang Denkfc27b5b2005-08-13 18:36:17 +02002030 rm -f board/trab/trab_fkt board/voiceblue/eeprom
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02002031 rm -f board/integratorap/u-boot.lds board/integratorcp/u-boot.lds
Marian Balakowicz175f5502006-06-30 18:23:06 +02002032 rm -f include/bmp_logo.h
wdenk7ebf7442002-11-02 23:17:16 +00002033
2034clobber: clean
wdenkaeba06f2004-06-09 17:34:58 +00002035 find . -type f \( -name .depend \
2036 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2037 -print0 \
2038 | xargs -0 rm -f
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +01002039 rm -f $(OBJS) *.bak tags TAGS include/version_autogenerated.h
wdenk7ebf7442002-11-02 23:17:16 +00002040 rm -fr *.*~
wdenk68005192005-01-09 21:28:15 +00002041 rm -f u-boot u-boot.map u-boot.hex $(ALL)
wdenk9dfa8d12002-12-08 09:53:23 +00002042 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
wdenkb02744a2003-04-05 00:53:31 +00002043 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
wdenkbb2d9272003-06-25 22:26:29 +00002044 rm -f include/asm/proc include/asm/arch include/asm
wdenk7ebf7442002-11-02 23:17:16 +00002045
2046mrproper \
2047distclean: clobber unconfig
2048
2049backup:
2050 F=`basename $(TOPDIR)` ; cd .. ; \
2051 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2052
2053#########################################################################