]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - nand_spl/board/amcc/sequoia/Makefile
mxc_ipuv3: fix memory alignment of framebuffer
[karo-tx-uboot.git] / nand_spl / board / amcc / sequoia / Makefile
1 #
2 # (C) Copyright 2006-2007
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
24 include $(TOPDIR)/config.mk
25 include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
26
27 nandobj := $(OBJTREE)/nand_spl/
28
29 LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
30 LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
31            $(LDFLAGS_FINAL)
32 AFLAGS  += -DCONFIG_NAND_SPL
33 CFLAGS  += -DCONFIG_NAND_SPL
34
35 SOBJS   = start.o init.o resetvec.o
36 COBJS   = denali_data_eye.o nand_boot.o nand_ecc.o ndfc.o sdram.o
37
38 SRCS    := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
39 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
40 __OBJS  := $(SOBJS) $(COBJS)
41 LNDIR   := $(nandobj)board/$(BOARDDIR)
42
43 ALL     = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
44
45 all:    $(obj).depend $(ALL)
46
47 $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
48         $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
49
50 $(nandobj)u-boot-spl.bin:       $(nandobj)u-boot-spl
51         $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
52
53 $(nandobj)u-boot-spl:   $(OBJS) $(nandobj)u-boot.lds
54         cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \
55                 -Map $(nandobj)u-boot-spl.map \
56                 -o $(nandobj)u-boot-spl
57
58 $(nandobj)u-boot.lds: $(LDSCRIPT)
59         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
60
61 # create symbolic links for common files
62
63 # from cpu directory
64 $(obj)denali_data_eye.c:
65         @rm -f $(obj)denali_data_eye.c
66         ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/denali_data_eye.c $(obj)denali_data_eye.c
67
68 $(obj)ndfc.c:
69         @rm -f $(obj)ndfc.c
70         ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
71
72 $(obj)resetvec.S:
73         @rm -f $(obj)resetvec.S
74         ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
75
76 $(obj)start.S:
77         @rm -f $(obj)start.S
78         ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S
79
80 # from board directory
81 $(obj)init.S:
82         @rm -f $(obj)init.S
83         ln -s $(SRCTREE)/board/amcc/sequoia/init.S $(obj)init.S
84
85 $(obj)sdram.c:
86         @rm -f $(obj)sdram.c
87         @rm -f $(obj)sdram.h
88         ln -s $(SRCTREE)/board/amcc/sequoia/sdram.c $(obj)sdram.c
89         ln -s $(SRCTREE)/board/amcc/sequoia/sdram.h $(obj)sdram.h
90
91 # from nand_spl directory
92 $(obj)nand_boot.c:
93         @rm -f $(obj)nand_boot.c
94         ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
95
96 # from drivers/mtd/nand directory
97 $(obj)nand_ecc.c:
98         @rm -f $(obj)nand_ecc.c
99         ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
100
101 #########################################################################
102
103 $(obj)%.o:      $(obj)%.S
104         $(CC) $(AFLAGS) -c -o $@ $<
105
106 $(obj)%.o:      $(obj)%.c
107         $(CC) $(CFLAGS) -c -o $@ $<
108
109 # defines $(obj).depend target
110 include $(SRCTREE)/rules.mk
111
112 sinclude $(obj).depend
113
114 #########################################################################