blob: 54e8a12f1c118d0bf454a23097e3e4f0a4c063f5 [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
Wolfgang Denk3b258e22011-03-31 16:26:29 -050027nandobj := $(OBJTREE)/nand_spl/
28
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020029LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
Haiying Wang6dc1eceb2011-02-22 16:38:05 -050030LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
31 $(LDFLAGS_FINAL)
Stefan Roese887e2ec2006-09-07 11:51:23 +020032AFLAGS += -DCONFIG_NAND_SPL
33CFLAGS += -DCONFIG_NAND_SPL
34
35SOBJS = start.o init.o resetvec.o
Stefan Roesefe9c26b2008-01-04 12:00:01 +010036COBJS = denali_data_eye.o nand_boot.o nand_ecc.o ndfc.o sdram.o
Stefan Roese887e2ec2006-09-07 11:51:23 +020037
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020038SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
Stefan Roese887e2ec2006-09-07 11:51:23 +020039OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020040__OBJS := $(SOBJS) $(COBJS)
Wolfgang Denk3b258e22011-03-31 16:26:29 -050041LNDIR := $(nandobj)board/$(BOARDDIR)
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020042
43ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +020044
45all: $(obj).depend $(ALL)
46
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020047$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020048 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
49
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020050$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020051 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
52
Wolfgang Denk1aada9c2009-08-17 14:00:53 +020053$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
Scott Wood767589a2010-12-10 15:13:39 -060054 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020055 -Map $(nandobj)u-boot-spl.map \
56 -o $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020057
Wolfgang Denk1aada9c2009-08-17 14:00:53 +020058$(nandobj)u-boot.lds: $(LDSCRIPT)
59 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
60
Stefan Roese887e2ec2006-09-07 11:51:23 +020061# create symbolic links for common files
62
63# from cpu directory
Stefan Roesefe9c26b2008-01-04 12:00:01 +010064$(obj)denali_data_eye.c:
65 @rm -f $(obj)denali_data_eye.c
Stefan Roesea47a12b2010-04-15 16:07:28 +020066 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/denali_data_eye.c $(obj)denali_data_eye.c
Stefan Roesefe9c26b2008-01-04 12:00:01 +010067
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020068$(obj)ndfc.c:
69 @rm -f $(obj)ndfc.c
Stefan Roese12582ac2009-07-16 15:12:48 +020070 ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
Stefan Roese887e2ec2006-09-07 11:51:23 +020071
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020072$(obj)resetvec.S:
73 @rm -f $(obj)resetvec.S
Stefan Roesea47a12b2010-04-15 16:07:28 +020074 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020075
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020076$(obj)start.S:
77 @rm -f $(obj)start.S
Stefan Roesea47a12b2010-04-15 16:07:28 +020078 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020079
80# from board directory
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020081$(obj)init.S:
82 @rm -f $(obj)init.S
83 ln -s $(SRCTREE)/board/amcc/sequoia/init.S $(obj)init.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020084
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020085$(obj)sdram.c:
86 @rm -f $(obj)sdram.c
Stefan Roese02388982007-01-05 10:38:05 +010087 @rm -f $(obj)sdram.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020088 ln -s $(SRCTREE)/board/amcc/sequoia/sdram.c $(obj)sdram.c
Stefan Roese02388982007-01-05 10:38:05 +010089 ln -s $(SRCTREE)/board/amcc/sequoia/sdram.h $(obj)sdram.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020090
91# from nand_spl directory
92$(obj)nand_boot.c:
93 @rm -f $(obj)nand_boot.c
94 ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
Stefan Roese887e2ec2006-09-07 11:51:23 +020095
Marcel Ziswiler7817cb22007-12-30 03:30:46 +010096# from drivers/mtd/nand directory
Stefan Roese9d909602007-06-01 15:29:04 +020097$(obj)nand_ecc.c:
98 @rm -f $(obj)nand_ecc.c
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +010099 ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
Stefan Roese9d909602007-06-01 15:29:04 +0200100
Stefan Roese887e2ec2006-09-07 11:51:23 +0200101#########################################################################
102
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200103$(obj)%.o: $(obj)%.S
104 $(CC) $(AFLAGS) -c -o $@ $<
105
106$(obj)%.o: $(obj)%.c
107 $(CC) $(CFLAGS) -c -o $@ $<
108
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109# defines $(obj).depend target
110include $(SRCTREE)/rules.mk
111
112sinclude $(obj).depend
113
114#########################################################################