blob: c3cb1bbd3c556a305a9bc21b8309461416faf98d [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)
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050036AFLAGS += -DCONFIG_PRELOADER -DCONFIG_NAND_SPL
37CFLAGS += -DCONFIG_PRELOADER -DCONFIG_NAND_SPL
38
39SOBJS = start.o _udivsi3.o _divsi3.o
40COBJS = cpu.o davinci_nand.o ns16550.o div0.o davinci_pinmux.o psc.o \
Stefano Babic6470f732010-11-30 11:32:10 -050041 misc.o hawkboard_nand_spl.o nand_boot.o
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050042
43SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
44OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
45__OBJS := $(SOBJS) $(COBJS)
Wolfgang Denk29547c62011-03-31 16:26:29 -050046LNDIR := $(nandobj)board/$(BOARDDIR)
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050047
48ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin \
49 $(nandobj)u-boot-spl-16k.bin
50
51all: $(ALL)
52
53$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
54 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
55
56$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
57 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
58
59$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
60 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
61 -Map $(nandobj)u-boot-spl.map \
62 -o $(nandobj)u-boot-spl
63
64$(nandobj)u-boot.lds: $(LDSCRIPT)
65 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
66
67# create symbolic links for common files
68
69# from board directory
70$(obj)davinci_pinmux.c:
71 @rm -f $@
72 @ln -s $(TOPDIR)/board/davinci/common/davinci_pinmux.c $@
73
74# from drivers/mtd/nand directory
75$(obj)davinci_nand.c:
76 @rm -f $@
77 @ln -s $(TOPDIR)/drivers/mtd/nand/davinci_nand.c $@
78
79# from nand_spl directory
80$(obj)nand_boot.c:
81 @rm -f $@
82 @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@
83
84# from drivers/serial directory
85$(obj)ns16550.c:
86 @rm -f $@
87 @ln -sf $(TOPDIR)/drivers/serial/ns16550.c $@
88
89# from cpu directory
90$(obj)start.S:
91 @rm -f $@
92 ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/start.S $@
93
94# from lib directory
95$(obj)_udivsi3.S:
96 @rm -f $@
97 ln -s $(TOPDIR)/arch/arm/lib/_udivsi3.S $@
98
99# from lib directory
100$(obj)_divsi3.S:
101 @rm -f $@
102 ln -s $(TOPDIR)/arch/arm/lib/_divsi3.S $@
103
104# from lib directory
105$(obj)div0.c:
106 @rm -f $@
107 ln -s $(TOPDIR)/arch/arm/lib/div0.c $@
108
109# from SoC directory
110$(obj)cpu.c:
111 @rm -f $@
112 @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/cpu.c $@
113
114# from board directory
115$(obj)hawkboard_nand_spl.c:
116 @rm -f $@
117 ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@
118
119# from board directory
Stefano Babic6470f732010-11-30 11:32:10 -0500120$(obj)misc.c:
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -0500121 @rm -f $@
Stefano Babic6470f732010-11-30 11:32:10 -0500122 ln -s $(TOPDIR)/board/davinci/common/misc.c $@
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -0500123
124$(obj)psc.c:
125 @rm -f $@
126 ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/psc.c $@
127
128
129#########################################################################
130
131$(obj)%.o: $(obj)%.S
132 $(CC) $(AFLAGS) -c -o $@ $<
133
134$(obj)%.o: $(obj)%.c
135 $(CC) $(CFLAGS) -c -o $@ $<
136
137# defines $(obj).depend target
138include $(SRCTREE)/rules.mk
139
140sinclude $(obj).depend
141
142#########################################################################