3783c1896c2c0e12b5039b9c8d851daff5b915bc
[platform/kernel/u-boot.git] / nand_spl / board / davinci / da8xxevm / Makefile
1 #
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
27 CONFIG_NAND_SPL = y
28
29 include $(TOPDIR)/config.mk
30
31 nandobj := $(OBJTREE)/nand_spl/
32
33 LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
34 LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
35            $(LDFLAGS_FINAL)
36 AFLAGS  += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
37 CFLAGS  += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
38
39 SOBJS   = _divsi3.o \
40         _udivsi3.o \
41         start.o
42
43 COBJS   = cpu.o \
44         davinci_nand.o \
45         pinmux.o \
46         da850_pinmux.o \
47         div0.o \
48         hawkboard_nand_spl.o \
49         memsize.o \
50         misc.o \
51         nand_boot.o \
52         ns16550.o \
53         psc.o
54
55 SRCS    := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
56 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
57 __OBJS  := $(SOBJS) $(COBJS)
58 LNDIR   := $(nandobj)board/$(BOARDDIR)
59
60 ALL     = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin \
61         $(nandobj)u-boot-spl-16k.bin
62
63 all:    $(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
82 $(obj)pinmux.c:
83         @rm -f $@
84         @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/pinmux.c $@
85
86 $(obj)da850_pinmux.c:
87         @rm -f $@
88         @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c $@
89
90 # 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 $(obj)misc.c:
131         @rm -f $@
132         ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/misc.c $@
133
134 # from board directory
135 $(obj)hawkboard_nand_spl.c:
136         @rm -f $@
137         ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@
138
139 $(obj)psc.c:
140         @rm -f $@
141         ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/psc.c $@
142
143 # from common directory
144 $(obj)memsize.c:
145         @rm -f $@
146         ln -s $(TOPDIR)/common/memsize.c $@
147
148 #########################################################################
149
150 $(obj)%.o:      $(obj)%.S
151         $(CC) $(AFLAGS) -c -o $@ $<
152
153 $(obj)%.o:      $(obj)%.c
154         $(CC) $(CFLAGS) -c -o $@ $<
155
156 # defines $(obj).depend target
157 include $(SRCTREE)/rules.mk
158
159 sinclude $(obj).depend
160
161 #########################################################################