blob: ce39032a9108317e1c358e7f15d8caba4df09ae4 [file] [log] [blame]
Stefan Roese887e2ec2006-09-07 11:51:23 +02001#
2# (C) Copyright 2006
3# Stefan Roese, DENX Software Engineering, sr@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020025include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
Stefan Roese887e2ec2006-09-07 11:51:23 +020026
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020027LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
Stefan Roese887e2ec2006-09-07 11:51:23 +020028LDFLAGS = -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
29AFLAGS += -DCONFIG_NAND_SPL
30CFLAGS += -DCONFIG_NAND_SPL
31
32SOBJS = start.o init.o resetvec.o
Stefan Roese9d909602007-06-01 15:29:04 +020033COBJS = nand_boot.o nand_ecc.o ndfc.o sdram.o
Stefan Roese887e2ec2006-09-07 11:51:23 +020034
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020035SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
Stefan Roese887e2ec2006-09-07 11:51:23 +020036OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020037__OBJS := $(SOBJS) $(COBJS)
38LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
Stefan Roese887e2ec2006-09-07 11:51:23 +020039
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020040nandobj := $(OBJTREE)/nand_spl/
41
42ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +020043
44all: $(obj).depend $(ALL)
45
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020046$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020047 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
48
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020049$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020050 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
51
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020052$(nandobj)u-boot-spl: $(OBJS)
53 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
54 -Map $(nandobj)u-boot-spl.map \
55 -o $(nandobj)u-boot-spl
Stefan Roese887e2ec2006-09-07 11:51:23 +020056
57# create symbolic links for common files
58
59# from cpu directory
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020060$(obj)ndfc.c:
61 @rm -f $(obj)ndfc.c
62 ln -s $(SRCTREE)/cpu/ppc4xx/ndfc.c $(obj)ndfc.c
Stefan Roese887e2ec2006-09-07 11:51:23 +020063
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020064$(obj)resetvec.S:
65 @rm -f $(obj)resetvec.S
66 ln -s $(SRCTREE)/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020067
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020068$(obj)start.S:
69 @rm -f $(obj)start.S
70 ln -s $(SRCTREE)/cpu/ppc4xx/start.S $(obj)start.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020071
72# from board directory
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020073$(obj)init.S:
74 @rm -f $(obj)init.S
75 ln -s $(SRCTREE)/board/amcc/sequoia/init.S $(obj)init.S
Stefan Roese887e2ec2006-09-07 11:51:23 +020076
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020077$(obj)sdram.c:
78 @rm -f $(obj)sdram.c
Stefan Roese02388982007-01-05 10:38:05 +010079 @rm -f $(obj)sdram.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020080 ln -s $(SRCTREE)/board/amcc/sequoia/sdram.c $(obj)sdram.c
Stefan Roese02388982007-01-05 10:38:05 +010081 ln -s $(SRCTREE)/board/amcc/sequoia/sdram.h $(obj)sdram.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020082
83# from nand_spl directory
84$(obj)nand_boot.c:
85 @rm -f $(obj)nand_boot.c
86 ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
Stefan Roese887e2ec2006-09-07 11:51:23 +020087
Stefan Roese9d909602007-06-01 15:29:04 +020088# from drivers/nand directory
89$(obj)nand_ecc.c:
90 @rm -f $(obj)nand_ecc.c
91 ln -s $(SRCTREE)/drivers/nand/nand_ecc.c $(obj)nand_ecc.c
92
Stefan Roese887e2ec2006-09-07 11:51:23 +020093#########################################################################
94
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020095$(obj)%.o: $(obj)%.S
96 $(CC) $(AFLAGS) -c -o $@ $<
97
98$(obj)%.o: $(obj)%.c
99 $(CC) $(CFLAGS) -c -o $@ $<
100
Stefan Roese887e2ec2006-09-07 11:51:23 +0200101# defines $(obj).depend target
102include $(SRCTREE)/rules.mk
103
104sinclude $(obj).depend
105
106#########################################################################