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