17ebf7443Swdenk# 2881a87ecSWolfgang Denk# (C) Copyright 2000-2006 37ebf7443Swdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 47ebf7443Swdenk# 57ebf7443Swdenk# See file CREDITS for list of people who contributed to this 67ebf7443Swdenk# project. 77ebf7443Swdenk# 87ebf7443Swdenk# This program is free software; you can redistribute it and/or 97ebf7443Swdenk# modify it under the terms of the GNU General Public License as 1045a212c4SWolfgang Denk# published by the Free Software Foundatio; either version 2 of 117ebf7443Swdenk# the License, or (at your option) any later version. 127ebf7443Swdenk# 137ebf7443Swdenk# This program is distributed in the hope that it will be useful, 147ebf7443Swdenk# but WITHOUT ANY WARRANTY; without even the implied warranty of 157ebf7443Swdenk# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 167ebf7443Swdenk# GNU General Public License for more details. 177ebf7443Swdenk# 187ebf7443Swdenk# You should have received a copy of the GNU General Public License 197ebf7443Swdenk# along with this program; if not, write to the Free Software 207ebf7443Swdenk# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 217ebf7443Swdenk# MA 02111-1307 USA 227ebf7443Swdenk# 237ebf7443Swdenk 24881a87ecSWolfgang DenkVERSION = 1 25881a87ecSWolfgang DenkPATCHLEVEL = 1 26881a87ecSWolfgang DenkSUBLEVEL = 4 27881a87ecSWolfgang DenkEXTRAVERSION = 28881a87ecSWolfgang DenkU_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) 29f9328639SMarian BalakowiczVERSION_FILE = $(obj)include/version_autogenerated.h 30881a87ecSWolfgang Denk 317ebf7443SwdenkHOSTARCH := $(shell uname -m | \ 327ebf7443Swdenk sed -e s/i.86/i386/ \ 337ebf7443Swdenk -e s/sun4u/sparc64/ \ 347ebf7443Swdenk -e s/arm.*/arm/ \ 357ebf7443Swdenk -e s/sa110/arm/ \ 367ebf7443Swdenk -e s/powerpc/ppc/ \ 377ebf7443Swdenk -e s/macppc/ppc/) 387ebf7443Swdenk 39f9d77ed3SWolfgang DenkHOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ 407ebf7443Swdenk sed -e 's/\(cygwin\).*/cygwin/') 417ebf7443Swdenk 42f9d77ed3SWolfgang Denkexport HOSTARCH HOSTOS 437ebf7443Swdenk 447ebf7443Swdenk# Deal with colliding definitions from tcsh etc. 457ebf7443SwdenkVENDOR= 467ebf7443Swdenk 477ebf7443Swdenk######################################################################### 48f9328639SMarian Balakowicz# 49f9328639SMarian Balakowicz# U-boot build supports producing a object files to the separate external 50f9328639SMarian Balakowicz# directory. Two use cases are supported: 51f9328639SMarian Balakowicz# 52f9328639SMarian Balakowicz# 1) Add O= to the make command line 53f9328639SMarian Balakowicz# 'make O=/tmp/build all' 54f9328639SMarian Balakowicz# 55f9328639SMarian Balakowicz# 2) Set environement variable BUILD_DIR to point to the desired location 56f9328639SMarian Balakowicz# 'export BUILD_DIR=/tmp/build' 57f9328639SMarian Balakowicz# 'make' 58f9328639SMarian Balakowicz# 59f9328639SMarian Balakowicz# The second approach can also be used with a MAKEALL script 60f9328639SMarian Balakowicz# 'export BUILD_DIR=/tmp/build' 61f9328639SMarian Balakowicz# './MAKEALL' 62f9328639SMarian Balakowicz# 63f9328639SMarian Balakowicz# Command line 'O=' setting overrides BUILD_DIR environent variable. 64f9328639SMarian Balakowicz# 65f9328639SMarian Balakowicz# When none of the above methods is used the local build is performed and 66f9328639SMarian Balakowicz# the object files are placed in the source directory. 67f9328639SMarian Balakowicz# 687ebf7443Swdenk 69f9328639SMarian Balakowiczifdef O 70f9328639SMarian Balakowiczifeq ("$(origin O)", "command line") 71f9328639SMarian BalakowiczBUILD_DIR := $(O) 72f9328639SMarian Balakowiczendif 73f9328639SMarian Balakowiczendif 747ebf7443Swdenk 75f9328639SMarian Balakowiczifneq ($(BUILD_DIR),) 76f9328639SMarian Balakowiczsaved-output := $(BUILD_DIR) 774f0645ebSMarian Balakowicz 784f0645ebSMarian Balakowicz# Attempt to create a output directory. 794f0645ebSMarian Balakowicz$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) 804f0645ebSMarian Balakowicz 814f0645ebSMarian Balakowicz# Verify if it was successful. 82f9328639SMarian BalakowiczBUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) 83f9328639SMarian Balakowicz$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) 84f9328639SMarian Balakowiczendif # ifneq ($(BUILD_DIR),) 85f9328639SMarian Balakowicz 86f9328639SMarian BalakowiczOBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) 87f9328639SMarian BalakowiczSRCTREE := $(CURDIR) 88f9328639SMarian BalakowiczTOPDIR := $(SRCTREE) 89f9328639SMarian BalakowiczLNDIR := $(OBJTREE) 90f9328639SMarian Balakowiczexport TOPDIR SRCTREE OBJTREE 91f9328639SMarian Balakowicz 92f9328639SMarian BalakowiczMKCONFIG := $(SRCTREE)/mkconfig 93f9328639SMarian Balakowiczexport MKCONFIG 94f9328639SMarian Balakowicz 95f9328639SMarian Balakowiczifneq ($(OBJTREE),$(SRCTREE)) 96f9328639SMarian BalakowiczREMOTE_BUILD := 1 97f9328639SMarian Balakowiczexport REMOTE_BUILD 98f9328639SMarian Balakowiczendif 99f9328639SMarian Balakowicz 100f9328639SMarian Balakowicz# $(obj) and (src) are defined in config.mk but here in main Makefile 101f9328639SMarian Balakowicz# we also need them before config.mk is included which is the case for 102f9328639SMarian Balakowicz# some targets like unconfig, clean, clobber, distclean, etc. 103f9328639SMarian Balakowiczifneq ($(OBJTREE),$(SRCTREE)) 104f9328639SMarian Balakowiczobj := $(OBJTREE)/ 105f9328639SMarian Balakowiczsrc := $(SRCTREE)/ 106f9328639SMarian Balakowiczelse 107f9328639SMarian Balakowiczobj := 108f9328639SMarian Balakowiczsrc := 109f9328639SMarian Balakowiczendif 110f9328639SMarian Balakowiczexport obj src 111f9328639SMarian Balakowicz 112f9328639SMarian Balakowicz######################################################################### 113f9328639SMarian Balakowicz 114f9328639SMarian Balakowiczifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk)) 115f9328639SMarian Balakowicz 1167ebf7443Swdenk# load ARCH, BOARD, and CPU configuration 117f9328639SMarian Balakowiczinclude $(OBJTREE)/include/config.mk 1181d9f4105Swdenkexport ARCH CPU BOARD VENDOR SOC 119f9328639SMarian Balakowicz 1207ebf7443Swdenkifndef CROSS_COMPILE 1217ebf7443Swdenkifeq ($(HOSTARCH),ppc) 1227ebf7443SwdenkCROSS_COMPILE = 1237ebf7443Swdenkelse 1247ebf7443Swdenkifeq ($(ARCH),ppc) 125f046ccd1SEran LibertyCROSS_COMPILE = powerpc-linux- 1267ebf7443Swdenkendif 1277ebf7443Swdenkifeq ($(ARCH),arm) 128dc7c9a1aSwdenkCROSS_COMPILE = arm-linux- 1297ebf7443Swdenkendif 1302262cfeeSwdenkifeq ($(ARCH),i386) 1317a8e9bedSwdenkifeq ($(HOSTARCH),i386) 1327a8e9bedSwdenkCROSS_COMPILE = 1337a8e9bedSwdenkelse 1347a8e9bedSwdenkCROSS_COMPILE = i386-linux- 1357a8e9bedSwdenkendif 1362262cfeeSwdenkendif 13743d9616cSwdenkifeq ($(ARCH),mips) 13843d9616cSwdenkCROSS_COMPILE = mips_4KC- 13943d9616cSwdenkendif 1404a551709Swdenkifeq ($(ARCH),nios) 1414a551709SwdenkCROSS_COMPILE = nios-elf- 1424a551709Swdenkendif 1435c952cf0Swdenkifeq ($(ARCH),nios2) 1445c952cf0SwdenkCROSS_COMPILE = nios2-elf- 1455c952cf0Swdenkendif 1464e5ca3ebSwdenkifeq ($(ARCH),m68k) 1474e5ca3ebSwdenkCROSS_COMPILE = m68k-elf- 1484e5ca3ebSwdenkendif 149507bbe3eSwdenkifeq ($(ARCH),microblaze) 150507bbe3eSwdenkCROSS_COMPILE = mb- 151507bbe3eSwdenkendif 1520afe519aSWolfgang Denkifeq ($(ARCH),blackfin) 1530afe519aSWolfgang DenkCROSS_COMPILE = bfin-elf- 1540afe519aSWolfgang Denkendif 1557ebf7443Swdenkendif 1567ebf7443Swdenkendif 1577ebf7443Swdenk 1587ebf7443Swdenkexport CROSS_COMPILE 1597ebf7443Swdenk 16092b197f0SWolfgang Denk# load other configuration 16192b197f0SWolfgang Denkinclude $(TOPDIR)/config.mk 16292b197f0SWolfgang Denk 1637ebf7443Swdenk######################################################################### 1647ebf7443Swdenk# U-Boot objects....order is important (i.e. start must be first) 1657ebf7443Swdenk 1667ebf7443SwdenkOBJS = cpu/$(CPU)/start.o 1672262cfeeSwdenkifeq ($(CPU),i386) 1682262cfeeSwdenkOBJS += cpu/$(CPU)/start16.o 1692262cfeeSwdenkOBJS += cpu/$(CPU)/reset.o 1702262cfeeSwdenkendif 1717ebf7443Swdenkifeq ($(CPU),ppc4xx) 1727ebf7443SwdenkOBJS += cpu/$(CPU)/resetvec.o 1737ebf7443Swdenkendif 174f046ccd1SEran Libertyifeq ($(CPU),mpc83xx) 175f046ccd1SEran LibertyOBJS += cpu/$(CPU)/resetvec.o 176f046ccd1SEran Libertyendif 17742d1f039Swdenkifeq ($(CPU),mpc85xx) 17842d1f039SwdenkOBJS += cpu/$(CPU)/resetvec.o 17942d1f039Swdenkendif 1800afe519aSWolfgang Denkifeq ($(CPU),bf533) 1810afe519aSWolfgang DenkOBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o 1820afe519aSWolfgang DenkOBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o 1830afe519aSWolfgang Denkendif 1847ebf7443Swdenk 185f9328639SMarian BalakowiczOBJS := $(addprefix $(obj),$(OBJS)) 186f9328639SMarian Balakowicz 1879fd5e31fSwdenkLIBS = lib_generic/libgeneric.a 1889fd5e31fSwdenkLIBS += board/$(BOARDDIR)/lib$(BOARD).a 1897ebf7443SwdenkLIBS += cpu/$(CPU)/lib$(CPU).a 1901d9f4105Swdenkifdef SOC 1911d9f4105SwdenkLIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a 1921d9f4105Swdenkendif 1937ebf7443SwdenkLIBS += lib_$(ARCH)/lib$(ARCH).a 194518e2e1aSwdenkLIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \ 195c419d1d6Sstroese fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a 1967ebf7443SwdenkLIBS += net/libnet.a 1977ebf7443SwdenkLIBS += disk/libdisk.a 1987ebf7443SwdenkLIBS += rtc/librtc.a 1997ebf7443SwdenkLIBS += dtt/libdtt.a 2007ebf7443SwdenkLIBS += drivers/libdrivers.a 2016db39708SMarian BalakowiczLIBS += drivers/nand/libnand.a 2026db39708SMarian BalakowiczLIBS += drivers/nand_legacy/libnand_legacy.a 2037152b1d0SwdenkLIBS += drivers/sk98lin/libsk98lin.a 2047ebf7443SwdenkLIBS += post/libpost.a post/cpu/libcpu.a 2057ebf7443SwdenkLIBS += common/libcommon.a 206038ccac5SBartlomiej SiekaLIBS += $(BOARDLIBS) 207f9328639SMarian Balakowicz 208f9328639SMarian BalakowiczLIBS := $(addprefix $(obj),$(LIBS)) 2099fd5e31fSwdenk.PHONY : $(LIBS) 210a8c7c708Swdenk 2114f7cb08eSwdenk# Add GCC lib 2121a344f29SwdenkPLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc 2133d3befa7Swdenk 214a8c7c708Swdenk# The "tools" are needed early, so put this first 215a8c7c708Swdenk# Don't include stuff already done in $(LIBS) 216a8c7c708SwdenkSUBDIRS = tools \ 217a8c7c708Swdenk examples \ 218a8c7c708Swdenk post \ 219a8c7c708Swdenk post/cpu 220b028f715Swdenk.PHONY : $(SUBDIRS) 221a8c7c708Swdenk 222887e2ec9SStefan Roeseifeq ($(CONFIG_NAND_U_BOOT),y) 223887e2ec9SStefan RoeseNAND_SPL = nand_spl 224887e2ec9SStefan RoeseU_BOOT_NAND = $(obj)u-boot-nand.bin 225887e2ec9SStefan Roeseendif 226887e2ec9SStefan Roese 227f9328639SMarian Balakowicz__OBJS := $(subst $(obj),,$(OBJS)) 228f9328639SMarian Balakowicz__LIBS := $(subst $(obj),,$(LIBS)) 229f9328639SMarian Balakowicz 2307ebf7443Swdenk######################################################################### 231bdccc4feSwdenk######################################################################### 2327ebf7443Swdenk 233887e2ec9SStefan RoeseALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) 2347ebf7443Swdenk 235bdccc4feSwdenkall: $(ALL) 2367ebf7443Swdenk 237f9328639SMarian Balakowicz$(obj)u-boot.hex: $(obj)u-boot 2386310eb9dSwdenk $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ 2396310eb9dSwdenk 240f9328639SMarian Balakowicz$(obj)u-boot.srec: $(obj)u-boot 2417ebf7443Swdenk $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ 2427ebf7443Swdenk 243f9328639SMarian Balakowicz$(obj)u-boot.bin: $(obj)u-boot 2447ebf7443Swdenk $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ 2457ebf7443Swdenk 246f9328639SMarian Balakowicz$(obj)u-boot.img: $(obj)u-boot.bin 247bdccc4feSwdenk ./tools/mkimage -A $(ARCH) -T firmware -C none \ 248bdccc4feSwdenk -a $(TEXT_BASE) -e 0 \ 249881a87ecSWolfgang Denk -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ 250bdccc4feSwdenk sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ 251bdccc4feSwdenk -d $< $@ 252bdccc4feSwdenk 253f9328639SMarian Balakowicz$(obj)u-boot.dis: $(obj)u-boot 2547ebf7443Swdenk $(OBJDUMP) -d $< > $@ 2557ebf7443Swdenk 256f9328639SMarian Balakowicz$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT) 2578bde7f77Swdenk UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ 258f9328639SMarian Balakowicz cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ 259f9328639SMarian Balakowicz --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ 260b2184c31Swdenk -Map u-boot.map -o u-boot 2617ebf7443Swdenk 262f9328639SMarian Balakowicz$(OBJS): 263f9328639SMarian Balakowicz $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@)) 264f9328639SMarian Balakowicz 265a8c7c708Swdenk$(LIBS): 266f9328639SMarian Balakowicz $(MAKE) -C $(dir $(subst $(obj),,$@)) 267a8c7c708Swdenk 268a8c7c708Swdenk$(SUBDIRS): 269b028f715Swdenk $(MAKE) -C $@ all 2707ebf7443Swdenk 271887e2ec9SStefan Roese$(NAND_SPL): version 272887e2ec9SStefan Roese $(MAKE) -C nand_spl all 273887e2ec9SStefan Roese 274887e2ec9SStefan Roese$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin 275a73c8dbbSStefan Roese cat nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin 276887e2ec9SStefan Roese 277881a87ecSWolfgang Denkversion: 278881a87ecSWolfgang Denk @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \ 279881a87ecSWolfgang Denk echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \ 280881a87ecSWolfgang Denk echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \ 281881a87ecSWolfgang Denk $(TOPDIR)) >> $(VERSION_FILE); \ 282881a87ecSWolfgang Denk echo "\"" >> $(VERSION_FILE) 283881a87ecSWolfgang Denk 2848f713fdfSdzugdbtools: 285f9328639SMarian Balakowicz $(MAKE) -C tools/gdb all || exit 1 286f9328639SMarian Balakowicz 287f9328639SMarian Balakowiczupdater: 288f9328639SMarian Balakowicz $(MAKE) -C tools/updater all || exit 1 289f9328639SMarian Balakowicz 290f9328639SMarian Balakowiczenv: 291f9328639SMarian Balakowicz $(MAKE) -C tools/env all || exit 1 2928f713fdfSdzu 2937ebf7443Swdenkdepend dep: 294f9328639SMarian Balakowicz for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done 2957ebf7443Swdenk 296f9328639SMarian Balakowicztags ctags: 297f9328639SMarian Balakowicz ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \ 298bda6c8aeSwdenk lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \ 299bda6c8aeSwdenk fs/cramfs fs/fat fs/fdos fs/jffs2 \ 300bda6c8aeSwdenk net disk rtc dtt drivers drivers/sk98lin common \ 3017ebf7443Swdenk \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` 3027ebf7443Swdenk 3037ebf7443Swdenketags: 304f9328639SMarian Balakowicz etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \ 305eedcd078Swdenk lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \ 306eedcd078Swdenk fs/cramfs fs/fat fs/fdos fs/jffs2 \ 307eedcd078Swdenk net disk rtc dtt drivers drivers/sk98lin common \ 3087ebf7443Swdenk \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` 3097ebf7443Swdenk 310f9328639SMarian Balakowicz$(obj)System.map: $(obj)u-boot 3117ebf7443Swdenk @$(NM) $< | \ 3127ebf7443Swdenk grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ 313f9328639SMarian Balakowicz sort > $(obj)System.map 3147ebf7443Swdenk 3157ebf7443Swdenk######################################################################### 3167ebf7443Swdenkelse 317f9328639SMarian Balakowiczall $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ 318f9328639SMarian Balakowicz$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ 319f9328639SMarian Balakowicz$(SUBDIRS) version gdbtools updater env depend \ 320f9328639SMarian Balakowiczdep tags ctags etags $(obj)System.map: 3217ebf7443Swdenk @echo "System not configured - see README" >&2 3227ebf7443Swdenk @ exit 1 3237ebf7443Swdenkendif 3247ebf7443Swdenk 3257ebf7443Swdenk######################################################################### 3267ebf7443Swdenk 3277ebf7443Swdenkunconfig: 328887e2ec9SStefan Roese @rm -f $(obj)include/config.h $(obj)include/config.mk \ 329887e2ec9SStefan Roese $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp 3307ebf7443Swdenk 3317ebf7443Swdenk#======================================================================== 3327ebf7443Swdenk# PowerPC 3337ebf7443Swdenk#======================================================================== 3340db5bca8Swdenk 3350db5bca8Swdenk######################################################################### 3360db5bca8Swdenk## MPC5xx Systems 3370db5bca8Swdenk######################################################################### 3380db5bca8Swdenk 3395e5f9ed2Swdenkcanmb_config: unconfig 340f9328639SMarian Balakowicz @$(MKCONFIG) -a canmb ppc mpc5xxx canmb 3415e5f9ed2Swdenk 3420db5bca8Swdenkcmi_mpc5xx_config: unconfig 343f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi 3440db5bca8Swdenk 345b6e4c403SwdenkPATI_config: unconfig 346f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl 347b6e4c403Swdenk 3487ebf7443Swdenk######################################################################### 349945af8d7Swdenk## MPC5xxx Systems 350945af8d7Swdenk######################################################################### 351a87589daSwdenk 352dafba16eSWolfgang Denkaev_config: unconfig 353f9328639SMarian Balakowicz @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200 354dafba16eSWolfgang Denk 3556ca24c64Sdzu@denx.deBC3450_config: unconfig 356f9328639SMarian Balakowicz @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450 3576ca24c64Sdzu@denx.de 3585e4b3361SStefan Roesecpci5200_config: unconfig 359f9328639SMarian Balakowicz @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd 3605e4b3361SStefan Roese 361a87589daSwdenkhmi1001_config: unconfig 362f9328639SMarian Balakowicz @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001 363a87589daSwdenk 364e35745bbSwdenkLite5200_config \ 365e35745bbSwdenkLite5200_LOWBOOT_config \ 366e35745bbSwdenkLite5200_LOWBOOT08_config \ 367e35745bbSwdenkicecube_5200_config \ 368e35745bbSwdenkicecube_5200_LOWBOOT_config \ 369e35745bbSwdenkicecube_5200_LOWBOOT08_config \ 370b2001f27Swdenkicecube_5200_DDR_config \ 37179d696fcSwdenkicecube_5200_DDR_LOWBOOT_config \ 37279d696fcSwdenkicecube_5200_DDR_LOWBOOT08_config \ 373e35745bbSwdenkicecube_5100_config: unconfig 374f9328639SMarian Balakowicz @mkdir -p $(obj)include 375f9328639SMarian Balakowicz @mkdir -p $(obj)board/icecube 376f9328639SMarian Balakowicz @ >$(obj)include/config.h 37717d704ebSwdenk @[ -z "$(findstring LOWBOOT_,$@)" ] || \ 37817d704ebSwdenk { if [ "$(findstring DDR,$@)" ] ; \ 379f9328639SMarian Balakowicz then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ 380f9328639SMarian Balakowicz else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ 38117d704ebSwdenk fi ; \ 3825cf9da48Swdenk echo "... with LOWBOOT configuration" ; \ 3835cf9da48Swdenk } 3845cf9da48Swdenk @[ -z "$(findstring LOWBOOT08,$@)" ] || \ 385f9328639SMarian Balakowicz { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ 3865cf9da48Swdenk echo "... with 8 MB flash only" ; \ 38717d704ebSwdenk echo "... with LOWBOOT configuration" ; \ 3885cf9da48Swdenk } 389b2001f27Swdenk @[ -z "$(findstring DDR,$@)" ] || \ 390f9328639SMarian Balakowicz { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \ 391b2001f27Swdenk echo "... DDR memory revision" ; \ 392b2001f27Swdenk } 393d4ca31c4Swdenk @[ -z "$(findstring 5200,$@)" ] || \ 394f9328639SMarian Balakowicz { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \ 395d4ca31c4Swdenk echo "... with MPC5200 processor" ; \ 396d4ca31c4Swdenk } 397a0f2fe52Swdenk @[ -z "$(findstring 5100,$@)" ] || \ 398f9328639SMarian Balakowicz { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \ 399945af8d7Swdenk echo "... with MGT5100 processor" ; \ 400945af8d7Swdenk } 401f9328639SMarian Balakowicz @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube 402945af8d7Swdenk 403138ff60cSwdenkinka4x0_config: unconfig 404f9328639SMarian Balakowicz @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0 405138ff60cSwdenk 40609e4b0c5SWolfgang Denklite5200b_config \ 40709e4b0c5SWolfgang Denklite5200b_LOWBOOT_config: unconfig 408f9328639SMarian Balakowicz @mkdir -p $(obj)include 409f9328639SMarian Balakowicz @mkdir -p $(obj)board/icecube 410f9328639SMarian Balakowicz @ >$(obj)include/config.h 411f9328639SMarian Balakowicz @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h 41209e4b0c5SWolfgang Denk @ echo "... DDR memory revision" 413f9328639SMarian Balakowicz @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h 414f9328639SMarian Balakowicz @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h 41509e4b0c5SWolfgang Denk @[ -z "$(findstring LOWBOOT_,$@)" ] || \ 416f9328639SMarian Balakowicz { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ 41709e4b0c5SWolfgang Denk echo "... with LOWBOOT configuration" ; \ 41809e4b0c5SWolfgang Denk } 41909e4b0c5SWolfgang Denk @ echo "... with MPC5200B processor" 420f9328639SMarian Balakowicz @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube 42109e4b0c5SWolfgang Denk 422f1ee9825SStefan Roesemcc200_config \ 423ed1cf845SWolfgang Denkmcc200_SDRAM_config \ 424ed1cf845SWolfgang Denkmcc200_highboot_config \ 425ed1cf845SWolfgang Denkmcc200_COM12_config \ 426ed1cf845SWolfgang Denkmcc200_COM12_SDRAM_config \ 427113f64e0SWolfgang Denkmcc200_COM12_highboot_config \ 428113f64e0SWolfgang Denkmcc200_COM12_highboot_SDRAM_config \ 429ed1cf845SWolfgang Denkmcc200_highboot_SDRAM_config \ 430ed1cf845SWolfgang Denkprs200_config \ 431ed1cf845SWolfgang Denkprs200_DDR_config \ 432ed1cf845SWolfgang Denkprs200_highboot_config \ 433ed1cf845SWolfgang Denkprs200_highboot_DDR_config: unconfig 434f9328639SMarian Balakowicz @mkdir -p $(obj)include 435f9328639SMarian Balakowicz @mkdir -p $(obj)board/mcc200 436f9328639SMarian Balakowicz @ >$(obj)include/config.h 4374819fad9SWolfgang Denk @[ -n "$(findstring highboot,$@)" ] || \ 4384819fad9SWolfgang Denk { echo "... with lowboot configuration" ; \ 439f1ee9825SStefan Roese } 4404819fad9SWolfgang Denk @[ -z "$(findstring highboot,$@)" ] || \ 441f9328639SMarian Balakowicz { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \ 4424819fad9SWolfgang Denk echo "... with highboot configuration" ; \ 4434819fad9SWolfgang Denk } 4444819fad9SWolfgang Denk @[ -n "$(findstring _SDRAM,$@)" ] || \ 445ed1cf845SWolfgang Denk { if [ -n "$(findstring mcc200,$@)" ]; \ 446ed1cf845SWolfgang Denk then \ 447ed1cf845SWolfgang Denk echo "... with DDR" ; \ 448ed1cf845SWolfgang Denk else \ 449ed1cf845SWolfgang Denk if [ -n "$(findstring _DDR,$@)" ];\ 450ed1cf845SWolfgang Denk then \ 451ed1cf845SWolfgang Denk echo "... with DDR" ; \ 452ed1cf845SWolfgang Denk else \ 453f9328639SMarian Balakowicz echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\ 454ed1cf845SWolfgang Denk echo "... with SDRAM" ; \ 455ed1cf845SWolfgang Denk fi; \ 456ed1cf845SWolfgang Denk fi; \ 4574819fad9SWolfgang Denk } 4584819fad9SWolfgang Denk @[ -z "$(findstring _SDRAM,$@)" ] || \ 459f9328639SMarian Balakowicz { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \ 4604819fad9SWolfgang Denk echo "... with SDRAM" ; \ 4614819fad9SWolfgang Denk } 462463764c8SWolfgang Denk @[ -z "$(findstring COM12,$@)" ] || \ 463f9328639SMarian Balakowicz { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \ 464463764c8SWolfgang Denk echo "... with console on COM12" ; \ 465463764c8SWolfgang Denk } 466ed1cf845SWolfgang Denk @[ -z "$(findstring prs200,$@)" ] || \ 467f9328639SMarian Balakowicz { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\ 468ed1cf845SWolfgang Denk } 469f9328639SMarian Balakowicz @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200 47086ea5f93SWolfgang Denk 471df04a3dfSWolfgang Denko2dnt_config: 472f9328639SMarian Balakowicz @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt 473df04a3dfSWolfgang Denk 4745e4b3361SStefan Roesepf5200_config: unconfig 475f9328639SMarian Balakowicz @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd 4765e4b3361SStefan Roese 47789394047SwdenkPM520_config \ 47889394047SwdenkPM520_DDR_config \ 47989394047SwdenkPM520_ROMBOOT_config \ 48089394047SwdenkPM520_ROMBOOT_DDR_config: unconfig 481f9328639SMarian Balakowicz @mkdir -p $(obj)include 482f9328639SMarian Balakowicz @ >$(obj)include/config.h 48389394047Swdenk @[ -z "$(findstring DDR,$@)" ] || \ 484f9328639SMarian Balakowicz { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \ 48589394047Swdenk echo "... DDR memory revision" ; \ 48689394047Swdenk } 48789394047Swdenk @[ -z "$(findstring ROMBOOT,$@)" ] || \ 488f9328639SMarian Balakowicz { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ 48989394047Swdenk echo "... booting from 8-bit flash" ; \ 49089394047Swdenk } 491f9328639SMarian Balakowicz @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520 49289394047Swdenk 4936624b687SWolfgang Denksmmaco4_config: unconfig 494f9328639SMarian Balakowicz @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200 4959cdc8386SWolfgang Denk 4969cdc8386SWolfgang Denkspieval_config: unconfig 497f9328639SMarian Balakowicz @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200 4989cdc8386SWolfgang Denk 49945a212c4SWolfgang DenkTB5200_B_config \ 500b87dfd28SWolfgang DenkTB5200_config: unconfig 501f9328639SMarian Balakowicz @mkdir -p $(obj)include 50245a212c4SWolfgang Denk @[ -z "$(findstring _B,$@)" ] || \ 503f9328639SMarian Balakowicz { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ 50445a212c4SWolfgang Denk echo "... with MPC5200B processor" ; \ 50545a212c4SWolfgang Denk } 506f9328639SMarian Balakowicz @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200 507b87dfd28SWolfgang Denk 508d4ca31c4SwdenkMINI5200_config \ 509d4ca31c4SwdenkEVAL5200_config \ 510d4ca31c4SwdenkTOP5200_config: unconfig 511f9328639SMarian Balakowicz @mkdir -p $(obj)include 512f9328639SMarian Balakowicz @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h 513f9328639SMarian Balakowicz @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk 514d4ca31c4Swdenk 5156c7a1408SwdenkTotal5100_config \ 5166c7a1408SwdenkTotal5200_config \ 5176c7a1408SwdenkTotal5200_lowboot_config \ 5186c7a1408SwdenkTotal5200_Rev2_config \ 5196c7a1408SwdenkTotal5200_Rev2_lowboot_config: unconfig 520f9328639SMarian Balakowicz @mkdir -p $(obj)include 521f9328639SMarian Balakowicz @mkdir -p $(obj)board/total5200 522f9328639SMarian Balakowicz @ >$(obj)include/config.h 5236c7a1408Swdenk @[ -z "$(findstring 5100,$@)" ] || \ 524f9328639SMarian Balakowicz { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \ 5256c7a1408Swdenk echo "... with MGT5100 processor" ; \ 5266c7a1408Swdenk } 5276c7a1408Swdenk @[ -z "$(findstring 5200,$@)" ] || \ 528f9328639SMarian Balakowicz { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \ 5296c7a1408Swdenk echo "... with MPC5200 processor" ; \ 5306c7a1408Swdenk } 5316c7a1408Swdenk @[ -n "$(findstring Rev,$@)" ] || \ 532f9328639SMarian Balakowicz { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \ 5336c7a1408Swdenk echo "... revision 1 board" ; \ 5346c7a1408Swdenk } 5356c7a1408Swdenk @[ -z "$(findstring Rev2_,$@)" ] || \ 536f9328639SMarian Balakowicz { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \ 5376c7a1408Swdenk echo "... revision 2 board" ; \ 5386c7a1408Swdenk } 5396c7a1408Swdenk @[ -z "$(findstring lowboot_,$@)" ] || \ 540f9328639SMarian Balakowicz { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \ 5416c7a1408Swdenk echo "... with lowboot configuration" ; \ 5426c7a1408Swdenk } 543f9328639SMarian Balakowicz @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200 5446c7a1408Swdenk 5455196a7a0SWolfgang Denkcam5200_config \ 5465196a7a0SWolfgang Denkfo300_config \ 5475196a7a0SWolfgang DenkMiniFAP_config \ 5485078cce8SWolfgang DenkTQM5200S_config \ 5495078cce8SWolfgang DenkTQM5200S_HIGHBOOT_config \ 5505196a7a0SWolfgang DenkTQM5200_B_config \ 5515196a7a0SWolfgang DenkTQM5200_B_HIGHBOOT_config \ 5525196a7a0SWolfgang DenkTQM5200_config \ 5535196a7a0SWolfgang DenkTQM5200_STK100_config: unconfig 554f9328639SMarian Balakowicz @mkdir -p $(obj)include 555f9328639SMarian Balakowicz @mkdir -p $(obj)board/tqm5200 556f9328639SMarian Balakowicz @ >$(obj)include/config.h 5575196a7a0SWolfgang Denk @[ -z "$(findstring cam5200,$@)" ] || \ 558f9328639SMarian Balakowicz { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \ 559f9328639SMarian Balakowicz echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ 560f9328639SMarian Balakowicz echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ 5615196a7a0SWolfgang Denk echo "... TQM5200S on Cam5200" ; \ 5625196a7a0SWolfgang Denk } 5636d3bc9b8SMarian Balakowicz @[ -z "$(findstring fo300,$@)" ] || \ 564f9328639SMarian Balakowicz { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \ 5656d3bc9b8SMarian Balakowicz echo "... TQM5200 on FO300" ; \ 5666d3bc9b8SMarian Balakowicz } 56789394047Swdenk @[ -z "$(findstring MiniFAP,$@)" ] || \ 568f9328639SMarian Balakowicz { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \ 56989394047Swdenk echo "... TQM5200_AC on MiniFAP" ; \ 57056523f12Swdenk } 571cd65a3dcSWolfgang Denk @[ -z "$(findstring STK100,$@)" ] || \ 572f9328639SMarian Balakowicz { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \ 573cd65a3dcSWolfgang Denk echo "... on a STK52XX.100 base board" ; \ 57456523f12Swdenk } 5755078cce8SWolfgang Denk @[ -z "$(findstring TQM5200_B,$@)" ] || \ 576f9328639SMarian Balakowicz { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ 5775078cce8SWolfgang Denk } 5785078cce8SWolfgang Denk @[ -z "$(findstring TQM5200S,$@)" ] || \ 579f9328639SMarian Balakowicz { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ 580f9328639SMarian Balakowicz echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ 58145a212c4SWolfgang Denk } 582978b1096SWolfgang Denk @[ -z "$(findstring HIGHBOOT,$@)" ] || \ 583f9328639SMarian Balakowicz { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \ 584978b1096SWolfgang Denk } 585f9328639SMarian Balakowicz @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200 58656523f12Swdenk 587945af8d7Swdenk######################################################################### 5887ebf7443Swdenk## MPC8xx Systems 5897ebf7443Swdenk######################################################################### 5907ebf7443Swdenk 5912d24a3a7SwdenkAdder_config \ 5922d24a3a7SwdenkAdder87x_config \ 59326238132SwdenkAdderII_config \ 5942d24a3a7Swdenk : unconfig 595f9328639SMarian Balakowicz @mkdir -p $(obj)include 59626238132Swdenk $(if $(findstring AdderII,$@), \ 597f9328639SMarian Balakowicz @echo "#define CONFIG_MPC852T" > $(obj)include/config.h) 598f9328639SMarian Balakowicz @$(MKCONFIG) -a Adder ppc mpc8xx adder 5992d24a3a7Swdenk 600180d3f74SwdenkADS860_config \ 601180d3f74SwdenkFADS823_config \ 602180d3f74SwdenkFADS850SAR_config \ 603180d3f74SwdenkMPC86xADS_config \ 6041114257cSwdenkMPC885ADS_config \ 605180d3f74SwdenkFADS860T_config: unconfig 606f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads 6077ebf7443Swdenk 6087ebf7443SwdenkAMX860_config : unconfig 609f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel 6107ebf7443Swdenk 6117ebf7443Swdenkc2mon_config: unconfig 612f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon 6137ebf7443Swdenk 6147ebf7443SwdenkCCM_config: unconfig 615f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens 6167ebf7443Swdenk 6177ebf7443Swdenkcogent_mpc8xx_config: unconfig 618f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent 6197ebf7443Swdenk 6203bac3513SwdenkELPT860_config: unconfig 621f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX 6223bac3513Swdenk 62384c960ceSWolfgang DenkEP88x_config: unconfig 624f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x 62584c960ceSWolfgang Denk 6267ebf7443SwdenkESTEEM192E_config: unconfig 627f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e 6287ebf7443Swdenk 6297ebf7443SwdenkETX094_config : unconfig 630f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094 6317ebf7443Swdenk 6327ebf7443SwdenkFLAGADM_config: unconfig 633f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm 6347ebf7443Swdenk 6357aa78614Swdenkxtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) 6367aa78614Swdenk 6377aa78614SwdenkGEN860T_SC_config \ 6387ebf7443SwdenkGEN860T_config: unconfig 639f9328639SMarian Balakowicz @mkdir -p $(obj)include 640f9328639SMarian Balakowicz @ >$(obj)include/config.h 6417aa78614Swdenk @[ -z "$(findstring _SC,$@)" ] || \ 642f9328639SMarian Balakowicz { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \ 6437aa78614Swdenk echo "With reduced H/W feature set (SC)..." ; \ 6447aa78614Swdenk } 645f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t 6467ebf7443Swdenk 6477ebf7443SwdenkGENIETV_config: unconfig 648f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv 6497ebf7443Swdenk 6507ebf7443SwdenkGTH_config: unconfig 651f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth 6527ebf7443Swdenk 6537ebf7443Swdenkhermes_config : unconfig 654f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes 6557ebf7443Swdenk 656c40b2956SwdenkHMI10_config : unconfig 657f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx 658c40b2956Swdenk 6597ebf7443SwdenkIAD210_config: unconfig 660f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens 6617ebf7443Swdenk 6627ebf7443Swdenkxtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1)) 6637ebf7443Swdenk 6647ebf7443SwdenkICU862_100MHz_config \ 6657ebf7443SwdenkICU862_config: unconfig 666f9328639SMarian Balakowicz @mkdir -p $(obj)include 667f9328639SMarian Balakowicz @ >$(obj)include/config.h 6687ebf7443Swdenk @[ -z "$(findstring _100MHz,$@)" ] || \ 669f9328639SMarian Balakowicz { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \ 6707ebf7443Swdenk echo "... with 100MHz system clock" ; \ 6717ebf7443Swdenk } 672f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862 6737ebf7443Swdenk 6747ebf7443SwdenkIP860_config : unconfig 675f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860 6767ebf7443Swdenk 6777ebf7443SwdenkIVML24_256_config \ 6787ebf7443SwdenkIVML24_128_config \ 6797ebf7443SwdenkIVML24_config: unconfig 680f9328639SMarian Balakowicz @mkdir -p $(obj)include 681f9328639SMarian Balakowicz @ >$(obj)include/config.h 6827ebf7443Swdenk @[ -z "$(findstring IVML24_config,$@)" ] || \ 683f9328639SMarian Balakowicz { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \ 6847ebf7443Swdenk } 6857ebf7443Swdenk @[ -z "$(findstring IVML24_128_config,$@)" ] || \ 686f9328639SMarian Balakowicz { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \ 6877ebf7443Swdenk } 6887ebf7443Swdenk @[ -z "$(findstring IVML24_256_config,$@)" ] || \ 689f9328639SMarian Balakowicz { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \ 6907ebf7443Swdenk } 691f9328639SMarian Balakowicz @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm 6927ebf7443Swdenk 6937ebf7443SwdenkIVMS8_256_config \ 6947ebf7443SwdenkIVMS8_128_config \ 6957ebf7443SwdenkIVMS8_config: unconfig 696f9328639SMarian Balakowicz @mkdir -p $(obj)include 697f9328639SMarian Balakowicz @ >$(obj)include/config.h 6987ebf7443Swdenk @[ -z "$(findstring IVMS8_config,$@)" ] || \ 699f9328639SMarian Balakowicz { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \ 7007ebf7443Swdenk } 7017ebf7443Swdenk @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ 702f9328639SMarian Balakowicz { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \ 7037ebf7443Swdenk } 7047ebf7443Swdenk @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ 705f9328639SMarian Balakowicz { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \ 7067ebf7443Swdenk } 707f9328639SMarian Balakowicz @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm 7087ebf7443Swdenk 70956f94be3SwdenkKUP4K_config : unconfig 710f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup 7110608e04dSwdenk 7120608e04dSwdenkKUP4X_config : unconfig 713f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup 71456f94be3Swdenk 7157ebf7443SwdenkLANTEC_config : unconfig 716f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec 7177ebf7443Swdenk 7187ebf7443Swdenklwmon_config: unconfig 719f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon 7207ebf7443Swdenk 7217ebf7443SwdenkMBX_config \ 7227ebf7443SwdenkMBX860T_config: unconfig 723f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx 7247ebf7443Swdenk 7257ebf7443SwdenkMHPC_config: unconfig 726f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec 7277ebf7443Swdenk 7287ebf7443SwdenkMVS1_config : unconfig 729f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1 7307ebf7443Swdenk 731993cad93Swdenkxtract_NETVIA = $(subst _V2,,$(subst _config,,$1)) 732993cad93Swdenk 733993cad93SwdenkNETVIA_V2_config \ 7347ebf7443SwdenkNETVIA_config: unconfig 735f9328639SMarian Balakowicz @mkdir -p $(obj)include 736f9328639SMarian Balakowicz @ >$(obj)include/config.h 737993cad93Swdenk @[ -z "$(findstring NETVIA_config,$@)" ] || \ 738f9328639SMarian Balakowicz { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \ 739993cad93Swdenk echo "... Version 1" ; \ 740993cad93Swdenk } 741993cad93Swdenk @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \ 742f9328639SMarian Balakowicz { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \ 743993cad93Swdenk echo "... Version 2" ; \ 744993cad93Swdenk } 745f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia 7467ebf7443Swdenk 747c26e454dSwdenkxtract_NETPHONE = $(subst _V2,,$(subst _config,,$1)) 748c26e454dSwdenk 749c26e454dSwdenkNETPHONE_V2_config \ 75004a85b3bSwdenkNETPHONE_config: unconfig 751f9328639SMarian Balakowicz @mkdir -p $(obj)include 752f9328639SMarian Balakowicz @ >$(obj)include/config.h 753c26e454dSwdenk @[ -z "$(findstring NETPHONE_config,$@)" ] || \ 754f9328639SMarian Balakowicz { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \ 755c26e454dSwdenk } 756c26e454dSwdenk @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \ 757f9328639SMarian Balakowicz { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \ 758c26e454dSwdenk } 759f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone 76004a85b3bSwdenk 76179fa88f3Swdenkxtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1)))) 76204a85b3bSwdenk 76379fa88f3SwdenkNETTA_ISDN_6412_SWAPHOOK_config \ 76479fa88f3SwdenkNETTA_ISDN_SWAPHOOK_config \ 76579fa88f3SwdenkNETTA_6412_SWAPHOOK_config \ 76679fa88f3SwdenkNETTA_SWAPHOOK_config \ 76779fa88f3SwdenkNETTA_ISDN_6412_config \ 76804a85b3bSwdenkNETTA_ISDN_config \ 76979fa88f3SwdenkNETTA_6412_config \ 77004a85b3bSwdenkNETTA_config: unconfig 771f9328639SMarian Balakowicz @mkdir -p $(obj)include 772f9328639SMarian Balakowicz @ >$(obj)include/config.h 77379fa88f3Swdenk @[ -z "$(findstring ISDN_,$@)" ] || \ 774f9328639SMarian Balakowicz { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \ 77504a85b3bSwdenk } 77679fa88f3Swdenk @[ -n "$(findstring ISDN_,$@)" ] || \ 777f9328639SMarian Balakowicz { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \ 77879fa88f3Swdenk } 77979fa88f3Swdenk @[ -z "$(findstring 6412_,$@)" ] || \ 780f9328639SMarian Balakowicz { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \ 78179fa88f3Swdenk } 78279fa88f3Swdenk @[ -n "$(findstring 6412_,$@)" ] || \ 783f9328639SMarian Balakowicz { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \ 78479fa88f3Swdenk } 78579fa88f3Swdenk @[ -z "$(findstring SWAPHOOK_,$@)" ] || \ 786f9328639SMarian Balakowicz { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \ 78779fa88f3Swdenk } 78879fa88f3Swdenk @[ -n "$(findstring SWAPHOOK_,$@)" ] || \ 789f9328639SMarian Balakowicz { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \ 79079fa88f3Swdenk } 791f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta 79204a85b3bSwdenk 79379fa88f3Swdenkxtract_NETTA2 = $(subst _V2,,$(subst _config,,$1)) 79479fa88f3Swdenk 79579fa88f3SwdenkNETTA2_V2_config \ 79679fa88f3SwdenkNETTA2_config: unconfig 797f9328639SMarian Balakowicz @mkdir -p $(obj)include 798f9328639SMarian Balakowicz @ >$(obj)include/config.h 79979fa88f3Swdenk @[ -z "$(findstring NETTA2_config,$@)" ] || \ 800f9328639SMarian Balakowicz { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \ 80179fa88f3Swdenk } 80279fa88f3Swdenk @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \ 803f9328639SMarian Balakowicz { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \ 80479fa88f3Swdenk } 805f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2 80679fa88f3Swdenk 807a367d426Sdzu@denx.deNC650_Rev1_config \ 808a367d426Sdzu@denx.deNC650_Rev2_config \ 809a367d426Sdzu@denx.deCP850_config: unconfig 810f9328639SMarian Balakowicz @mkdir -p $(obj)include 811f9328639SMarian Balakowicz @ >$(obj)include/config.h 812a367d426Sdzu@denx.de @[ -z "$(findstring CP850,$@)" ] || \ 813f9328639SMarian Balakowicz { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \ 814f9328639SMarian Balakowicz echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ 815a367d426Sdzu@denx.de } 816a367d426Sdzu@denx.de @[ -z "$(findstring Rev1,$@)" ] || \ 817f9328639SMarian Balakowicz { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \ 818a367d426Sdzu@denx.de } 819a367d426Sdzu@denx.de @[ -z "$(findstring Rev2,$@)" ] || \ 820f9328639SMarian Balakowicz { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ 821a367d426Sdzu@denx.de } 822f9328639SMarian Balakowicz @$(MKCONFIG) -a NC650 ppc mpc8xx nc650 8237ca202f5Swdenk 8247ebf7443SwdenkNX823_config: unconfig 825f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823 8267ebf7443Swdenk 8277ebf7443Swdenkpcu_e_config: unconfig 828f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens 8297ebf7443Swdenk 8303bbc899fSwdenkQS850_config: unconfig 831f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc 8323bbc899fSwdenk 8333bbc899fSwdenkQS823_config: unconfig 834f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc 8353bbc899fSwdenk 8363bbc899fSwdenkQS860T_config: unconfig 837f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc 8383bbc899fSwdenk 839da93ed81Swdenkquantum_config: unconfig 840f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum 841da93ed81Swdenk 8427ebf7443SwdenkR360MPI_config: unconfig 843f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi 8447ebf7443Swdenk 845682011ffSwdenkRBC823_config: unconfig 846f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823 847682011ffSwdenk 8487ebf7443SwdenkRPXClassic_config: unconfig 849f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic 8507ebf7443Swdenk 8517ebf7443SwdenkRPXlite_config: unconfig 852f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite 8537ebf7443Swdenk 854e63c8ee3SwdenkRPXlite_DW_64_config \ 855e63c8ee3SwdenkRPXlite_DW_LCD_config \ 856e63c8ee3SwdenkRPXlite_DW_64_LCD_config \ 857e63c8ee3SwdenkRPXlite_DW_NVRAM_config \ 858e63c8ee3SwdenkRPXlite_DW_NVRAM_64_config \ 859e63c8ee3SwdenkRPXlite_DW_NVRAM_LCD_config \ 860e63c8ee3SwdenkRPXlite_DW_NVRAM_64_LCD_config \ 861e63c8ee3SwdenkRPXlite_DW_config: unconfig 862f9328639SMarian Balakowicz @mkdir -p $(obj)include 863f9328639SMarian Balakowicz @ >$(obj)include/config.h 864e63c8ee3Swdenk @[ -z "$(findstring _64,$@)" ] || \ 865f9328639SMarian Balakowicz { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \ 866e63c8ee3Swdenk echo "... with 64MHz system clock ..."; \ 867e63c8ee3Swdenk } 868e63c8ee3Swdenk @[ -z "$(findstring _LCD,$@)" ] || \ 869f9328639SMarian Balakowicz { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ 870f9328639SMarian Balakowicz echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ 871e63c8ee3Swdenk echo "... with LCD display ..."; \ 872e63c8ee3Swdenk } 873e63c8ee3Swdenk @[ -z "$(findstring _NVRAM,$@)" ] || \ 874f9328639SMarian Balakowicz { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \ 875e63c8ee3Swdenk echo "... with ENV in NVRAM ..."; \ 876e63c8ee3Swdenk } 877f9328639SMarian Balakowicz @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw 878e63c8ee3Swdenk 87973a8b27cSwdenkrmu_config: unconfig 880f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu 88173a8b27cSwdenk 8827ebf7443SwdenkRRvision_config: unconfig 883f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision 8847ebf7443Swdenk 8857ebf7443SwdenkRRvision_LCD_config: unconfig 886f9328639SMarian Balakowicz @mkdir -p $(obj)include 887f9328639SMarian Balakowicz @echo "#define CONFIG_LCD" >$(obj)include/config.h 888f9328639SMarian Balakowicz @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h 889f9328639SMarian Balakowicz @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision 8907ebf7443Swdenk 8917ebf7443SwdenkSM850_config : unconfig 892f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx 8937ebf7443Swdenk 894b02d0177SMarkus Klotzbuecherspc1920_config: 895f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920 896b02d0177SMarkus Klotzbuecher 8977ebf7443SwdenkSPD823TS_config: unconfig 898f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx 8997ebf7443Swdenk 9006bdf4306SWolfgang Denkstxxtc_config: unconfig 901f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc 9026bdf4306SWolfgang Denk 903dc7c9a1aSwdenksvm_sc8xx_config: unconfig 904f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx 905dc7c9a1aSwdenk 9067ebf7443SwdenkSXNI855T_config: unconfig 907f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet 9087ebf7443Swdenk 909db2f721fSwdenk# EMK MPC8xx based modules 910db2f721fSwdenkTOP860_config: unconfig 911f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk 912db2f721fSwdenk 9137ebf7443Swdenk# Play some tricks for configuration selection 914e9132ea9Swdenk# Only 855 and 860 boards may come with FEC 915e9132ea9Swdenk# and only 823 boards may have LCD support 916e9132ea9Swdenkxtract_8xx = $(subst _LCD,,$(subst _config,,$1)) 9177ebf7443Swdenk 9187ebf7443SwdenkFPS850L_config \ 919384ae025SwdenkFPS860L_config \ 920f12e568cSwdenkNSCU_config \ 9217ebf7443SwdenkTQM823L_config \ 9227ebf7443SwdenkTQM823L_LCD_config \ 9237ebf7443SwdenkTQM850L_config \ 9247ebf7443SwdenkTQM855L_config \ 9257ebf7443SwdenkTQM860L_config \ 926d126bfbdSwdenkTQM862L_config \ 927ae3af05eSwdenkTQM823M_config \ 928ae3af05eSwdenkTQM850M_config \ 929f12e568cSwdenkTQM855M_config \ 930f12e568cSwdenkTQM860M_config \ 931f12e568cSwdenkTQM862M_config \ 9328cba090cSWolfgang DenkTQM866M_config \ 933090eb735SMarkus KlotzbuecherTQM885D_config \ 9348cba090cSWolfgang Denkvirtlab2_config: unconfig 935f9328639SMarian Balakowicz @mkdir -p $(obj)include 936f9328639SMarian Balakowicz @ >$(obj)include/config.h 9377ebf7443Swdenk @[ -z "$(findstring _LCD,$@)" ] || \ 938f9328639SMarian Balakowicz { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ 939f9328639SMarian Balakowicz echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ 9407ebf7443Swdenk echo "... with LCD display" ; \ 9417ebf7443Swdenk } 942f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx 9437ebf7443Swdenk 9447ebf7443SwdenkTTTech_config: unconfig 945f9328639SMarian Balakowicz @mkdir -p $(obj)include 946f9328639SMarian Balakowicz @echo "#define CONFIG_LCD" >$(obj)include/config.h 947f9328639SMarian Balakowicz @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h 948f9328639SMarian Balakowicz @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx 9497ebf7443Swdenk 950ec0aee7bSwdenkuc100_config : unconfig 951f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100 952f7d1572bSwdenk 953608c9146Swdenkv37_config: unconfig 954f9328639SMarian Balakowicz @mkdir -p $(obj)include 955f9328639SMarian Balakowicz @echo "#define CONFIG_LCD" >$(obj)include/config.h 956f9328639SMarian Balakowicz @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h 957f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37 958608c9146Swdenk 95991e940d9Sdzuwtk_config: unconfig 960f9328639SMarian Balakowicz @mkdir -p $(obj)include 961f9328639SMarian Balakowicz @echo "#define CONFIG_LCD" >$(obj)include/config.h 962f9328639SMarian Balakowicz @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h 963f9328639SMarian Balakowicz @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx 96491e940d9Sdzu 9657ebf7443Swdenk######################################################################### 9667ebf7443Swdenk## PPC4xx Systems 9677ebf7443Swdenk######################################################################### 968e55ca7e2Swdenkxtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1)))))) 9697ebf7443Swdenk 9707ebf7443SwdenkADCIOP_config: unconfig 971f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd 9727ebf7443Swdenk 9737521af1cSWolfgang DenkAP1000_config:unconfig 974f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix 9757521af1cSWolfgang Denk 976c419d1d6SstroeseAPC405_config: unconfig 977f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd 978c419d1d6Sstroese 9797ebf7443SwdenkAR405_config: unconfig 980f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd 9817ebf7443Swdenk 982549826eaSstroeseASH405_config: unconfig 983f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd 984549826eaSstroese 9858a316c9bSStefan Roesebamboo_config: unconfig 986f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc 9878a316c9bSStefan Roese 9888a316c9bSStefan Roesebubinga_config: unconfig 989f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc 990549826eaSstroese 9917ebf7443SwdenkCANBT_config: unconfig 992f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd 9937ebf7443Swdenk 9941d6f9720SwdenkCATcenter_config \ 9951d6f9720SwdenkCATcenter_25_config \ 9961d6f9720SwdenkCATcenter_33_config: unconfig 997f9328639SMarian Balakowicz @mkdir -p $(obj)include 998f9328639SMarian Balakowicz @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h 999f9328639SMarian Balakowicz @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h 10001d6f9720Swdenk @[ -z "$(findstring _25,$@)" ] || \ 1001f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \ 10021d6f9720Swdenk echo "SysClk = 25MHz" ; \ 10031d6f9720Swdenk } 10041d6f9720Swdenk @[ -z "$(findstring _33,$@)" ] || \ 1005f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \ 10061d6f9720Swdenk echo "SysClk = 33MHz" ; \ 10071d6f9720Swdenk } 1008f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave 100910767ccbSwdenk 10107644f16fSStefan RoeseCPCI2DP_config: unconfig 1011f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd 10127644f16fSStefan Roese 10137ebf7443SwdenkCPCI405_config \ 1014549826eaSstroeseCPCI4052_config \ 1015c419d1d6SstroeseCPCI405DT_config \ 1016549826eaSstroeseCPCI405AB_config: unconfig 1017f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd 1018f9328639SMarian Balakowicz @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk 10197ebf7443Swdenk 10207ebf7443SwdenkCPCI440_config: unconfig 1021f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd 10227ebf7443Swdenk 10237ebf7443SwdenkCPCIISER4_config: unconfig 1024f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd 10257ebf7443Swdenk 10267ebf7443SwdenkCRAYL1_config: unconfig 1027f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray 10287ebf7443Swdenk 1029cd0a9de6Swdenkcsb272_config: unconfig 1030f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272 1031cd0a9de6Swdenk 1032aa245090Swdenkcsb472_config: unconfig 1033f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472 1034aa245090Swdenk 10357ebf7443SwdenkDASA_SIM_config: unconfig 1036f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd 10377ebf7443Swdenk 103872cd5aa7SstroeseDP405_config: unconfig 1039f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd 104072cd5aa7Sstroese 10417ebf7443SwdenkDU405_config: unconfig 1042f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd 10437ebf7443Swdenk 10448a316c9bSStefan Roeseebony_config: unconfig 1045f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc 10467ebf7443Swdenk 10477ebf7443SwdenkERIC_config: unconfig 1048f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric 10497ebf7443Swdenk 1050d1cbe85bSwdenkEXBITGEN_config: unconfig 1051f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen 1052d1cbe85bSwdenk 1053c419d1d6SstroeseG2000_config: unconfig 1054f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000 1055c419d1d6Sstroese 1056c419d1d6SstroeseHH405_config: unconfig 1057f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd 1058c419d1d6Sstroese 105972cd5aa7SstroeseHUB405_config: unconfig 1060f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd 106172cd5aa7Sstroese 1062db01a2eaSwdenkJSE_config: unconfig 1063f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse 1064db01a2eaSwdenk 1065b79316f2SStefan RoeseKAREF_config: unconfig 1066f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst 1067b79316f2SStefan Roese 10686e7fb6eaSStefan Roeseluan_config: unconfig 1069f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc 10706e7fb6eaSStefan Roese 1071b79316f2SStefan RoeseMETROBOX_config: unconfig 1072f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst 1073b79316f2SStefan Roese 10747ebf7443SwdenkMIP405_config: unconfig 1075f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl 10767ebf7443Swdenk 1077f3e0de60SwdenkMIP405T_config: unconfig 1078f9328639SMarian Balakowicz @mkdir -p $(obj)include 1079f9328639SMarian Balakowicz @echo "#define CONFIG_MIP405T" >$(obj)include/config.h 1080f3e0de60Swdenk @echo "Enable subset config for MIP405T" 1081f9328639SMarian Balakowicz @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl 1082f3e0de60Swdenk 10837ebf7443SwdenkML2_config: unconfig 1084f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2 10857ebf7443Swdenk 1086028ab6b5Swdenkml300_config: unconfig 1087f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx 1088028ab6b5Swdenk 10898a316c9bSStefan Roeseocotea_config: unconfig 1090f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc 10910e6d798cSwdenk 10927ebf7443SwdenkOCRTC_config \ 10937ebf7443SwdenkORSG_config: unconfig 1094f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd 10957ebf7443Swdenk 10965568e613SStefan Roesep3p440_config: unconfig 1097f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive 10985568e613SStefan Roese 10997ebf7443SwdenkPCI405_config: unconfig 1100f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd 11017ebf7443Swdenk 1102a4c8d138SStefan Roesepcs440ep_config: unconfig 1103f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep 1104a4c8d138SStefan Roese 11057ebf7443SwdenkPIP405_config: unconfig 1106f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl 11077ebf7443Swdenk 110872cd5aa7SstroesePLU405_config: unconfig 1109f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd 111072cd5aa7Sstroese 1111549826eaSstroesePMC405_config: unconfig 1112f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd 1113549826eaSstroese 1114281e00a3SwdenkPPChameleonEVB_config \ 1115e55ca7e2SwdenkPPChameleonEVB_BA_25_config \ 1116e55ca7e2SwdenkPPChameleonEVB_ME_25_config \ 1117e55ca7e2SwdenkPPChameleonEVB_HI_25_config \ 1118e55ca7e2SwdenkPPChameleonEVB_BA_33_config \ 1119e55ca7e2SwdenkPPChameleonEVB_ME_33_config \ 1120e55ca7e2SwdenkPPChameleonEVB_HI_33_config: unconfig 1121f9328639SMarian Balakowicz @mkdir -p $(obj)include 1122f9328639SMarian Balakowicz @ >$(obj)include/config.h 11231d6f9720Swdenk @[ -z "$(findstring EVB_BA,$@)" ] || \ 1124f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \ 1125fbe4b5cbSwdenk echo "... BASIC model" ; \ 1126fbe4b5cbSwdenk } 11271d6f9720Swdenk @[ -z "$(findstring EVB_ME,$@)" ] || \ 1128f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \ 1129fbe4b5cbSwdenk echo "... MEDIUM model" ; \ 1130fbe4b5cbSwdenk } 11311d6f9720Swdenk @[ -z "$(findstring EVB_HI,$@)" ] || \ 1132f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \ 1133fbe4b5cbSwdenk echo "... HIGH-END model" ; \ 1134fbe4b5cbSwdenk } 1135e55ca7e2Swdenk @[ -z "$(findstring _25,$@)" ] || \ 1136f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \ 1137e55ca7e2Swdenk echo "SysClk = 25MHz" ; \ 1138e55ca7e2Swdenk } 1139e55ca7e2Swdenk @[ -z "$(findstring _33,$@)" ] || \ 1140f9328639SMarian Balakowicz { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \ 1141e55ca7e2Swdenk echo "SysClk = 33MHz" ; \ 1142e55ca7e2Swdenk } 1143f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave 114412f34241Swdenk 1145854bc8daSStefan Roeserainier_config: unconfig 1146854bc8daSStefan Roese @echo "#define CONFIG_RAINIER" > include/config.h 1147854bc8daSStefan Roese @echo "Configuring for rainier board as subset of sequoia..." 1148854bc8daSStefan Roese @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc 1149854bc8daSStefan Roese 1150854bc8daSStefan Roeserainier_nand_config: unconfig 1151854bc8daSStefan Roese @echo "#define CONFIG_RAINIER" > include/config.h 1152854bc8daSStefan Roese @echo "Configuring for rainier board as subset of sequoia..." 1153854bc8daSStefan Roese @ln -s board/amcc/sequoia/Makefile nand_spl/Makefile 1154854bc8daSStefan Roese @echo "#define CONFIG_NAND_U_BOOT" >> include/config.h 1155854bc8daSStefan Roese @echo "Compile NAND boot image for sequoia" 1156854bc8daSStefan Roese @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc 1157854bc8daSStefan Roese @echo "TEXT_BASE = 0x01000000" >board/amcc/sequoia/config.tmp 1158854bc8daSStefan Roese @echo "CONFIG_NAND_U_BOOT = y" >> include/config.mk 1159854bc8daSStefan Roese 1160652a10c0Swdenksbc405_config: unconfig 1161f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405 1162652a10c0Swdenk 1163887e2ec9SStefan Roesesequoia_config: unconfig 1164887e2ec9SStefan Roese @$(MKCONFIG) $(@:_config=) ppc ppc4xx sequoia amcc 1165887e2ec9SStefan Roese 1166887e2ec9SStefan Roesesequoia_nand_config: unconfig 1167887e2ec9SStefan Roese @ln -s board/amcc/sequoia/Makefile nand_spl/Makefile 1168887e2ec9SStefan Roese @echo "#define CONFIG_NAND_U_BOOT" >include/config.h 1169887e2ec9SStefan Roese @echo "Compile NAND boot image for sequoia" 1170887e2ec9SStefan Roese @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc 1171887e2ec9SStefan Roese @echo "TEXT_BASE = 0x01000000" >board/amcc/sequoia/config.tmp 1172887e2ec9SStefan Roese @echo "CONFIG_NAND_U_BOOT = y" >> include/config.mk 1173887e2ec9SStefan Roese 11748a316c9bSStefan Roesesycamore_config: unconfig 11758a316c9bSStefan Roese @echo "Configuring for sycamore board as subset of walnut..." 1176f9328639SMarian Balakowicz @$(MKCONFIG) -a walnut ppc ppc4xx walnut amcc 11778a316c9bSStefan Roese 117872cd5aa7SstroeseVOH405_config: unconfig 1179f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd 118072cd5aa7Sstroese 1181c419d1d6SstroeseVOM405_config: unconfig 1182f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd 1183c419d1d6Sstroese 1184feaedfcfSStefan RoeseCMS700_config: unconfig 1185f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd 1186feaedfcfSStefan Roese 11877ebf7443SwdenkW7OLMC_config \ 11887ebf7443SwdenkW7OLMG_config: unconfig 1189f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o 11907ebf7443Swdenk 11918a316c9bSStefan Roesewalnut_config: unconfig 1192f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc 11937ebf7443Swdenk 1194c419d1d6SstroeseWUH405_config: unconfig 1195f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd 1196c419d1d6Sstroese 1197ba56f625SwdenkXPEDITE1K_config: unconfig 1198f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k 1199ba56f625Swdenk 12008a316c9bSStefan Roeseyosemite_config: unconfig 1201f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc 12028a316c9bSStefan Roese 12038a316c9bSStefan Roeseyellowstone_config: unconfig 1204f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx yellowstone amcc 12058a316c9bSStefan Roese 12066c5879f3SMarian Balakowiczyucca_config: unconfig 1207f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc 12086c5879f3SMarian Balakowicz 12097ebf7443Swdenk######################################################################### 1210983fda83Swdenk## MPC8220 Systems 1211983fda83Swdenk######################################################################### 1212dc17fb6dSWolfgang Denk 1213dc17fb6dSWolfgang DenkAlaska8220_config \ 1214dc17fb6dSWolfgang DenkYukon8220_config: unconfig 1215f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska 1216983fda83Swdenk 121712b43d51Swdenksorcery_config: unconfig 1218f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery 121912b43d51Swdenk 1220983fda83Swdenk######################################################################### 12217ebf7443Swdenk## MPC824x Systems 12227ebf7443Swdenk######################################################################### 1223efa329cbSwdenkxtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1)))))) 12243bac3513Swdenk 12250332990bSwdenkA3000_config: unconfig 1226f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000 12270332990bSwdenk 12288e6f1a8eSWolfgang Denkbarco_config: unconfig 1229f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x barco 12308e6f1a8eSWolfgang Denk 12317ebf7443SwdenkBMW_config: unconfig 1232f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw 12337ebf7443Swdenk 12343bac3513SwdenkCPC45_config \ 12353bac3513SwdenkCPC45_ROMBOOT_config: unconfig 1236f9328639SMarian Balakowicz @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45 1237f9328639SMarian Balakowicz @cd $(obj)include ; \ 12383bac3513Swdenk if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 12393bac3513Swdenk echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 12403bac3513Swdenk echo "... booting from 8-bit flash" ; \ 12413bac3513Swdenk else \ 12423bac3513Swdenk echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 12433bac3513Swdenk echo "... booting from 64-bit flash" ; \ 12443bac3513Swdenk fi; \ 12453bac3513Swdenk echo "export CONFIG_BOOT_ROM" >> config.mk; 12463bac3513Swdenk 12477ebf7443SwdenkCU824_config: unconfig 1248f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824 12497ebf7443Swdenk 12507abf0c58Swdenkdebris_config: unconfig 1251f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin 12527abf0c58Swdenk 125380885a9dSwdenkeXalion_config: unconfig 1254f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion 125580885a9dSwdenk 1256756f586aSwdenkHIDDEN_DRAGON_config: unconfig 1257f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon 1258756f586aSwdenk 125953dd6ce4SWolfgang Denkkvme080_config: unconfig 1260f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin 126153dd6ce4SWolfgang Denk 12627ebf7443SwdenkMOUSSE_config: unconfig 1263f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse 12647ebf7443Swdenk 12657ebf7443SwdenkMUSENKI_config: unconfig 1266f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki 12677ebf7443Swdenk 1268b4676a25SwdenkMVBLUE_config: unconfig 1269f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue 1270b4676a25Swdenk 12717ebf7443SwdenkOXC_config: unconfig 1272f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc 12737ebf7443Swdenk 12747ebf7443SwdenkPN62_config: unconfig 1275f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62 12767ebf7443Swdenk 12777ebf7443SwdenkSandpoint8240_config: unconfig 1278f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint 12797ebf7443Swdenk 12807ebf7443SwdenkSandpoint8245_config: unconfig 1281f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint 12827ebf7443Swdenk 1283466b7410Swdenksbc8240_config: unconfig 1284f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240 1285466b7410Swdenk 1286d1cbe85bSwdenkSL8245_config: unconfig 1287f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245 1288d1cbe85bSwdenk 12897ebf7443Swdenkutx8245_config: unconfig 1290f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245 12917ebf7443Swdenk 12927ebf7443Swdenk######################################################################### 12937ebf7443Swdenk## MPC8260 Systems 12947ebf7443Swdenk######################################################################### 12957ebf7443Swdenk 129654387ac9Swdenkatc_config: unconfig 1297f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc 129854387ac9Swdenk 12997ebf7443Swdenkcogent_mpc8260_config: unconfig 1300f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent 13017ebf7443Swdenk 13027ebf7443SwdenkCPU86_config \ 13037ebf7443SwdenkCPU86_ROMBOOT_config: unconfig 1304f9328639SMarian Balakowicz @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86 1305f9328639SMarian Balakowicz @cd $(obj)include ; \ 13067ebf7443Swdenk if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 13077ebf7443Swdenk echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 13087ebf7443Swdenk echo "... booting from 8-bit flash" ; \ 13097ebf7443Swdenk else \ 13107ebf7443Swdenk echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 13117ebf7443Swdenk echo "... booting from 64-bit flash" ; \ 13127ebf7443Swdenk fi; \ 13137ebf7443Swdenk echo "export CONFIG_BOOT_ROM" >> config.mk; 13147ebf7443Swdenk 1315384cc687SwdenkCPU87_config \ 1316384cc687SwdenkCPU87_ROMBOOT_config: unconfig 1317f9328639SMarian Balakowicz @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87 1318f9328639SMarian Balakowicz @cd $(obj)include ; \ 1319384cc687Swdenk if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 1320384cc687Swdenk echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ 1321384cc687Swdenk echo "... booting from 8-bit flash" ; \ 1322384cc687Swdenk else \ 1323384cc687Swdenk echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ 1324384cc687Swdenk echo "... booting from 64-bit flash" ; \ 1325384cc687Swdenk fi; \ 1326384cc687Swdenk echo "export CONFIG_BOOT_ROM" >> config.mk; 1327384cc687Swdenk 1328f901a83bSWolfgang Denkep8248_config \ 1329f901a83bSWolfgang Denkep8248E_config : unconfig 1330f9328639SMarian Balakowicz @$(MKCONFIG) ep8248 ppc mpc8260 ep8248 1331f901a83bSWolfgang Denk 13327ebf7443Swdenkep8260_config: unconfig 1333f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260 13347ebf7443Swdenk 1335*8d4ac794SWolfgang Denkep82xxm_config: unconfig 1336*8d4ac794SWolfgang Denk @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm 1337*8d4ac794SWolfgang Denk 13387ebf7443Swdenkgw8260_config: unconfig 1339f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260 13407ebf7443Swdenk 13417ebf7443Swdenkhymod_config: unconfig 1342f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod 13437ebf7443Swdenk 13449dd41a7bSwdenkIDS8247_config: unconfig 1345f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247 13469dd41a7bSwdenk 13477ebf7443SwdenkIPHASE4539_config: unconfig 1348f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539 13497ebf7443Swdenk 1350c3c7f861SwdenkISPAN_config \ 1351c3c7f861SwdenkISPAN_REVB_config: unconfig 1352f9328639SMarian Balakowicz @mkdir -p $(obj)include 1353c3c7f861Swdenk @if [ "$(findstring _REVB_,$@)" ] ; then \ 1354f9328639SMarian Balakowicz echo "#define CFG_REV_B" > $(obj)include/config.h ; \ 1355c3c7f861Swdenk fi 1356f9328639SMarian Balakowicz @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan 1357c3c7f861Swdenk 135804a85b3bSwdenkMPC8260ADS_config \ 1359901787d6SwdenkMPC8260ADS_lowboot_config \ 136004a85b3bSwdenkMPC8260ADS_33MHz_config \ 1361901787d6SwdenkMPC8260ADS_33MHz_lowboot_config \ 136204a85b3bSwdenkMPC8260ADS_40MHz_config \ 1363901787d6SwdenkMPC8260ADS_40MHz_lowboot_config \ 136404a85b3bSwdenkMPC8272ADS_config \ 1365901787d6SwdenkMPC8272ADS_lowboot_config \ 136604a85b3bSwdenkPQ2FADS_config \ 1367901787d6SwdenkPQ2FADS_lowboot_config \ 136804a85b3bSwdenkPQ2FADS-VR_config \ 1369901787d6SwdenkPQ2FADS-VR_lowboot_config \ 137004a85b3bSwdenkPQ2FADS-ZU_config \ 1371901787d6SwdenkPQ2FADS-ZU_lowboot_config \ 137204a85b3bSwdenkPQ2FADS-ZU_66MHz_config \ 1373901787d6SwdenkPQ2FADS-ZU_66MHz_lowboot_config \ 137404a85b3bSwdenk : unconfig 1375f9328639SMarian Balakowicz @mkdir -p $(obj)include 1376f9328639SMarian Balakowicz @mkdir -p $(obj)board/mpc8260ads 137704a85b3bSwdenk $(if $(findstring PQ2FADS,$@), \ 1378f9328639SMarian Balakowicz @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \ 1379f9328639SMarian Balakowicz @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h) 138004a85b3bSwdenk $(if $(findstring MHz,$@), \ 1381f9328639SMarian Balakowicz @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \ 138204a85b3bSwdenk $(if $(findstring VR,$@), \ 1383f9328639SMarian Balakowicz @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h)) 1384901787d6Swdenk @[ -z "$(findstring lowboot_,$@)" ] || \ 1385f9328639SMarian Balakowicz { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \ 1386901787d6Swdenk echo "... with lowboot configuration" ; \ 1387901787d6Swdenk } 1388f9328639SMarian Balakowicz @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads 13897ebf7443Swdenk 1390db2f721fSwdenkMPC8266ADS_config: unconfig 1391f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads 1392db2f721fSwdenk 1393efa329cbSwdenk# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash 139410f67017SwdenkPM825_config \ 1395efa329cbSwdenkPM825_ROMBOOT_config \ 1396efa329cbSwdenkPM825_BIGFLASH_config \ 1397efa329cbSwdenkPM825_ROMBOOT_BIGFLASH_config \ 13987ebf7443SwdenkPM826_config \ 1399efa329cbSwdenkPM826_ROMBOOT_config \ 1400efa329cbSwdenkPM826_BIGFLASH_config \ 1401efa329cbSwdenkPM826_ROMBOOT_BIGFLASH_config: unconfig 1402f9328639SMarian Balakowicz @mkdir -p $(obj)include 1403f9328639SMarian Balakowicz @mkdir -p $(obj)board/pm826 1404efa329cbSwdenk @if [ "$(findstring PM825_,$@)" ] ; then \ 1405f9328639SMarian Balakowicz echo "#define CONFIG_PCI" >$(obj)include/config.h ; \ 14067ebf7443Swdenk else \ 1407f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 1408efa329cbSwdenk fi 1409efa329cbSwdenk @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 1410efa329cbSwdenk echo "... booting from 8-bit flash" ; \ 1411f9328639SMarian Balakowicz echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ 1412f9328639SMarian Balakowicz echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ 1413efa329cbSwdenk if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ 1414efa329cbSwdenk echo "... with 32 MB Flash" ; \ 1415f9328639SMarian Balakowicz echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ 14167ebf7443Swdenk fi; \ 1417efa329cbSwdenk else \ 1418efa329cbSwdenk echo "... booting from 64-bit flash" ; \ 1419efa329cbSwdenk if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ 1420efa329cbSwdenk echo "... with 32 MB Flash" ; \ 1421f9328639SMarian Balakowicz echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ 1422f9328639SMarian Balakowicz echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \ 1423efa329cbSwdenk else \ 1424f9328639SMarian Balakowicz echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \ 1425efa329cbSwdenk fi; \ 1426efa329cbSwdenk fi 1427f9328639SMarian Balakowicz @$(MKCONFIG) -a PM826 ppc mpc8260 pm826 1428efa329cbSwdenk 1429efa329cbSwdenkPM828_config \ 1430efa329cbSwdenkPM828_PCI_config \ 1431efa329cbSwdenkPM828_ROMBOOT_config \ 1432efa329cbSwdenkPM828_ROMBOOT_PCI_config: unconfig 1433f9328639SMarian Balakowicz @mkdir -p $(obj)include 1434f9328639SMarian Balakowicz @mkdir -p $(obj)board/pm826 143517076266SMarian Balakowicz @if [ "$(findstring _PCI_,$@)" ] ; then \ 1436f9328639SMarian Balakowicz echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ 1437efa329cbSwdenk echo "... with PCI enabled" ; \ 1438efa329cbSwdenk else \ 1439f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 1440efa329cbSwdenk fi 1441efa329cbSwdenk @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ 1442efa329cbSwdenk echo "... booting from 8-bit flash" ; \ 1443f9328639SMarian Balakowicz echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ 1444f9328639SMarian Balakowicz echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ 1445efa329cbSwdenk fi 1446f9328639SMarian Balakowicz @$(MKCONFIG) -a PM828 ppc mpc8260 pm828 14477ebf7443Swdenk 14487ebf7443Swdenkppmc8260_config: unconfig 1449f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260 14507ebf7443Swdenk 14518b0bfc68SwdenkRattler8248_config \ 14528b0bfc68SwdenkRattler_config: unconfig 1453f9328639SMarian Balakowicz @mkdir -p $(obj)include 14548b0bfc68Swdenk $(if $(findstring 8248,$@), \ 1455f9328639SMarian Balakowicz @echo "#define CONFIG_MPC8248" > $(obj)include/config.h) 1456f9328639SMarian Balakowicz @$(MKCONFIG) -a Rattler ppc mpc8260 rattler 14578b0bfc68Swdenk 14587ebf7443SwdenkRPXsuper_config: unconfig 1459f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper 14607ebf7443Swdenk 14617ebf7443Swdenkrsdproto_config: unconfig 1462f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto 14637ebf7443Swdenk 14647ebf7443Swdenksacsng_config: unconfig 1465f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng 14667ebf7443Swdenk 14677ebf7443Swdenksbc8260_config: unconfig 1468f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260 14697ebf7443Swdenk 14707ebf7443SwdenkSCM_config: unconfig 1471f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens 14727ebf7443Swdenk 147327b207fdSwdenkTQM8255_AA_config \ 147427b207fdSwdenkTQM8260_AA_config \ 147527b207fdSwdenkTQM8260_AB_config \ 147627b207fdSwdenkTQM8260_AC_config \ 147727b207fdSwdenkTQM8260_AD_config \ 147827b207fdSwdenkTQM8260_AE_config \ 147927b207fdSwdenkTQM8260_AF_config \ 148027b207fdSwdenkTQM8260_AG_config \ 148127b207fdSwdenkTQM8260_AH_config \ 14821f62bc2dSWolfgang DenkTQM8260_AI_config \ 148327b207fdSwdenkTQM8265_AA_config: unconfig 1484f9328639SMarian Balakowicz @mkdir -p $(obj)include 148527b207fdSwdenk @case "$@" in \ 148627b207fdSwdenk TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \ 148727b207fdSwdenk TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \ 148827b207fdSwdenk TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ 148927b207fdSwdenk TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ 149027b207fdSwdenk TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ 149127b207fdSwdenk TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \ 149227b207fdSwdenk TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ 149327b207fdSwdenk TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \ 149427b207fdSwdenk TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \ 14951f62bc2dSWolfgang Denk TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ 149627b207fdSwdenk TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \ 149727b207fdSwdenk esac; \ 1498f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 149927b207fdSwdenk if [ "$${CTYPE}" != "MPC8260" ] ; then \ 1500f9328639SMarian Balakowicz echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \ 150127b207fdSwdenk fi; \ 1502f9328639SMarian Balakowicz echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \ 150327b207fdSwdenk echo "... with $${CFREQ}MHz system clock" ; \ 150427b207fdSwdenk if [ "$${CACHE}" == "yes" ] ; then \ 1505f9328639SMarian Balakowicz echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ 150627b207fdSwdenk echo "... with L2 Cache support" ; \ 15077ebf7443Swdenk else \ 1508f9328639SMarian Balakowicz echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ 15097ebf7443Swdenk echo "... without L2 Cache support" ; \ 151027b207fdSwdenk fi; \ 151127b207fdSwdenk if [ "$${BMODE}" == "60x" ] ; then \ 1512f9328639SMarian Balakowicz echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ 151327b207fdSwdenk echo "... with 60x Bus Mode" ; \ 151427b207fdSwdenk else \ 1515f9328639SMarian Balakowicz echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ 151627b207fdSwdenk echo "... without 60x Bus Mode" ; \ 15177ebf7443Swdenk fi 1518f9328639SMarian Balakowicz @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260 15197ebf7443Swdenk 1520ba91e26aSwdenkVoVPN-GW_66MHz_config \ 1521ba91e26aSwdenkVoVPN-GW_100MHz_config: unconfig 1522f9328639SMarian Balakowicz @mkdir -p $(obj)include 1523f9328639SMarian Balakowicz @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h 1524f9328639SMarian Balakowicz @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk 1525ba91e26aSwdenk 152654387ac9SwdenkZPC1900_config: unconfig 1527f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900 15287aa78614Swdenk 15294e5ca3ebSwdenk######################################################################### 15304e5ca3ebSwdenk## Coldfire 15314e5ca3ebSwdenk######################################################################### 15324e5ca3ebSwdenk 15337481266eSWolfgang Denkcobra5272_config : unconfig 1534f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272 15357481266eSWolfgang Denk 15364176c799SWolfgang DenkEB+MCF-EV123_config : unconfig 1537f9328639SMarian Balakowicz @mkdir -p $(obj)include 1538f9328639SMarian Balakowicz @mkdir -p $(obj)board/BuS/EB+MCF-EV123 1539f9328639SMarian Balakowicz @ >$(obj)include/config.h 1540f9328639SMarian Balakowicz @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk 1541f9328639SMarian Balakowicz @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS 15424176c799SWolfgang Denk 15434176c799SWolfgang DenkEB+MCF-EV123_internal_config : unconfig 1544f9328639SMarian Balakowicz @mkdir -p $(obj)include 1545f9328639SMarian Balakowicz @mkdir -p $(obj)board/BuS/EB+MCF-EV123 1546f9328639SMarian Balakowicz @ >$(obj)include/config.h 1547f9328639SMarian Balakowicz @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk 1548f9328639SMarian Balakowicz @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS 15494176c799SWolfgang Denk 15504176c799SWolfgang DenkM5271EVB_config : unconfig 1551f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb 15524176c799SWolfgang Denk 15534e5ca3ebSwdenkM5272C3_config : unconfig 1554f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3 15554e5ca3ebSwdenk 15564e5ca3ebSwdenkM5282EVB_config : unconfig 1557f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb 15584e5ca3ebSwdenk 1559c419d1d6SstroeseTASREG_config : unconfig 1560f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd 1561c419d1d6Sstroese 15623a108ed8SZachary P. Landaur5200_config : unconfig 1563f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200 15643a108ed8SZachary P. Landau 15657ebf7443Swdenk######################################################################### 1566f046ccd1SEran Liberty## MPC83xx Systems 1567f046ccd1SEran Liberty######################################################################### 1568f046ccd1SEran Liberty 1569f046ccd1SEran LibertyMPC8349ADS_config: unconfig 1570f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349ads 1571f046ccd1SEran Liberty 1572e6f2e902SMarian BalakowiczTQM834x_config: unconfig 1573f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x 1574e6f2e902SMarian Balakowicz 1575991425feSMarian BalakowiczMPC8349EMDS_config: unconfig 1576f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds 1577991425feSMarian Balakowicz 1578f046ccd1SEran Liberty######################################################################### 157942d1f039Swdenk## MPC85xx Systems 158042d1f039Swdenk######################################################################### 158142d1f039Swdenk 158242d1f039SwdenkMPC8540ADS_config: unconfig 1583f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads 158442d1f039Swdenk 1585b0e32949SLunsheng WangMPC8540EVAL_config \ 1586b0e32949SLunsheng WangMPC8540EVAL_33_config \ 1587b0e32949SLunsheng WangMPC8540EVAL_66_config \ 1588b0e32949SLunsheng WangMPC8540EVAL_33_slave_config \ 1589b0e32949SLunsheng WangMPC8540EVAL_66_slave_config: unconfig 1590f9328639SMarian Balakowicz @mkdir -p $(obj)include 1591f9328639SMarian Balakowicz @echo "" >$(obj)include/config.h ; \ 1592b0e32949SLunsheng Wang if [ "$(findstring _33_,$@)" ] ; then \ 1593b0e32949SLunsheng Wang echo -n "... 33 MHz PCI" ; \ 1594b0e32949SLunsheng Wang else \ 1595f9328639SMarian Balakowicz echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \ 1596b0e32949SLunsheng Wang echo -n "... 66 MHz PCI" ; \ 1597b0e32949SLunsheng Wang fi ; \ 1598b0e32949SLunsheng Wang if [ "$(findstring _slave_,$@)" ] ; then \ 1599f9328639SMarian Balakowicz echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \ 1600b0e32949SLunsheng Wang echo " slave" ; \ 1601b0e32949SLunsheng Wang else \ 1602b0e32949SLunsheng Wang echo " host" ; \ 1603b0e32949SLunsheng Wang fi 1604f9328639SMarian Balakowicz @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval 1605b0e32949SLunsheng Wang 160642d1f039SwdenkMPC8560ADS_config: unconfig 1607f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads 160842d1f039Swdenk 160903f5c550SwdenkMPC8541CDS_config: unconfig 1610f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds 161103f5c550Swdenk 1612d9b94f28SJon LoeligerMPC8548CDS_config: unconfig 1613f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds 1614d9b94f28SJon Loeliger 161503f5c550SwdenkMPC8555CDS_config: unconfig 1616f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds 16177abf0c58Swdenk 1618384cc687SwdenkPM854_config: unconfig 1619f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854 1620384cc687Swdenk 1621b20d0032SWolfgang DenkPM856_config: unconfig 1622f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856 1623b20d0032SWolfgang Denk 1624c15f3120Swdenksbc8540_config \ 1625c15f3120Swdenksbc8540_33_config \ 1626c15f3120Swdenksbc8540_66_config: unconfig 1627f9328639SMarian Balakowicz @mkdir -p $(obj)include 1628c15f3120Swdenk @if [ "$(findstring _66_,$@)" ] ; then \ 1629f9328639SMarian Balakowicz echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \ 1630c15f3120Swdenk echo "... 66 MHz PCI" ; \ 1631c15f3120Swdenk else \ 1632f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 1633c15f3120Swdenk echo "... 33 MHz PCI" ; \ 1634c15f3120Swdenk fi 1635f9328639SMarian Balakowicz @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560 1636c15f3120Swdenk 1637466b7410Swdenksbc8560_config \ 1638466b7410Swdenksbc8560_33_config \ 1639466b7410Swdenksbc8560_66_config: unconfig 1640f9328639SMarian Balakowicz @mkdir -p $(obj)include 16418b07a110Swdenk @if [ "$(findstring _66_,$@)" ] ; then \ 1642f9328639SMarian Balakowicz echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \ 16438b07a110Swdenk echo "... 66 MHz PCI" ; \ 16448b07a110Swdenk else \ 1645f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 16468b07a110Swdenk echo "... 33 MHz PCI" ; \ 16478b07a110Swdenk fi 1648f9328639SMarian Balakowicz @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560 16498b07a110Swdenk 165003f5c550Swdenkstxgp3_config: unconfig 1651f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3 165203f5c550Swdenk 1653d96f41e0SStefan RoeseTQM8540_config \ 1654d96f41e0SStefan RoeseTQM8541_config \ 1655d96f41e0SStefan RoeseTQM8555_config \ 1656f5c5ef4aSwdenkTQM8560_config: unconfig 1657f9328639SMarian Balakowicz @mkdir -p $(obj)include 1658a889bd27SWolfgang Denk @CTYPE=$(subst TQM,,$(@:_config=)); \ 1659f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 1660d96f41e0SStefan Roese echo "... TQM"$${CTYPE}; \ 1661f9328639SMarian Balakowicz echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \ 1662f9328639SMarian Balakowicz echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \ 1663f9328639SMarian Balakowicz echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \ 1664f9328639SMarian Balakowicz echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \ 1665f9328639SMarian Balakowicz echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h 1666f9328639SMarian Balakowicz @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx 1667f5c5ef4aSwdenk 166842d1f039Swdenk######################################################################### 16697ebf7443Swdenk## 74xx/7xx Systems 16707ebf7443Swdenk######################################################################### 16717ebf7443Swdenk 1672c7de829cSwdenkAmigaOneG3SE_config: unconfig 1673f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI 1674c7de829cSwdenk 167515647dc7SwdenkBAB7xx_config: unconfig 1676f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec 167715647dc7Swdenk 1678c419d1d6SstroeseCPCI750_config: unconfig 1679f9328639SMarian Balakowicz @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd 1680c419d1d6Sstroese 16813a473b2aSwdenkDB64360_config: unconfig 1682f9328639SMarian Balakowicz @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell 16833a473b2aSwdenk 16843a473b2aSwdenkDB64460_config: unconfig 1685f9328639SMarian Balakowicz @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell 16863a473b2aSwdenk 168715647dc7SwdenkELPPC_config: unconfig 1688f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec 168915647dc7Swdenk 16907ebf7443SwdenkEVB64260_config \ 16917ebf7443SwdenkEVB64260_750CX_config: unconfig 1692f9328639SMarian Balakowicz @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260 16937ebf7443Swdenk 169415647dc7SwdenkP3G4_config: unconfig 1695f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260 16967ebf7443Swdenk 16977ebf7443SwdenkPCIPPC2_config \ 16987ebf7443SwdenkPCIPPC6_config: unconfig 1699f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2 17007ebf7443Swdenk 170115647dc7SwdenkZUMA_config: unconfig 1702f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260 170312f34241Swdenk 1704f5e0d039SHeiko Schocherppmc7xx_config: unconfig 1705f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx 1706f5e0d039SHeiko Schocher 17077ebf7443Swdenk#======================================================================== 17087ebf7443Swdenk# ARM 17097ebf7443Swdenk#======================================================================== 17107ebf7443Swdenk######################################################################### 17117ebf7443Swdenk## StrongARM Systems 17127ebf7443Swdenk######################################################################### 17137ebf7443Swdenk 1714ea66bc88Swdenkassabet_config : unconfig 1715f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm sa1100 assabet 1716ea66bc88Swdenk 17177ebf7443Swdenkdnp1110_config : unconfig 1718f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110 17197ebf7443Swdenk 1720855a496fSwdenkgcplus_config : unconfig 1721f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus 1722855a496fSwdenk 1723855a496fSwdenklart_config : unconfig 1724f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm sa1100 lart 1725855a496fSwdenk 17267ebf7443Swdenkshannon_config : unconfig 1727f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm sa1100 shannon 17287ebf7443Swdenk 17297ebf7443Swdenk######################################################################### 17302e5983d2Swdenk## ARM92xT Systems 17317ebf7443Swdenk######################################################################### 17327ebf7443Swdenk 1733b0639ca3Swdenkxtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1)))) 173443d9616cSwdenk 17353ff02c27Swdenkxtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) 173663e73c9aSwdenk 1737a56bd922Swdenkxtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1))) 1738a56bd922Swdenk 1739a85f9f21Swdenkat91rm9200dk_config : unconfig 1740f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200 1741a85f9f21Swdenk 1742a85f9f21Swdenkcmc_pu2_config : unconfig 1743f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200 1744a85f9f21Swdenk 1745645da510SWolfgang Denkcsb637_config : unconfig 1746f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200 1747645da510SWolfgang Denk 17480e4018d2SWolfgang Denkmp2usb_config : unconfig 1749f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200 17500e4018d2SWolfgang Denk 175187cb6862SWolfgang Denk 175274f4304eSWolfgang Denk######################################################################## 175387cb6862SWolfgang Denk## ARM Integrator boards - see doc/README-integrator for more info. 175487cb6862SWolfgang Denkintegratorap_config \ 175587cb6862SWolfgang Denkap_config \ 175687cb6862SWolfgang Denkap966_config \ 175787cb6862SWolfgang Denkap922_config \ 175887cb6862SWolfgang Denkap922_XA10_config \ 175987cb6862SWolfgang Denkap7_config \ 176087cb6862SWolfgang Denkap720t_config \ 176187cb6862SWolfgang Denkap920t_config \ 176287cb6862SWolfgang Denkap926ejs_config \ 176387cb6862SWolfgang Denkap946es_config: unconfig 176496782c63SWolfgang Denk @board/integratorap/split_by_variant.sh $@ 17653d3befa7Swdenk 176687cb6862SWolfgang Denkintegratorcp_config \ 176787cb6862SWolfgang Denkcp_config \ 176887cb6862SWolfgang Denkcp920t_config \ 176987cb6862SWolfgang Denkcp926ejs_config \ 177087cb6862SWolfgang Denkcp946es_config \ 177187cb6862SWolfgang Denkcp1136_config \ 177287cb6862SWolfgang Denkcp966_config \ 177387cb6862SWolfgang Denkcp922_config \ 177487cb6862SWolfgang Denkcp922_XA10_config \ 177587cb6862SWolfgang Denkcp1026_config: unconfig 177696782c63SWolfgang Denk @board/integratorcp/split_by_variant.sh $@ 177725d6712aSwdenk 177899b0d285SWolfgang Denkkb9202_config : unconfig 1779f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200 178099b0d285SWolfgang Denk 1781f832d8a1Swdenklpd7a400_config \ 1782f832d8a1Swdenklpd7a404_config: unconfig 1783f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x 17843d3befa7Swdenk 1785281e00a3Swdenkmx1ads_config : unconfig 1786f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx 1787281e00a3Swdenk 1788281e00a3Swdenkmx1fs2_config : unconfig 1789f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx 1790281e00a3Swdenk 1791ac7eb8a3SWolfgang Denknetstar_32_config \ 1792ac7eb8a3SWolfgang Denknetstar_config: unconfig 1793f9328639SMarian Balakowicz @mkdir -p $(obj)include 1794ac7eb8a3SWolfgang Denk @if [ "$(findstring _32_,$@)" ] ; then \ 1795ac7eb8a3SWolfgang Denk echo "... 32MB SDRAM" ; \ 1796f9328639SMarian Balakowicz echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \ 1797ac7eb8a3SWolfgang Denk else \ 1798ac7eb8a3SWolfgang Denk echo "... 64MB SDRAM" ; \ 1799f9328639SMarian Balakowicz echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \ 1800ac7eb8a3SWolfgang Denk fi 1801f9328639SMarian Balakowicz @$(MKCONFIG) -a netstar arm arm925t netstar 1802ac7eb8a3SWolfgang Denk 18032e5983d2Swdenkomap1510inn_config : unconfig 1804f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn 18052e5983d2Swdenk 18061eaeb58eSwdenkomap5912osk_config : unconfig 1807f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap 18081eaeb58eSwdenk 180963e73c9aSwdenkomap1610inn_config \ 181063e73c9aSwdenkomap1610inn_cs0boot_config \ 181163e73c9aSwdenkomap1610inn_cs3boot_config \ 18123ff02c27Swdenkomap1610inn_cs_autoboot_config \ 181363e73c9aSwdenkomap1610h2_config \ 181463e73c9aSwdenkomap1610h2_cs0boot_config \ 18153ff02c27Swdenkomap1610h2_cs3boot_config \ 18163ff02c27Swdenkomap1610h2_cs_autoboot_config: unconfig 1817f9328639SMarian Balakowicz @mkdir -p $(obj)include 181863e73c9aSwdenk @if [ "$(findstring _cs0boot_, $@)" ] ; then \ 1819f9328639SMarian Balakowicz echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \ 1820b79a11ccSwdenk echo "... configured for CS0 boot"; \ 18213ff02c27Swdenk elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ 1822f9328639SMarian Balakowicz echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \ 18233ff02c27Swdenk echo "... configured for CS_AUTO boot"; \ 182463e73c9aSwdenk else \ 1825f9328639SMarian Balakowicz echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \ 1826b79a11ccSwdenk echo "... configured for CS3 boot"; \ 182763e73c9aSwdenk fi; 1828f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap 18296f21347dSwdenk 1830a56bd922Swdenkomap730p2_config \ 1831a56bd922Swdenkomap730p2_cs0boot_config \ 1832a56bd922Swdenkomap730p2_cs3boot_config : unconfig 1833f9328639SMarian Balakowicz @mkdir -p $(obj)include 1834a56bd922Swdenk @if [ "$(findstring _cs0boot_, $@)" ] ; then \ 1835f9328639SMarian Balakowicz echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ 1836a56bd922Swdenk echo "... configured for CS0 boot"; \ 1837a56bd922Swdenk else \ 1838f9328639SMarian Balakowicz echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ 1839a56bd922Swdenk echo "... configured for CS3 boot"; \ 1840a56bd922Swdenk fi; 1841f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap 1842a56bd922Swdenk 184332cb2c70SWolfgang Denksbc2410x_config: unconfig 1844f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0 184532cb2c70SWolfgang Denk 1846281e00a3Swdenkscb9328_config : unconfig 1847f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx 1848281e00a3Swdenk 18497ebf7443Swdenksmdk2400_config : unconfig 1850f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0 18517ebf7443Swdenk 18527ebf7443Swdenksmdk2410_config : unconfig 1853f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0 18547ebf7443Swdenk 18552d24a3a7SwdenkSX1_config : unconfig 1856f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm925t sx1 18572d24a3a7Swdenk 1858b2001f27Swdenk# TRAB default configuration: 8 MB Flash, 32 MB RAM 185943d9616cSwdenktrab_config \ 1860b0639ca3Swdenktrab_bigram_config \ 1861b0639ca3Swdenktrab_bigflash_config \ 1862f54ebdfaSwdenktrab_old_config: unconfig 1863f9328639SMarian Balakowicz @mkdir -p $(obj)include 1864f9328639SMarian Balakowicz @mkdir -p $(obj)board/trab 1865f9328639SMarian Balakowicz @ >$(obj)include/config.h 1866b0639ca3Swdenk @[ -z "$(findstring _bigram,$@)" ] || \ 1867f9328639SMarian Balakowicz { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ 1868f9328639SMarian Balakowicz echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \ 1869b0639ca3Swdenk echo "... with 8 MB Flash, 32 MB RAM" ; \ 1870b0639ca3Swdenk } 1871b0639ca3Swdenk @[ -z "$(findstring _bigflash,$@)" ] || \ 1872f9328639SMarian Balakowicz { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \ 1873f9328639SMarian Balakowicz echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ 1874b0639ca3Swdenk echo "... with 16 MB Flash, 16 MB RAM" ; \ 1875f9328639SMarian Balakowicz echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ 1876b0639ca3Swdenk } 1877f54ebdfaSwdenk @[ -z "$(findstring _old,$@)" ] || \ 1878f9328639SMarian Balakowicz { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ 1879f9328639SMarian Balakowicz echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ 1880b2001f27Swdenk echo "... with 8 MB Flash, 16 MB RAM" ; \ 1881f9328639SMarian Balakowicz echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ 188243d9616cSwdenk } 1883f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0 18847ebf7443Swdenk 18851cb8e980SwdenkVCMA9_config : unconfig 1886f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0 18871cb8e980Swdenk 188887cb6862SWolfgang Denk#======================================================================== 188987cb6862SWolfgang Denk# ARM supplied Versatile development boards 189087cb6862SWolfgang Denk#======================================================================== 189187cb6862SWolfgang Denkversatile_config \ 189287cb6862SWolfgang Denkversatileab_config \ 189387cb6862SWolfgang Denkversatilepb_config : unconfig 189496782c63SWolfgang Denk @board/versatile/split_by_variant.sh $@ 1895074cff0dSwdenk 18963c2b3d45Swdenkvoiceblue_smallflash_config \ 18973c2b3d45Swdenkvoiceblue_config: unconfig 1898f9328639SMarian Balakowicz @mkdir -p $(obj)include 1899f9328639SMarian Balakowicz @mkdir -p $(obj)board/voiceblue 19003c2b3d45Swdenk @if [ "$(findstring _smallflash_,$@)" ] ; then \ 19013c2b3d45Swdenk echo "... boot from lower flash bank" ; \ 1902f9328639SMarian Balakowicz echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \ 1903f9328639SMarian Balakowicz echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \ 19043c2b3d45Swdenk else \ 19053c2b3d45Swdenk echo "... boot from upper flash bank" ; \ 1906f9328639SMarian Balakowicz >$(obj)include/config.h ; \ 1907f9328639SMarian Balakowicz echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \ 19083c2b3d45Swdenk fi 1909f9328639SMarian Balakowicz @$(MKCONFIG) -a voiceblue arm arm925t voiceblue 19103c2b3d45Swdenk 191116b013e7Swdenkcm4008_config : unconfig 1912f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695 191316b013e7Swdenk 191416b013e7Swdenkcm41xx_config : unconfig 1915f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695 191616b013e7Swdenk 19170c32d96dSWolfgang Denkgth2_config : unconfig 1918f9328639SMarian Balakowicz @mkdir -p $(obj)include 1919f9328639SMarian Balakowicz @ >$(obj)include/config.h 1920f9328639SMarian Balakowicz @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h 1921f9328639SMarian Balakowicz @$(MKCONFIG) -a gth2 mips mips gth2 19220c32d96dSWolfgang Denk 1923074cff0dSwdenk######################################################################### 1924074cff0dSwdenk## S3C44B0 Systems 1925074cff0dSwdenk######################################################################### 1926074cff0dSwdenk 1927074cff0dSwdenkB2_config : unconfig 1928f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave 1929074cff0dSwdenk 19307ebf7443Swdenk######################################################################### 19317ebf7443Swdenk## ARM720T Systems 19327ebf7443Swdenk######################################################################### 19337ebf7443Swdenk 1934c570b2fdSWolfgang Denkarmadillo_config: unconfig 1935f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm720t armadillo 1936c570b2fdSWolfgang Denk 19377ebf7443Swdenkep7312_config : unconfig 1938f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm720t ep7312 19397ebf7443Swdenk 19402d24a3a7Swdenkimpa7_config : unconfig 1941f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm720t impa7 19422d24a3a7Swdenk 19432d1a537dSwdenkmodnet50_config : unconfig 1944f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm720t modnet50 19452d1a537dSwdenk 194639539887Swdenkevb4510_config : unconfig 1947f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm720t evb4510 194839539887Swdenk 19497ebf7443Swdenk######################################################################### 195043d9616cSwdenk## XScale Systems 19517ebf7443Swdenk######################################################################### 19527ebf7443Swdenk 195320787e23Swdenkadsvix_config : unconfig 1954f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa adsvix 195520787e23Swdenk 1956fabd46acSwdenkcerf250_config : unconfig 1957f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa cerf250 1958fabd46acSwdenk 19597ebf7443Swdenkcradle_config : unconfig 1960f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa cradle 19617ebf7443Swdenk 19627ebf7443Swdenkcsb226_config : unconfig 1963f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa csb226 19647ebf7443Swdenk 19650be248faSWolfgang Denkdelta_config : 1966f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa delta 19670be248faSWolfgang Denk 196843d9616cSwdenkinnokom_config : unconfig 1969f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa innokom 197043d9616cSwdenk 19712d5b561eSwdenkixdp425_config : unconfig 1972f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 19732d5b561eSwdenk 1974ba94a1bbSWolfgang Denkixdpg425_config : unconfig 1975f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 1976ba94a1bbSWolfgang Denk 197743d9616cSwdenklubbock_config : unconfig 1978f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa lubbock 197943d9616cSwdenk 19805720df78SHeiko Schocherpleb2_config : unconfig 1981f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa pleb2 19825720df78SHeiko Schocher 198352f52c14Swdenklogodl_config : unconfig 1984f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa logodl 198552f52c14Swdenk 1986ba94a1bbSWolfgang Denkpdnb3_config : unconfig 1987f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm ixp pdnb3 prodrive 1988ba94a1bbSWolfgang Denk 1989f57f70aaSWolfgang Denkpxa255_idp_config: unconfig 1990f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp 1991f57f70aaSWolfgang Denk 19923e38691eSwdenkwepep250_config : unconfig 1993f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa wepep250 19943e38691eSwdenk 19954ec3a7f0Swdenkxaeniax_config : unconfig 1996f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa xaeniax 19974ec3a7f0Swdenk 1998efa329cbSwdenkxm250_config : unconfig 1999f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa xm250 2000efa329cbSwdenk 2001ca0e7748Swdenkxsengine_config : unconfig 2002f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa xsengine 2003ca0e7748Swdenk 2004e0269579SMarkus Klotzbücherzylonite_config : 2005f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm pxa zylonite 2006e0269579SMarkus Klotzbücher 20078ed96046Swdenk######################################################################### 20088ed96046Swdenk## ARM1136 Systems 20098ed96046Swdenk######################################################################### 20108ed96046Swdenkomap2420h4_config : unconfig 2011f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4 20128ed96046Swdenk 20132262cfeeSwdenk#======================================================================== 20142262cfeeSwdenk# i386 20152262cfeeSwdenk#======================================================================== 20162262cfeeSwdenk######################################################################### 20172262cfeeSwdenk## AMD SC520 CDP 20182262cfeeSwdenk######################################################################### 20192262cfeeSwdenksc520_cdp_config : unconfig 2020f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp 20212262cfeeSwdenk 20227a8e9bedSwdenksc520_spunk_config : unconfig 2023f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk 20247a8e9bedSwdenk 20257a8e9bedSwdenksc520_spunk_rel_config : unconfig 2026f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk 20277a8e9bedSwdenk 202843d9616cSwdenk#======================================================================== 202943d9616cSwdenk# MIPS 203043d9616cSwdenk#======================================================================== 20317ebf7443Swdenk######################################################################### 203243d9616cSwdenk## MIPS32 4Kc 203343d9616cSwdenk######################################################################### 203443d9616cSwdenk 2035e0ac62d7Swdenkxtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1)))) 2036e0ac62d7Swdenk 2037e0ac62d7Swdenkincaip_100MHz_config \ 2038e0ac62d7Swdenkincaip_133MHz_config \ 2039e0ac62d7Swdenkincaip_150MHz_config \ 204043d9616cSwdenkincaip_config: unconfig 2041f9328639SMarian Balakowicz @mkdir -p $(obj)include 2042f9328639SMarian Balakowicz @ >$(obj)include/config.h 2043e0ac62d7Swdenk @[ -z "$(findstring _100MHz,$@)" ] || \ 2044f9328639SMarian Balakowicz { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \ 2045e0ac62d7Swdenk echo "... with 100MHz system clock" ; \ 2046e0ac62d7Swdenk } 2047e0ac62d7Swdenk @[ -z "$(findstring _133MHz,$@)" ] || \ 2048f9328639SMarian Balakowicz { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \ 2049e0ac62d7Swdenk echo "... with 133MHz system clock" ; \ 2050e0ac62d7Swdenk } 2051e0ac62d7Swdenk @[ -z "$(findstring _150MHz,$@)" ] || \ 2052f9328639SMarian Balakowicz { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \ 2053e0ac62d7Swdenk echo "... with 150MHz system clock" ; \ 2054e0ac62d7Swdenk } 2055f9328639SMarian Balakowicz @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip 2056e0ac62d7Swdenk 2057f4863a7aSwdenktb0229_config: unconfig 2058f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) mips mips tb0229 2059f4863a7aSwdenk 2060e0ac62d7Swdenk######################################################################### 206169459791Swdenk## MIPS32 AU1X00 206269459791Swdenk######################################################################### 206369459791Swdenkdbau1000_config : unconfig 2064f9328639SMarian Balakowicz @mkdir -p $(obj)include 2065f9328639SMarian Balakowicz @ >$(obj)include/config.h 2066f9328639SMarian Balakowicz @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h 2067f9328639SMarian Balakowicz @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 206869459791Swdenk 206969459791Swdenkdbau1100_config : unconfig 2070f9328639SMarian Balakowicz @mkdir -p $(obj)include 2071f9328639SMarian Balakowicz @ >$(obj)include/config.h 2072f9328639SMarian Balakowicz @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h 2073f9328639SMarian Balakowicz @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 207469459791Swdenk 207569459791Swdenkdbau1500_config : unconfig 2076f9328639SMarian Balakowicz @mkdir -p $(obj)include 2077f9328639SMarian Balakowicz @ >$(obj)include/config.h 2078f9328639SMarian Balakowicz @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h 2079f9328639SMarian Balakowicz @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 208069459791Swdenk 2081ff36fd85Swdenkdbau1550_config : unconfig 2082f9328639SMarian Balakowicz @mkdir -p $(obj)include 2083f9328639SMarian Balakowicz @ >$(obj)include/config.h 2084f9328639SMarian Balakowicz @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h 2085f9328639SMarian Balakowicz @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 2086ff36fd85Swdenk 2087ff36fd85Swdenkdbau1550_el_config : unconfig 2088f9328639SMarian Balakowicz @mkdir -p $(obj)include 2089f9328639SMarian Balakowicz @ >$(obj)include/config.h 2090f9328639SMarian Balakowicz @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h 2091f9328639SMarian Balakowicz @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 2092ff36fd85Swdenk 2093265817c7SWolfgang Denkpb1000_config : unconfig 2094f9328639SMarian Balakowicz @mkdir -p $(obj)include 2095f9328639SMarian Balakowicz @ >$(obj)include/config.h 2096f9328639SMarian Balakowicz @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h 2097f9328639SMarian Balakowicz @$(MKCONFIG) -a pb1x00 mips mips pb1x00 2098265817c7SWolfgang Denk 209969459791Swdenk######################################################################### 2100e0ac62d7Swdenk## MIPS64 5Kc 2101e0ac62d7Swdenk######################################################################### 210243d9616cSwdenk 21033e38691eSwdenkpurple_config : unconfig 2104f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) mips mips purple 210543d9616cSwdenk 21064a551709Swdenk#======================================================================== 21074a551709Swdenk# Nios 21084a551709Swdenk#======================================================================== 21094a551709Swdenk######################################################################### 21104a551709Swdenk## Nios32 21114a551709Swdenk######################################################################### 21124a551709Swdenk 2113c935d3bdSwdenkDK1C20_safe_32_config \ 2114c935d3bdSwdenkDK1C20_standard_32_config \ 21154a551709SwdenkDK1C20_config: unconfig 2116f9328639SMarian Balakowicz @mkdir -p $(obj)include 2117f9328639SMarian Balakowicz @ >$(obj)include/config.h 2118c935d3bdSwdenk @[ -z "$(findstring _safe_32,$@)" ] || \ 2119f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \ 2120c935d3bdSwdenk echo "... NIOS 'safe_32' configuration" ; \ 2121c935d3bdSwdenk } 2122c935d3bdSwdenk @[ -z "$(findstring _standard_32,$@)" ] || \ 2123f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ 2124c935d3bdSwdenk echo "... NIOS 'standard_32' configuration" ; \ 2125c935d3bdSwdenk } 2126c935d3bdSwdenk @[ -z "$(findstring DK1C20_config,$@)" ] || \ 2127f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ 2128c935d3bdSwdenk echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \ 2129c935d3bdSwdenk } 2130f9328639SMarian Balakowicz @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera 2131c935d3bdSwdenk 2132c935d3bdSwdenkDK1S10_safe_32_config \ 2133c935d3bdSwdenkDK1S10_standard_32_config \ 2134ec4c544bSwdenkDK1S10_mtx_ldk_20_config \ 2135c935d3bdSwdenkDK1S10_config: unconfig 2136f9328639SMarian Balakowicz @mkdir -p $(obj)include 2137f9328639SMarian Balakowicz @ >$(obj)include/config.h 2138c935d3bdSwdenk @[ -z "$(findstring _safe_32,$@)" ] || \ 2139f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \ 2140c935d3bdSwdenk echo "... NIOS 'safe_32' configuration" ; \ 2141c935d3bdSwdenk } 2142c935d3bdSwdenk @[ -z "$(findstring _standard_32,$@)" ] || \ 2143f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ 2144c935d3bdSwdenk echo "... NIOS 'standard_32' configuration" ; \ 2145c935d3bdSwdenk } 2146ec4c544bSwdenk @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \ 2147f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \ 2148ec4c544bSwdenk echo "... NIOS 'mtx_ldk_20' configuration" ; \ 2149ec4c544bSwdenk } 2150c935d3bdSwdenk @[ -z "$(findstring DK1S10_config,$@)" ] || \ 2151f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ 2152c935d3bdSwdenk echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \ 2153c935d3bdSwdenk } 2154f9328639SMarian Balakowicz @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera 21554a551709Swdenk 2156aaf224abSwdenkADNPESC1_DNPEVA2_base_32_config \ 2157aaf224abSwdenkADNPESC1_base_32_config \ 2158aaf224abSwdenkADNPESC1_config: unconfig 2159f9328639SMarian Balakowicz @mkdir -p $(obj)include 2160f9328639SMarian Balakowicz @ >$(obj)include/config.h 2161aaf224abSwdenk @[ -z "$(findstring _DNPEVA2,$@)" ] || \ 2162f9328639SMarian Balakowicz { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \ 2163aaf224abSwdenk echo "... DNP/EVA2 configuration" ; \ 2164aaf224abSwdenk } 2165aaf224abSwdenk @[ -z "$(findstring _base_32,$@)" ] || \ 2166f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \ 2167aaf224abSwdenk echo "... NIOS 'base_32' configuration" ; \ 2168aaf224abSwdenk } 2169aaf224abSwdenk @[ -z "$(findstring ADNPESC1_config,$@)" ] || \ 2170f9328639SMarian Balakowicz { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \ 2171aaf224abSwdenk echo "... NIOS 'base_32' configuration (DEFAULT)" ; \ 2172aaf224abSwdenk } 2173f9328639SMarian Balakowicz @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv 2174aaf224abSwdenk 21755c952cf0Swdenk######################################################################### 21765c952cf0Swdenk## Nios-II 21775c952cf0Swdenk######################################################################### 21785c952cf0Swdenk 21799cc83378SScott McNuttEP1C20_config : unconfig 2180f9328639SMarian Balakowicz @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera 21819cc83378SScott McNutt 21829cc83378SScott McNuttEP1S10_config : unconfig 2183f9328639SMarian Balakowicz @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera 21849cc83378SScott McNutt 21859cc83378SScott McNuttEP1S40_config : unconfig 2186f9328639SMarian Balakowicz @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera 21879cc83378SScott McNutt 21885c952cf0SwdenkPK1C20_config : unconfig 2189f9328639SMarian Balakowicz @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent 21905c952cf0Swdenk 21915c952cf0SwdenkPCI5441_config : unconfig 2192f9328639SMarian Balakowicz @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent 21934a551709Swdenk 2194507bbe3eSwdenk#======================================================================== 2195507bbe3eSwdenk# MicroBlaze 2196507bbe3eSwdenk#======================================================================== 2197507bbe3eSwdenk######################################################################### 2198507bbe3eSwdenk## Microblaze 2199507bbe3eSwdenk######################################################################### 2200507bbe3eSwdenksuzaku_config: unconfig 2201f9328639SMarian Balakowicz @mkdir -p $(obj)include 2202f9328639SMarian Balakowicz @ >$(obj)include/config.h 2203f9328639SMarian Balakowicz @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h 2204f9328639SMarian Balakowicz @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno 2205507bbe3eSwdenk 22063e38691eSwdenk######################################################################### 22070afe519aSWolfgang Denk## Blackfin 22080afe519aSWolfgang Denk######################################################################### 22090afe519aSWolfgang Denkezkit533_config : unconfig 2210f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533 22110afe519aSWolfgang Denk 22120afe519aSWolfgang Denkstamp_config : unconfig 2213f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) blackfin bf533 stamp 22140afe519aSWolfgang Denk 22150afe519aSWolfgang Denkdspstamp_config : unconfig 2216f9328639SMarian Balakowicz @$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp 22170afe519aSWolfgang Denk 22180afe519aSWolfgang Denk######################################################################### 22190afe519aSWolfgang Denk######################################################################### 22203e38691eSwdenk######################################################################### 22217ebf7443Swdenk 22227ebf7443Swdenkclean: 2223f9328639SMarian Balakowicz find $(OBJTREE) -type f \ 22247ebf7443Swdenk \( -name 'core' -o -name '*.bak' -o -name '*~' \ 22257ebf7443Swdenk -o -name '*.o' -o -name '*.a' \) -print \ 22267ebf7443Swdenk | xargs rm -f 2227f9328639SMarian Balakowicz rm -f $(obj)examples/hello_world $(obj)examples/timer \ 2228f9328639SMarian Balakowicz $(obj)examples/eepro100_eeprom $(obj)examples/sched \ 2229f9328639SMarian Balakowicz $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \ 2230d214fbbdSWolfgang Denk $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \ 2231f9328639SMarian Balakowicz $(obj)examples/test_burst 2232f9328639SMarian Balakowicz rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \ 2233f9328639SMarian Balakowicz $(obj)tools/gen_eth_addr 2234f9328639SMarian Balakowicz rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb 2235f9328639SMarian Balakowicz rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo 2236f9328639SMarian Balakowicz rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend 2237f9328639SMarian Balakowicz rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv 2238f9328639SMarian Balakowicz rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image 2239f9328639SMarian Balakowicz rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit 2240f9328639SMarian Balakowicz rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin 2241f9328639SMarian Balakowicz rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom 2242f9328639SMarian Balakowicz rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds 2243f9328639SMarian Balakowicz rm -f $(obj)include/bmp_logo.h 2244887e2ec9SStefan Roese find nand_spl -lname "*" -print | xargs rm -f 2245887e2ec9SStefan Roese rm -f nand_spl/u-boot-spl nand_spl/u-boot-spl.map 22467ebf7443Swdenk 22477ebf7443Swdenkclobber: clean 2248f9328639SMarian Balakowicz find $(OBJTREE) -type f \( -name .depend \ 22494c0d4c3bSwdenk -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ 22504c0d4c3bSwdenk -print0 \ 22514c0d4c3bSwdenk | xargs -0 rm -f 2252f9328639SMarian Balakowicz rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h 2253f9328639SMarian Balakowicz rm -fr $(obj)*.*~ 2254f9328639SMarian Balakowicz rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL) 2255f9328639SMarian Balakowicz rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c 2256f9328639SMarian Balakowicz rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c 2257f9328639SMarian Balakowicz rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm 22587ebf7443Swdenk 2259f9328639SMarian Balakowiczifeq ($(OBJTREE),$(SRCTREE)) 22607ebf7443Swdenkmrproper \ 22617ebf7443Swdenkdistclean: clobber unconfig 2262f9328639SMarian Balakowiczelse 2263f9328639SMarian Balakowiczmrproper \ 2264f9328639SMarian Balakowiczdistclean: clobber unconfig 2265f9328639SMarian Balakowicz rm -rf $(OBJTREE)/* 2266f9328639SMarian Balakowiczendif 22677ebf7443Swdenk 22687ebf7443Swdenkbackup: 22697ebf7443Swdenk F=`basename $(TOPDIR)` ; cd .. ; \ 22707ebf7443Swdenk gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F 22717ebf7443Swdenk 22727ebf7443Swdenk######################################################################### 2273