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