]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - nand_spl/board/davinci/da8xxevm/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
[karo-tx-uboot.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         misc.o \
50         nand_boot.o \
51         ns16550.o \
52         psc.o
53
54 SRCS    := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
55 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
56 __OBJS  := $(SOBJS) $(COBJS)
57 LNDIR   := $(nandobj)board/$(BOARDDIR)
58
59 ALL     = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin \
60         $(nandobj)u-boot-spl-16k.bin
61
62 all:    $(ALL)
63
64 $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
65         $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
66
67 $(nandobj)u-boot-spl.bin:       $(nandobj)u-boot-spl
68         $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
69
70 $(nandobj)u-boot-spl:   $(OBJS) $(nandobj)u-boot.lds
71         cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
72                 -Map $(nandobj)u-boot-spl.map \
73                 -o $(nandobj)u-boot-spl
74
75 $(nandobj)u-boot.lds: $(LDSCRIPT)
76         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
77
78 # create symbolic links for common files
79
80 # from board directory
81 $(obj)pinmux.c:
82         @rm -f $@
83         @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/pinmux.c $@
84
85 $(obj)da850_pinmux.c:
86         @rm -f $@
87         @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c $@
88
89 # from drivers/mtd/nand directory
90 $(obj)davinci_nand.c:
91         @rm -f $@
92         @ln -s $(TOPDIR)/drivers/mtd/nand/davinci_nand.c $@
93
94 # from nand_spl directory
95 $(obj)nand_boot.c:
96         @rm -f $@
97         @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@
98
99 # from drivers/serial directory
100 $(obj)ns16550.c:
101         @rm -f $@
102         @ln -sf $(TOPDIR)/drivers/serial/ns16550.c $@
103
104 # from cpu directory
105 $(obj)start.S:
106         @rm -f $@
107         ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/start.S $@
108
109 # from lib directory
110 $(obj)_udivsi3.S:
111         @rm -f $@
112         ln -s $(TOPDIR)/arch/arm/lib/_udivsi3.S $@
113
114 # from lib directory
115 $(obj)_divsi3.S:
116         @rm -f $@
117         ln -s $(TOPDIR)/arch/arm/lib/_divsi3.S $@
118
119 # from lib directory
120 $(obj)div0.c:
121         @rm -f $@
122         ln -s $(TOPDIR)/arch/arm/lib/div0.c $@
123
124 # from SoC directory
125 $(obj)cpu.c:
126         @rm -f $@
127         @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/cpu.c $@
128
129 $(obj)misc.c:
130         @rm -f $@
131         ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/misc.c $@
132
133 # from board directory
134 $(obj)hawkboard_nand_spl.c:
135         @rm -f $@
136         ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@
137
138 $(obj)psc.c:
139         @rm -f $@
140         ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/psc.c $@
141
142 #########################################################################
143
144 $(obj)%.o:      $(obj)%.S
145         $(CC) $(AFLAGS) -c -o $@ $<
146
147 $(obj)%.o:      $(obj)%.c
148         $(CC) $(CFLAGS) -c -o $@ $<
149
150 # defines $(obj).depend target
151 include $(SRCTREE)/rules.mk
152
153 sinclude $(obj).depend
154
155 #########################################################################