Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 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 | |
Wolfgang Denk | 29547c6 | 2011-03-31 16:26:29 -0500 | [diff] [blame] | 31 | nandobj := $(OBJTREE)/nand_spl/ |
| 32 | |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 33 | LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds |
Haiying Wang | 3935873 | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 34 | LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \ |
| 35 | $(LDFLAGS_FINAL) |
Aneesh V | 552a319 | 2011-07-13 05:11:07 +0000 | [diff] [blame] | 36 | AFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL |
| 37 | CFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 38 | |
Stefano Babic | c6a0939 | 2011-09-09 03:09:02 +0000 | [diff] [blame] | 39 | SOBJS = _divsi3.o \ |
| 40 | _udivsi3.o \ |
| 41 | start.o |
| 42 | |
| 43 | COBJS = cpu.o \ |
| 44 | davinci_nand.o \ |
Christian Riesch | 0d2cabe | 2011-11-28 23:46:14 +0000 | [diff] [blame] | 45 | pinmux.o \ |
Christian Riesch | f49896d | 2011-11-28 23:46:19 +0000 | [diff] [blame] | 46 | da850_pinmux.o \ |
Stefano Babic | c6a0939 | 2011-09-09 03:09:02 +0000 | [diff] [blame] | 47 | div0.o \ |
| 48 | hawkboard_nand_spl.o \ |
| 49 | memsize.o \ |
| 50 | misc.o \ |
| 51 | nand_boot.o \ |
| 52 | ns16550.o \ |
| 53 | psc.o |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 54 | |
| 55 | SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c)) |
| 56 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |
| 57 | __OBJS := $(SOBJS) $(COBJS) |
Wolfgang Denk | 29547c6 | 2011-03-31 16:26:29 -0500 | [diff] [blame] | 58 | LNDIR := $(nandobj)board/$(BOARDDIR) |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 59 | |
| 60 | ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin \ |
| 61 | $(nandobj)u-boot-spl-16k.bin |
| 62 | |
| 63 | all: $(ALL) |
| 64 | |
| 65 | $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl |
| 66 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@ |
| 67 | |
| 68 | $(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl |
| 69 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
| 70 | |
| 71 | $(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds |
| 72 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \ |
| 73 | -Map $(nandobj)u-boot-spl.map \ |
| 74 | -o $(nandobj)u-boot-spl |
| 75 | |
| 76 | $(nandobj)u-boot.lds: $(LDSCRIPT) |
| 77 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ |
| 78 | |
| 79 | # create symbolic links for common files |
| 80 | |
| 81 | # from board directory |
Christian Riesch | 0d2cabe | 2011-11-28 23:46:14 +0000 | [diff] [blame] | 82 | $(obj)pinmux.c: |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 83 | @rm -f $@ |
Christian Riesch | 0d2cabe | 2011-11-28 23:46:14 +0000 | [diff] [blame] | 84 | @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/pinmux.c $@ |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 85 | |
Christian Riesch | f49896d | 2011-11-28 23:46:19 +0000 | [diff] [blame] | 86 | $(obj)da850_pinmux.c: |
| 87 | @rm -f $@ |
| 88 | @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c $@ |
| 89 | |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 90 | # from drivers/mtd/nand directory |
| 91 | $(obj)davinci_nand.c: |
| 92 | @rm -f $@ |
| 93 | @ln -s $(TOPDIR)/drivers/mtd/nand/davinci_nand.c $@ |
| 94 | |
| 95 | # from nand_spl directory |
| 96 | $(obj)nand_boot.c: |
| 97 | @rm -f $@ |
| 98 | @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@ |
| 99 | |
| 100 | # from drivers/serial directory |
| 101 | $(obj)ns16550.c: |
| 102 | @rm -f $@ |
| 103 | @ln -sf $(TOPDIR)/drivers/serial/ns16550.c $@ |
| 104 | |
| 105 | # from cpu directory |
| 106 | $(obj)start.S: |
| 107 | @rm -f $@ |
| 108 | ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/start.S $@ |
| 109 | |
| 110 | # from lib directory |
| 111 | $(obj)_udivsi3.S: |
| 112 | @rm -f $@ |
| 113 | ln -s $(TOPDIR)/arch/arm/lib/_udivsi3.S $@ |
| 114 | |
| 115 | # from lib directory |
| 116 | $(obj)_divsi3.S: |
| 117 | @rm -f $@ |
| 118 | ln -s $(TOPDIR)/arch/arm/lib/_divsi3.S $@ |
| 119 | |
| 120 | # from lib directory |
| 121 | $(obj)div0.c: |
| 122 | @rm -f $@ |
| 123 | ln -s $(TOPDIR)/arch/arm/lib/div0.c $@ |
| 124 | |
| 125 | # from SoC directory |
| 126 | $(obj)cpu.c: |
| 127 | @rm -f $@ |
| 128 | @ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/cpu.c $@ |
| 129 | |
| 130 | # from board directory |
| 131 | $(obj)hawkboard_nand_spl.c: |
| 132 | @rm -f $@ |
| 133 | ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@ |
| 134 | |
| 135 | # from board directory |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 136 | $(obj)misc.c: |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 137 | @rm -f $@ |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 138 | ln -s $(TOPDIR)/board/davinci/common/misc.c $@ |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 139 | |
| 140 | $(obj)psc.c: |
| 141 | @rm -f $@ |
| 142 | ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/psc.c $@ |
| 143 | |
Stefano Babic | c6a0939 | 2011-09-09 03:09:02 +0000 | [diff] [blame] | 144 | # from common directory |
| 145 | $(obj)memsize.c: |
| 146 | @rm -f $@ |
| 147 | ln -s $(TOPDIR)/common/memsize.c $@ |
Sughosh Ganu | 1b9c52b | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 148 | |
| 149 | ######################################################################### |
| 150 | |
| 151 | $(obj)%.o: $(obj)%.S |
| 152 | $(CC) $(AFLAGS) -c -o $@ $< |
| 153 | |
| 154 | $(obj)%.o: $(obj)%.c |
| 155 | $(CC) $(CFLAGS) -c -o $@ $< |
| 156 | |
| 157 | # defines $(obj).depend target |
| 158 | include $(SRCTREE)/rules.mk |
| 159 | |
| 160 | sinclude $(obj).depend |
| 161 | |
| 162 | ######################################################################### |