1# 2# (C) Copyright 2000, 2001, 2002 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# See file CREDITS for list of people who contributed to this 6# project. 7# 8# This program is free software; you can redistribute it and/or 9# modify it under the terms of the GNU General Public License as 10# published by the Free Software Foundation; either version 2 of 11# the License, or (at your option) any later version. 12# 13# This program is distributed in the hope that it will be useful, 14# but WITHOUT ANY WARRANTY; without even the implied warranty of 15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16# GNU General Public License for more details. 17# 18# You should have received a copy of the GNU General Public License 19# along with this program; if not, write to the Free Software 20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21# MA 02111-1307 USA 22# 23 24HOSTARCH := $(shell uname -m | \ 25 sed -e s/i.86/i386/ \ 26 -e s/sun4u/sparc64/ \ 27 -e s/arm.*/arm/ \ 28 -e s/sa110/arm/ \ 29 -e s/powerpc/ppc/ \ 30 -e s/macppc/ppc/) 31 32HOSTOS := $(shell uname -s | tr A-Z a-z | \ 33 sed -e 's/\(cygwin\).*/cygwin/') 34 35export HOSTARCH 36 37# Deal with colliding definitions from tcsh etc. 38VENDOR= 39 40######################################################################### 41 42TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) 43export TOPDIR 44 45ifeq (include/config.mk,$(wildcard include/config.mk)) 46# load ARCH, BOARD, and CPU configuration 47include include/config.mk 48export ARCH CPU BOARD VENDOR 49# load other configuration 50include $(TOPDIR)/config.mk 51 52ifndef CROSS_COMPILE 53ifeq ($(HOSTARCH),ppc) 54CROSS_COMPILE = 55else 56ifeq ($(ARCH),ppc) 57CROSS_COMPILE = ppc_8xx- 58endif 59ifeq ($(ARCH),arm) 60CROSS_COMPILE = arm-linux- 61endif 62ifeq ($(ARCH),i386) 63ifeq ($(HOSTARCH),i386) 64CROSS_COMPILE = 65else 66CROSS_COMPILE = i386-linux- 67endif 68endif 69ifeq ($(ARCH),mips) 70CROSS_COMPILE = mips_4KC- 71endif 72endif 73endif 74 75export CROSS_COMPILE 76 77# The "tools" are needed early, so put this first 78SUBDIRS = tools \ 79 lib_generic \ 80 lib_$(ARCH) \ 81 cpu/$(CPU) \ 82 board/$(BOARDDIR) \ 83 common \ 84 disk \ 85 fs \ 86 net \ 87 rtc \ 88 dtt \ 89 drivers \ 90 post \ 91 post/cpu \ 92 examples 93 94######################################################################### 95# U-Boot objects....order is important (i.e. start must be first) 96 97OBJS = cpu/$(CPU)/start.o 98ifeq ($(CPU),i386) 99OBJS += cpu/$(CPU)/start16.o 100OBJS += cpu/$(CPU)/reset.o 101endif 102ifeq ($(CPU),ppc4xx) 103OBJS += cpu/$(CPU)/resetvec.o 104endif 105 106LIBS = board/$(BOARDDIR)/lib$(BOARD).a 107LIBS += cpu/$(CPU)/lib$(CPU).a 108LIBS += lib_$(ARCH)/lib$(ARCH).a 109LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a fs/fat/libfat.a 110LIBS += net/libnet.a 111LIBS += disk/libdisk.a 112LIBS += rtc/librtc.a 113LIBS += dtt/libdtt.a 114LIBS += drivers/libdrivers.a 115LIBS += post/libpost.a post/cpu/libcpu.a 116LIBS += common/libcommon.a 117LIBS += lib_generic/libgeneric.a 118 119######################################################################### 120######################################################################### 121 122ALL = u-boot.srec u-boot.bin System.map 123 124all: $(ALL) 125 126u-boot.srec: u-boot 127 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ 128 129u-boot.bin: u-boot 130 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ 131 132u-boot.img: u-boot.bin 133 ./tools/mkimage -A $(ARCH) -T firmware -C none \ 134 -a $(TEXT_BASE) -e 0 \ 135 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \ 136 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ 137 -d $< $@ 138 139u-boot.dis: u-boot 140 $(OBJDUMP) -d $< > $@ 141 142u-boot: depend subdirs $(OBJS) $(LIBS) $(LDSCRIPT) 143 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ 144 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \ 145 --start-group $(LIBS) --end-group \ 146 -Map u-boot.map -o u-boot 147 148subdirs: 149 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done 150 151gdbtools: 152 $(MAKE) -C tools/gdb || exit 1 153 154depend dep: 155 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done 156 157tags: 158 ctags -w `find $(SUBDIRS) include \ 159 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` 160 161etags: 162 etags -a `find $(SUBDIRS) include \ 163 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` 164 165System.map: u-boot 166 @$(NM) $< | \ 167 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ 168 sort > System.map 169 170######################################################################### 171else 172all install u-boot u-boot.srec depend dep: 173 @echo "System not configured - see README" >&2 174 @ exit 1 175endif 176 177######################################################################### 178 179unconfig: 180 rm -f include/config.h include/config.mk 181 182#======================================================================== 183# PowerPC 184#======================================================================== 185 186######################################################################### 187## MPC5xx Systems 188######################################################################### 189 190cmi_mpc5xx_config: unconfig 191 @./mkconfig $(@:_config=) ppc mpc5xx cmi 192 193######################################################################### 194## MPC5xxx Systems 195######################################################################### 196IceCube_5200_config \ 197IceCube_5100_config: unconfig 198 @ >include/config.h 199 @[ -z "$(findstring _5200,$@)" ] || \ 200 { echo "#define CONFIG_MPC5200" >>include/config.h ; \ 201 echo "... with MPC5200 processor" ; \ 202 } 203 @[ -z "$(findstring _5100,$@)" ] || \ 204 { echo "#define CONFIG_MGT5100" >>include/config.h ; \ 205 echo "... with MGT5100 processor" ; \ 206 } 207 @./mkconfig -a IceCube ppc mpc5xxx icecube 208 209######################################################################### 210## MPC8xx Systems 211######################################################################### 212 213AdderII_config: unconfig 214 @./mkconfig $(@:_config=) ppc mpc8xx adderII 215 216ADS860_config: unconfig 217 @./mkconfig $(@:_config=) ppc mpc8xx fads 218 219AMX860_config : unconfig 220 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel 221 222c2mon_config: unconfig 223 @./mkconfig $(@:_config=) ppc mpc8xx c2mon 224 225CCM_config: unconfig 226 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens 227 228cogent_mpc8xx_config: unconfig 229 @./mkconfig $(@:_config=) ppc mpc8xx cogent 230 231ELPT860_config: unconfig 232 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX 233 234ESTEEM192E_config: unconfig 235 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e 236 237ETX094_config : unconfig 238 @./mkconfig $(@:_config=) ppc mpc8xx etx094 239 240FADS823_config \ 241FADS850SAR_config \ 242MPC86xADS_config \ 243FADS860T_config: unconfig 244 @./mkconfig $(@:_config=) ppc mpc8xx fads 245 246FLAGADM_config: unconfig 247 @./mkconfig $(@:_config=) ppc mpc8xx flagadm 248 249xtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) 250 251GEN860T_SC_config \ 252GEN860T_config: unconfig 253 @ >include/config.h 254 @[ -z "$(findstring _SC,$@)" ] || \ 255 { echo "#define CONFIG_SC" >>include/config.h ; \ 256 echo "With reduced H/W feature set (SC)..." ; \ 257 } 258 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t 259 260GENIETV_config: unconfig 261 @./mkconfig $(@:_config=) ppc mpc8xx genietv 262 263GTH_config: unconfig 264 @./mkconfig $(@:_config=) ppc mpc8xx gth 265 266hermes_config : unconfig 267 @./mkconfig $(@:_config=) ppc mpc8xx hermes 268 269IAD210_config: unconfig 270 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens 271 272xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1)) 273 274ICU862_100MHz_config \ 275ICU862_config: unconfig 276 @ >include/config.h 277 @[ -z "$(findstring _100MHz,$@)" ] || \ 278 { echo "#define CONFIG_100MHz" >>include/config.h ; \ 279 echo "... with 100MHz system clock" ; \ 280 } 281 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862 282 283IP860_config : unconfig 284 @./mkconfig $(@:_config=) ppc mpc8xx ip860 285 286IVML24_256_config \ 287IVML24_128_config \ 288IVML24_config: unconfig 289 @ >include/config.h 290 @[ -z "$(findstring IVML24_config,$@)" ] || \ 291 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \ 292 } 293 @[ -z "$(findstring IVML24_128_config,$@)" ] || \ 294 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \ 295 } 296 @[ -z "$(findstring IVML24_256_config,$@)" ] || \ 297 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \ 298 } 299 @./mkconfig -a IVML24 ppc mpc8xx ivm 300 301IVMS8_256_config \ 302IVMS8_128_config \ 303IVMS8_config: unconfig 304 @ >include/config.h 305 @[ -z "$(findstring IVMS8_config,$@)" ] || \ 306 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \ 307 } 308 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ 309 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \ 310 } 311 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ 312 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \ 313 } 314 @./mkconfig -a IVMS8 ppc mpc8xx ivm 315 316KUP4K_config : unconfig 317 @./mkconfig $(@:_config=) ppc mpc8xx kup4k 318 319LANTEC_config : unconfig 320 @./mkconfig $(@:_config=) ppc mpc8xx lantec 321 322lwmon_config: unconfig 323 @./mkconfig $(@:_config=) ppc mpc8xx lwmon 324 325MBX_config \ 326MBX860T_config: unconfig 327 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx 328 329MHPC_config: unconfig 330 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec 331 332MVS1_config : unconfig 333 @./mkconfig $(@:_config=) ppc mpc8xx mvs1 334 335xtract_NETVIA = $(subst _V2,,$(subst _config,,$1)) 336 337NETVIA_V2_config \ 338NETVIA_config: unconfig 339 @ >include/config.h 340 @[ -z "$(findstring NETVIA_config,$@)" ] || \ 341 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \ 342 echo "... Version 1" ; \ 343 } 344 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \ 345 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \ 346 echo "... Version 2" ; \ 347 } 348 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia 349 350NX823_config: unconfig 351 @./mkconfig $(@:_config=) ppc mpc8xx nx823 352 353pcu_e_config: unconfig 354 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens 355 356R360MPI_config: unconfig 357 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi 358 359RBC823_config: unconfig 360 @./mkconfig $(@:_config=) ppc mpc8xx rbc823 361 362RPXClassic_config: unconfig 363 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic 364 365RPXlite_config: unconfig 366 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite 367 368rmu_config: unconfig 369 @./mkconfig $(@:_config=) ppc mpc8xx rmu 370 371RRvision_config: unconfig 372 @./mkconfig $(@:_config=) ppc mpc8xx RRvision 373 374RRvision_LCD_config: unconfig 375 @echo "#define CONFIG_LCD" >include/config.h 376 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h 377 @./mkconfig -a RRvision ppc mpc8xx RRvision 378 379SM850_config : unconfig 380 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx 381 382SPD823TS_config: unconfig 383 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx 384 385svm_sc8xx_config: unconfig 386 @ >include/config.h 387 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx 388 389SXNI855T_config: unconfig 390 @./mkconfig $(@:_config=) ppc mpc8xx sixnet 391 392# EMK MPC8xx based modules 393TOP860_config: unconfig 394 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk 395 396# Play some tricks for configuration selection 397# All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock, 398# but only 855 and 860 boards may come with FEC 399# and 823 boards may have LCD support 400xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _LCD,,$(subst _config,,$1))))) 401 402FPS850L_config \ 403FPS860L_config \ 404NSCU_config \ 405TQM823L_config \ 406TQM823L_66MHz_config \ 407TQM823L_80MHz_config \ 408TQM823L_LCD_config \ 409TQM823L_LCD_66MHz_config \ 410TQM823L_LCD_80MHz_config \ 411TQM850L_config \ 412TQM850L_66MHz_config \ 413TQM850L_80MHz_config \ 414TQM855L_config \ 415TQM855L_66MHz_config \ 416TQM855L_80MHz_config \ 417TQM860L_config \ 418TQM860L_66MHz_config \ 419TQM860L_80MHz_config \ 420TQM862L_config \ 421TQM862L_66MHz_config \ 422TQM862L_80MHz_config \ 423TQM823M_config \ 424TQM823M_66MHz_config \ 425TQM823M_80MHz_config \ 426TQM850M_config \ 427TQM850M_66MHz_config \ 428TQM850M_80MHz_config \ 429TQM855M_config \ 430TQM855M_66MHz_config \ 431TQM855M_80MHz_config \ 432TQM860M_config \ 433TQM860M_66MHz_config \ 434TQM860M_80MHz_config \ 435TQM862M_config \ 436TQM862M_66MHz_config \ 437TQM862M_80MHz_config \ 438TQM862M_100MHz_config: unconfig 439 @ >include/config.h 440 @[ -z "$(findstring _66MHz,$@)" ] || \ 441 { echo "#define CONFIG_66MHz" >>include/config.h ; \ 442 echo "... with 66MHz system clock" ; \ 443 } 444 @[ -z "$(findstring _80MHz,$@)" ] || \ 445 { echo "#define CONFIG_80MHz" >>include/config.h ; \ 446 echo "... with 80MHz system clock" ; \ 447 } 448 @[ -z "$(findstring _100MHz,$@)" ] || \ 449 { echo "#define CONFIG_100MHz" >>include/config.h ; \ 450 echo "... with 100MHz system clock" ; \ 451 } 452 @[ -z "$(findstring _LCD,$@)" ] || \ 453 { echo "#define CONFIG_LCD" >>include/config.h ; \ 454 echo "#define CONFIG_NEC_NL6648BC20" >>include/config.h ; \ 455 echo "... with LCD display" ; \ 456 } 457 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx 458 459TTTech_config: unconfig 460 @echo "#define CONFIG_LCD" >include/config.h 461 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h 462 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx 463 464v37_config: unconfig 465 @echo "#define CONFIG_LCD" >include/config.h 466 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h 467 @./mkconfig $(@:_config=) ppc mpc8xx v37 468 469######################################################################### 470## PPC4xx Systems 471######################################################################### 472 473ADCIOP_config: unconfig 474 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd 475 476AR405_config: unconfig 477 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd 478 479ASH405_config: unconfig 480 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd 481 482BUBINGA405EP_config:unconfig 483 @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep 484 485CANBT_config: unconfig 486 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd 487 488CPCI405_config \ 489CPCI4052_config \ 490CPCI405AB_config: unconfig 491 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd 492 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk 493 494CPCI440_config: unconfig 495 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd 496 497CPCIISER4_config: unconfig 498 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd 499 500CRAYL1_config:unconfig 501 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray 502 503DASA_SIM_config: unconfig 504 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd 505 506DU405_config: unconfig 507 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd 508 509EBONY_config:unconfig 510 @./mkconfig $(@:_config=) ppc ppc4xx ebony 511 512ERIC_config:unconfig 513 @./mkconfig $(@:_config=) ppc ppc4xx eric 514 515EXBITGEN_config:unconfig 516 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen 517 518MIP405_config:unconfig 519 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl 520 521MIP405T_config:unconfig 522 @echo "#define CONFIG_MIP405T" >include/config.h 523 @echo "Enable subset config for MIP405T" 524 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl 525 526ML2_config:unconfig 527 @./mkconfig $(@:_config=) ppc ppc4xx ml2 528 529OCRTC_config \ 530ORSG_config: unconfig 531 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd 532 533PCI405_config: unconfig 534 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd 535 536PIP405_config:unconfig 537 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl 538 539PMC405_config: unconfig 540 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd 541 542W7OLMC_config \ 543W7OLMG_config: unconfig 544 @./mkconfig $(@:_config=) ppc ppc4xx w7o 545 546WALNUT405_config:unconfig 547 @./mkconfig $(@:_config=) ppc ppc4xx walnut405 548 549######################################################################### 550## MPC824x Systems 551######################################################################### 552xtract_82xx = $(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))) 553 554A3000_config: unconfig 555 @./mkconfig $(@:_config=) ppc mpc824x a3000 556 557BMW_config: unconfig 558 @./mkconfig $(@:_config=) ppc mpc824x bmw 559 560CPC45_config \ 561CPC45_ROMBOOT_config: unconfig 562 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45 563 @cd ./include ; \ 564 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 565 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 566 echo "... booting from 8-bit flash" ; \ 567 else \ 568 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 569 echo "... booting from 64-bit flash" ; \ 570 fi; \ 571 echo "export CONFIG_BOOT_ROM" >> config.mk; 572 573CU824_config: unconfig 574 @./mkconfig $(@:_config=) ppc mpc824x cu824 575 576MOUSSE_config: unconfig 577 @./mkconfig $(@:_config=) ppc mpc824x mousse 578 579MUSENKI_config: unconfig 580 @./mkconfig $(@:_config=) ppc mpc824x musenki 581 582OXC_config: unconfig 583 @./mkconfig $(@:_config=) ppc mpc824x oxc 584 585PN62_config: unconfig 586 @./mkconfig $(@:_config=) ppc mpc824x pn62 587 588Sandpoint8240_config: unconfig 589 @./mkconfig $(@:_config=) ppc mpc824x sandpoint 590 591Sandpoint8245_config: unconfig 592 @./mkconfig $(@:_config=) ppc mpc824x sandpoint 593 594SL8245_config: unconfig 595 @./mkconfig $(@:_config=) ppc mpc824x sl8245 596 597utx8245_config: unconfig 598 @./mkconfig $(@:_config=) ppc mpc824x utx8245 599 600######################################################################### 601## MPC8260 Systems 602######################################################################### 603 604cogent_mpc8260_config: unconfig 605 @./mkconfig $(@:_config=) ppc mpc8260 cogent 606 607CPU86_config \ 608CPU86_ROMBOOT_config: unconfig 609 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86 610 @cd ./include ; \ 611 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 612 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 613 echo "... booting from 8-bit flash" ; \ 614 else \ 615 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 616 echo "... booting from 64-bit flash" ; \ 617 fi; \ 618 echo "export CONFIG_BOOT_ROM" >> config.mk; 619 620ep8260_config: unconfig 621 @./mkconfig $(@:_config=) ppc mpc8260 ep8260 622 623gw8260_config: unconfig 624 @./mkconfig $(@:_config=) ppc mpc8260 gw8260 625 626hymod_config: unconfig 627 @./mkconfig $(@:_config=) ppc mpc8260 hymod 628 629IPHASE4539_config: unconfig 630 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539 631 632MPC8260ADS_config: unconfig 633 @./mkconfig $(@:_config=) ppc mpc8260 mpc8260ads 634 635MPC8266ADS_config: unconfig 636 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads 637 638PM825_config \ 639PM825_ROMBOOT_config: unconfig 640 @echo "#define CONFIG_PCI" >include/config.h 641 @./mkconfig -a PM826 ppc mpc8260 pm826 642 @cd ./include ; \ 643 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 644 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 645 echo "... booting from 8-bit flash" ; \ 646 else \ 647 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 648 echo "... booting from 64-bit flash" ; \ 649 fi; \ 650 echo "export CONFIG_BOOT_ROM" >> config.mk; \ 651 652PM826_config \ 653PM826_ROMBOOT_config: unconfig 654 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826 655 @cd ./include ; \ 656 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 657 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 658 echo "... booting from 8-bit flash" ; \ 659 else \ 660 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 661 echo "... booting from 64-bit flash" ; \ 662 fi; \ 663 echo "export CONFIG_BOOT_ROM" >> config.mk; \ 664 665ppmc8260_config: unconfig 666 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260 667 668RPXsuper_config: unconfig 669 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper 670 671rsdproto_config: unconfig 672 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto 673 674sacsng_config: unconfig 675 @./mkconfig $(@:_config=) ppc mpc8260 sacsng 676 677sbc8260_config: unconfig 678 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260 679 680SCM_config: unconfig 681 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens 682 683TQM8255_AA_config \ 684TQM8260_AA_config \ 685TQM8260_AB_config \ 686TQM8260_AC_config \ 687TQM8260_AD_config \ 688TQM8260_AE_config \ 689TQM8260_AF_config \ 690TQM8260_AG_config \ 691TQM8260_AH_config \ 692TQM8265_AA_config: unconfig 693 @case "$@" in \ 694 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \ 695 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \ 696 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ 697 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ 698 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ 699 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \ 700 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ 701 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \ 702 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \ 703 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \ 704 esac; \ 705 >include/config.h ; \ 706 if [ "$${CTYPE}" != "MPC8260" ] ; then \ 707 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \ 708 fi; \ 709 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \ 710 echo "... with $${CFREQ}MHz system clock" ; \ 711 if [ "$${CACHE}" == "yes" ] ; then \ 712 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \ 713 echo "... with L2 Cache support" ; \ 714 else \ 715 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \ 716 echo "... without L2 Cache support" ; \ 717 fi; \ 718 if [ "$${BMODE}" == "60x" ] ; then \ 719 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \ 720 echo "... with 60x Bus Mode" ; \ 721 else \ 722 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \ 723 echo "... without 60x Bus Mode" ; \ 724 fi 725 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260 726 727atc_config: unconfig 728 @./mkconfig $(@:_config=) ppc mpc8260 atc 729 730######################################################################### 731## 74xx/7xx Systems 732######################################################################### 733 734AmigaOneG3SE_config: unconfig 735 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI 736 737EVB64260_config \ 738EVB64260_750CX_config: unconfig 739 @./mkconfig EVB64260 ppc 74xx_7xx evb64260 740 741ZUMA_config: unconfig 742 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260 743 744PCIPPC2_config \ 745PCIPPC6_config: unconfig 746 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2 747 748BAB7xx_config: unconfig 749 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec 750 751ELPPC_config: unconfig 752 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec 753 754#======================================================================== 755# ARM 756#======================================================================== 757######################################################################### 758## StrongARM Systems 759######################################################################### 760 761at91rm9200dk_config : unconfig 762 @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk 763 764lart_config : unconfig 765 @./mkconfig $(@:_config=) arm sa1100 lart 766 767dnp1110_config : unconfig 768 @./mkconfig $(@:_config=) arm sa1100 dnp1110 769 770shannon_config : unconfig 771 @./mkconfig $(@:_config=) arm sa1100 shannon 772 773######################################################################### 774## ARM92xT Systems 775######################################################################### 776 777xtract_trab = $(subst _big_flash,,$(subst _config,,$1)) 778 779omap1510inn_config : unconfig 780 @./mkconfig $(@:_config=) arm arm925t omap1510inn 781 782omap1610inn_config : unconfig 783 @./mkconfig $(@:_config=) arm arm926ejs omap1610inn 784 785smdk2400_config : unconfig 786 @./mkconfig $(@:_config=) arm arm920t smdk2400 787 788smdk2410_config : unconfig 789 @./mkconfig $(@:_config=) arm arm920t smdk2410 790 791trab_config \ 792trab_big_flash_config: unconfig 793 @ >include/config.h 794 @[ -z "$(findstring _big_flash,$@)" ] || \ 795 { echo "#define CONFIG_BIG_FLASH" >>include/config.h ; \ 796 echo "... with big flash support" ; \ 797 } 798 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab 799 800VCMA9_config : unconfig 801 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl 802 803######################################################################### 804## ARM720T Systems 805######################################################################### 806 807impa7_config : unconfig 808 @./mkconfig $(@:_config=) arm arm720t impa7 809 810ep7312_config : unconfig 811 @./mkconfig $(@:_config=) arm arm720t ep7312 812 813######################################################################### 814## XScale Systems 815######################################################################### 816 817cradle_config : unconfig 818 @./mkconfig $(@:_config=) arm pxa cradle 819 820csb226_config : unconfig 821 @./mkconfig $(@:_config=) arm pxa csb226 822 823innokom_config : unconfig 824 @./mkconfig $(@:_config=) arm pxa innokom 825 826lubbock_config : unconfig 827 @./mkconfig $(@:_config=) arm pxa lubbock 828 829logodl_config : unconfig 830 @./mkconfig $(@:_config=) arm pxa logodl 831 832wepep250_config : unconfig 833 @./mkconfig $(@:_config=) arm pxa wepep250 834 835#======================================================================== 836# i386 837#======================================================================== 838######################################################################### 839## AMD SC520 CDP 840######################################################################### 841sc520_cdp_config : unconfig 842 @./mkconfig $(@:_config=) i386 i386 sc520_cdp 843 844sc520_spunk_config : unconfig 845 @./mkconfig $(@:_config=) i386 i386 sc520_spunk 846 847sc520_spunk_rel_config : unconfig 848 @./mkconfig $(@:_config=) i386 i386 sc520_spunk 849 850#======================================================================== 851# MIPS 852#======================================================================== 853######################################################################### 854## MIPS32 4Kc 855######################################################################### 856 857xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1)))) 858 859incaip_100MHz_config \ 860incaip_133MHz_config \ 861incaip_150MHz_config \ 862incaip_config: unconfig 863 @ >include/config.h 864 @[ -z "$(findstring _100MHz,$@)" ] || \ 865 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \ 866 echo "... with 100MHz system clock" ; \ 867 } 868 @[ -z "$(findstring _133MHz,$@)" ] || \ 869 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \ 870 echo "... with 133MHz system clock" ; \ 871 } 872 @[ -z "$(findstring _150MHz,$@)" ] || \ 873 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \ 874 echo "... with 150MHz system clock" ; \ 875 } 876 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip 877 878######################################################################### 879## MIPS64 5Kc 880######################################################################### 881 882purple_config : unconfig 883 @./mkconfig $(@:_config=) mips mips purple 884 885######################################################################### 886######################################################################### 887 888clean: 889 find . -type f \ 890 \( -name 'core' -o -name '*.bak' -o -name '*~' \ 891 -o -name '*.o' -o -name '*.a' \) -print \ 892 | xargs rm -f 893 rm -f examples/hello_world examples/timer \ 894 examples/eepro100_eeprom examples/sched \ 895 examples/mem_to_mem_idma2intr examples/82559_eeprom 896 897 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr 898 rm -f tools/easylogo/easylogo tools/bmp_logo 899 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend 900 rm -f tools/env/fw_printenv tools/env/fw_setenv 901 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image 902 903clobber: clean 904 find . -type f \ 905 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \ 906 -print \ 907 | xargs rm -f 908 rm -f $(OBJS) *.bak tags TAGS 909 rm -fr *.*~ 910 rm -f u-boot u-boot.map $(ALL) 911 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c 912 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c 913 rm -f include/asm/proc include/asm/arch include/asm 914 915mrproper \ 916distclean: clobber unconfig 917 918backup: 919 F=`basename $(TOPDIR)` ; cd .. ; \ 920 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F 921 922######################################################################### 923