John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2009 DENX Software Engineering |
| 3 | # |
| 4 | # See file CREDITS for list of people who contributed to this |
| 5 | # project. |
| 6 | # |
| 7 | # This program is free software; you can redistribute it and/or |
| 8 | # modify it under the terms of the GNU General Public License as |
| 9 | # published by the Free Software Foundatio; either version 2 of |
| 10 | # the License, or (at your option) any later version. |
| 11 | # |
| 12 | # This program is distributed in the hope that it will be useful, |
| 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | # GNU General Public License for more details. |
| 16 | # |
| 17 | # You should have received a copy of the GNU General Public License |
| 18 | # along with this program; if not, write to the Free Software |
| 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | # MA 02111-1307 USA |
| 21 | # |
| 22 | CONFIG_NAND_SPL = y |
| 23 | |
| 24 | include $(TOPDIR)/config.mk |
| 25 | include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk |
| 26 | |
Wolfgang Denk | 29547c6 | 2011-03-31 16:26:29 -0500 | [diff] [blame] | 27 | nandobj := $(OBJTREE)/nand_spl/ |
| 28 | |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 29 | LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds |
Marek Vasut | a0603a3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 30 | LSTSCRIPT= $(nandobj)/board/$(BOARDDIR)/u-boot.lst |
Haiying Wang | 3935873 | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 31 | LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \ |
| 32 | $(LDFLAGS_FINAL) |
Aneesh V | 552a319 | 2011-07-13 05:11:07 +0000 | [diff] [blame] | 33 | AFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL |
| 34 | CFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 35 | |
Albert ARIBAUD | facdae5 | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 36 | SOBJS = start.o crt0.o lowlevel_init.o |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 37 | COBJS = nand_boot_fsl_nfc.o |
| 38 | |
| 39 | SRCS := $(SRCTREE)/nand_spl/nand_boot_fsl_nfc.c |
Peter Tyser | f7c6737 | 2010-04-12 22:28:11 -0500 | [diff] [blame] | 40 | SRCS += $(SRCTREE)/arch/arm/cpu/arm926ejs/start.S |
Albert ARIBAUD | facdae5 | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 41 | SRCS += $(SRCTREE)/arch/arm/lib/crt0.S |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 42 | SRCS += $(SRCTREE)/board/karo/tx25/lowlevel_init.S |
| 43 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |
| 44 | __OBJS := $(SOBJS) $(COBJS) |
Wolfgang Denk | 29547c6 | 2011-03-31 16:26:29 -0500 | [diff] [blame] | 45 | LNDIR := $(nandobj)board/$(BOARDDIR) |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 46 | |
| 47 | ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin |
| 48 | |
| 49 | all: $(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 | |
| 57 | $(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds |
| 58 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \ |
| 59 | -Map $(nandobj)u-boot-spl.map \ |
| 60 | -o $@ |
| 61 | |
Marek Vasut | a0603a3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 62 | # The following line expands into whole rule which generates $(LSTSCRIPT), |
| 63 | # the file containing u-boots LG-array linker section. This is included into |
| 64 | # $(LDSCRIPT). The function make_u_boot_list is defined in helper.mk file. |
| 65 | $(eval $(call make_u_boot_list, $(LSTSCRIPT), $(OBJS))) |
| 66 | $(nandobj)u-boot.lds: $(LDSCRIPT) $(LSTSCRIPT) |
Scott Wood | 67de957 | 2012-11-13 12:30:39 +0000 | [diff] [blame] | 67 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(nandobj)/board/$(BOARDDIR) \ |
| 68 | -ansi -D__ASSEMBLY__ -P - <$< >$@ |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 69 | |
| 70 | ######################################################################### |
| 71 | |
Peter Tyser | f7c6737 | 2010-04-12 22:28:11 -0500 | [diff] [blame] | 72 | $(obj)%.o: $(SRCTREE)/arch/arm/cpu/arm926ejs/%.S |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 73 | $(CC) $(AFLAGS) -c -o $@ $< |
| 74 | |
Albert ARIBAUD | facdae5 | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 75 | $(obj)%.o: $(SRCTREE)/arch/arm/lib/%.S |
| 76 | $(CC) $(AFLAGS) -c -o $@ $< |
| 77 | |
John Rigby | 6478a75 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 78 | $(obj)%.o: $(SRCTREE)/board/karo/tx25/%.S |
| 79 | $(CC) $(AFLAGS) -c -o $@ $< |
| 80 | |
| 81 | $(obj)%.o: $(SRCTREE)/nand_spl/%.c |
| 82 | $(CC) $(CFLAGS) -c -o $@ $< |
| 83 | |
| 84 | # defines $(obj).depend target |
| 85 | include $(SRCTREE)/rules.mk |
| 86 | |
| 87 | sinclude $(obj).depend |
| 88 | |
| 89 | ######################################################################### |