blob: 9120f156b6e53c9622a8ef86a4d2266f773b4fe1 [file] [log] [blame]
Stefan Roese887e2ec2006-09-07 11:51:23 +02001#
Stefan Roesef3679aa2007-06-01 16:15:34 +02002# (C) Copyright 2006-2007
Stefan Roese887e2ec2006-09-07 11:51:23 +02003# Stefan Roese, DENX Software Engineering, sr@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020025include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
Stefan Roese887e2ec2006-09-07 11:51:23 +020026
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020027LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
Wolfgang Denk14d0a022010-10-07 21:51:12 +020028LDFLAGS = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(PLATFORM_LDFLAGS)
Stefan Roese887e2ec2006-09-07 11:51:23 +020029AFLAGS += -DCONFIG_NAND_SPL
30CFLAGS += -DCONFIG_NAND_SPL
31
32SOBJS = start.o init.o resetvec.o
Stefan Roesefe9c26b2008-01-04 12:00:01 +010033COBJS = denali_data_eye.o nand_boot.o nand_ecc.o ndfc.o sdram.o
Stefan Roese887e2ec2006-09-07 11:51:23 +020034
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020035SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
Stefan Roese887e2ec2006-09-07 11:51:23 +020036OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020037__OBJS := $(SOBJS) $(COBJS)
38LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
Stefan Roese887e2ec2006-09-07 11:51:23 +020039
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020040nandobj := $(OBJTREE)/nand_spl/
41
42ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +020043
44all: $(obj).depend $(ALL)
45
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020046$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020047 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
48
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020049$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020050 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
51
Wolfgang Denk1aada9c2009-08-17 14:00:53 +020052$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
Scott Wood767589a2010-12-10 15:13:39 -060053 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020054 -Map $(nandobj)u-boot-spl.map \
55 -o $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020056
Wolfgang Denk1aada9c2009-08-17 14:00:53 +020057$(nandobj)u-boot.lds: $(LDSCRIPT)
58 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
59
Stefan Roese887e2ec2006-09-07 11:51:23 +020060# create symbolic links for common files
61
62# from cpu directory
Stefan Roesefe9c26b2008-01-04 12:00:01 +010063$(obj)denali_data_eye.c:
64 @rm -f $(obj)denali_data_eye.c
Stefan Roesea47a12b2010-04-15 16:07:28 +020065 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/denali_data_eye.c $(obj)denali_data_eye.c
Stefan Roesefe9c26b2008-01-04 12:00:01 +010066
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020067$(obj)ndfc.c:
68 @rm -f $(obj)ndfc.c
Stefan Roese12582ac2009-07-16 15:12:48 +020069 ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
Stefan Roese887e2ec2006-09-07 11:51:23 +020070
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020071$(obj)resetvec.S:
72 @rm -f $(obj)resetvec.S
Stefan Roesea47a12b2010-04-15 16:07:28 +020073 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020074
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020075$(obj)start.S:
76 @rm -f $(obj)start.S
Stefan Roesea47a12b2010-04-15 16:07:28 +020077 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020078
79# from board directory
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020080$(obj)init.S:
81 @rm -f $(obj)init.S
82 ln -s $(SRCTREE)/board/amcc/sequoia/init.S $(obj)init.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020083
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020084$(obj)sdram.c:
85 @rm -f $(obj)sdram.c
Stefan Roese02388982007-01-05 10:38:05 +010086 @rm -f $(obj)sdram.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020087 ln -s $(SRCTREE)/board/amcc/sequoia/sdram.c $(obj)sdram.c
Stefan Roese02388982007-01-05 10:38:05 +010088 ln -s $(SRCTREE)/board/amcc/sequoia/sdram.h $(obj)sdram.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020089
90# from nand_spl directory
91$(obj)nand_boot.c:
92 @rm -f $(obj)nand_boot.c
93 ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
Stefan Roese887e2ec2006-09-07 11:51:23 +020094
Marcel Ziswiler7817cb22007-12-30 03:30:46 +010095# from drivers/mtd/nand directory
Stefan Roese9d909602007-06-01 15:29:04 +020096$(obj)nand_ecc.c:
97 @rm -f $(obj)nand_ecc.c
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +010098 ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
Stefan Roese9d909602007-06-01 15:29:04 +020099
Stefan Roese887e2ec2006-09-07 11:51:23 +0200100#########################################################################
101
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200102$(obj)%.o: $(obj)%.S
103 $(CC) $(AFLAGS) -c -o $@ $<
104
105$(obj)%.o: $(obj)%.c
106 $(CC) $(CFLAGS) -c -o $@ $<
107
Stefan Roese887e2ec2006-09-07 11:51:23 +0200108# defines $(obj).depend target
109include $(SRCTREE)/rules.mk
110
111sinclude $(obj).depend
112
113#########################################################################