From a727af20b05624245a032ad0cda87718cb3a3189 Mon Sep 17 00:00:00 2001 From: "HeungJun, Kim" Date: Fri, 12 Jun 2009 20:31:31 +0900 Subject: [PATCH] [S5PC100] Not ready onenand_ipl features for SMDKC100 Signed-off-by: HeungJun, Kim --- onenand_ipl/board/samsung/smdkc100/Makefile | 97 ---------------------- .../board/samsung/smdkc100/u-boot-onenand.lds | 53 ------------ 2 files changed, 150 deletions(-) delete mode 100644 onenand_ipl/board/samsung/smdkc100/Makefile delete mode 100644 onenand_ipl/board/samsung/smdkc100/u-boot-onenand.lds diff --git a/onenand_ipl/board/samsung/smdkc100/Makefile b/onenand_ipl/board/samsung/smdkc100/Makefile deleted file mode 100644 index 340fecd..0000000 --- a/onenand_ipl/board/samsung/smdkc100/Makefile +++ /dev/null @@ -1,97 +0,0 @@ -# -# Samsung TickerTape(S5PC100) board OneNAND IPL -# -# Copyright (C) 2009 Samsung Electronics -# Minkyu Kang -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# - -include $(TOPDIR)/config.mk -#TEXT_BASE = 0x22008000 -#TEXT_BASE = 0x00034000 -TEXT_BASE = 0xD0034000 -TEXT_BASE2K = 0xD0034800 -TEXT_BASE4K = 0xD0035000 - -LDSCRIPT= $(TOPDIR)/onenand_ipl/board/$(BOARDDIR)/u-boot-onenand.lds -LDFLAGS = -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS) -AFLAGS += -DCONFIG_ONENAND_IPL -g -CFLAGS += -DCONFIG_ONENAND_IPL -g -OBJCFLAGS += --gap-fill=0x00 - -SOBJS := lowlevel_init.o -SOBJS += start.o cpu_init.o -COBJS += onenand_read.o -COBJS += onenand_boot.o - -SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c)) -OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) -__OBJS := $(SOBJS) $(COBJS) -LNDIR := $(OBJTREE)/onenand_ipl/board/$(BOARDDIR) - -onenandobj := $(OBJTREE)/onenand_ipl/ - -ALL = $(onenandobj)onenand-ipl $(onenandobj)onenand-ipl.bin $(onenandobj)onenand-ipl-2k.bin $(onenandobj)onenand-ipl-4k.bin - -all: $(obj).depend $(ALL) - -$(onenandobj)onenand-ipl-2k.bin: $(onenandobj)onenand-ipl - $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(TEXT_BASE2K) -O binary $< $@ - -$(onenandobj)onenand-ipl-4k.bin: $(onenandobj)onenand-ipl - $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(TEXT_BASE4K) -O binary $< $@ - -$(onenandobj)onenand-ipl.bin: $(onenandobj)onenand-ipl - $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ - -$(onenandobj)onenand-ipl: $(OBJS) - cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ - -Map $@.map -o $@ - -# create symbolic links from common files - -# from cpu directory -$(obj)start.S: - @rm -f $@ - ln -s $(SRCTREE)/cpu/$(CPU)/start.S $@ - -$(obj)cpu_init.S: - ln -s $(SRCTREE)/cpu/$(CPU)/s5pc100/cpu_init.S $@ - -$(obj)lowlevel_init.S: - ln -sf $(SRCTREE)/board/$(BOARDDIR)/lowlevel_init.S $@ - -# from onenand_ipl directory -$(obj)onenand_ipl.h: - @rm -f $@ - ln -s $(SRCTREE)/onenand_ipl/onenand_ipl.h $@ - -$(obj)onenand_boot.c: $(obj)onenand_ipl.h - @rm -f $@ - ln -s $(SRCTREE)/onenand_ipl/onenand_boot.c $@ - -$(obj)onenand_read.c: $(obj)onenand_ipl.h - @rm -f $@ - ln -s $(SRCTREE)/onenand_ipl/onenand_read.c $@ - -######################################################################### - -$(obj)%.o: $(obj)%.S - $(CC) $(AFLAGS) -c -o $@ $< - -$(obj)%.o: $(obj)$.c - $(CC) $(CFLAGS) -c -o $@ $< - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -clean: - rm onenand_boot.c onenand_read.c - -######################################################################### diff --git a/onenand_ipl/board/samsung/smdkc100/u-boot-onenand.lds b/onenand_ipl/board/samsung/smdkc100/u-boot-onenand.lds deleted file mode 100644 index 559f9f2..0000000 --- a/onenand_ipl/board/samsung/smdkc100/u-boot-onenand.lds +++ /dev/null @@ -1,53 +0,0 @@ -/* - * (C) Copyright 2005-2008 Samsung Electronics - * Kyungmin Park - * - * Derived from X-loader - * - * See file CREDITS for list of people who contributed to this - * project. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - */ - -OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") -OUTPUT_ARCH(arm) -ENTRY(_start) -SECTIONS -{ - . = 0x00000000; - - . = ALIGN(4); - .text : - { - start.o (.text) - *(.text) - } - - . = ALIGN(4); - .rodata : { *(.rodata) } - - . = ALIGN(4); - .data : { *(.data) } - - . = ALIGN(4); - .got : { *(.got) } - - . = ALIGN(4); - __bss_start = .; - .bss : { *(.bss) } - _end = .; -} -- 2.7.4