2007-06-06 09:42:13 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2007
|
|
|
|
# Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
|
|
|
|
|
2011-03-31 21:26:29 +00:00
|
|
|
nandobj := $(OBJTREE)/nand_spl/
|
|
|
|
|
2007-06-06 09:42:13 +00:00
|
|
|
LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
|
2011-02-22 21:38:05 +00:00
|
|
|
LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
|
|
|
|
$(LDFLAGS_FINAL)
|
2007-06-06 09:42:13 +00:00
|
|
|
AFLAGS += -DCONFIG_NAND_SPL
|
|
|
|
CFLAGS += -DCONFIG_NAND_SPL
|
|
|
|
|
2007-10-31 19:58:34 +00:00
|
|
|
SOBJS = start.o resetvec.o cache.o
|
2007-06-19 14:42:31 +00:00
|
|
|
COBJS = gpio.o nand_boot.o nand_ecc.o memory.o ndfc.o pll.o
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
|
|
|
|
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
|
|
|
|
__OBJS := $(SOBJS) $(COBJS)
|
2011-03-31 21:26:29 +00:00
|
|
|
LNDIR := $(nandobj)board/$(BOARDDIR)
|
2007-06-06 09:42:13 +00:00
|
|
|
|
2007-06-19 14:42:31 +00:00
|
|
|
ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin \
|
|
|
|
$(nandobj)System.map
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
all: $(obj).depend $(ALL)
|
|
|
|
|
|
|
|
$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
|
|
|
|
|
|
|
|
$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
|
|
|
|
|
2009-08-17 12:00:53 +00:00
|
|
|
$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
|
2010-12-10 21:13:39 +00:00
|
|
|
cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \
|
2007-06-06 09:42:13 +00:00
|
|
|
-Map $(nandobj)u-boot-spl.map \
|
|
|
|
-o $(nandobj)u-boot-spl
|
|
|
|
|
2007-06-19 14:42:31 +00:00
|
|
|
$(nandobj)System.map: $(nandobj)u-boot-spl
|
|
|
|
@$(NM) $< | \
|
|
|
|
grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
|
|
|
|
sort > $(nandobj)System.map
|
|
|
|
|
2009-08-17 12:00:53 +00:00
|
|
|
$(nandobj)u-boot.lds: $(LDSCRIPT)
|
|
|
|
$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
|
|
|
|
|
2007-06-06 09:42:13 +00:00
|
|
|
# create symbolic links for common files
|
|
|
|
|
|
|
|
# from cpu directory
|
2007-10-31 19:58:34 +00:00
|
|
|
$(obj)cache.S:
|
|
|
|
@rm -f $(obj)cache.S
|
2010-04-15 14:07:28 +00:00
|
|
|
ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/cache.S $(obj)cache.S
|
2007-10-31 19:58:34 +00:00
|
|
|
|
2007-06-06 09:42:13 +00:00
|
|
|
$(obj)gpio.c:
|
|
|
|
@rm -f $(obj)gpio.c
|
2010-04-15 14:07:28 +00:00
|
|
|
ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/gpio.c $(obj)gpio.c
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
$(obj)ndfc.c:
|
|
|
|
@rm -f $(obj)ndfc.c
|
2009-07-16 13:12:48 +00:00
|
|
|
ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
$(obj)resetvec.S:
|
|
|
|
@rm -f $(obj)resetvec.S
|
2010-04-15 14:07:28 +00:00
|
|
|
ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
$(obj)start.S:
|
|
|
|
@rm -f $(obj)start.S
|
2010-04-15 14:07:28 +00:00
|
|
|
ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
# from board directory
|
|
|
|
$(obj)memory.c:
|
|
|
|
@rm -f $(obj)memory.c
|
|
|
|
ln -s $(SRCTREE)/board/amcc/acadia/memory.c $(obj)memory.c
|
|
|
|
|
2007-06-19 14:42:31 +00:00
|
|
|
$(obj)pll.c:
|
|
|
|
@rm -f $(obj)pll.c
|
|
|
|
ln -s $(SRCTREE)/board/amcc/acadia/pll.c $(obj)pll.c
|
|
|
|
|
2007-06-06 09:42:13 +00:00
|
|
|
# from nand_spl directory
|
|
|
|
$(obj)nand_boot.c:
|
|
|
|
@rm -f $(obj)nand_boot.c
|
|
|
|
ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
|
|
|
|
|
2007-12-30 02:30:46 +00:00
|
|
|
# from drivers/mtd/nand directory
|
2007-06-06 09:42:13 +00:00
|
|
|
$(obj)nand_ecc.c:
|
|
|
|
@rm -f $(obj)nand_ecc.c
|
2007-11-24 20:26:56 +00:00
|
|
|
ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
|
2007-06-06 09:42:13 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
$(obj)%.o: $(obj)%.S
|
|
|
|
$(CC) $(AFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
$(obj)%.o: $(obj)%.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
|
|
|
|
sinclude $(obj).depend
|
|
|
|
|
|
|
|
#########################################################################
|