blob: 9cb485331808bfa4373e3fb90c2faedc52311fa8 [file] [log] [blame]
Guennadi Liakhovetskib2d42742008-08-31 00:39:47 +02001#
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
30include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
31
32LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
Wolfgang Denk18d46c02009-08-17 14:00:53 +020033LDFLAGS = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
Guennadi Liakhovetskib2d42742008-08-31 00:39:47 +020034AFLAGS += -DCONFIG_NAND_SPL
35CFLAGS += -DCONFIG_NAND_SPL
36
37SOBJS = start.o cpu_init.o lowlevel_init.o
38COBJS = nand_boot.o nand_ecc.o s3c64xx.o
39
40SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
41OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
42__OBJS := $(SOBJS) $(COBJS)
43LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
44
45nandobj := $(OBJTREE)/nand_spl/
46
47ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
48
49all: $(obj).depend $(ALL)
50
51$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
52 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
53
54$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
55 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
56
Wolfgang Denk18d46c02009-08-17 14:00:53 +020057$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
Guennadi Liakhovetskib2d42742008-08-31 00:39:47 +020058 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
59 -Map $(nandobj)u-boot-spl.map \
60 -o $(nandobj)u-boot-spl
61
Wolfgang Denk18d46c02009-08-17 14:00:53 +020062$(nandobj)u-boot.lds: $(LDSCRIPT)
63 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
64
Guennadi Liakhovetskib2d42742008-08-31 00:39:47 +020065# create symbolic links for common files
66
67# from cpu directory
68$(obj)start.S:
69 @rm -f $@
Peter Tyserf7c67372010-04-12 22:28:11 -050070 @ln -s $(TOPDIR)/arch/arm/cpu/arm1176/start.S $@
Guennadi Liakhovetskib2d42742008-08-31 00:39:47 +020071
72# from SoC directory
73$(obj)cpu_init.S:
74 @rm -f $@
Peter Tyserf7c67372010-04-12 22:28:11 -050075 @ln -s $(TOPDIR)/arch/arm/cpu/arm1176/s3c64xx/cpu_init.S $@
Guennadi Liakhovetskib2d42742008-08-31 00:39:47 +020076
77# from board directory
78$(obj)lowlevel_init.S:
79 @rm -f $@
80 @ln -s $(TOPDIR)/board/samsung/smdk6400/lowlevel_init.S $@
81
82# from nand_spl directory
83$(obj)nand_boot.c:
84 @rm -f $@
85 @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@
86
87# from drivers/mtd/nand directory
88$(obj)nand_ecc.c:
89 @rm -f $@
90 @ln -s $(TOPDIR)/drivers/mtd/nand/nand_ecc.c $@
91
92$(obj)s3c64xx.c:
93 @rm -f $@
94 @ln -s $(TOPDIR)/drivers/mtd/nand/s3c64xx.c $@
95
96#########################################################################
97
98$(obj)%.o: $(obj)%.S
99 $(CC) $(AFLAGS) -c -o $@ $<
100
101$(obj)%.o: $(obj)%.c
102 $(CC) $(CFLAGS) -c -o $@ $<
103
104# defines $(obj).depend target
105include $(SRCTREE)/rules.mk
106
107sinclude $(obj).depend
108
109#########################################################################