blob: 293292732fc9999acc9a99c095c0d77db9a1ddc9 [file] [log] [blame]
Stefan Roesecf959c72007-06-01 15:27:11 +02001#
2# (C) Copyright 2007
3# 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
25include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
26
27LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
28LDFLAGS = -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
29AFLAGS += -DCONFIG_NAND_SPL
30CFLAGS += -DCONFIG_NAND_SPL
31
32SOBJS = start.o init.o resetvec.o
33COBJS = nand_boot.o nand_ecc.o ndfc.o sdram.o
34
35SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
36OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
37__OBJS := $(SOBJS) $(COBJS)
38LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
39
40nandobj := $(OBJTREE)/nand_spl/
41
42ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
43
44all: $(obj).depend $(ALL)
45
46$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
47 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
48
49$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
50 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
51
52$(nandobj)u-boot-spl: $(OBJS)
Kenneth Johansson2918eb92008-05-29 16:32:33 +020053 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
Stefan Roesecf959c72007-06-01 15:27:11 +020054 -Map $(nandobj)u-boot-spl.map \
55 -o $(nandobj)u-boot-spl
56
57# create symbolic links for common files
58
59# from cpu directory
60$(obj)ndfc.c:
61 @rm -f $(obj)ndfc.c
Stefan Roese12582ac2009-07-16 15:12:48 +020062 ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
Stefan Roesecf959c72007-06-01 15:27:11 +020063
64$(obj)resetvec.S:
65 @rm -f $(obj)resetvec.S
66 ln -s $(SRCTREE)/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
67
68$(obj)start.S:
69 @rm -f $(obj)start.S
70 ln -s $(SRCTREE)/cpu/ppc4xx/start.S $(obj)start.S
71
72# from board directory
73$(obj)init.S:
74 @rm -f $(obj)init.S
75 ln -s $(SRCTREE)/board/amcc/bamboo/init.S $(obj)init.S
76
77# from nand_spl directory
78$(obj)nand_boot.c:
79 @rm -f $(obj)nand_boot.c
80 ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
81
Marcel Ziswiler7817cb22007-12-30 03:30:46 +010082# from drivers/mtd/nand directory
Stefan Roesecf959c72007-06-01 15:27:11 +020083$(obj)nand_ecc.c:
84 @rm -f $(obj)nand_ecc.c
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +010085 ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
Stefan Roesecf959c72007-06-01 15:27:11 +020086
Grzegorz Bernacki6c2f4f32007-09-11 12:57:52 +020087ifneq ($(OBJTREE), $(SRCTREE))
88$(obj)sdram.c:
89 @rm -f $(obj)sdram.c
90 ln -s $(SRCTREE)/nand_spl/board/$(BOARDDIR)/sdram.c $(obj)sdram.c
91endif
92
Stefan Roesecf959c72007-06-01 15:27:11 +020093#########################################################################
94
95$(obj)%.o: $(obj)%.S
96 $(CC) $(AFLAGS) -c -o $@ $<
97
98$(obj)%.o: $(obj)%.c
99 $(CC) $(CFLAGS) -c -o $@ $<
100
101# defines $(obj).depend target
102include $(SRCTREE)/rules.mk
103
104sinclude $(obj).depend
105
106#########################################################################