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