blob: 616e6f12c09b651af793b1151e11e4f8aa37a481 [file] [log] [blame]
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -05001#
2# (C) Copyright 2006-2007
3# Stefan Roese, DENX Software Engineering, sr@denx.de.
4#
5# (C) Copyright 2008
6# Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
7#
8# See file CREDITS for list of people who contributed to this
9# project.
10#
11# This program is free software; you can redistribute it and/or
12# modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 2 of
14# the License, or (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24# MA 02111-1307 USA
25#
26
27CONFIG_NAND_SPL = y
28
29include $(TOPDIR)/config.mk
30
Wolfgang Denk29547c62011-03-31 16:26:29 -050031nandobj := $(OBJTREE)/nand_spl/
32
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050033LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
Haiying Wang39358732011-02-22 16:38:05 -050034LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
35 $(LDFLAGS_FINAL)
Aneesh V552a3192011-07-13 05:11:07 +000036AFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
37CFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050038
Stefano Babicc6a09392011-09-09 03:09:02 +000039SOBJS = _divsi3.o \
40 _udivsi3.o \
41 start.o
42
43COBJS = cpu.o \
44 davinci_nand.o \
Christian Riesch0d2cabe2011-11-28 23:46:14 +000045 pinmux.o \
Christian Rieschf49896d2011-11-28 23:46:19 +000046 da850_pinmux.o \
Stefano Babicc6a09392011-09-09 03:09:02 +000047 div0.o \
48 hawkboard_nand_spl.o \
49 memsize.o \
50 misc.o \
51 nand_boot.o \
52 ns16550.o \
53 psc.o
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050054
55SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
56OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
57__OBJS := $(SOBJS) $(COBJS)
Wolfgang Denk29547c62011-03-31 16:26:29 -050058LNDIR := $(nandobj)board/$(BOARDDIR)
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050059
60ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin \
61 $(nandobj)u-boot-spl-16k.bin
62
63all: $(ALL)
64
65$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
66 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
67
68$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
69 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
70
71$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
72 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
73 -Map $(nandobj)u-boot-spl.map \
74 -o $(nandobj)u-boot-spl
75
76$(nandobj)u-boot.lds: $(LDSCRIPT)
77 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
78
79# create symbolic links for common files
80
81# from board directory
Christian Riesch0d2cabe2011-11-28 23:46:14 +000082$(obj)pinmux.c:
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050083 @rm -f $@
Christian Riesch0d2cabe2011-11-28 23:46:14 +000084 @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/pinmux.c $@
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050085
Christian Rieschf49896d2011-11-28 23:46:19 +000086$(obj)da850_pinmux.c:
87 @rm -f $@
88 @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c $@
89
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050090# from drivers/mtd/nand directory
91$(obj)davinci_nand.c:
92 @rm -f $@
93 @ln -s $(TOPDIR)/drivers/mtd/nand/davinci_nand.c $@
94
95# from nand_spl directory
96$(obj)nand_boot.c:
97 @rm -f $@
98 @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@
99
100# from drivers/serial directory
101$(obj)ns16550.c:
102 @rm -f $@
103 @ln -sf $(TOPDIR)/drivers/serial/ns16550.c $@
104
105# from cpu directory
106$(obj)start.S:
107 @rm -f $@
108 ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/start.S $@
109
110# from lib directory
111$(obj)_udivsi3.S:
112 @rm -f $@
113 ln -s $(TOPDIR)/arch/arm/lib/_udivsi3.S $@
114
115# from lib directory
116$(obj)_divsi3.S:
117 @rm -f $@
118 ln -s $(TOPDIR)/arch/arm/lib/_divsi3.S $@
119
120# from lib directory
121$(obj)div0.c:
122 @rm -f $@
123 ln -s $(TOPDIR)/arch/arm/lib/div0.c $@
124
125# from SoC directory
126$(obj)cpu.c:
127 @rm -f $@
128 @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/cpu.c $@
129
130# from board directory
131$(obj)hawkboard_nand_spl.c:
132 @rm -f $@
133 ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@
134
135# from board directory
Stefano Babic6470f732010-11-30 11:32:10 -0500136$(obj)misc.c:
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -0500137 @rm -f $@
Stefano Babic6470f732010-11-30 11:32:10 -0500138 ln -s $(TOPDIR)/board/davinci/common/misc.c $@
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -0500139
140$(obj)psc.c:
141 @rm -f $@
142 ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/psc.c $@
143
Stefano Babicc6a09392011-09-09 03:09:02 +0000144# from common directory
145$(obj)memsize.c:
146 @rm -f $@
147 ln -s $(TOPDIR)/common/memsize.c $@
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -0500148
149#########################################################################
150
151$(obj)%.o: $(obj)%.S
152 $(CC) $(AFLAGS) -c -o $@ $<
153
154$(obj)%.o: $(obj)%.c
155 $(CC) $(CFLAGS) -c -o $@ $<
156
157# defines $(obj).depend target
158include $(SRCTREE)/rules.mk
159
160sinclude $(obj).depend
161
162#########################################################################