]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # (C) Copyright 2000-2010 | |
3 | # Wolfgang Denk, DENX Software Engineering, [email protected]. | |
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 Foundatio; 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 | VERSION = 2010 | |
25 | PATCHLEVEL = 09 | |
26 | SUBLEVEL = | |
27 | EXTRAVERSION = | |
28 | ifneq "$(SUBLEVEL)" "" | |
29 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) | |
30 | else | |
31 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION) | |
32 | endif | |
33 | TIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h | |
34 | VERSION_FILE = $(obj)include/version_autogenerated.h | |
35 | ||
36 | HOSTARCH := $(shell uname -m | \ | |
37 | sed -e s/i.86/i386/ \ | |
38 | -e s/sun4u/sparc64/ \ | |
39 | -e s/arm.*/arm/ \ | |
40 | -e s/sa110/arm/ \ | |
41 | -e s/ppc64/powerpc/ \ | |
42 | -e s/ppc/powerpc/ \ | |
43 | -e s/macppc/powerpc/\ | |
44 | -e s/sh.*/sh/) | |
45 | ||
46 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ | |
47 | sed -e 's/\(cygwin\).*/cygwin/') | |
48 | ||
49 | # Set shell to bash if possible, otherwise fall back to sh | |
50 | SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ | |
51 | else if [ -x /bin/bash ]; then echo /bin/bash; \ | |
52 | else echo sh; fi; fi) | |
53 | ||
54 | export HOSTARCH HOSTOS SHELL | |
55 | ||
56 | # Deal with colliding definitions from tcsh etc. | |
57 | VENDOR= | |
58 | ||
59 | ######################################################################### | |
60 | # Allow for silent builds | |
61 | ifeq (,$(findstring s,$(MAKEFLAGS))) | |
62 | XECHO = echo | |
63 | else | |
64 | XECHO = : | |
65 | endif | |
66 | ||
67 | ######################################################################### | |
68 | # | |
69 | # U-boot build supports producing a object files to the separate external | |
70 | # directory. Two use cases are supported: | |
71 | # | |
72 | # 1) Add O= to the make command line | |
73 | # 'make O=/tmp/build all' | |
74 | # | |
75 | # 2) Set environement variable BUILD_DIR to point to the desired location | |
76 | # 'export BUILD_DIR=/tmp/build' | |
77 | # 'make' | |
78 | # | |
79 | # The second approach can also be used with a MAKEALL script | |
80 | # 'export BUILD_DIR=/tmp/build' | |
81 | # './MAKEALL' | |
82 | # | |
83 | # Command line 'O=' setting overrides BUILD_DIR environent variable. | |
84 | # | |
85 | # When none of the above methods is used the local build is performed and | |
86 | # the object files are placed in the source directory. | |
87 | # | |
88 | ||
89 | ifdef O | |
90 | ifeq ("$(origin O)", "command line") | |
91 | BUILD_DIR := $(O) | |
92 | endif | |
93 | endif | |
94 | ||
95 | ifneq ($(BUILD_DIR),) | |
96 | saved-output := $(BUILD_DIR) | |
97 | ||
98 | # Attempt to create a output directory. | |
99 | $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) | |
100 | ||
101 | # Verify if it was successful. | |
102 | BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) | |
103 | $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) | |
104 | endif # ifneq ($(BUILD_DIR),) | |
105 | ||
106 | OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) | |
107 | SRCTREE := $(CURDIR) | |
108 | TOPDIR := $(SRCTREE) | |
109 | LNDIR := $(OBJTREE) | |
110 | export TOPDIR SRCTREE OBJTREE | |
111 | ||
112 | MKCONFIG := $(SRCTREE)/mkconfig | |
113 | export MKCONFIG | |
114 | ||
115 | ifneq ($(OBJTREE),$(SRCTREE)) | |
116 | REMOTE_BUILD := 1 | |
117 | export REMOTE_BUILD | |
118 | endif | |
119 | ||
120 | # $(obj) and (src) are defined in config.mk but here in main Makefile | |
121 | # we also need them before config.mk is included which is the case for | |
122 | # some targets like unconfig, clean, clobber, distclean, etc. | |
123 | ifneq ($(OBJTREE),$(SRCTREE)) | |
124 | obj := $(OBJTREE)/ | |
125 | src := $(SRCTREE)/ | |
126 | else | |
127 | obj := | |
128 | src := | |
129 | endif | |
130 | export obj src | |
131 | ||
132 | # Make sure CDPATH settings don't interfere | |
133 | unexport CDPATH | |
134 | ||
135 | ######################################################################### | |
136 | ||
137 | # The "tools" are needed early, so put this first | |
138 | # Don't include stuff already done in $(LIBS) | |
139 | SUBDIRS = tools \ | |
140 | examples/standalone \ | |
141 | examples/api | |
142 | ||
143 | .PHONY : $(SUBDIRS) | |
144 | ||
145 | ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) | |
146 | ||
147 | # Include autoconf.mk before config.mk so that the config options are available | |
148 | # to all top level build files. We need the dummy all: target to prevent the | |
149 | # dependency target in autoconf.mk.dep from being the default. | |
150 | all: | |
151 | sinclude $(obj)include/autoconf.mk.dep | |
152 | sinclude $(obj)include/autoconf.mk | |
153 | ||
154 | # load ARCH, BOARD, and CPU configuration | |
155 | include $(obj)include/config.mk | |
156 | export ARCH CPU BOARD VENDOR SOC | |
157 | ||
158 | # set default to nothing for native builds | |
159 | ifeq ($(HOSTARCH),$(ARCH)) | |
160 | CROSS_COMPILE ?= | |
161 | endif | |
162 | ||
163 | # load other configuration | |
164 | include $(TOPDIR)/config.mk | |
165 | ||
166 | ######################################################################### | |
167 | # U-Boot objects....order is important (i.e. start must be first) | |
168 | ||
169 | OBJS = $(CPUDIR)/start.o | |
170 | ifeq ($(CPU),i386) | |
171 | OBJS += $(CPUDIR)/start16.o | |
172 | OBJS += $(CPUDIR)/resetvec.o | |
173 | endif | |
174 | ifeq ($(CPU),ppc4xx) | |
175 | OBJS += $(CPUDIR)/resetvec.o | |
176 | endif | |
177 | ifeq ($(CPU),mpc85xx) | |
178 | OBJS += $(CPUDIR)/resetvec.o | |
179 | endif | |
180 | ||
181 | OBJS := $(addprefix $(obj),$(OBJS)) | |
182 | ||
183 | LIBS = lib/libgeneric.a | |
184 | LIBS += lib/lzma/liblzma.a | |
185 | LIBS += lib/lzo/liblzo.a | |
186 | LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ | |
187 | "board/$(VENDOR)/common/lib$(VENDOR).a"; fi) | |
188 | LIBS += $(CPUDIR)/lib$(CPU).a | |
189 | ifdef SOC | |
190 | LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).a | |
191 | endif | |
192 | ifeq ($(CPU),ixp) | |
193 | LIBS += arch/arm/cpu/ixp/npe/libnpe.a | |
194 | endif | |
195 | LIBS += arch/$(ARCH)/lib/lib$(ARCH).a | |
196 | LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \ | |
197 | fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a fs/yaffs2/libyaffs2.a \ | |
198 | fs/ubifs/libubifs.a | |
199 | LIBS += net/libnet.a | |
200 | LIBS += disk/libdisk.a | |
201 | LIBS += drivers/bios_emulator/libatibiosemu.a | |
202 | LIBS += drivers/block/libblock.a | |
203 | LIBS += drivers/dma/libdma.a | |
204 | LIBS += drivers/fpga/libfpga.a | |
205 | LIBS += drivers/gpio/libgpio.a | |
206 | LIBS += drivers/hwmon/libhwmon.a | |
207 | LIBS += drivers/i2c/libi2c.a | |
208 | LIBS += drivers/input/libinput.a | |
209 | LIBS += drivers/misc/libmisc.a | |
210 | LIBS += drivers/mmc/libmmc.a | |
211 | LIBS += drivers/mtd/libmtd.a | |
212 | LIBS += drivers/mtd/nand/libnand.a | |
213 | LIBS += drivers/mtd/onenand/libonenand.a | |
214 | LIBS += drivers/mtd/ubi/libubi.a | |
215 | LIBS += drivers/mtd/spi/libspi_flash.a | |
216 | LIBS += drivers/net/libnet.a | |
217 | LIBS += drivers/net/phy/libphy.a | |
218 | LIBS += drivers/pci/libpci.a | |
219 | LIBS += drivers/pcmcia/libpcmcia.a | |
220 | LIBS += drivers/power/libpower.a | |
221 | LIBS += drivers/spi/libspi.a | |
222 | ifeq ($(CPU),mpc83xx) | |
223 | LIBS += drivers/qe/qe.a | |
224 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a | |
225 | endif | |
226 | ifeq ($(CPU),mpc85xx) | |
227 | LIBS += drivers/qe/qe.a | |
228 | LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a | |
229 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a | |
230 | endif | |
231 | ifeq ($(CPU),mpc86xx) | |
232 | LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a | |
233 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a | |
234 | endif | |
235 | LIBS += drivers/rtc/librtc.a | |
236 | LIBS += drivers/serial/libserial.a | |
237 | LIBS += drivers/twserial/libtws.a | |
238 | LIBS += drivers/usb/gadget/libusb_gadget.a | |
239 | LIBS += drivers/usb/host/libusb_host.a | |
240 | LIBS += drivers/usb/musb/libusb_musb.a | |
241 | LIBS += drivers/usb/phy/libusb_phy.a | |
242 | LIBS += drivers/video/libvideo.a | |
243 | LIBS += drivers/watchdog/libwatchdog.a | |
244 | LIBS += common/libcommon.a | |
245 | LIBS += lib/libfdt/libfdt.a | |
246 | LIBS += api/libapi.a | |
247 | LIBS += post/libpost.a | |
248 | ||
249 | ifeq ($(SOC),omap3) | |
250 | LIBS += $(CPUDIR)/omap-common/libomap-common.a | |
251 | endif | |
252 | ifeq ($(SOC),omap4) | |
253 | LIBS += $(CPUDIR)/omap-common/libomap-common.a | |
254 | endif | |
255 | ||
256 | ifeq ($(SOC),s5pc1xx) | |
257 | LIBS += $(CPUDIR)/s5p-common/libs5p-common.a | |
258 | endif | |
259 | ifeq ($(SOC),s5pc2xx) | |
260 | LIBS += $(CPUDIR)/s5p-common/libs5p-common.a | |
261 | endif | |
262 | ||
263 | LIBS := $(addprefix $(obj),$(LIBS)) | |
264 | .PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE) | |
265 | ||
266 | LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).a | |
267 | LIBBOARD := $(addprefix $(obj),$(LIBBOARD)) | |
268 | ||
269 | # Add GCC lib | |
270 | ifdef USE_PRIVATE_LIBGCC | |
271 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") | |
272 | PLATFORM_LIBGCC = -L $(OBJTREE)/arch/$(ARCH)/lib -lgcc | |
273 | else | |
274 | PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc | |
275 | endif | |
276 | else | |
277 | PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc | |
278 | endif | |
279 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) | |
280 | export PLATFORM_LIBS | |
281 | ||
282 | # Special flags for CPP when processing the linker script. | |
283 | # Pass the version down so we can handle backwards compatibility | |
284 | # on the fly. | |
285 | LDPPFLAGS += \ | |
286 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ | |
287 | $(shell $(LD) --version | \ | |
288 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') | |
289 | ||
290 | ifeq ($(CONFIG_NAND_U_BOOT),y) | |
291 | NAND_SPL = nand_spl | |
292 | U_BOOT_NAND = $(obj)u-boot-nand.bin | |
293 | endif | |
294 | ||
295 | ifeq ($(CONFIG_ONENAND_U_BOOT),y) | |
296 | ONENAND_IPL = onenand_ipl | |
297 | U_BOOT_ONENAND = $(obj)u-boot-onenand.bin | |
298 | ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin | |
299 | endif | |
300 | ||
301 | __OBJS := $(subst $(obj),,$(OBJS)) | |
302 | __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD)) | |
303 | ||
304 | ######################################################################### | |
305 | ######################################################################### | |
306 | ||
307 | # Always append ALL so that arch config.mk's can add custom ones | |
308 | ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND) | |
309 | ||
310 | all: $(ALL) | |
311 | ||
312 | $(obj)u-boot.hex: $(obj)u-boot | |
313 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ | |
314 | ||
315 | $(obj)u-boot.srec: $(obj)u-boot | |
316 | $(OBJCOPY) -O srec $< $@ | |
317 | ||
318 | $(obj)u-boot.bin: $(obj)u-boot | |
319 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ | |
320 | ||
321 | $(obj)u-boot.ldr: $(obj)u-boot | |
322 | $(CREATE_LDR_ENV) | |
323 | $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) | |
324 | ||
325 | $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr | |
326 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary | |
327 | ||
328 | $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr | |
329 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary | |
330 | ||
331 | $(obj)u-boot.img: $(obj)u-boot.bin | |
332 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ | |
333 | -a $(TEXT_BASE) -e 0 \ | |
334 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ | |
335 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ | |
336 | -d $< $@ | |
337 | ||
338 | $(obj)u-boot.imx: $(obj)u-boot.bin | |
339 | $(obj)tools/mkimage -n $(IMX_CONFIG) -T imximage \ | |
340 | -e $(TEXT_BASE) -d $< $@ | |
341 | ||
342 | $(obj)u-boot.kwb: $(obj)u-boot.bin | |
343 | $(obj)tools/mkimage -n $(KWD_CONFIG) -T kwbimage \ | |
344 | -a $(TEXT_BASE) -e $(TEXT_BASE) -d $< $@ | |
345 | ||
346 | $(obj)u-boot.sha1: $(obj)u-boot.bin | |
347 | $(obj)tools/ubsha1 $(obj)u-boot.bin | |
348 | ||
349 | $(obj)u-boot.dis: $(obj)u-boot | |
350 | $(OBJDUMP) -d $< > $@ | |
351 | ||
352 | GEN_UBOOT = \ | |
353 | UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \ | |
354 | sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ | |
355 | cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ | |
356 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ | |
357 | -Map u-boot.map -o u-boot | |
358 | $(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds | |
359 | $(GEN_UBOOT) | |
360 | ifeq ($(CONFIG_KALLSYMS),y) | |
361 | smap=`$(call SYSTEM_MAP,u-boot) | \ | |
362 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ | |
363 | $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \ | |
364 | -c common/system_map.c -o $(obj)common/system_map.o | |
365 | $(GEN_UBOOT) $(obj)common/system_map.o | |
366 | endif | |
367 | ||
368 | $(OBJS): depend | |
369 | $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@)) | |
370 | ||
371 | $(LIBS): depend $(SUBDIRS) | |
372 | $(MAKE) -C $(dir $(subst $(obj),,$@)) | |
373 | ||
374 | $(LIBBOARD): depend $(LIBS) | |
375 | $(MAKE) -C $(dir $(subst $(obj),,$@)) | |
376 | ||
377 | $(SUBDIRS): depend | |
378 | $(MAKE) -C $@ all | |
379 | ||
380 | $(LDSCRIPT): depend | |
381 | $(MAKE) -C $(dir $@) $(notdir $@) | |
382 | ||
383 | $(obj)u-boot.lds: $(LDSCRIPT) | |
384 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ | |
385 | ||
386 | $(NAND_SPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk | |
387 | $(MAKE) -C nand_spl/board/$(BOARDDIR) all | |
388 | ||
389 | $(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin | |
390 | cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin | |
391 | ||
392 | $(ONENAND_IPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk | |
393 | $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all | |
394 | ||
395 | $(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin | |
396 | cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin | |
397 | ||
398 | $(VERSION_FILE): | |
399 | @( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \ | |
400 | '$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ) > [email protected] | |
401 | @cmp -s $@ [email protected] && rm -f [email protected] || mv -f [email protected] $@ | |
402 | ||
403 | $(TIMESTAMP_FILE): | |
404 | @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@ | |
405 | @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@ | |
406 | ||
407 | updater: | |
408 | $(MAKE) -C tools/updater all | |
409 | ||
410 | # Explicitly make _depend in subdirs containing multiple targets to prevent | |
411 | # parallel sub-makes creating .depend files simultaneously. | |
412 | depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk | |
413 | for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \ | |
414 | $(MAKE) -C $$dir _depend ; done | |
415 | ||
416 | TAG_SUBDIRS = $(SUBDIRS) | |
417 | TAG_SUBDIRS += $(dir $(__LIBS)) | |
418 | TAG_SUBDIRS += include | |
419 | ||
420 | tags ctags: | |
421 | ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \ | |
422 | -name '*.[chS]' -print` | |
423 | ||
424 | etags: | |
425 | etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \ | |
426 | -name '*.[chS]' -print` | |
427 | cscope: | |
428 | find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files | |
429 | cscope -b -q -k | |
430 | ||
431 | SYSTEM_MAP = \ | |
432 | $(NM) $1 | \ | |
433 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ | |
434 | LC_ALL=C sort | |
435 | $(obj)System.map: $(obj)u-boot | |
436 | @$(call SYSTEM_MAP,$<) > $(obj)System.map | |
437 | ||
438 | # | |
439 | # Auto-generate the autoconf.mk file (which is included by all makefiles) | |
440 | # | |
441 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. | |
442 | # the dep file is only include in this top level makefile to determine when | |
443 | # to regenerate the autoconf.mk file. | |
444 | $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h | |
445 | @$(XECHO) Generating $@ ; \ | |
446 | set -e ; \ | |
447 | : Generate the dependancies ; \ | |
448 | $(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \ | |
449 | -MQ $(obj)include/autoconf.mk include/common.h > $@ | |
450 | ||
451 | $(obj)include/autoconf.mk: $(obj)include/config.h | |
452 | @$(XECHO) Generating $@ ; \ | |
453 | set -e ; \ | |
454 | : Extract the config macros ; \ | |
455 | $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \ | |
456 | sed -n -f tools/scripts/define2mk.sed > [email protected] && \ | |
457 | mv [email protected] $@ | |
458 | ||
459 | ######################################################################### | |
460 | else # !config.mk | |
461 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ | |
462 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ | |
463 | $(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) $(VERSION_FILE) \ | |
464 | updater depend dep tags ctags etags cscope $(obj)System.map: | |
465 | @echo "System not configured - see README" >&2 | |
466 | @ exit 1 | |
467 | ||
468 | tools: | |
469 | $(MAKE) -C $@ all | |
470 | endif # config.mk | |
471 | ||
472 | easylogo env gdb: | |
473 | $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION} | |
474 | gdbtools: gdb | |
475 | ||
476 | tools-all: easylogo env gdb | |
477 | $(MAKE) -C tools HOST_TOOLS_ALL=y | |
478 | ||
479 | .PHONY : CHANGELOG | |
480 | CHANGELOG: | |
481 | git log --no-merges U-Boot-1_1_5.. | \ | |
482 | unexpand -a | sed -e 's/\s\s*$$//' > $@ | |
483 | ||
484 | include/license.h: tools/bin2header COPYING | |
485 | cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h | |
486 | ######################################################################### | |
487 | ||
488 | unconfig: | |
489 | @rm -f $(obj)include/config.h $(obj)include/config.mk \ | |
490 | $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ | |
491 | $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep | |
492 | ||
493 | %_config:: unconfig | |
494 | @$(MKCONFIG) -A $(@:_config=) | |
495 | ||
496 | sinclude .boards.depend | |
497 | .boards.depend: boards.cfg | |
498 | awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@ | |
499 | ||
500 | # | |
501 | # Functions to generate common board directory names | |
502 | # | |
503 | lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/') | |
504 | ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/') | |
505 | ||
506 | #======================================================================== | |
507 | # PowerPC | |
508 | #======================================================================== | |
509 | ||
510 | ######################################################################### | |
511 | ## MPC5xxx Systems | |
512 | ######################################################################### | |
513 | ||
514 | digsy_mtc_config \ | |
515 | digsy_mtc_LOWBOOT_config \ | |
516 | digsy_mtc_RAMBOOT_config: unconfig | |
517 | @mkdir -p $(obj)include | |
518 | @mkdir -p $(obj)board/digsy_mtc | |
519 | @ >$(obj)include/config.h | |
520 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ | |
521 | echo "TEXT_BASE = 0xFF000000" >$(obj)board/digsy_mtc/config.tmp | |
522 | @[ -z "$(findstring RAMBOOT_,$@)" ] || \ | |
523 | echo "TEXT_BASE = 0x00100000" >$(obj)board/digsy_mtc/config.tmp | |
524 | @$(MKCONFIG) -n $@ -a digsy_mtc powerpc mpc5xxx digsy_mtc | |
525 | ||
526 | galaxy5200_LOWBOOT_config \ | |
527 | galaxy5200_config: unconfig | |
528 | @mkdir -p $(obj)include | |
529 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h | |
530 | @$(MKCONFIG) -n $@ -a galaxy5200 powerpc mpc5xxx galaxy5200 | |
531 | ||
532 | Lite5200_config \ | |
533 | Lite5200_LOWBOOT_config \ | |
534 | Lite5200_LOWBOOT08_config \ | |
535 | icecube_5200_config \ | |
536 | icecube_5200_LOWBOOT_config \ | |
537 | icecube_5200_LOWBOOT08_config \ | |
538 | icecube_5200_DDR_config \ | |
539 | icecube_5200_DDR_LOWBOOT_config \ | |
540 | icecube_5200_DDR_LOWBOOT08_config: unconfig | |
541 | @mkdir -p $(obj)include | |
542 | @mkdir -p $(obj)board/icecube | |
543 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ | |
544 | if [ "$(findstring DDR,$@)" ] ; \ | |
545 | then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ | |
546 | else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ | |
547 | fi | |
548 | @[ -z "$(findstring LOWBOOT08,$@)" ] || \ | |
549 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp | |
550 | @[ -z "$(findstring DDR,$@)" ] || \ | |
551 | echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h | |
552 | @$(MKCONFIG) -n $@ -a IceCube powerpc mpc5xxx icecube | |
553 | ||
554 | lite5200b_config \ | |
555 | lite5200b_PM_config \ | |
556 | lite5200b_LOWBOOT_config: unconfig | |
557 | @mkdir -p $(obj)include | |
558 | @mkdir -p $(obj)board/icecube | |
559 | @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h | |
560 | @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h | |
561 | @[ -z "$(findstring _PM_,$@)" ] || \ | |
562 | echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h | |
563 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ | |
564 | echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp | |
565 | @$(MKCONFIG) -n $@ -a IceCube powerpc mpc5xxx icecube | |
566 | ||
567 | mcc200_config \ | |
568 | mcc200_SDRAM_config \ | |
569 | mcc200_highboot_config \ | |
570 | mcc200_COM12_config \ | |
571 | mcc200_COM12_SDRAM_config \ | |
572 | mcc200_COM12_highboot_config \ | |
573 | mcc200_COM12_highboot_SDRAM_config \ | |
574 | mcc200_highboot_SDRAM_config \ | |
575 | prs200_config \ | |
576 | prs200_DDR_config \ | |
577 | prs200_highboot_config \ | |
578 | prs200_highboot_DDR_config: unconfig | |
579 | @mkdir -p $(obj)include | |
580 | @mkdir -p $(obj)board/mcc200 | |
581 | @[ -z "$(findstring highboot,$@)" ] || \ | |
582 | echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp | |
583 | @[ -n "$(findstring _SDRAM,$@)" ] || \ | |
584 | if [ -n "$(findstring prs200,$@)" ]; \ | |
585 | then \ | |
586 | if [ -z "$(findstring _DDR,$@)" ];\ | |
587 | then \ | |
588 | echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\ | |
589 | fi; \ | |
590 | fi | |
591 | @[ -z "$(findstring _SDRAM,$@)" ] || \ | |
592 | echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h | |
593 | @[ -z "$(findstring COM12,$@)" ] || \ | |
594 | echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h | |
595 | @[ -z "$(findstring prs200,$@)" ] || \ | |
596 | echo "#define CONFIG_PRS200" >>$(obj)include/config.h | |
597 | @$(MKCONFIG) -n $@ -a mcc200 powerpc mpc5xxx mcc200 | |
598 | ||
599 | MVBC_P_config: unconfig | |
600 | @mkdir -p $(obj)include | |
601 | @mkdir -p $(obj)board/mvbc_p | |
602 | @ >$(obj)include/config.h | |
603 | @[ -z "$(findstring MVBC_P,$@)" ] || \ | |
604 | echo "#define CONFIG_MVBC_P" >>$(obj)include/config.h | |
605 | @$(MKCONFIG) -n $@ -a $@ powerpc mpc5xxx mvbc_p matrix_vision | |
606 | ||
607 | MVSMR_config: unconfig | |
608 | @mkdir -p $(obj)include | |
609 | @mkdir -p $(obj)board/matrix_vision/mvsmr | |
610 | @$(MKCONFIG) $@ powerpc mpc5xxx mvsmr matrix_vision | |
611 | ||
612 | pcm030_config \ | |
613 | pcm030_LOWBOOT_config: unconfig | |
614 | @mkdir -p $(obj)include $(obj)board/phytec/pcm030 | |
615 | @ >$(obj)include/config.h | |
616 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ | |
617 | echo "TEXT_BASE = 0xFF000000" >$(obj)board/phytec/pcm030/config.tmp | |
618 | @$(MKCONFIG) -n $@ -a pcm030 powerpc mpc5xxx pcm030 phytec | |
619 | ||
620 | PM520_config \ | |
621 | PM520_DDR_config \ | |
622 | PM520_ROMBOOT_config \ | |
623 | PM520_ROMBOOT_DDR_config: unconfig | |
624 | @mkdir -p $(obj)include | |
625 | @[ -z "$(findstring DDR,$@)" ] || \ | |
626 | echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h | |
627 | @[ -z "$(findstring ROMBOOT,$@)" ] || \ | |
628 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h | |
629 | @$(MKCONFIG) -n $@ -a PM520 powerpc mpc5xxx pm520 | |
630 | ||
631 | TB5200_B_config \ | |
632 | TB5200_config: unconfig | |
633 | @mkdir -p $(obj)include | |
634 | @[ -z "$(findstring _B,$@)" ] || \ | |
635 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h | |
636 | @$(MKCONFIG) -n $@ -a TB5200 powerpc mpc5xxx tqm5200 tqc | |
637 | ||
638 | MINI5200_config \ | |
639 | EVAL5200_config \ | |
640 | TOP5200_config: unconfig | |
641 | @mkdir -p $(obj)include | |
642 | @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h | |
643 | @$(MKCONFIG) -n $@ -a TOP5200 powerpc mpc5xxx top5200 emk | |
644 | ||
645 | Total5200_config \ | |
646 | Total5200_lowboot_config \ | |
647 | Total5200_Rev2_config \ | |
648 | Total5200_Rev2_lowboot_config: unconfig | |
649 | @mkdir -p $(obj)include | |
650 | @mkdir -p $(obj)board/total5200 | |
651 | @[ -n "$(findstring Rev,$@)" ] || \ | |
652 | echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h | |
653 | @[ -z "$(findstring Rev2_,$@)" ] || \ | |
654 | echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h | |
655 | @[ -z "$(findstring lowboot_,$@)" ] || \ | |
656 | echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp | |
657 | @$(MKCONFIG) -n $@ -a Total5200 powerpc mpc5xxx total5200 | |
658 | ||
659 | cam5200_config \ | |
660 | cam5200_niosflash_config \ | |
661 | fo300_config \ | |
662 | MiniFAP_config \ | |
663 | TQM5200S_config \ | |
664 | TQM5200S_HIGHBOOT_config \ | |
665 | TQM5200_B_config \ | |
666 | TQM5200_B_HIGHBOOT_config \ | |
667 | TQM5200_config \ | |
668 | TQM5200_STK100_config: unconfig | |
669 | @mkdir -p $(obj)include | |
670 | @mkdir -p $(obj)board/tqc/tqm5200 | |
671 | @[ -z "$(findstring cam5200,$@)" ] || \ | |
672 | { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \ | |
673 | echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ | |
674 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ | |
675 | } | |
676 | @[ -z "$(findstring niosflash,$@)" ] || \ | |
677 | echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h | |
678 | @[ -z "$(findstring fo300,$@)" ] || \ | |
679 | echo "#define CONFIG_FO300" >>$(obj)include/config.h | |
680 | @[ -z "$(findstring MiniFAP,$@)" ] || \ | |
681 | echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h | |
682 | @[ -z "$(findstring STK100,$@)" ] || \ | |
683 | echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h | |
684 | @[ -z "$(findstring TQM5200_B,$@)" ] || \ | |
685 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h | |
686 | @[ -z "$(findstring TQM5200S,$@)" ] || \ | |
687 | { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ | |
688 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ | |
689 | } | |
690 | @[ -z "$(findstring HIGHBOOT,$@)" ] || \ | |
691 | echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp | |
692 | @$(MKCONFIG) -n $@ -a TQM5200 powerpc mpc5xxx tqm5200 tqc | |
693 | ||
694 | ######################################################################### | |
695 | ## MPC512x Systems | |
696 | ######################################################################### | |
697 | ||
698 | mpc5121ads_config \ | |
699 | mpc5121ads_rev2_config \ | |
700 | : unconfig | |
701 | @mkdir -p $(obj)include | |
702 | @if [ "$(findstring rev2,$@)" ] ; then \ | |
703 | echo "#define CONFIG_MPC5121ADS_REV2 1" > $(obj)include/config.h; \ | |
704 | fi | |
705 | @$(MKCONFIG) -n $@ -a mpc5121ads powerpc mpc512x mpc5121ads freescale | |
706 | ||
707 | ######################################################################### | |
708 | ## MPC8xx Systems | |
709 | ######################################################################### | |
710 | ||
711 | Adder87x_config \ | |
712 | AdderII_config \ | |
713 | AdderUSB_config \ | |
714 | Adder_config \ | |
715 | : unconfig | |
716 | @mkdir -p $(obj)include | |
717 | $(if $(findstring AdderII,$@), \ | |
718 | @echo "#define CONFIG_MPC852T" > $(obj)include/config.h) | |
719 | @$(MKCONFIG) -n $@ -a Adder powerpc mpc8xx adder | |
720 | ||
721 | ADS860_config \ | |
722 | FADS823_config \ | |
723 | FADS850SAR_config \ | |
724 | MPC86xADS_config \ | |
725 | MPC885ADS_config \ | |
726 | FADS860T_config: unconfig | |
727 | @$(MKCONFIG) -n $@ $@ powerpc mpc8xx fads | |
728 | ||
729 | GEN860T_SC_config \ | |
730 | GEN860T_config: unconfig | |
731 | @mkdir -p $(obj)include | |
732 | @[ -z "$(findstring _SC,$@)" ] || \ | |
733 | echo "#define CONFIG_SC" >>$(obj)include/config.h | |
734 | @$(MKCONFIG) -n $@ -a GEN860T powerpc mpc8xx gen860t | |
735 | ||
736 | ICU862_100MHz_config \ | |
737 | ICU862_config: unconfig | |
738 | @mkdir -p $(obj)include | |
739 | @[ -z "$(findstring _100MHz,$@)" ] || \ | |
740 | echo "#define CONFIG_100MHz" >>$(obj)include/config.h | |
741 | @$(MKCONFIG) -n $@ -a ICU862 powerpc mpc8xx icu862 | |
742 | ||
743 | IVML24_256_config \ | |
744 | IVML24_128_config \ | |
745 | IVML24_config: unconfig | |
746 | @mkdir -p $(obj)include | |
747 | @[ -z "$(findstring IVML24_config,$@)" ] || \ | |
748 | echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h | |
749 | @[ -z "$(findstring IVML24_128_config,$@)" ] || \ | |
750 | echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h | |
751 | @[ -z "$(findstring IVML24_256_config,$@)" ] || \ | |
752 | echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h | |
753 | @$(MKCONFIG) -n $@ -a IVML24 powerpc mpc8xx ivm | |
754 | ||
755 | IVMS8_256_config \ | |
756 | IVMS8_128_config \ | |
757 | IVMS8_config: unconfig | |
758 | @mkdir -p $(obj)include | |
759 | @[ -z "$(findstring IVMS8_config,$@)" ] || \ | |
760 | echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h | |
761 | @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ | |
762 | echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h | |
763 | @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ | |
764 | echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h | |
765 | @$(MKCONFIG) -n $@ -a IVMS8 powerpc mpc8xx ivm | |
766 | ||
767 | MBX_config \ | |
768 | MBX860T_config: unconfig | |
769 | @$(MKCONFIG) -n $@ $@ powerpc mpc8xx mbx8xx | |
770 | ||
771 | NETVIA_V2_config \ | |
772 | NETVIA_config: unconfig | |
773 | @mkdir -p $(obj)include | |
774 | @[ -z "$(findstring NETVIA_config,$@)" ] || \ | |
775 | echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h | |
776 | @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \ | |
777 | echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h | |
778 | @$(MKCONFIG) -n $@ -a NETVIA powerpc mpc8xx netvia | |
779 | ||
780 | NETPHONE_V2_config \ | |
781 | NETPHONE_config: unconfig | |
782 | @mkdir -p $(obj)include | |
783 | @[ -z "$(findstring NETPHONE_config,$@)" ] || \ | |
784 | echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h | |
785 | @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \ | |
786 | echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h | |
787 | @$(MKCONFIG) -n $@ -a NETPHONE powerpc mpc8xx netphone | |
788 | ||
789 | NETTA_ISDN_6412_SWAPHOOK_config \ | |
790 | NETTA_ISDN_SWAPHOOK_config \ | |
791 | NETTA_6412_SWAPHOOK_config \ | |
792 | NETTA_SWAPHOOK_config \ | |
793 | NETTA_ISDN_6412_config \ | |
794 | NETTA_ISDN_config \ | |
795 | NETTA_6412_config \ | |
796 | NETTA_config: unconfig | |
797 | @mkdir -p $(obj)include | |
798 | @[ -z "$(findstring ISDN_,$@)" ] || \ | |
799 | echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h | |
800 | @[ -n "$(findstring ISDN_,$@)" ] || \ | |
801 | echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h | |
802 | @[ -z "$(findstring 6412_,$@)" ] || \ | |
803 | echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h | |
804 | @[ -n "$(findstring 6412_,$@)" ] || \ | |
805 | echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h | |
806 | @[ -z "$(findstring SWAPHOOK_,$@)" ] || \ | |
807 | echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h | |
808 | @[ -n "$(findstring SWAPHOOK_,$@)" ] || \ | |
809 | echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h | |
810 | @$(MKCONFIG) -n $@ -a NETTA powerpc mpc8xx netta | |
811 | ||
812 | NETTA2_V2_config \ | |
813 | NETTA2_config: unconfig | |
814 | @mkdir -p $(obj)include | |
815 | @[ -z "$(findstring NETTA2_config,$@)" ] || \ | |
816 | echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h | |
817 | @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \ | |
818 | echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h | |
819 | @$(MKCONFIG) -n $@ -a NETTA2 powerpc mpc8xx netta2 | |
820 | ||
821 | NC650_Rev1_config \ | |
822 | NC650_Rev2_config \ | |
823 | CP850_config: unconfig | |
824 | @mkdir -p $(obj)include | |
825 | @[ -z "$(findstring CP850,$@)" ] || \ | |
826 | { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \ | |
827 | echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ | |
828 | } | |
829 | @[ -z "$(findstring Rev1,$@)" ] || \ | |
830 | { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \ | |
831 | } | |
832 | @[ -z "$(findstring Rev2,$@)" ] || \ | |
833 | { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ | |
834 | } | |
835 | @$(MKCONFIG) -n $@ -a NC650 powerpc mpc8xx nc650 | |
836 | ||
837 | RPXlite_DW_64_config \ | |
838 | RPXlite_DW_LCD_config \ | |
839 | RPXlite_DW_64_LCD_config \ | |
840 | RPXlite_DW_NVRAM_config \ | |
841 | RPXlite_DW_NVRAM_64_config \ | |
842 | RPXlite_DW_NVRAM_LCD_config \ | |
843 | RPXlite_DW_NVRAM_64_LCD_config \ | |
844 | RPXlite_DW_config: unconfig | |
845 | @mkdir -p $(obj)include | |
846 | @[ -z "$(findstring _64,$@)" ] || \ | |
847 | echo "#define RPXlite_64MHz" >>$(obj)include/config.h | |
848 | @[ -z "$(findstring _LCD,$@)" ] || \ | |
849 | { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ | |
850 | echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ | |
851 | } | |
852 | @[ -z "$(findstring _NVRAM,$@)" ] || \ | |
853 | echo "#define CONFIG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h | |
854 | @$(MKCONFIG) -n $@ -a RPXlite_DW powerpc mpc8xx RPXlite_dw | |
855 | ||
856 | RRvision_LCD_config: unconfig | |
857 | @mkdir -p $(obj)include | |
858 | @echo "#define CONFIG_LCD" >$(obj)include/config.h | |
859 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h | |
860 | @$(MKCONFIG) -a RRvision powerpc mpc8xx RRvision | |
861 | ||
862 | SPD823TS_config: unconfig | |
863 | @$(MKCONFIG) $@ powerpc mpc8xx spd8xx | |
864 | ||
865 | SXNI855T_config: unconfig | |
866 | @$(MKCONFIG) $@ powerpc mpc8xx sixnet | |
867 | ||
868 | # Play some tricks for configuration selection | |
869 | # Only 855 and 860 boards may come with FEC | |
870 | # and only 823 boards may have LCD support | |
871 | xtract_8xx = $(subst _LCD,,$1) | |
872 | ||
873 | FPS850L_config \ | |
874 | FPS860L_config \ | |
875 | NSCU_config \ | |
876 | TQM823L_config \ | |
877 | TQM823L_LCD_config \ | |
878 | TQM850L_config \ | |
879 | TQM855L_config \ | |
880 | TQM860L_config \ | |
881 | TQM862L_config \ | |
882 | TQM823M_config \ | |
883 | TQM850M_config \ | |
884 | TQM855M_config \ | |
885 | TQM860M_config \ | |
886 | TQM862M_config \ | |
887 | TQM866M_config \ | |
888 | TQM885D_config \ | |
889 | TK885D_config \ | |
890 | virtlab2_config: unconfig | |
891 | @mkdir -p $(obj)include | |
892 | @[ -z "$(findstring _LCD,$@)" ] || \ | |
893 | { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ | |
894 | echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ | |
895 | } | |
896 | @$(MKCONFIG) -n $@ -a $(call xtract_8xx,$@) powerpc mpc8xx tqm8xx tqc | |
897 | ||
898 | TTTech_config: unconfig | |
899 | @mkdir -p $(obj)include | |
900 | @echo "#define CONFIG_LCD" >$(obj)include/config.h | |
901 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h | |
902 | @$(MKCONFIG) -a TQM823L powerpc mpc8xx tqm8xx tqc | |
903 | ||
904 | v37_config: unconfig | |
905 | @mkdir -p $(obj)include | |
906 | @echo "#define CONFIG_LCD" >$(obj)include/config.h | |
907 | @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h | |
908 | @$(MKCONFIG) $@ powerpc mpc8xx v37 | |
909 | ||
910 | wtk_config: unconfig | |
911 | @mkdir -p $(obj)include | |
912 | @echo "#define CONFIG_LCD" >$(obj)include/config.h | |
913 | @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h | |
914 | @$(MKCONFIG) -a TQM823L powerpc mpc8xx tqm8xx tqc | |
915 | ||
916 | ######################################################################### | |
917 | ## PPC4xx Systems | |
918 | ######################################################################### | |
919 | ||
920 | acadia_nand_config: unconfig | |
921 | @mkdir -p $(obj)include $(obj)board/amcc/acadia | |
922 | @mkdir -p $(obj)nand_spl/board/amcc/acadia | |
923 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h | |
924 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp | |
925 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
926 | @$(MKCONFIG) -n $@ -a acadia powerpc ppc4xx acadia amcc | |
927 | ||
928 | bamboo_nand_config: unconfig | |
929 | @mkdir -p $(obj)include $(obj)board/amcc/bamboo | |
930 | @mkdir -p $(obj)nand_spl/board/amcc/bamboo | |
931 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h | |
932 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp | |
933 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
934 | @$(MKCONFIG) -n $@ -a bamboo powerpc ppc4xx bamboo amcc | |
935 | ||
936 | # Arches, Canyonlands & Glacier use different U-Boot images | |
937 | arches_config \ | |
938 | canyonlands_config \ | |
939 | glacier_config: unconfig | |
940 | @mkdir -p $(obj)include | |
941 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ | |
942 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h | |
943 | @$(MKCONFIG) -n $@ -a canyonlands powerpc ppc4xx canyonlands amcc | |
944 | ||
945 | canyonlands_nand_config \ | |
946 | glacier_nand_config: unconfig | |
947 | @mkdir -p $(obj)include $(obj)board/amcc/canyonlands | |
948 | @mkdir -p $(obj)nand_spl/board/amcc/canyonlands | |
949 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h | |
950 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_nand_config=)) | \ | |
951 | tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h | |
952 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/canyonlands/config.tmp | |
953 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
954 | @$(MKCONFIG) -n $@ -a canyonlands powerpc ppc4xx canyonlands amcc | |
955 | ||
956 | CATcenter_config \ | |
957 | CATcenter_25_config \ | |
958 | CATcenter_33_config: unconfig | |
959 | @mkdir -p $(obj)include | |
960 | @echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h | |
961 | @echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h | |
962 | @[ -z "$(findstring _25,$@)" ] || \ | |
963 | echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h | |
964 | @[ -z "$(findstring _33,$@)" ] || \ | |
965 | echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h | |
966 | @$(MKCONFIG) -n $@ -a CATcenter powerpc ppc4xx PPChameleonEVB dave | |
967 | ||
968 | CPCI405_config \ | |
969 | CPCI4052_config \ | |
970 | CPCI405DT_config \ | |
971 | CPCI405AB_config: unconfig | |
972 | @mkdir -p $(obj)board/esd/cpci405 | |
973 | @$(MKCONFIG) -n $@ $@ powerpc ppc4xx cpci405 esd | |
974 | ||
975 | fx12mm_flash_config: unconfig | |
976 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic | |
977 | @mkdir -p $(obj)include $(obj)board/avnet/fx12mm | |
978 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\ | |
979 | > $(obj)board/avnet/fx12mm/config.tmp | |
980 | @echo "TEXT_BASE := 0xFFCB0000" \ | |
981 | >> $(obj)board/avnet/fx12mm/config.tmp | |
982 | @$(MKCONFIG) fx12mm powerpc ppc4xx fx12mm avnet | |
983 | ||
984 | fx12mm_config: unconfig | |
985 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic | |
986 | @mkdir -p $(obj)include $(obj)board/avnet/fx12mm | |
987 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\ | |
988 | > $(obj)board/avnet/fx12mm/config.tmp | |
989 | @echo "TEXT_BASE := 0x03000000" \ | |
990 | >> $(obj)board/avnet/fx12mm/config.tmp | |
991 | @$(MKCONFIG) fx12mm powerpc ppc4xx fx12mm avnet | |
992 | ||
993 | # Compact-Center(codename intip) & DevCon-Center use different U-Boot images | |
994 | intip_config \ | |
995 | devconcenter_config: unconfig | |
996 | @mkdir -p $(obj)include | |
997 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ | |
998 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h | |
999 | @$(MKCONFIG) -n $@ -a intip powerpc ppc4xx intip gdsys | |
1000 | ||
1001 | hcu4_config \ | |
1002 | hcu5_config \ | |
1003 | mcu25_config: unconfig | |
1004 | @mkdir -p $(obj)board/netstal/common | |
1005 | @$(MKCONFIG) $@ powerpc ppc4xx $(call lcname,$@) netstal | |
1006 | ||
1007 | # Kilauea & Haleakala images are identical (recognized via PVR) | |
1008 | kilauea_config \ | |
1009 | haleakala_config: unconfig | |
1010 | @$(MKCONFIG) -n $@ kilauea powerpc ppc4xx kilauea amcc | |
1011 | ||
1012 | kilauea_nand_config \ | |
1013 | haleakala_nand_config: unconfig | |
1014 | @mkdir -p $(obj)include $(obj)board/amcc/kilauea | |
1015 | @mkdir -p $(obj)nand_spl/board/amcc/kilauea | |
1016 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h | |
1017 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/kilauea/config.tmp | |
1018 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
1019 | @$(MKCONFIG) -n $@ -a kilauea powerpc ppc4xx kilauea amcc | |
1020 | ||
1021 | MIP405T_config: unconfig | |
1022 | @mkdir -p $(obj)include | |
1023 | @echo "#define CONFIG_MIP405T" >$(obj)include/config.h | |
1024 | @$(XECHO) "Enable subset config for MIP405T" | |
1025 | @$(MKCONFIG) -a MIP405 powerpc ppc4xx mip405 mpl | |
1026 | ||
1027 | ml507_flash_config: unconfig | |
1028 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic | |
1029 | @mkdir -p $(obj)include $(obj)board/xilinx/ml507 | |
1030 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\ | |
1031 | > $(obj)board/xilinx/ml507/config.tmp | |
1032 | @echo "TEXT_BASE := 0xFE360000" \ | |
1033 | >> $(obj)board/xilinx/ml507/config.tmp | |
1034 | @$(MKCONFIG) ml507 powerpc ppc4xx ml507 xilinx | |
1035 | ||
1036 | ml507_config: unconfig | |
1037 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic | |
1038 | @mkdir -p $(obj)include $(obj)board/xilinx/ml507 | |
1039 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\ | |
1040 | > $(obj)board/xilinx/ml507/config.tmp | |
1041 | @echo "TEXT_BASE := 0x04000000" \ | |
1042 | >> $(obj)board/xilinx/ml507/config.tmp | |
1043 | @$(MKCONFIG) $@ powerpc ppc4xx ml507 xilinx | |
1044 | ||
1045 | OCRTC_config \ | |
1046 | ORSG_config: unconfig | |
1047 | @$(MKCONFIG) -n $@ $@ powerpc ppc4xx ocrtc esd | |
1048 | ||
1049 | PPChameleonEVB_config \ | |
1050 | PPChameleonEVB_BA_25_config \ | |
1051 | PPChameleonEVB_ME_25_config \ | |
1052 | PPChameleonEVB_HI_25_config \ | |
1053 | PPChameleonEVB_BA_33_config \ | |
1054 | PPChameleonEVB_ME_33_config \ | |
1055 | PPChameleonEVB_HI_33_config: unconfig | |
1056 | @mkdir -p $(obj)include | |
1057 | @[ -z "$(findstring EVB_BA,$@)" ] || \ | |
1058 | echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h | |
1059 | @[ -z "$(findstring EVB_ME,$@)" ] || \ | |
1060 | echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h | |
1061 | @[ -z "$(findstring EVB_HI,$@)" ] || \ | |
1062 | echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h | |
1063 | @[ -z "$(findstring _25,$@)" ] || \ | |
1064 | echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h | |
1065 | @[ -z "$(findstring _33,$@)" ] || \ | |
1066 | echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h | |
1067 | @$(MKCONFIG) -n $@ -a PPChameleonEVB powerpc ppc4xx PPChameleonEVB dave | |
1068 | ||
1069 | sequoia_config \ | |
1070 | rainier_config: unconfig | |
1071 | @mkdir -p $(obj)include | |
1072 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ | |
1073 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h | |
1074 | @$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc | |
1075 | ||
1076 | sequoia_nand_config \ | |
1077 | rainier_nand_config: unconfig | |
1078 | @mkdir -p $(obj)include $(obj)board/amcc/sequoia | |
1079 | @mkdir -p $(obj)nand_spl/board/amcc/sequoia | |
1080 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h | |
1081 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ | |
1082 | tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h | |
1083 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp | |
1084 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
1085 | @$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc | |
1086 | ||
1087 | sequoia_ramboot_config \ | |
1088 | rainier_ramboot_config: unconfig | |
1089 | @mkdir -p $(obj)include $(obj)board/amcc/sequoia | |
1090 | @echo "#define CONFIG_SYS_RAMBOOT" > $(obj)include/config.h | |
1091 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ | |
1092 | tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h | |
1093 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp | |
1094 | @echo "LDSCRIPT = board/amcc/sequoia/u-boot-ram.lds" >> \ | |
1095 | $(obj)board/amcc/sequoia/config.tmp | |
1096 | @$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc | |
1097 | ||
1098 | v5fx30teval_config: unconfig | |
1099 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic | |
1100 | @mkdir -p $(obj)include $(obj)board/avnet/v5fx30teval | |
1101 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\ | |
1102 | > $(obj)board/avnet/v5fx30teval/config.tmp | |
1103 | @echo "TEXT_BASE := 0x03000000" \ | |
1104 | >> $(obj)board/avnet/v5fx30teval/config.tmp | |
1105 | @$(MKCONFIG) $@ powerpc ppc4xx v5fx30teval avnet | |
1106 | ||
1107 | v5fx30teval_flash_config: unconfig | |
1108 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic | |
1109 | @mkdir -p $(obj)include $(obj)board/avnet/v5fx30teval | |
1110 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\ | |
1111 | > $(obj)board/avnet/v5fx30teval/config.tmp | |
1112 | @echo "TEXT_BASE := 0xFF1C0000" \ | |
1113 | >> $(obj)board/avnet/v5fx30teval/config.tmp | |
1114 | @$(MKCONFIG) v5fx30teval powerpc ppc4xx v5fx30teval avnet | |
1115 | ||
1116 | W7OLMC_config \ | |
1117 | W7OLMG_config: unconfig | |
1118 | @$(MKCONFIG) $@ powerpc ppc4xx w7o | |
1119 | ||
1120 | # Walnut & Sycamore images are identical (recognized via PVR) | |
1121 | walnut_config \ | |
1122 | sycamore_config: unconfig | |
1123 | @$(MKCONFIG) -n $@ walnut powerpc ppc4xx walnut amcc | |
1124 | ||
1125 | xilinx-ppc405-generic_flash_config: unconfig | |
1126 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic | |
1127 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\ | |
1128 | > $(obj)board/xilinx/ppc405-generic/config.tmp | |
1129 | @echo "TEXT_BASE := 0xFE360000" \ | |
1130 | >> $(obj)board/xilinx/ppc405-generic/config.tmp | |
1131 | @$(MKCONFIG) xilinx-ppc405-generic powerpc ppc4xx ppc405-generic xilinx | |
1132 | ||
1133 | xilinx-ppc405-generic_config: unconfig | |
1134 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic | |
1135 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\ | |
1136 | > $(obj)board/xilinx/ppc405-generic/config.tmp | |
1137 | @echo "TEXT_BASE := 0x04000000" \ | |
1138 | >> $(obj)board/xilinx/ppc405-generic/config.tmp | |
1139 | @$(MKCONFIG) xilinx-ppc405-generic powerpc ppc4xx ppc405-generic xilinx | |
1140 | ||
1141 | xilinx-ppc440-generic_flash_config: unconfig | |
1142 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic | |
1143 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\ | |
1144 | > $(obj)board/xilinx/ppc440-generic/config.tmp | |
1145 | @echo "TEXT_BASE := 0xFE360000" \ | |
1146 | >> $(obj)board/xilinx/ppc440-generic/config.tmp | |
1147 | @$(MKCONFIG) xilinx-ppc440-generic powerpc ppc4xx ppc440-generic xilinx | |
1148 | ||
1149 | xilinx-ppc440-generic_config: unconfig | |
1150 | @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic | |
1151 | @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\ | |
1152 | > $(obj)board/xilinx/ppc440-generic/config.tmp | |
1153 | @echo "TEXT_BASE := 0x04000000" \ | |
1154 | >> $(obj)board/xilinx/ppc440-generic/config.tmp | |
1155 | @$(MKCONFIG) xilinx-ppc440-generic powerpc ppc4xx ppc440-generic xilinx | |
1156 | ||
1157 | yosemite_config \ | |
1158 | yellowstone_config: unconfig | |
1159 | @mkdir -p $(obj)include | |
1160 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ | |
1161 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h | |
1162 | @$(MKCONFIG) -n $@ -a yosemite powerpc ppc4xx yosemite amcc | |
1163 | ||
1164 | ######################################################################### | |
1165 | ## MPC824x Systems | |
1166 | ######################################################################### | |
1167 | ||
1168 | eXalion_config: unconfig | |
1169 | @$(MKCONFIG) $(@:_config=) powerpc mpc824x eXalion | |
1170 | ||
1171 | CPC45_config \ | |
1172 | CPC45_ROMBOOT_config: unconfig | |
1173 | @mkdir -p $(obj)include ; \ | |
1174 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
1175 | echo "CONFIG_BOOT_ROM = y" >> $(obj)include/config.mk ; \ | |
1176 | else \ | |
1177 | echo "CONFIG_BOOT_ROM = n" >> $(obj)include/config.mk ; \ | |
1178 | fi; \ | |
1179 | echo "export CONFIG_BOOT_ROM" >> $(obj)include/config.mk; | |
1180 | @$(MKCONFIG) -n $@ CPC45 powerpc mpc824x cpc45 | |
1181 | ||
1182 | # HDLAN is broken ATM. Should be fixed as soon as hardware is available and as | |
1183 | # time permits. | |
1184 | #linkstation_HDLAN_config \ | |
1185 | # Remove this line when HDLAN is fixed | |
1186 | linkstation_HGLAN_config: unconfig | |
1187 | @mkdir -p $(obj)include | |
1188 | @case $@ in \ | |
1189 | *HGLAN*) echo "#define CONFIG_HGLAN 1" >$(obj)include/config.h; ;; \ | |
1190 | *HDLAN*) echo "#define CONFIG_HLAN 1" >$(obj)include/config.h; ;; \ | |
1191 | esac | |
1192 | @$(MKCONFIG) -n $@ -a linkstation powerpc mpc824x linkstation | |
1193 | ||
1194 | Sandpoint8240_config: unconfig | |
1195 | @$(MKCONFIG) $@ powerpc mpc824x sandpoint | |
1196 | ||
1197 | Sandpoint8245_config: unconfig | |
1198 | @$(MKCONFIG) $@ powerpc mpc824x sandpoint | |
1199 | ||
1200 | ######################################################################### | |
1201 | ## MPC8260 Systems | |
1202 | ######################################################################### | |
1203 | ||
1204 | cogent_mpc8260_config: unconfig | |
1205 | @$(MKCONFIG) $(@:_config=) powerpc mpc8260 cogent | |
1206 | ||
1207 | CPU86_config \ | |
1208 | CPU86_ROMBOOT_config: unconfig | |
1209 | @mkdir -p $(obj)include ; \ | |
1210 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
1211 | echo "CONFIG_BOOT_ROM = y" >> $(obj)include/config.mk ; \ | |
1212 | else \ | |
1213 | echo "CONFIG_BOOT_ROM = n" >> $(obj)include/config.mk ; \ | |
1214 | fi; \ | |
1215 | echo "export CONFIG_BOOT_ROM" >> $(obj)include/config.mk; | |
1216 | @$(MKCONFIG) -n $@ CPU86 powerpc mpc8260 cpu86 | |
1217 | ||
1218 | CPU87_config \ | |
1219 | CPU87_ROMBOOT_config: unconfig | |
1220 | @mkdir -p $(obj)include ; \ | |
1221 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
1222 | echo "CONFIG_BOOT_ROM = y" >> $(obj)include/config.mk ; \ | |
1223 | else \ | |
1224 | echo "CONFIG_BOOT_ROM = n" >> $(obj)include/config.mk ; \ | |
1225 | fi; \ | |
1226 | echo "export CONFIG_BOOT_ROM" >> $(obj)include/config.mk; | |
1227 | @$(MKCONFIG) -n $@ CPU87 powerpc mpc8260 cpu87 | |
1228 | ||
1229 | ep8248_config \ | |
1230 | ep8248E_config : unconfig | |
1231 | @$(MKCONFIG) -n $@ ep8248 powerpc mpc8260 ep8248 | |
1232 | ||
1233 | ISPAN_config \ | |
1234 | ISPAN_REVB_config: unconfig | |
1235 | @mkdir -p $(obj)include | |
1236 | @if [ "$(findstring _REVB_,$@)" ] ; then \ | |
1237 | echo "#define CONFIG_SYS_REV_B" > $(obj)include/config.h ; \ | |
1238 | fi | |
1239 | @$(MKCONFIG) -n $@ -a ISPAN powerpc mpc8260 ispan | |
1240 | ||
1241 | MPC8260ADS_config \ | |
1242 | MPC8260ADS_lowboot_config \ | |
1243 | MPC8260ADS_33MHz_config \ | |
1244 | MPC8260ADS_33MHz_lowboot_config \ | |
1245 | MPC8260ADS_40MHz_config \ | |
1246 | MPC8260ADS_40MHz_lowboot_config \ | |
1247 | MPC8272ADS_config \ | |
1248 | MPC8272ADS_lowboot_config \ | |
1249 | PQ2FADS_config \ | |
1250 | PQ2FADS_lowboot_config \ | |
1251 | PQ2FADS-VR_config \ | |
1252 | PQ2FADS-VR_lowboot_config \ | |
1253 | PQ2FADS-ZU_config \ | |
1254 | PQ2FADS-ZU_lowboot_config \ | |
1255 | PQ2FADS-ZU_66MHz_config \ | |
1256 | PQ2FADS-ZU_66MHz_lowboot_config \ | |
1257 | : unconfig | |
1258 | @mkdir -p $(obj)include | |
1259 | @mkdir -p $(obj)board/freescale/mpc8260ads | |
1260 | $(if $(findstring PQ2FADS,$@), \ | |
1261 | @echo "#define CONFIG_ADSTYPE CONFIG_SYS_PQ2FADS" > $(obj)include/config.h, \ | |
1262 | @echo "#define CONFIG_ADSTYPE CONFIG_SYS_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h) | |
1263 | $(if $(findstring MHz,$@), \ | |
1264 | @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \ | |
1265 | $(if $(findstring VR,$@), \ | |
1266 | @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h)) | |
1267 | @[ -z "$(findstring lowboot_,$@)" ] || \ | |
1268 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/freescale/mpc8260ads/config.tmp | |
1269 | @$(MKCONFIG) -n $@ -a MPC8260ADS powerpc mpc8260 mpc8260ads freescale | |
1270 | ||
1271 | muas3001_dev_config \ | |
1272 | muas3001_config : unconfig | |
1273 | @mkdir -p $(obj)include | |
1274 | @mkdir -p $(obj)board/muas3001 | |
1275 | @if [ "$(findstring dev,$@)" ] ; then \ | |
1276 | echo "#define CONFIG_MUAS_DEV_BOARD" > $(obj)include/config.h ; \ | |
1277 | fi | |
1278 | @$(MKCONFIG) -n $@ -a muas3001 powerpc mpc8260 muas3001 | |
1279 | ||
1280 | # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash | |
1281 | PM825_config \ | |
1282 | PM825_ROMBOOT_config \ | |
1283 | PM825_BIGFLASH_config \ | |
1284 | PM825_ROMBOOT_BIGFLASH_config \ | |
1285 | PM826_config \ | |
1286 | PM826_ROMBOOT_config \ | |
1287 | PM826_BIGFLASH_config \ | |
1288 | PM826_ROMBOOT_BIGFLASH_config: unconfig | |
1289 | @mkdir -p $(obj)include | |
1290 | @mkdir -p $(obj)board/pm826 | |
1291 | @if [ "$(findstring PM825_,$@)" ] ; then \ | |
1292 | echo "#define CONFIG_PCI" >$(obj)include/config.h ; \ | |
1293 | else \ | |
1294 | >$(obj)include/config.h ; \ | |
1295 | fi | |
1296 | @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
1297 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ | |
1298 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ | |
1299 | if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ | |
1300 | echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ | |
1301 | fi; \ | |
1302 | else \ | |
1303 | if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ | |
1304 | $(XECHO) "... with 32 MB Flash" ; \ | |
1305 | echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ | |
1306 | echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \ | |
1307 | else \ | |
1308 | echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \ | |
1309 | fi; \ | |
1310 | fi | |
1311 | @$(MKCONFIG) -n $@ -a PM826 powerpc mpc8260 pm826 | |
1312 | ||
1313 | PM828_config \ | |
1314 | PM828_PCI_config \ | |
1315 | PM828_ROMBOOT_config \ | |
1316 | PM828_ROMBOOT_PCI_config: unconfig | |
1317 | @mkdir -p $(obj)include | |
1318 | @mkdir -p $(obj)board/pm826 | |
1319 | @if [ "$(findstring _PCI_,$@)" ] ; then \ | |
1320 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ | |
1321 | fi | |
1322 | @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
1323 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ | |
1324 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ | |
1325 | fi | |
1326 | @$(MKCONFIG) -n $@ -a PM828 powerpc mpc8260 pm828 | |
1327 | ||
1328 | Rattler8248_config \ | |
1329 | Rattler_config: unconfig | |
1330 | @mkdir -p $(obj)include | |
1331 | $(if $(findstring 8248,$@), \ | |
1332 | @echo "#define CONFIG_MPC8248" > $(obj)include/config.h) | |
1333 | @$(MKCONFIG) -n $@ -a Rattler powerpc mpc8260 rattler | |
1334 | ||
1335 | TQM8255_AA_config \ | |
1336 | TQM8260_AA_config \ | |
1337 | TQM8260_AB_config \ | |
1338 | TQM8260_AC_config \ | |
1339 | TQM8260_AD_config \ | |
1340 | TQM8260_AE_config \ | |
1341 | TQM8260_AF_config \ | |
1342 | TQM8260_AG_config \ | |
1343 | TQM8260_AH_config \ | |
1344 | TQM8260_AI_config \ | |
1345 | TQM8265_AA_config: unconfig | |
1346 | @mkdir -p $(obj)include | |
1347 | @case "$@" in \ | |
1348 | TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \ | |
1349 | TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \ | |
1350 | TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ | |
1351 | TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ | |
1352 | TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ | |
1353 | TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \ | |
1354 | TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ | |
1355 | TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \ | |
1356 | TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \ | |
1357 | TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ | |
1358 | TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \ | |
1359 | esac; \ | |
1360 | if [ "$${CTYPE}" != "MPC8260" ] ; then \ | |
1361 | echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \ | |
1362 | fi; \ | |
1363 | echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \ | |
1364 | if [ "$${CACHE}" = "yes" ] ; then \ | |
1365 | echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ | |
1366 | else \ | |
1367 | echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ | |
1368 | fi; \ | |
1369 | if [ "$${BMODE}" = "60x" ] ; then \ | |
1370 | echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ | |
1371 | else \ | |
1372 | echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ | |
1373 | fi | |
1374 | @$(MKCONFIG) -n $@ -a TQM8260 powerpc mpc8260 tqm8260 tqc | |
1375 | ||
1376 | VoVPN-GW_66MHz_config \ | |
1377 | VoVPN-GW_100MHz_config: unconfig | |
1378 | @mkdir -p $(obj)include | |
1379 | @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h | |
1380 | @$(MKCONFIG) -n $@ -a VoVPN-GW powerpc mpc8260 vovpn-gw funkwerk | |
1381 | ||
1382 | ######################################################################### | |
1383 | ## Coldfire | |
1384 | ######################################################################### | |
1385 | ||
1386 | astro_mcf5373l_config \ | |
1387 | astro_mcf5373l_RAM_config : unconfig | |
1388 | @$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro | |
1389 | ||
1390 | M52277EVB_config \ | |
1391 | M52277EVB_spansion_config \ | |
1392 | M52277EVB_stmicro_config : unconfig | |
1393 | @case "$@" in \ | |
1394 | M52277EVB_config) FLASH=SPANSION;; \ | |
1395 | M52277EVB_spansion_config) FLASH=SPANSION;; \ | |
1396 | M52277EVB_stmicro_config) FLASH=STMICRO;; \ | |
1397 | esac; \ | |
1398 | if [ "$${FLASH}" = "SPANSION" ] ; then \ | |
1399 | echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \ | |
1400 | echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \ | |
1401 | cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \ | |
1402 | fi; \ | |
1403 | if [ "$${FLASH}" = "STMICRO" ] ; then \ | |
1404 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ | |
1405 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ | |
1406 | echo "TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \ | |
1407 | cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \ | |
1408 | fi | |
1409 | @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale | |
1410 | ||
1411 | M5235EVB_config \ | |
1412 | M5235EVB_Flash16_config \ | |
1413 | M5235EVB_Flash32_config: unconfig | |
1414 | @case "$@" in \ | |
1415 | M5235EVB_config) FLASH=16;; \ | |
1416 | M5235EVB_Flash16_config) FLASH=16;; \ | |
1417 | M5235EVB_Flash32_config) FLASH=32;; \ | |
1418 | esac; \ | |
1419 | if [ "$${FLASH}" != "16" ] ; then \ | |
1420 | echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \ | |
1421 | echo "TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ | |
1422 | cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \ | |
1423 | else \ | |
1424 | echo "TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ | |
1425 | cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \ | |
1426 | fi | |
1427 | @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale | |
1428 | ||
1429 | cobra5272_config : unconfig | |
1430 | @$(MKCONFIG) $@ m68k mcf52x2 cobra5272 | |
1431 | ||
1432 | EB+MCF-EV123_config : unconfig | |
1433 | @mkdir -p $(obj)include | |
1434 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 | |
1435 | @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk | |
1436 | @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS | |
1437 | ||
1438 | EB+MCF-EV123_internal_config : unconfig | |
1439 | @mkdir -p $(obj)include | |
1440 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 | |
1441 | @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk | |
1442 | @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS | |
1443 | ||
1444 | M5329AFEE_config \ | |
1445 | M5329BFEE_config : unconfig | |
1446 | @case "$@" in \ | |
1447 | M5329AFEE_config) NAND=0;; \ | |
1448 | M5329BFEE_config) NAND=16;; \ | |
1449 | esac; \ | |
1450 | if [ "$${NAND}" != "0" ] ; then \ | |
1451 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ | |
1452 | fi | |
1453 | @$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale | |
1454 | ||
1455 | M5373EVB_config : unconfig | |
1456 | @case "$@" in \ | |
1457 | M5373EVB_config) NAND=16;; \ | |
1458 | esac; \ | |
1459 | if [ "$${NAND}" != "0" ] ; then \ | |
1460 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ | |
1461 | fi | |
1462 | @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale | |
1463 | ||
1464 | M54451EVB_config \ | |
1465 | M54451EVB_stmicro_config : unconfig | |
1466 | @case "$@" in \ | |
1467 | M54451EVB_config) FLASH=NOR;; \ | |
1468 | M54451EVB_stmicro_config) FLASH=STMICRO;; \ | |
1469 | esac; \ | |
1470 | if [ "$${FLASH}" = "NOR" ] ; then \ | |
1471 | echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \ | |
1472 | cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \ | |
1473 | fi; \ | |
1474 | if [ "$${FLASH}" = "STMICRO" ] ; then \ | |
1475 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ | |
1476 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ | |
1477 | echo "TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \ | |
1478 | cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \ | |
1479 | fi; \ | |
1480 | echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ; | |
1481 | @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale | |
1482 | ||
1483 | M54455EVB_config \ | |
1484 | M54455EVB_atmel_config \ | |
1485 | M54455EVB_intel_config \ | |
1486 | M54455EVB_a33_config \ | |
1487 | M54455EVB_a66_config \ | |
1488 | M54455EVB_i33_config \ | |
1489 | M54455EVB_i66_config \ | |
1490 | M54455EVB_stm33_config : unconfig | |
1491 | @case "$@" in \ | |
1492 | M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \ | |
1493 | M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \ | |
1494 | M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \ | |
1495 | M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \ | |
1496 | M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \ | |
1497 | M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \ | |
1498 | M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \ | |
1499 | M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \ | |
1500 | esac; \ | |
1501 | if [ "$${FLASH}" = "INTEL" ] ; then \ | |
1502 | echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \ | |
1503 | echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ | |
1504 | cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \ | |
1505 | fi; \ | |
1506 | if [ "$${FLASH}" = "ATMEL" ] ; then \ | |
1507 | echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \ | |
1508 | echo "TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ | |
1509 | cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \ | |
1510 | fi; \ | |
1511 | if [ "$${FLASH}" = "STMICRO" ] ; then \ | |
1512 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ | |
1513 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ | |
1514 | echo "TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \ | |
1515 | cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \ | |
1516 | fi; \ | |
1517 | echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \ | |
1518 | @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale | |
1519 | ||
1520 | M5475AFE_config \ | |
1521 | M5475BFE_config \ | |
1522 | M5475CFE_config \ | |
1523 | M5475DFE_config \ | |
1524 | M5475EFE_config \ | |
1525 | M5475FFE_config \ | |
1526 | M5475GFE_config : unconfig | |
1527 | @case "$@" in \ | |
1528 | M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ | |
1529 | M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ | |
1530 | M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ | |
1531 | M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ | |
1532 | M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ | |
1533 | M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ | |
1534 | M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ | |
1535 | esac; \ | |
1536 | echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \ | |
1537 | echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ | |
1538 | echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ | |
1539 | if [ "$${RAM1}" != "0" ] ; then \ | |
1540 | echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ | |
1541 | fi; \ | |
1542 | if [ "$${CODE}" != "0" ] ; then \ | |
1543 | echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ | |
1544 | fi; \ | |
1545 | if [ "$${VID}" == "1" ] ; then \ | |
1546 | echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \ | |
1547 | fi; \ | |
1548 | if [ "$${USB}" == "1" ] ; then \ | |
1549 | echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \ | |
1550 | fi | |
1551 | @$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale | |
1552 | ||
1553 | M5485AFE_config \ | |
1554 | M5485BFE_config \ | |
1555 | M5485CFE_config \ | |
1556 | M5485DFE_config \ | |
1557 | M5485EFE_config \ | |
1558 | M5485FFE_config \ | |
1559 | M5485GFE_config \ | |
1560 | M5485HFE_config : unconfig | |
1561 | @case "$@" in \ | |
1562 | M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ | |
1563 | M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ | |
1564 | M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ | |
1565 | M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ | |
1566 | M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ | |
1567 | M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ | |
1568 | M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ | |
1569 | M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \ | |
1570 | esac; \ | |
1571 | echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \ | |
1572 | echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ | |
1573 | echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ | |
1574 | if [ "$${RAM1}" != "0" ] ; then \ | |
1575 | echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ | |
1576 | fi; \ | |
1577 | if [ "$${CODE}" != "0" ] ; then \ | |
1578 | echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ | |
1579 | fi; \ | |
1580 | if [ "$${VID}" == "1" ] ; then \ | |
1581 | echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \ | |
1582 | fi; \ | |
1583 | if [ "$${USB}" == "1" ] ; then \ | |
1584 | echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \ | |
1585 | fi | |
1586 | @$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale | |
1587 | ||
1588 | ######################################################################### | |
1589 | ## MPC83xx Systems | |
1590 | ######################################################################### | |
1591 | ||
1592 | MPC8313ERDB_33_config \ | |
1593 | MPC8313ERDB_66_config \ | |
1594 | MPC8313ERDB_NAND_33_config \ | |
1595 | MPC8313ERDB_NAND_66_config: unconfig | |
1596 | @mkdir -p $(obj)include | |
1597 | @mkdir -p $(obj)board/freescale/mpc8313erdb | |
1598 | @if [ "$(findstring _33_,$@)" ] ; then \ | |
1599 | echo "#define CONFIG_SYS_33MHZ" >>$(obj)include/config.h ; \ | |
1600 | fi ; \ | |
1601 | if [ "$(findstring _66_,$@)" ] ; then \ | |
1602 | echo "#define CONFIG_SYS_66MHZ" >>$(obj)include/config.h ; \ | |
1603 | fi ; \ | |
1604 | if [ "$(findstring _NAND_,$@)" ] ; then \ | |
1605 | echo "TEXT_BASE = 0x00100000" > $(obj)board/freescale/mpc8313erdb/config.tmp ; \ | |
1606 | echo "#define CONFIG_NAND_U_BOOT" >>$(obj)include/config.h ; \ | |
1607 | fi ; | |
1608 | @if [ "$(findstring _NAND_,$@)" ] ; then \ | |
1609 | echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk ; \ | |
1610 | fi ; | |
1611 | @$(MKCONFIG) -n $@ -a MPC8313ERDB powerpc mpc83xx mpc8313erdb freescale | |
1612 | ||
1613 | MPC8315ERDB_NAND_config \ | |
1614 | MPC8315ERDB_config: unconfig | |
1615 | @$(MKCONFIG) -n $@ -t $@ MPC8315ERDB powerpc mpc83xx mpc8315erdb freescale | |
1616 | ||
1617 | MPC832XEMDS_config \ | |
1618 | MPC832XEMDS_HOST_33_config \ | |
1619 | MPC832XEMDS_HOST_66_config \ | |
1620 | MPC832XEMDS_SLAVE_config \ | |
1621 | MPC832XEMDS_ATM_config: unconfig | |
1622 | @mkdir -p $(obj)include | |
1623 | @if [ "$(findstring _HOST_,$@)" ] ; then \ | |
1624 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ | |
1625 | fi ; \ | |
1626 | if [ "$(findstring _SLAVE_,$@)" ] ; then \ | |
1627 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ | |
1628 | echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \ | |
1629 | fi ; \ | |
1630 | if [ "$(findstring _33_,$@)" ] ; then \ | |
1631 | echo "#define PCI_33M" >>$(obj)include/config.h ; \ | |
1632 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ | |
1633 | fi ; \ | |
1634 | if [ "$(findstring _66_,$@)" ] ; then \ | |
1635 | echo "#define PCI_66M" >>$(obj)include/config.h ; \ | |
1636 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ | |
1637 | fi ; \ | |
1638 | if [ "$(findstring _ATM_,$@)" ] ; then \ | |
1639 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ | |
1640 | echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \ | |
1641 | fi ; | |
1642 | @$(MKCONFIG) -n $@ -a MPC832XEMDS powerpc mpc83xx mpc832xemds freescale | |
1643 | ||
1644 | MPC8349ITX_config \ | |
1645 | MPC8349ITX_LOWBOOT_config \ | |
1646 | MPC8349ITXGP_config: unconfig | |
1647 | @mkdir -p $(obj)include | |
1648 | @mkdir -p $(obj)board/freescale/mpc8349itx | |
1649 | @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h | |
1650 | @if [ "$(findstring GP,$@)" ] ; then \ | |
1651 | echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \ | |
1652 | fi | |
1653 | @if [ "$(findstring LOWBOOT,$@)" ] ; then \ | |
1654 | echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \ | |
1655 | fi | |
1656 | @$(MKCONFIG) -n $@ -a MPC8349ITX powerpc mpc83xx mpc8349itx freescale | |
1657 | ||
1658 | MPC8360EMDS_config \ | |
1659 | MPC8360EMDS_HOST_33_config \ | |
1660 | MPC8360EMDS_HOST_66_config \ | |
1661 | MPC8360EMDS_SLAVE_config \ | |
1662 | MPC8360EMDS_ATM_config: unconfig | |
1663 | @mkdir -p $(obj)include | |
1664 | @if [ "$(findstring _HOST_,$@)" ] ; then \ | |
1665 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ | |
1666 | fi ; \ | |
1667 | if [ "$(findstring _SLAVE_,$@)" ] ; then \ | |
1668 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ | |
1669 | echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \ | |
1670 | fi ; \ | |
1671 | if [ "$(findstring _33_,$@)" ] ; then \ | |
1672 | echo "#define PCI_33M" >>$(obj)include/config.h ; \ | |
1673 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ | |
1674 | fi ; \ | |
1675 | if [ "$(findstring _66_,$@)" ] ; then \ | |
1676 | echo "#define PCI_66M" >>$(obj)include/config.h ; \ | |
1677 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ | |
1678 | fi ; \ | |
1679 | if [ "$(findstring _ATM_,$@)" ] ; then \ | |
1680 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ | |
1681 | echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \ | |
1682 | fi ; | |
1683 | @$(MKCONFIG) -n $@ -a MPC8360EMDS powerpc mpc83xx mpc8360emds freescale | |
1684 | ||
1685 | MPC8360ERDK_33_config \ | |
1686 | MPC8360ERDK_66_config \ | |
1687 | MPC8360ERDK_config: unconfig | |
1688 | @mkdir -p $(obj)include | |
1689 | @if [ "$(findstring _33_,$@)" ] ; then \ | |
1690 | echo "#define CONFIG_CLKIN_33MHZ" >>$(obj)include/config.h ;\ | |
1691 | fi ; | |
1692 | @$(MKCONFIG) -n $@ -a MPC8360ERDK powerpc mpc83xx mpc8360erdk freescale | |
1693 | ||
1694 | MPC837XEMDS_config \ | |
1695 | MPC837XEMDS_HOST_config: unconfig | |
1696 | @mkdir -p $(obj)include | |
1697 | @if [ "$(findstring _HOST_,$@)" ] ; then \ | |
1698 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ | |
1699 | fi ; | |
1700 | @$(MKCONFIG) -n $@ -a MPC837XEMDS powerpc mpc83xx mpc837xemds freescale | |
1701 | ||
1702 | sbc8349_config \ | |
1703 | sbc8349_PCI_33_config \ | |
1704 | sbc8349_PCI_66_config: unconfig | |
1705 | @$(MKCONFIG) -n $@ -t $@ sbc8349 powerpc mpc83xx sbc8349 | |
1706 | ||
1707 | SIMPC8313_LP_config \ | |
1708 | SIMPC8313_SP_config: unconfig | |
1709 | @mkdir -p $(obj)include | |
1710 | @mkdir -p $(obj)board/sheldon/simpc8313 | |
1711 | @if [ "$(findstring _LP_,$@)" ] ; then \ | |
1712 | echo "#define CONFIG_NAND_LP" >> $(obj)include/config.h ; \ | |
1713 | fi ; \ | |
1714 | if [ "$(findstring _SP_,$@)" ] ; then \ | |
1715 | echo "#define CONFIG_NAND_SP" >> $(obj)include/config.h ; \ | |
1716 | fi ; | |
1717 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
1718 | @$(MKCONFIG) -n $@ -a SIMPC8313 powerpc mpc83xx simpc8313 sheldon | |
1719 | ||
1720 | caddy2_config \ | |
1721 | vme8349_config: unconfig | |
1722 | @$(MKCONFIG) -n $@ -t $@ vme8349 powerpc mpc83xx vme8349 esd | |
1723 | ||
1724 | ######################################################################### | |
1725 | ## MPC85xx Systems | |
1726 | ######################################################################### | |
1727 | ||
1728 | MPC8536DS_NAND_config \ | |
1729 | MPC8536DS_SDCARD_config \ | |
1730 | MPC8536DS_SPIFLASH_config \ | |
1731 | MPC8536DS_36BIT_config \ | |
1732 | MPC8536DS_config: unconfig | |
1733 | @$(MKCONFIG) -n $@ -t $@ MPC8536DS powerpc mpc85xx mpc8536ds freescale | |
1734 | ||
1735 | MPC8540EVAL_config \ | |
1736 | MPC8540EVAL_33_config \ | |
1737 | MPC8540EVAL_66_config \ | |
1738 | MPC8540EVAL_33_slave_config \ | |
1739 | MPC8540EVAL_66_slave_config: unconfig | |
1740 | @mkdir -p $(obj)include | |
1741 | @if [ -z "$(findstring _33_,$@)" ] ; then \ | |
1742 | echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \ | |
1743 | fi ; \ | |
1744 | if [ "$(findstring _slave_,$@)" ] ; then \ | |
1745 | echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \ | |
1746 | fi | |
1747 | @$(MKCONFIG) -n $@ -a MPC8540EVAL powerpc mpc85xx mpc8540eval | |
1748 | ||
1749 | MPC8541CDS_legacy_config \ | |
1750 | MPC8541CDS_config: unconfig | |
1751 | @mkdir -p $(obj)include | |
1752 | @if [ "$(findstring _legacy_,$@)" ] ; then \ | |
1753 | echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \ | |
1754 | fi | |
1755 | @$(MKCONFIG) -n $@ -a MPC8541CDS powerpc mpc85xx mpc8541cds freescale | |
1756 | ||
1757 | MPC8548CDS_legacy_config \ | |
1758 | MPC8548CDS_config: unconfig | |
1759 | @mkdir -p $(obj)include | |
1760 | @if [ "$(findstring _legacy_,$@)" ] ; then \ | |
1761 | echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \ | |
1762 | fi | |
1763 | @$(MKCONFIG) -n $@ -a MPC8548CDS powerpc mpc85xx mpc8548cds freescale | |
1764 | ||
1765 | MPC8555CDS_legacy_config \ | |
1766 | MPC8555CDS_config: unconfig | |
1767 | @mkdir -p $(obj)include | |
1768 | @if [ "$(findstring _legacy_,$@)" ] ; then \ | |
1769 | echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \ | |
1770 | fi | |
1771 | @$(MKCONFIG) -n $@ -a MPC8555CDS powerpc mpc85xx mpc8555cds freescale | |
1772 | ||
1773 | MPC8569MDS_ATM_config \ | |
1774 | MPC8569MDS_NAND_config \ | |
1775 | MPC8569MDS_config: unconfig | |
1776 | @$(MKCONFIG) -n $@ -t $@ MPC8569MDS powerpc mpc85xx mpc8569mds freescale | |
1777 | ||
1778 | MPC8572DS_36BIT_config \ | |
1779 | MPC8572DS_config: unconfig | |
1780 | @$(MKCONFIG) -n $@ -t $@ MPC8572DS powerpc mpc85xx mpc8572ds freescale | |
1781 | ||
1782 | P2020DS_36BIT_config \ | |
1783 | P2020DS_config: unconfig | |
1784 | @$(MKCONFIG) -n $@ -t $@ P2020DS powerpc mpc85xx p2020ds freescale | |
1785 | ||
1786 | P1011RDB_config \ | |
1787 | P1011RDB_NAND_config \ | |
1788 | P1011RDB_SDCARD_config \ | |
1789 | P1011RDB_SPIFLASH_config \ | |
1790 | P1020RDB_config \ | |
1791 | P1020RDB_NAND_config \ | |
1792 | P1020RDB_SDCARD_config \ | |
1793 | P1020RDB_SPIFLASH_config \ | |
1794 | P2010RDB_config \ | |
1795 | P2010RDB_NAND_config \ | |
1796 | P2010RDB_SDCARD_config \ | |
1797 | P2010RDB_SPIFLASH_config \ | |
1798 | P2020DS_DDR2_config \ | |
1799 | P2020RDB_config \ | |
1800 | P2020RDB_NAND_config \ | |
1801 | P2020RDB_SDCARD_config \ | |
1802 | P2020RDB_SPIFLASH_config: unconfig | |
1803 | @$(MKCONFIG) -n $@ -t $@ P1_P2_RDB powerpc mpc85xx p1_p2_rdb freescale | |
1804 | ||
1805 | sbc8540_config \ | |
1806 | sbc8540_33_config \ | |
1807 | sbc8540_66_config: unconfig | |
1808 | @$(MKCONFIG) -n $@ -t $@ SBC8540 powerpc mpc85xx sbc8560 | |
1809 | ||
1810 | sbc8548_config \ | |
1811 | sbc8548_PCI_33_config \ | |
1812 | sbc8548_PCI_66_config \ | |
1813 | sbc8548_PCI_33_PCIE_config \ | |
1814 | sbc8548_PCI_66_PCIE_config: unconfig | |
1815 | @$(MKCONFIG) -n $@ -t $@ sbc8548 powerpc mpc85xx sbc8548 | |
1816 | ||
1817 | sbc8560_config \ | |
1818 | sbc8560_33_config \ | |
1819 | sbc8560_66_config: unconfig | |
1820 | @$(MKCONFIG) -n $@ -t $@ sbc8560 powerpc mpc85xx sbc8560 | |
1821 | ||
1822 | stxssa_config \ | |
1823 | stxssa_4M_config: unconfig | |
1824 | @mkdir -p $(obj)include | |
1825 | @if [ "$(findstring _4M_,$@)" ] ; then \ | |
1826 | echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \ | |
1827 | fi | |
1828 | @$(MKCONFIG) -n $@ -a stxssa powerpc mpc85xx stxssa stx | |
1829 | ||
1830 | TQM8540_config \ | |
1831 | TQM8541_config \ | |
1832 | TQM8548_config \ | |
1833 | TQM8548_AG_config \ | |
1834 | TQM8548_BE_config \ | |
1835 | TQM8555_config \ | |
1836 | TQM8560_config: unconfig | |
1837 | @mkdir -p $(obj)include | |
1838 | @BTYPE=$(@:_config=); \ | |
1839 | CTYPE=$(subst TQM,,$(subst _AG,,$(subst _BE,,$(@:_config=)))); \ | |
1840 | echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \ | |
1841 | echo "#define CONFIG_$${BTYPE}">>$(obj)include/config.h; \ | |
1842 | echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \ | |
1843 | echo "#define CONFIG_BOARDNAME \"$${BTYPE}\"">>$(obj)include/config.h; | |
1844 | @echo "CONFIG_$(@:_config=) = y">>$(obj)include/config.mk; | |
1845 | @$(MKCONFIG) -n $@ -a TQM85xx powerpc mpc85xx tqm85xx tqc | |
1846 | ||
1847 | ######################################################################### | |
1848 | ## MPC86xx Systems | |
1849 | ######################################################################### | |
1850 | ||
1851 | MPC8641HPCN_36BIT_config \ | |
1852 | MPC8641HPCN_config: unconfig | |
1853 | @mkdir -p $(obj)include | |
1854 | @if [ "$(findstring _36BIT_,$@)" ] ; then \ | |
1855 | echo "#define CONFIG_PHYS_64BIT" >>$(obj)include/config.h ; \ | |
1856 | fi | |
1857 | @$(MKCONFIG) -n $@ -a MPC8641HPCN powerpc mpc86xx mpc8641hpcn freescale | |
1858 | ||
1859 | ######################################################################### | |
1860 | ## 74xx/7xx Systems | |
1861 | ######################################################################### | |
1862 | ||
1863 | EVB64260_config \ | |
1864 | EVB64260_750CX_config: unconfig | |
1865 | @$(MKCONFIG) -n $@ EVB64260 powerpc 74xx_7xx evb64260 | |
1866 | ||
1867 | p3m750_config \ | |
1868 | p3m7448_config: unconfig | |
1869 | @mkdir -p $(obj)include | |
1870 | @if [ "$(findstring 750_,$@)" ] ; then \ | |
1871 | echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \ | |
1872 | else \ | |
1873 | echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \ | |
1874 | fi | |
1875 | @$(MKCONFIG) -n $@ -a p3mx powerpc 74xx_7xx p3mx prodrive | |
1876 | ||
1877 | PCIPPC2_config \ | |
1878 | PCIPPC6_config: unconfig | |
1879 | @$(MKCONFIG) -n $@ $@ powerpc 74xx_7xx pcippc2 | |
1880 | ||
1881 | #======================================================================== | |
1882 | # ARM | |
1883 | #======================================================================== | |
1884 | ||
1885 | ######################################################################### | |
1886 | ## Atmel AT91RM9200 Systems | |
1887 | ######################################################################### | |
1888 | ||
1889 | CPUAT91_RAM_config \ | |
1890 | CPUAT91_config : unconfig | |
1891 | @mkdir -p $(obj)include | |
1892 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h | |
1893 | @$(MKCONFIG) -n $@ -a cpuat91 arm arm920t cpuat91 eukrea at91 | |
1894 | ||
1895 | ######################################################################### | |
1896 | ## ARM926EJ-S Systems | |
1897 | ######################################################################### | |
1898 | ||
1899 | at91sam9260ek_nandflash_config \ | |
1900 | at91sam9260ek_dataflash_cs0_config \ | |
1901 | at91sam9260ek_dataflash_cs1_config \ | |
1902 | at91sam9260ek_config \ | |
1903 | at91sam9g20ek_nandflash_config \ | |
1904 | at91sam9g20ek_dataflash_cs0_config \ | |
1905 | at91sam9g20ek_dataflash_cs1_config \ | |
1906 | at91sam9g20ek_config : unconfig | |
1907 | @mkdir -p $(obj)include | |
1908 | @if [ "$(findstring 9g20,$@)" ] ; then \ | |
1909 | echo "#define CONFIG_AT91SAM9G20EK 1" >>$(obj)include/config.h ; \ | |
1910 | else \ | |
1911 | echo "#define CONFIG_AT91SAM9260EK 1" >>$(obj)include/config.h ; \ | |
1912 | fi; | |
1913 | @if [ "$(findstring _nandflash,$@)" ] ; then \ | |
1914 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ | |
1915 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ | |
1916 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ | |
1917 | else \ | |
1918 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \ | |
1919 | fi; | |
1920 | @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91 | |
1921 | ||
1922 | at91sam9xeek_nandflash_config \ | |
1923 | at91sam9xeek_dataflash_cs0_config \ | |
1924 | at91sam9xeek_dataflash_cs1_config \ | |
1925 | at91sam9xeek_config : unconfig | |
1926 | @mkdir -p $(obj)include | |
1927 | @if [ "$(findstring _nandflash,$@)" ] ; then \ | |
1928 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ | |
1929 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ | |
1930 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ | |
1931 | else \ | |
1932 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \ | |
1933 | fi; | |
1934 | @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91 | |
1935 | ||
1936 | at91sam9261ek_nandflash_config \ | |
1937 | at91sam9261ek_dataflash_cs0_config \ | |
1938 | at91sam9261ek_dataflash_cs3_config \ | |
1939 | at91sam9261ek_config \ | |
1940 | at91sam9g10ek_nandflash_config \ | |
1941 | at91sam9g10ek_dataflash_cs0_config \ | |
1942 | at91sam9g10ek_dataflash_cs3_config \ | |
1943 | at91sam9g10ek_config : unconfig | |
1944 | @mkdir -p $(obj)include | |
1945 | @if [ "$(findstring 9g10,$@)" ] ; then \ | |
1946 | echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \ | |
1947 | else \ | |
1948 | echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \ | |
1949 | fi; | |
1950 | @if [ "$(findstring _nandflash,$@)" ] ; then \ | |
1951 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ | |
1952 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ | |
1953 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \ | |
1954 | else \ | |
1955 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ | |
1956 | fi; | |
1957 | @$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91 | |
1958 | ||
1959 | at91sam9263ek_norflash_config \ | |
1960 | at91sam9263ek_norflash_boot_config \ | |
1961 | at91sam9263ek_nandflash_config \ | |
1962 | at91sam9263ek_dataflash_config \ | |
1963 | at91sam9263ek_dataflash_cs0_config \ | |
1964 | at91sam9263ek_config : unconfig | |
1965 | @mkdir -p $(obj)include | |
1966 | @if [ "$(findstring _nandflash,$@)" ] ; then \ | |
1967 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ | |
1968 | elif [ "$(findstring norflash,$@)" ] ; then \ | |
1969 | echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \ | |
1970 | else \ | |
1971 | echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \ | |
1972 | fi; | |
1973 | @if [ "$(findstring norflash_boot,$@)" ] ; then \ | |
1974 | echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1" >>$(obj)include/config.h ; \ | |
1975 | fi; | |
1976 | @$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91 | |
1977 | ||
1978 | at91sam9rlek_nandflash_config \ | |
1979 | at91sam9rlek_dataflash_config \ | |
1980 | at91sam9rlek_dataflash_cs0_config \ | |
1981 | at91sam9rlek_config : unconfig | |
1982 | @mkdir -p $(obj)include | |
1983 | @if [ "$(findstring _nandflash,$@)" ] ; then \ | |
1984 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ | |
1985 | else \ | |
1986 | echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \ | |
1987 | fi; | |
1988 | @$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91 | |
1989 | ||
1990 | CPU9G20_128M_config \ | |
1991 | CPU9G20_config \ | |
1992 | CPU9260_128M_config \ | |
1993 | CPU9260_config : unconfig | |
1994 | @mkdir -p $(obj)include | |
1995 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h | |
1996 | @$(MKCONFIG) -n $@ -a cpu9260 arm arm926ejs cpu9260 eukrea at91 | |
1997 | ||
1998 | at91sam9m10g45ek_nandflash_config \ | |
1999 | at91sam9m10g45ek_dataflash_config \ | |
2000 | at91sam9m10g45ek_dataflash_cs0_config \ | |
2001 | at91sam9m10g45ek_config \ | |
2002 | at91sam9g45ekes_nandflash_config \ | |
2003 | at91sam9g45ekes_dataflash_config \ | |
2004 | at91sam9g45ekes_dataflash_cs0_config \ | |
2005 | at91sam9g45ekes_config : unconfig | |
2006 | @mkdir -p $(obj)include | |
2007 | @if [ "$(findstring 9m10,$@)" ] ; then \ | |
2008 | echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \ | |
2009 | else \ | |
2010 | echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \ | |
2011 | fi; | |
2012 | @if [ "$(findstring _nandflash,$@)" ] ; then \ | |
2013 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ | |
2014 | else \ | |
2015 | echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \ | |
2016 | fi; | |
2017 | @$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91 | |
2018 | ||
2019 | pm9g45_config : unconfig | |
2020 | @mkdir -p $(obj)include | |
2021 | @$(MKCONFIG) -a pm9g45 arm arm926ejs pm9g45 ronetix at91 | |
2022 | ||
2023 | SBC35_A9G20_NANDFLASH_config \ | |
2024 | SBC35_A9G20_EEPROM_config \ | |
2025 | SBC35_A9G20_config : unconfig | |
2026 | @mkdir -p $(obj)include | |
2027 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h | |
2028 | @$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91 | |
2029 | ||
2030 | TNY_A9G20_NANDFLASH_config \ | |
2031 | TNY_A9G20_EEPROM_config \ | |
2032 | TNY_A9G20_config \ | |
2033 | TNY_A9260_NANDFLASH_config \ | |
2034 | TNY_A9260_EEPROM_config \ | |
2035 | TNY_A9260_config : unconfig | |
2036 | @mkdir -p $(obj)include | |
2037 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h | |
2038 | @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91 | |
2039 | ||
2040 | ######################################################################## | |
2041 | ## ARM Integrator boards - see doc/README-integrator for more info. | |
2042 | integratorap_config \ | |
2043 | ap_config \ | |
2044 | ap966_config \ | |
2045 | ap922_config \ | |
2046 | ap922_XA10_config \ | |
2047 | ap7_config \ | |
2048 | ap720t_config \ | |
2049 | ap920t_config \ | |
2050 | ap926ejs_config \ | |
2051 | ap946es_config: unconfig | |
2052 | @board/armltd/integrator/split_by_variant.sh ap $@ | |
2053 | ||
2054 | integratorcp_config \ | |
2055 | cp_config \ | |
2056 | cp920t_config \ | |
2057 | cp926ejs_config \ | |
2058 | cp946es_config \ | |
2059 | cp1136_config \ | |
2060 | cp966_config \ | |
2061 | cp922_config \ | |
2062 | cp922_XA10_config \ | |
2063 | cp1026_config: unconfig | |
2064 | @board/armltd/integrator/split_by_variant.sh cp $@ | |
2065 | ||
2066 | nhk8815_config \ | |
2067 | nhk8815_onenand_config: unconfig | |
2068 | @mkdir -p $(obj)include | |
2069 | @ > $(obj)include/config.h | |
2070 | @if [ "$(findstring _onenand, $@)" ] ; then \ | |
2071 | echo "#define CONFIG_BOOT_ONENAND" >> $(obj)include/config.h; \ | |
2072 | fi | |
2073 | @$(MKCONFIG) -n $@ -a nhk8815 arm arm926ejs nhk8815 st nomadik | |
2074 | ||
2075 | xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) | |
2076 | ||
2077 | omap1610inn_config \ | |
2078 | omap1610inn_cs0boot_config \ | |
2079 | omap1610inn_cs3boot_config \ | |
2080 | omap1610inn_cs_autoboot_config \ | |
2081 | omap1610h2_config \ | |
2082 | omap1610h2_cs0boot_config \ | |
2083 | omap1610h2_cs3boot_config \ | |
2084 | omap1610h2_cs_autoboot_config: unconfig | |
2085 | @mkdir -p $(obj)include | |
2086 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ | |
2087 | echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \ | |
2088 | elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ | |
2089 | echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \ | |
2090 | else \ | |
2091 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ | |
2092 | fi; | |
2093 | @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap | |
2094 | ||
2095 | omap730p2_config \ | |
2096 | omap730p2_cs0boot_config \ | |
2097 | omap730p2_cs3boot_config : unconfig | |
2098 | @mkdir -p $(obj)include | |
2099 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ | |
2100 | echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ | |
2101 | else \ | |
2102 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ | |
2103 | fi; | |
2104 | @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap | |
2105 | ||
2106 | spear300_config \ | |
2107 | spear310_config \ | |
2108 | spear320_config : unconfig | |
2109 | @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear | |
2110 | ||
2111 | spear600_config : unconfig | |
2112 | @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear | |
2113 | ||
2114 | SX1_stdout_serial_config \ | |
2115 | SX1_config: unconfig | |
2116 | @mkdir -p $(obj)include | |
2117 | @if [ "$(findstring _stdout_serial_, $@)" ] ; then \ | |
2118 | echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ | |
2119 | else \ | |
2120 | echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ | |
2121 | fi; | |
2122 | @$(MKCONFIG) -n $@ SX1 arm arm925t sx1 | |
2123 | ||
2124 | # TRAB default configuration: 8 MB Flash, 32 MB RAM | |
2125 | trab_config \ | |
2126 | trab_bigram_config \ | |
2127 | trab_bigflash_config \ | |
2128 | trab_old_config: unconfig | |
2129 | @mkdir -p $(obj)include | |
2130 | @mkdir -p $(obj)board/trab | |
2131 | @[ -z "$(findstring _bigram,$@)" ] || \ | |
2132 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ | |
2133 | echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \ | |
2134 | } | |
2135 | @[ -z "$(findstring _bigflash,$@)" ] || \ | |
2136 | { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \ | |
2137 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ | |
2138 | echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ | |
2139 | } | |
2140 | @[ -z "$(findstring _old,$@)" ] || \ | |
2141 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ | |
2142 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ | |
2143 | echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ | |
2144 | } | |
2145 | @$(MKCONFIG) -n $@ -a trab arm arm920t trab - s3c24x0 | |
2146 | ||
2147 | tx25_config : unconfig | |
2148 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
2149 | @$(MKCONFIG) $@ arm arm926ejs tx25 karo mx25 | |
2150 | ||
2151 | edb9301_config \ | |
2152 | edb9302_config \ | |
2153 | edb9302a_config \ | |
2154 | edb9307_config \ | |
2155 | edb9307a_config \ | |
2156 | edb9312_config \ | |
2157 | edb9315_config \ | |
2158 | edb9315a_config: unconfig | |
2159 | @$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx - ep93xx | |
2160 | ||
2161 | ######################################################################### | |
2162 | # ARM supplied Versatile development boards | |
2163 | ######################################################################### | |
2164 | ||
2165 | versatile_config \ | |
2166 | versatileab_config \ | |
2167 | versatilepb_config : unconfig | |
2168 | @board/armltd/versatile/split_by_variant.sh $@ | |
2169 | ||
2170 | ######################################################################### | |
2171 | ## XScale Systems | |
2172 | ######################################################################### | |
2173 | ||
2174 | pdnb3_config \ | |
2175 | scpu_config: unconfig | |
2176 | @mkdir -p $(obj)include | |
2177 | @if [ "$(findstring scpu_,$@)" ] ; then \ | |
2178 | echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \ | |
2179 | fi | |
2180 | @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive | |
2181 | ||
2182 | polaris_config \ | |
2183 | trizepsiv_config : unconfig | |
2184 | @mkdir -p $(obj)include | |
2185 | @if [ "$(findstring polaris,$@)" ] ; then \ | |
2186 | echo "#define CONFIG_POLARIS 1" >>$(obj)include/config.h ; \ | |
2187 | fi; | |
2188 | @$(MKCONFIG) -n $@ -a trizepsiv arm pxa trizepsiv | |
2189 | ||
2190 | vpac270_nor_config \ | |
2191 | vpac270_onenand_config : unconfig | |
2192 | @mkdir -p $(obj)include | |
2193 | @if [ "$(findstring onenand,$@)" ] ; then \ | |
2194 | echo "#define CONFIG_ONENAND_U_BOOT" \ | |
2195 | >>$(obj)include/config.h ; \ | |
2196 | fi; | |
2197 | @$(MKCONFIG) -n $@ -a vpac270 arm pxa vpac270 | |
2198 | ||
2199 | ######################################################################### | |
2200 | ## ARM1136 Systems | |
2201 | ######################################################################### | |
2202 | ||
2203 | apollon_config : unconfig | |
2204 | @mkdir -p $(obj)include | |
2205 | @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h | |
2206 | @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk | |
2207 | @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx | |
2208 | ||
2209 | imx31_phycore_eet_config \ | |
2210 | imx31_phycore_config : unconfig | |
2211 | @mkdir -p $(obj)include | |
2212 | @if [ -n "$(findstring _eet_,$@)" ]; then \ | |
2213 | echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \ | |
2214 | fi | |
2215 | @$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore - mx31 | |
2216 | ||
2217 | mx31pdk_config \ | |
2218 | mx31pdk_nand_config : unconfig | |
2219 | @mkdir -p $(obj)include | |
2220 | @if [ -n "$(findstring _nand_,$@)" ]; then \ | |
2221 | echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \ | |
2222 | else \ | |
2223 | echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \ | |
2224 | echo "#define CONFIG_SKIP_RELOCATE_UBOOT" >> $(obj)include/config.h; \ | |
2225 | fi | |
2226 | @$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31 | |
2227 | ||
2228 | ######################################################################### | |
2229 | ## ARM1176 Systems | |
2230 | ######################################################################### | |
2231 | smdk6400_noUSB_config \ | |
2232 | smdk6400_config : unconfig | |
2233 | @mkdir -p $(obj)include $(obj)board/samsung/smdk6400 | |
2234 | @mkdir -p $(obj)nand_spl/board/samsung/smdk6400 | |
2235 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h | |
2236 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
2237 | @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \ | |
2238 | echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ | |
2239 | else \ | |
2240 | echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ | |
2241 | fi | |
2242 | @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx | |
2243 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk | |
2244 | ||
2245 | #======================================================================== | |
2246 | # MIPS | |
2247 | #======================================================================== | |
2248 | ######################################################################### | |
2249 | ## MIPS32 4Kc | |
2250 | ######################################################################### | |
2251 | ||
2252 | incaip_100MHz_config \ | |
2253 | incaip_133MHz_config \ | |
2254 | incaip_150MHz_config \ | |
2255 | incaip_config: unconfig | |
2256 | @mkdir -p $(obj)include | |
2257 | @[ -z "$(findstring _100MHz,$@)" ] || \ | |
2258 | echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h | |
2259 | @[ -z "$(findstring _133MHz,$@)" ] || \ | |
2260 | echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h | |
2261 | @[ -z "$(findstring _150MHz,$@)" ] || \ | |
2262 | echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h | |
2263 | @$(MKCONFIG) -n $@ -a incaip mips mips incaip | |
2264 | ||
2265 | vct_premium_config \ | |
2266 | vct_premium_small_config \ | |
2267 | vct_premium_onenand_config \ | |
2268 | vct_premium_onenand_small_config \ | |
2269 | vct_platinum_config \ | |
2270 | vct_platinum_small_config \ | |
2271 | vct_platinum_onenand_config \ | |
2272 | vct_platinum_onenand_small_config \ | |
2273 | vct_platinumavc_config \ | |
2274 | vct_platinumavc_small_config \ | |
2275 | vct_platinumavc_onenand_config \ | |
2276 | vct_platinumavc_onenand_small_config: unconfig | |
2277 | @mkdir -p $(obj)include | |
2278 | @[ -z "$(findstring _premium,$@)" ] || \ | |
2279 | echo "#define CONFIG_VCT_PREMIUM" > $(obj)include/config.h | |
2280 | @[ -z "$(findstring _platinum_,$@)" ] || \ | |
2281 | echo "#define CONFIG_VCT_PLATINUM" > $(obj)include/config.h | |
2282 | @[ -z "$(findstring _platinumavc,$@)" ] || \ | |
2283 | echo "#define CONFIG_VCT_PLATINUMAVC" > $(obj)include/config.h | |
2284 | @[ -z "$(findstring _onenand,$@)" ] || \ | |
2285 | echo "#define CONFIG_VCT_ONENAND" >> $(obj)include/config.h | |
2286 | @[ -z "$(findstring _small,$@)" ] || \ | |
2287 | echo "#define CONFIG_VCT_SMALL_IMAGE" >> $(obj)include/config.h | |
2288 | @$(MKCONFIG) -n $@ -a vct mips mips vct micronas | |
2289 | ||
2290 | ######################################################################### | |
2291 | ## MIPS32 AU1X00 | |
2292 | ######################################################################### | |
2293 | ||
2294 | dbau1000_config : unconfig | |
2295 | @mkdir -p $(obj)include | |
2296 | @echo "#define CONFIG_DBAU1000 1" >$(obj)include/config.h | |
2297 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 | |
2298 | ||
2299 | dbau1100_config : unconfig | |
2300 | @mkdir -p $(obj)include | |
2301 | @echo "#define CONFIG_DBAU1100 1" >$(obj)include/config.h | |
2302 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 | |
2303 | ||
2304 | dbau1500_config : unconfig | |
2305 | @mkdir -p $(obj)include | |
2306 | @echo "#define CONFIG_DBAU1500 1" >$(obj)include/config.h | |
2307 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 | |
2308 | ||
2309 | dbau1550_config : unconfig | |
2310 | @mkdir -p $(obj)include | |
2311 | @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h | |
2312 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 | |
2313 | ||
2314 | dbau1550_el_config : unconfig | |
2315 | @mkdir -p $(obj)include | |
2316 | @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h | |
2317 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 | |
2318 | ||
2319 | gth2_config : unconfig | |
2320 | @mkdir -p $(obj)include | |
2321 | @echo "#define CONFIG_GTH2 1" >$(obj)include/config.h | |
2322 | @$(MKCONFIG) -a $@ mips mips gth2 | |
2323 | ||
2324 | pb1000_config : unconfig | |
2325 | @mkdir -p $(obj)include | |
2326 | @echo "#define CONFIG_PB1000 1" >$(obj)include/config.h | |
2327 | @$(MKCONFIG) -a pb1x00 mips mips pb1x00 | |
2328 | ||
2329 | qemu_mips_config : unconfig | |
2330 | @mkdir -p $(obj)include | |
2331 | @echo "#define CONFIG_QEMU_MIPS 1" >$(obj)include/config.h | |
2332 | @$(MKCONFIG) -a qemu-mips mips mips qemu-mips | |
2333 | ||
2334 | #======================================================================== | |
2335 | # Nios | |
2336 | #======================================================================== | |
2337 | ||
2338 | ######################################################################### | |
2339 | ## Nios-II | |
2340 | ######################################################################### | |
2341 | ||
2342 | # nios2 generic boards | |
2343 | NIOS2_GENERIC = nios2-generic | |
2344 | ||
2345 | $(NIOS2_GENERIC:%=%_config) : unconfig | |
2346 | @$(MKCONFIG) $@ nios2 nios2 nios2-generic altera | |
2347 | ||
2348 | #======================================================================== | |
2349 | # Blackfin | |
2350 | #======================================================================== | |
2351 | ||
2352 | bf527-ezkit-v2_config : unconfig | |
2353 | @$(MKCONFIG) -t BF527_EZKIT_REV_2_1 \ | |
2354 | bf527-ezkit blackfin blackfin bf527-ezkit | |
2355 | ||
2356 | #======================================================================== | |
2357 | # SH3 (SuperH) | |
2358 | #======================================================================== | |
2359 | ||
2360 | ######################################################################### | |
2361 | ## sh2 (Renesas SuperH) | |
2362 | ######################################################################### | |
2363 | rsk7203_config: unconfig | |
2364 | @mkdir -p $(obj)include | |
2365 | @echo "#define CONFIG_RSK7203 1" > $(obj)include/config.h | |
2366 | @$(MKCONFIG) -a $@ sh sh2 rsk7203 renesas | |
2367 | ||
2368 | ######################################################################### | |
2369 | ## sh3 (Renesas SuperH) | |
2370 | ######################################################################### | |
2371 | ||
2372 | mpr2_config: unconfig | |
2373 | @mkdir -p $(obj)include | |
2374 | @echo "#define CONFIG_MPR2 1" > $(obj)include/config.h | |
2375 | @$(MKCONFIG) -a $@ sh sh3 mpr2 | |
2376 | ||
2377 | ms7720se_config: unconfig | |
2378 | @mkdir -p $(obj)include | |
2379 | @echo "#define CONFIG_MS7720SE 1" > $(obj)include/config.h | |
2380 | @$(MKCONFIG) -a $@ sh sh3 ms7720se | |
2381 | ||
2382 | ######################################################################### | |
2383 | ## sh4 (Renesas SuperH) | |
2384 | ######################################################################### | |
2385 | ||
2386 | MigoR_config : unconfig | |
2387 | @mkdir -p $(obj)include | |
2388 | @echo "#define CONFIG_MIGO_R 1" > $(obj)include/config.h | |
2389 | @$(MKCONFIG) -a $@ sh sh4 MigoR renesas | |
2390 | ||
2391 | ms7750se_config: unconfig | |
2392 | @mkdir -p $(obj)include | |
2393 | @echo "#define CONFIG_MS7750SE 1" > $(obj)include/config.h | |
2394 | @$(MKCONFIG) -a $@ sh sh4 ms7750se | |
2395 | ||
2396 | ms7722se_config : unconfig | |
2397 | @mkdir -p $(obj)include | |
2398 | @echo "#define CONFIG_MS7722SE 1" > $(obj)include/config.h | |
2399 | @$(MKCONFIG) -a $@ sh sh4 ms7722se | |
2400 | ||
2401 | r2dplus_config : unconfig | |
2402 | @mkdir -p $(obj)include | |
2403 | @echo "#define CONFIG_R2DPLUS 1" > $(obj)include/config.h | |
2404 | @$(MKCONFIG) -a $@ sh sh4 r2dplus renesas | |
2405 | ||
2406 | r7780mp_config: unconfig | |
2407 | @mkdir -p $(obj)include | |
2408 | @echo "#define CONFIG_R7780MP 1" > $(obj)include/config.h | |
2409 | @$(MKCONFIG) -a $@ sh sh4 r7780mp renesas | |
2410 | ||
2411 | sh7763rdp_config : unconfig | |
2412 | @mkdir -p $(obj)include | |
2413 | @echo "#define CONFIG_SH7763RDP 1" > $(obj)include/config.h | |
2414 | @$(MKCONFIG) -a $@ sh sh4 sh7763rdp renesas | |
2415 | ||
2416 | sh7785lcr_32bit_config \ | |
2417 | sh7785lcr_config : unconfig | |
2418 | @mkdir -p $(obj)include | |
2419 | @mkdir -p $(obj)board/renesas/sh7785lcr | |
2420 | @echo "#define CONFIG_SH7785LCR 1" > $(obj)include/config.h | |
2421 | @if [ "$(findstring 32bit, $@)" ] ; then \ | |
2422 | echo "#define CONFIG_SH_32BIT 1" >> $(obj)include/config.h ; \ | |
2423 | echo "TEXT_BASE = 0x8ff80000" > \ | |
2424 | $(obj)board/renesas/sh7785lcr/config.tmp ; \ | |
2425 | fi | |
2426 | @$(MKCONFIG) -n $@ -a sh7785lcr sh sh4 sh7785lcr renesas | |
2427 | ||
2428 | ap325rxa_config : unconfig | |
2429 | @mkdir -p $(obj)include | |
2430 | @echo "#define CONFIG_AP325RXA 1" > $(obj)include/config.h | |
2431 | @$(MKCONFIG) -a $@ sh sh4 ap325rxa renesas | |
2432 | ||
2433 | espt_config : unconfig | |
2434 | @mkdir -p $(obj)include | |
2435 | @echo "#define CONFIG_ESPT 1" > $(obj)include/config.h | |
2436 | @$(MKCONFIG) -a $@ sh sh4 espt | |
2437 | ||
2438 | ######################################################################### | |
2439 | ######################################################################### | |
2440 | ||
2441 | clean: | |
2442 | @rm -f $(obj)examples/standalone/82559_eeprom \ | |
2443 | $(obj)examples/standalone/atmel_df_pow2 \ | |
2444 | $(obj)examples/standalone/eepro100_eeprom \ | |
2445 | $(obj)examples/standalone/hello_world \ | |
2446 | $(obj)examples/standalone/interrupt \ | |
2447 | $(obj)examples/standalone/mem_to_mem_idma2intr \ | |
2448 | $(obj)examples/standalone/sched \ | |
2449 | $(obj)examples/standalone/smc91111_eeprom \ | |
2450 | $(obj)examples/standalone/test_burst \ | |
2451 | $(obj)examples/standalone/timer | |
2452 | @rm -f $(obj)examples/api/demo{,.bin} | |
2453 | @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ | |
2454 | $(obj)tools/env/{fw_printenv,fw_setenv} \ | |
2455 | $(obj)tools/envcrc \ | |
2456 | $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ | |
2457 | $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ | |
2458 | $(obj)tools/mkimage $(obj)tools/mpc86x_clk \ | |
2459 | $(obj)tools/ncb $(obj)tools/ubsha1 | |
2460 | @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ | |
2461 | $(obj)board/matrix_vision/*/bootscript.img \ | |
2462 | $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \ | |
2463 | $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom \ | |
2464 | $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \ | |
2465 | $(obj)u-boot.lds \ | |
2466 | $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] | |
2467 | @rm -f $(obj)include/bmp_logo.h | |
2468 | @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map} | |
2469 | @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map} | |
2470 | @rm -f $(ONENAND_BIN) | |
2471 | @rm -f $(obj)onenand_ipl/u-boot.lds | |
2472 | @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) | |
2473 | @find $(OBJTREE) -type f \ | |
2474 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ | |
2475 | -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \ | |
2476 | | xargs rm -f | |
2477 | ||
2478 | clobber: clean | |
2479 | @find $(OBJTREE) -type f \( -name '*.depend' \ | |
2480 | -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ | |
2481 | -print0 \ | |
2482 | | xargs -0 rm -f | |
2483 | @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ | |
2484 | $(obj)cscope.* $(obj)*.*~ | |
2485 | @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL) | |
2486 | @rm -f $(obj)u-boot.kwb | |
2487 | @rm -f $(obj)u-boot.imx | |
2488 | @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes} | |
2489 | @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c | |
2490 | @rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm | |
2491 | @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f | |
2492 | @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f | |
2493 | ||
2494 | ifeq ($(OBJTREE),$(SRCTREE)) | |
2495 | mrproper \ | |
2496 | distclean: clobber unconfig | |
2497 | else | |
2498 | mrproper \ | |
2499 | distclean: clobber unconfig | |
2500 | rm -rf $(obj)* | |
2501 | endif | |
2502 | ||
2503 | backup: | |
2504 | F=`basename $(TOPDIR)` ; cd .. ; \ | |
2505 | gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F | |
2506 | ||
2507 | ######################################################################### |