Blackfin: jtag-console: fix timer usage
[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_PRELOADER -DCONFIG_NAND_SPL
37 CFLAGS  += -DCONFIG_PRELOADER -DCONFIG_NAND_SPL
38
39 SOBJS   = start.o _udivsi3.o _divsi3.o
40 COBJS   = cpu.o davinci_nand.o ns16550.o div0.o davinci_pinmux.o psc.o  \
41         misc.o hawkboard_nand_spl.o nand_boot.o
42
43 SRCS    := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
44 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
45 __OBJS  := $(SOBJS) $(COBJS)
46 LNDIR   := $(nandobj)board/$(BOARDDIR)
47
48 ALL     = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin \
49         $(nandobj)u-boot-spl-16k.bin
50
51 all:    $(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
120 $(obj)misc.c:
121         @rm -f $@
122         ln -s $(TOPDIR)/board/davinci/common/misc.c $@
123
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
138 include $(SRCTREE)/rules.mk
139
140 sinclude $(obj).depend
141
142 #########################################################################