blob: c3495ec0dff7dcb72fedaa09d6cf7b14850d482a [file] [log] [blame]
Dipen Dudhat2f143ed2011-07-28 14:47:28 -05001#
2# (C) Copyright 2007
3# Stefan Roese, DENX Software Engineering, sr@denx.de.
4#
5# Copyright 2011 Freescale Semiconductor, Inc.
6#
7# See file CREDITS for list of people who contributed to this
8# project.
9#
10# This program is free software; you can redistribute it and/or
11# modify it under the terms of the GNU General Public License as
12# published by the Free Software Foundation; either version 2 of
13# the License, or (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23# MA 02111-1307 USA
24#
25
26NAND_SPL := y
27CONFIG_SYS_TEXT_BASE_SPL := 0xff800000
28PAD_TO := 0xff802000
29
30include $(TOPDIR)/config.mk
31
32nandobj := $(OBJTREE)/nand_spl/
33
34LDSCRIPT= $(TOPDIR)/$(CPUDIR)/u-boot-nand_spl.lds
Marek Vasuta0603a32012-10-19 05:00:10 +000035LSTSCRIPT= $(nandobj)/board/$(BOARDDIR)/u-boot.lst
Dipen Dudhat2f143ed2011-07-28 14:47:28 -050036LDFLAGS := -T $(nandobj)u-boot-nand_spl.lds -Ttext $(CONFIG_SYS_TEXT_BASE_SPL) $(LDFLAGS) \
37 $(LDFLAGS_FINAL)
38AFLAGS += -DCONFIG_NAND_SPL
39CFLAGS += -DCONFIG_NAND_SPL
40
41SOBJS = start.o resetvec.o ticks.o
Scott Wood5847d782012-09-20 16:35:21 -050042COBJS = cache.o cpu_init_early.o spl_minimal.o fsl_law.o law.o \
Scott Woodfac86242012-08-17 19:46:29 -050043 nand_boot.o nand_boot_fsl_ifc.o ns16550.o tlb.o tlb_table.o
Dipen Dudhat2f143ed2011-07-28 14:47:28 -050044
45SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
46OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
47__OBJS := $(SOBJS) $(COBJS)
48LNDIR := $(nandobj)board/$(BOARDDIR)
49
50ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
51
52all: $(obj).depend $(ALL)
53
54$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
55 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
56
57$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
58 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
59
60$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot-nand_spl.lds
61 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \
62 -Map $(nandobj)u-boot-spl.map \
63 -o $(nandobj)u-boot-spl
64
Marek Vasuta0603a32012-10-19 05:00:10 +000065# The following line expands into whole rule which generates $(LSTSCRIPT),
66# the file containing u-boots LG-array linker section. This is included into
67# $(LDSCRIPT). The function make_u_boot_list is defined in helper.mk file.
68$(eval $(call make_u_boot_list, $(LSTSCRIPT), $(OBJS)))
69$(nandobj)u-boot-nand_spl.lds: $(LDSCRIPT) $(LSTSCRIPT)
Scott Wood67de9572012-11-13 12:30:39 +000070 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(nandobj)board/$(BOARDDIR) \
71 -ansi -D__ASSEMBLY__ -P - <$< >$@
Dipen Dudhat2f143ed2011-07-28 14:47:28 -050072
73# create symbolic links for common files
74
75$(obj)cache.c:
76 @rm -f $(obj)cache.c
77 ln -sf $(SRCTREE)/arch/powerpc/lib/cache.c $(obj)cache.c
78
79$(obj)cpu_init_early.c:
80 @rm -f $(obj)cpu_init_early.c
81 ln -sf $(SRCTREE)/$(CPUDIR)/cpu_init_early.c $(obj)cpu_init_early.c
82
Scott Wood5847d782012-09-20 16:35:21 -050083$(obj)spl_minimal.c:
84 @rm -f $(obj)spl_minimal.c
85 ln -sf $(SRCTREE)/$(CPUDIR)/spl_minimal.c $(obj)spl_minimal.c
Dipen Dudhat2f143ed2011-07-28 14:47:28 -050086
87$(obj)fsl_law.c:
88 @rm -f $(obj)fsl_law.c
Scott Wood3d488722012-08-17 16:17:50 -050089 ln -sf $(SRCTREE)/arch/powerpc/cpu/mpc8xxx/law.c $(obj)fsl_law.c
Dipen Dudhat2f143ed2011-07-28 14:47:28 -050090
91$(obj)law.c:
92 @rm -f $(obj)law.c
93 ln -sf $(SRCTREE)/board/$(BOARDDIR)/law.c $(obj)law.c
94
95$(obj)nand_boot_fsl_ifc.c:
96 @rm -f $(obj)nand_boot_fsl_ifc.c
97 ln -sf $(SRCTREE)/nand_spl/nand_boot_fsl_ifc.c \
98 $(obj)nand_boot_fsl_ifc.c
99
100$(obj)ns16550.c:
101 @rm -f $(obj)ns16550.c
102 ln -sf $(SRCTREE)/drivers/serial/ns16550.c $(obj)ns16550.c
103
104$(obj)resetvec.S:
105 @rm -f $(obj)resetvec.S
106 ln -s $(SRCTREE)/$(CPUDIR)/resetvec.S $(obj)resetvec.S
107
108$(obj)fixed_ivor.S:
109 @rm -f $(obj)fixed_ivor.S
110 ln -sf $(SRCTREE)/$(CPUDIR)/fixed_ivor.S $(obj)fixed_ivor.S
111
112$(obj)start.S: $(obj)fixed_ivor.S
113 @rm -f $(obj)start.S
114 ln -sf $(SRCTREE)/$(CPUDIR)/start.S $(obj)start.S
115
116$(obj)ticks.S:
117 @rm -f $(obj)ticks.S
118 ln -sf $(SRCTREE)/arch/powerpc/lib/ticks.S $(obj)ticks.S
119
120$(obj)tlb.c:
121 @rm -f $(obj)tlb.c
122 ln -sf $(SRCTREE)/$(CPUDIR)/tlb.c $(obj)tlb.c
123
124$(obj)tlb_table.c:
125 @rm -f $(obj)tlb_table.c
126 ln -sf $(SRCTREE)/board/$(BOARDDIR)/tlb.c $(obj)tlb_table.c
127
128ifneq ($(OBJTREE), $(SRCTREE))
129$(obj)nand_boot.c:
130 @rm -f $(obj)nand_boot.c
131 ln -s $(SRCTREE)/nand_spl/board/$(BOARDDIR)/nand_boot.c $(obj)nand_boot.c
Dipen Dudhat2f143ed2011-07-28 14:47:28 -0500132endif
133
134#########################################################################
135
136$(obj)%.o: $(obj)%.S
137 $(CC) $(AFLAGS) -c -o $@ $<
138
139$(obj)%.o: $(obj)%.c
140 $(CC) $(CFLAGS) -c -o $@ $<
141
142# defines $(obj).depend target
143include $(SRCTREE)/rules.mk
144
145sinclude $(obj).depend
146
147#########################################################################