All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kristoffer Ericson <kristoffer.ericson@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 04/52] ARM: remove broken "jornada" board
Date: Mon, 18 Jul 2011 13:20:59 +0200	[thread overview]
Message-ID: <20110718112058.GA2596@Boggieman> (raw)
In-Reply-To: <1310941040-6526-5-git-send-email-wd@denx.de>

Please dont. I have the patches here, will send them during the week.

Best wishes
Kristoffer


On Mon, Jul 18, 2011 at 12:16:32AM +0200, Wolfgang Denk wrote:
> Signed-off-by: Wolfgang Denk <wd@denx.de>
> Cc: Kristoffer Ericson <kristoffer.ericson@gmail.com>
> ---
>  MAINTAINERS               |    4 -
>  board/jornada/Makefile    |   53 -----------
>  board/jornada/jornada.c   |   60 -------------
>  board/jornada/setup.S     |  210 ---------------------------------------------
>  board/jornada/u-boot.lds  |   58 -------------
>  boards.cfg                |    1 -
>  doc/README.scrapyard      |    1 +
>  include/configs/jornada.h |  153 ---------------------------------
>  8 files changed, 1 insertions(+), 539 deletions(-)
>  delete mode 100644 board/jornada/Makefile
>  delete mode 100644 board/jornada/jornada.c
>  delete mode 100644 board/jornada/setup.S
>  delete mode 100644 board/jornada/u-boot.lds
>  delete mode 100644 include/configs/jornada.h
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index ce0f57e..af641d2 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -631,10 +631,6 @@ Thomas Elste <info@elste.org>
>  
>  	modnet50	ARM720T (NET+50)
>  
> -Kristoffer Ericson <kristoffer.ericson@gmail.com>
> -
> -	jornada	SA1110
> -
>  Fabio Estevam <fabio.estevam@freescale.com>
>  
>  	mx31pdk		i.MX31
> diff --git a/board/jornada/Makefile b/board/jornada/Makefile
> deleted file mode 100644
> index e017692..0000000
> --- a/board/jornada/Makefile
> +++ /dev/null
> @@ -1,53 +0,0 @@
> -#
> -# (C) Copyright 2000-2006
> -# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
> -#
> -# 2004 (c) MontaVista Software, Inc.
> -#
> -# 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
> -#
> -
> -include $(TOPDIR)/config.mk
> -
> -LIB	= $(obj)lib$(BOARD).o
> -
> -COBJS	:= jornada.o
> -SOBJS	:= setup.o
> -
> -SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
> -OBJS	:= $(addprefix $(obj),$(COBJS))
> -SOBJS	:= $(addprefix $(obj),$(SOBJS))
> -
> -$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
> -	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
> -
> -clean:
> -	rm -f $(SOBJS) $(OBJS)
> -
> -distclean:	clean
> -	rm -f $(LIB) core *.bak $(obj).depend
> -
> -#########################################################################
> -
> -# defines $(obj).depend target
> -include $(SRCTREE)/rules.mk
> -
> -sinclude $(obj).depend
> -
> -#########################################################################
> diff --git a/board/jornada/jornada.c b/board/jornada/jornada.c
> deleted file mode 100644
> index fab1068..0000000
> --- a/board/jornada/jornada.c
> +++ /dev/null
> @@ -1,60 +0,0 @@
> -/*
> - * (C) Copyright 2002
> - * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
> - * Marius Groeger <mgroeger@sysgo.de>
> - *
> - * 2004 (c) MontaVista Software, Inc.
> - *
> - * 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
> - */
> -
> -#include <common.h>
> -#include <SA-1100.h>
> -
> -DECLARE_GLOBAL_DATA_PTR;
> -
> -/* ------------------------------------------------------------------------- */
> -
> -int board_init(void)
> -{
> -	gd->bd->bi_arch_number = MACH_TYPE_JORNADA720;
> -	gd->bd->bi_boot_params = 0xc0000100;
> -
> -
> -	/*
> -	 * Turn on flashing.
> -	 * Would be nice to have some protection but
> -	 * that would have to be implemented in the
> -	 * flash init function, which isnt possible yet.
> -	 */
> -	PPSR |= (1 << 7);
> -	PPDR |= (1 << 7);
> -
> -	return 0;
> -}
> -
> -int dram_init(void)
> -{
> -	gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
> -	gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
> -	gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
> -	gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
> -
> -	return (0);
> -}
> diff --git a/board/jornada/setup.S b/board/jornada/setup.S
> deleted file mode 100644
> index cdf5f54..0000000
> --- a/board/jornada/setup.S
> +++ /dev/null
> @@ -1,210 +0,0 @@
> -/*
> - * Memory Setup stuff - taken from blob memsetup.S
> - *
> - * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw at its.tudelft.nl) and
> - *		       Jan-Derk Bakker (J.D.Bakker at its.tudelft.nl)
> - * 2004 (c) MontaVista Software, Inc.
> - *
> - * 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
> - */
> -
> -
> -#include "config.h"
> -#include "version.h"
> -
> -
> -/*-----------------------------------------------------------------------
> - * Board defines:
> - */
> -
> -#define MDCNFG		0x00
> -#define MDCAS00		0x04
> -#define MDCAS01		0x08
> -#define MDCAS02		0x0C
> -#define MSC0		0x10
> -#define MSC1		0x14
> -#define MECR		0x18
> -#define MDREFR		0x1C
> -#define MDCAS20		0x20
> -#define MDCAS21		0x24
> -#define MDCAS22		0x28
> -#define MSC2		0x2C
> -#define SMCNFG		0x30
> -
> -#define GPDR	0x04
> -#define GPSR	0x08
> -#define GPCR	0x0C
> -#define GAFR	0x1C
> -
> -#define PPDR	0x00
> -#define PPSR	0x04
> -#define PPAR	0x08
> -
> -#define MDREFR_TRASR(n_) (n_ & (0x0000000f))
> -#define MDREFR_DRI(n_)   ((n_ & (0x00000fff)) << 4)
> -#define MDREFR_K0DB2 (1 << 18)
> -#define MDREFR_K1DB2 (1 << 22)
> -#define MDREFR_K2DB2 (1 << 26)
> -
> -#define MDREFR_K0RUN (1 << 17)
> -#define MDREFR_K1RUN (1 << 21)
> -#define MDREFR_K2RUN (1 << 25)
> -
> -#define MDREFR_SLFRSH (1 << 31)
> -#define MDREFR_E1PIN  (1 << 20)
> -
> -#define PSSR    0x04
> -#define PSSR_DH 0x00000008
> -#define POSR    0x08
> -#define RCSR    0x04
> -
> -/*-----------------------------------------------------------------------
> - * Setup parameters for the board:
> - */
> -MEM_BASE:	.long	0xa0000000
> -MEM_START:	.long	0xc0000000
> -PWR_BASE:	.word	0x90020000
> -RST_BASE:	.long	0x90030000
> -PPC_BASE:	.long	0x90060000
> -GPIO_BASE:	.long	0x90040000
> -IC_BASE:	.word	0x90050000
> -
> -cpuspeed:	.word	0xa0
> -/* calculated from old blob bootloader */
> -mdcnfg:	.long	0x00037267	/* mdcnfg  0x00037267 */
> -mdcas00:	.long	0x5555557f	/* mdcas00 0x5555557f */
> -mdcas01:	.long	0x55555555	/* mdcas01 0x55555555 */
> -mdcas02:	.long	0x55555555	/* mdcas02 0x55555555 */
> -msc0:	.long	0xfff04f78		/* msc0    0xfff04f78 */
> -msc1:	.long	0xfff8fff0		/* msc1    0xfff8fff0 */
> -mecr:	.long	0x98c698c6	/* mecr    0x98c698c6 */
> -mdrefr:	.long	0x067600c7	/* mdrefr  0x04340327 */
> -mdcas20:	.long	0xd1284142	/* mdcas20 0xd1284142 */
> -mdcas21:	.long	0x72249529	/* mdcas21 0x72249529 */
> -mdcas22:	.long	0x78414351	/* mdcas22 0x78414351 */
> -msc2:	.long	0x201d2959		/* msc2    0x201d2959 */
> -smcnfg:	.long	0x00000000	/* smcnfg  0x00000000 */
> -
> -pin_set_out:	.long	0x37ff70
> -pin_set_dir:	.long	0x11480
> -
> -gpdr_set:	.long	0x0B3A0900
> -gpsr_set:	.long	0x02100800
> -gpcr_set:	.long	0x092A0100
> -gafr_set:	.long	0x08600000
> -
> -.globl lowlevel_init
> -lowlevel_init:
> -
> -
> -	/* this is required for flashing */
> -	ldr	r0, PPC_BASE
> -	ldr	r1, pin_set_out
> -	str	r1, [r0, #PPSR]
> -	ldr	r1, pin_set_dir
> -	str	r1, [r0, #PPDR]
> -
> -	/* Setting up the memory and stuff */
> -	/***********************************/
> -
> -	ldr	r0, MEM_BASE
> -
> -	ldr	r1, mdcnfg
> -	str	r1, [r0, #MDCNFG]
> -	ldr	r1, mdcas00
> -	str	r1, [r0, #MDCAS00]
> -	ldr	r1, mdcas01
> -	str	r1, [r0, #MDCAS01]
> -	ldr	r1, mdcas02
> -	str	r1, [r0, #MDCAS02]
> -	ldr	r1, mdcas20
> -	str	r1, [r0, #MDCAS20]
> -	ldr	r1, mdcas21
> -	str	r1, [r0, #MDCAS21]
> -	ldr	r1, mdcas22
> -	str	r1, [r0, #MDCAS22]
> -
> -	/* clear kxDB2 */
> -	ldr	r2, [r0, #MDREFR]
> -	bic	r2, r2, #MDREFR_K0DB2
> -	bic	r2, r2, #MDREFR_K1DB2
> -	bic	r2, r2, #MDREFR_K2DB2
> -	str	r2, [r0, #MDREFR]
> -
> -	ldr	r2, [r0, #MDREFR]
> -	orr r2, r2, #MDREFR_TRASR(7)
> -
> -	mov r4, #0x2000
> -	spin:	subs	r4, r4, #1
> -	bne	spin
> -
> -	ldr	r1, PWR_BASE
> -	mov	r2, #PSSR_DH
> -	str	r2, [r1, #PSSR]
> -
> -	ldr	r2, [r0, #MDREFR]
> -	bic	r2, r2, #MDREFR_K0DB2
> -	bic	r2, r2, #MDREFR_K1DB2
> -	bic	r2, r2, #MDREFR_K2DB2
> -	str	r2, [r0, #MDREFR]
> -
> -	ldr	r2, [r0, #MDREFR]
> -	orr	r2, r2, #MDREFR_TRASR(7)
> -	orr	r2, r2, #MDREFR_DRI(12)
> -	orr	r2, r2, #MDREFR_K0DB2
> -	orr	r2, r2, #MDREFR_K1DB2
> -	orr	r2, r2, #MDREFR_K2DB2
> -	str	r2, [r0, #MDREFR]
> -
> -	ldr	r2, [r0, #MDREFR]
> -	orr	r2, r2, #MDREFR_K0RUN
> -	orr	r2, r2, #MDREFR_K1RUN
> -	orr	r2, r2, #MDREFR_K2RUN
> -	str	r2, [r0, #MDREFR]
> -
> -	ldr	r2, [r0, #MDREFR]
> -	bic	r2, r2, #MDREFR_SLFRSH
> -	str	r2, [r0, #MDREFR]
> -
> -	ldr	r2, [r0, #MDREFR]
> -	orr	r2, r2, #MDREFR_E1PIN
> -	str	r2, [r0, #MDREFR]
> -
> -	ldr	r2, MEM_START
> -.rept	8
> -	ldr	r3, [r2]
> -.endr
> -
> -	ldr	r2, [r0, #MDCNFG]
> -	orr	r2, r2, #0x00000003
> -	orr	r2, r2, #0x00030000
> -	str	r2, [r0, #MDCNFG]
> -
> -	ldr	r1, msc0
> -	str	r1, [r0, #MSC0]
> -	ldr	r1, msc1
> -	str	r1, [r0, #MSC1]
> -	ldr	r1, msc2
> -	str	r1, [r0, #MSC2]
> -	ldr	r1, smcnfg
> -	str	r1, [r0, #SMCNFG]
> -	ldr	r1, mecr
> -	str	r1, [r0, #MECR]
> -
> -	mov	pc, lr
> diff --git a/board/jornada/u-boot.lds b/board/jornada/u-boot.lds
> deleted file mode 100644
> index c75b21f..0000000
> --- a/board/jornada/u-boot.lds
> +++ /dev/null
> @@ -1,58 +0,0 @@
> -/*
> - * (C) Copyright 2000-2004
> - * Wolfgang Denk, DENX Software Engineering, wd at denx.de.
> - * 2004 (c) MontaVista Software, Inc.
> - *
> - * 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 :
> -	{
> -		cpu/sa1100/start.o	(.text)
> -		*(.text)
> -	}
> -
> -	. = ALIGN(4);
> -	.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
> -
> -	. = ALIGN(4);
> -	.data : { *(.data) }
> -
> -	. = ALIGN(4);
> -	.got : { *(.got) }
> -
> -
> -	. = .;
> -	__u_boot_cmd_start = .;
> -	.u_boot_cmd : { *(.u_boot_cmd) }
> -	__u_boot_cmd_end = .;
> -
> -	. = ALIGN(4);
> -	__bss_start = .;
> -	.bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
> -	__bss_end__ = .;
> -}
> diff --git a/boards.cfg b/boards.cfg
> index 0f5182e..d2c3574 100644
> --- a/boards.cfg
> +++ b/boards.cfg
> @@ -202,7 +202,6 @@ xm250                        arm         pxa
>  zipitz2                      arm         pxa
>  zylonite                     arm         pxa
>  B2                           arm         s3c44b0     -                   dave
> -jornada                      arm         sa1100
>  lart                         arm         sa1100
>  shannon                      arm         sa1100
>  atngw100                     avr32       at32ap      -                   atmel          at32ap700x
> diff --git a/doc/README.scrapyard b/doc/README.scrapyard
> index 7d96f99..851754c 100644
> --- a/doc/README.scrapyard
> +++ b/doc/README.scrapyard
> @@ -11,6 +11,7 @@ easily if here is something they might want to dig for...
>  
>  Board	Arch	CPU	removed	    Commit	last known maintainer/contact
>  =============================================================================
> +jornada arm     sa1100	-	  2011-07-16	Kristoffer Ericson <kristoffer.ericson@gmail.com>
>  gcplus  arm     sa1100	-	  2011-07-16	George G. Davis <gdavis@mvista.com>
>  dnp1110	arm	sa1100	-	  2011-07-16	Alex Z?pke <azu@sysgo.de>
>  assabet	arm	sa1100	-	  2011-07-16	George G. Davis <gdavis@mvista.com>
> diff --git a/include/configs/jornada.h b/include/configs/jornada.h
> deleted file mode 100644
> index 84ad2d8..0000000
> --- a/include/configs/jornada.h
> +++ /dev/null
> @@ -1,153 +0,0 @@
> -/*
> - * Copyright 2010 (C)
> - * Kristoffer Ericson <kristoffer.ericson@gmail.com>
> - *
> - * 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
> - */
> -
> -#ifndef __CONFIG_H
> -#define __CONFIG_H
> -
> -/*
> - * High Level Configuration Options
> - * (easy to change)
> - */
> -#define CONFIG_SA1110			1	/* This is an SA110 CPU */
> -#define CONFIG_JORNADA700		1	/* on an HP Jornada 700 series */
> -#define CONFIG_SYS_FLASH_PROTECTION	1
> -
> -#define CONFIG_SYS_TEXT_BASE		0xC1F00000
> -
> -/* we will never enable dcache, because we have to setup MMU first */
> -#define CONFIG_SYS_DCACHE_OFF
> -#undef CONFIG_USE_IRQ
> -
> -/* Console setting */
> -
> -#define CONFIG_CMDLINE_TAG		1	/* enable passing of ATAGs      */
> -#define CONFIG_SETUP_MEMORY_TAGS	1
> -#define CONFIG_INITRD_TAG		1
> -
> -/*
> - * Size of malloc() pool
> - */
> -#define CONFIG_SYS_MALLOC_LEN		(CONFIG_ENV_SIZE + 128*1024)
> -
> -/*
> - * select serial console configuration
> - */
> -#define CONFIG_SA1100_SERIAL	1
> -#define CONFIG_SERIAL3		1	/* we use serial 3 */
> -#define CONFIG_BAUDRATE	19200
> -#define CONFIG_LOADS_ECHO	1
> -
> -/*
> - * Command line configuration.
> - */
> -#include <config_cmd_default.h>
> -#define CONFIG_CMD_FLASH
> -#define CONFIG_CMD_JFFS2
> -#undef CONFIG_CMD_NET
> -#undef CONFIG_CMD_NFS
> -#undef CONFIG_CMD_FPGA
> -#undef CONFIG_CMD_MISC
> -#undef CONFIG_CMD_SETGETDCR
> -#undef CONFIG_CMD_XIMG
> -
> -#define CONFIG_BOOTDELAY	5
> -#define CONFIG_BOOTARGS	"root=/dev/hda1 console=ttySA0,19200n8 console=tty1"
> -#define CONFIG_BOOTCOMMAND	"run boot_kernel"
> -#define CONFIG_SYS_AUTOLOAD	"n"	/* No autoload */
> -#define CONFIG_SYS_LOAD_ADDR	0xc0000000
> -
> -/*
> - * Miscellaneous configurable options
> - */
> -#define CONFIG_SYS_LONGHELP	/* undef to save memory */
> -#define CONFIG_SYS_PROMPT		"HP Jornada# "
> -#define CONFIG_SYS_CBSIZE		256	/* console buffsize */
> -#define CONFIG_SYS_PBSIZE		(256+sizeof(CONFIG_SYS_PROMPT)+16)
> -#define CONFIG_SYS_MAXARGS		16	/* max number of command args */
> -#define CONFIG_SYS_BARGSIZE		256	/* Boot Argument Buffer Size */
> -#define CONFIG_SYS_MEMTEST_START	0xc0040000	/* memtest works on */
> -#define CONFIG_SYS_MEMTEST_END		0xc2000000	/* 4..128 MB */
> -#define CONFIG_SYS_HZ			1000
> -#define CONFIG_SYS_CPUSPEED		0x0a /* core clock 206MHz */
> -#define CONFIG_SYS_BAUDRATE_TABLE	{ 19200, 38400, 57600, 115200 }
> -
> -/*-----------------------------------------------------------------------
> - * Stack sizes
> - *
> - * The stack sizes are set up in start.S using the settings below
> - */
> -#define CONFIG_STACKSIZE		(128*1024)	/* regular stack */
> -#define CONFIG_SYS_FLASH_CFI		1
> -#define CONFIG_FLASH_CFI_DRIVER	1
> -#define CONFIG_FLASH_CFI_WIDTH		FLASH_CFI_32BIT
> -#define CONFIG_SYS_FLASH_BASE		0x00000000
> -#define CONFIG_SYS_FLASH_ERASE_TOUT	(4096)
> -#define CONFIG_SYS_FLASH_WRITE_TOUT	(4096)
> -#define CONFIG_SYS_FLASH_INCREMENT	0x02000000
> -#define PHYS_FLASH_1			0x00000000	/* starts at 0x0 */
> -#define PHYS_FLASH_SIZE		0x04000000	/* 64MB */
> -#define PHYS_FLASH_SECT_SIZE		0x00040000	/* 256KB Sectors */
> -#define CONFIG_SYS_MAX_FLASH_BANKS	1
> -#define CONFIG_SYS_MAX_FLASH_SECT	260
> -#define CONFIG_SYS_FLASH_BANKS_LIST	{ PHYS_FLASH_1 }
> -#define CONFIG_SYS_FLASH_EMPTY_INFO	1
> -#define CONFIG_SYS_MONITOR_LEN		0x00040000
> -#define CONFIG_SYS_MONITOR_BASE	0x00000000
> -#define CONFIG_FLASH_SHOW_PROGRESS	1
> -
> -/* Environment */
> -#define CONFIG_ENV_IS_IN_FLASH	1
> -#define CONFIG_ENV_ADDR		0x00040000
> -#define CONFIG_ENV_OFFSET	0x00040000
> -#define CONFIG_ENV_SIZE		0x00040000
> -#define CONFIG_ENV_SECT_SIZE	0x00040000
> -#define CONFIG_ENV_OVERWRITE	1
> -
> -/*
> -  Monitor -     0x00000000 - 0x00040000 (256kb)
> -  Environment - 0x00040000 - 0x00080000 (256kb)
> -  Kernel -      0x00080000 - 0x00380000 (3mb)
> -  Rootfs -      0x00380000 - 0x........ (rest)
> -*/
> -
> -#define CONFIG_NR_DRAM_BANKS		2
> -#define CONFIG_SYS_SDRAM_BASE		0x00000000
> -#define CONFIG_SYS_INTRAM_BASE		INTERNAL_SRAM_BASE
> -#define CONFIG_SYS_INTRAM_SIZE		INTERNAL_SRAM_SIZE
> -#define CONFIG_SYS_INIT_SP_ADDR	0x0
> -#define PHYS_SDRAM_1			0xc0000000	/* SDRAM Bank #1 */
> -#define PHYS_SDRAM_2			0xc4000000	/* SDRAM Bank #2 */
> -#define PHYS_SDRAM_1_SIZE		0x04000000	/* 64 MB */
> -#define PHYS_SDRAM_2_SIZE		0x04000000	/* 64 MB */
> -
> -#define CONFIG_CMD_MTDPARTS
> -#define CONFIG_MTD_DEVICE
> -#define CONFIG_FLASH_CFI_MTD
> -#define MTDIDS_DEFAULT		"nor0=jornada7xx-0"
> -#define MTDPARTS_DEFAULT	"mtdparts=jornada7xx-0:256k(u-boot),256k(env),"\
> -		"3m(kernel),-(user);"
> -
> -#define	CONFIG_EXTRA_ENV_SETTINGS				\
> -	"flash_kernel=protect off all; "				\
> -	"erase 00080000 0037ffff;cp.b c0000000 00080000 00300000;\0"	\
> -	"flash_uboot=protect off all; "					\
> -	"erase 00000000 0003ffff;cp.b c0000000 00000000 00040000;\0"	\
> -	"boot_kernel=cp.b 00080000 c0000000 00300000;bootm;\0"
> -#endif /* __CONFIG_H */
> -- 
> 1.7.6

  reply	other threads:[~2011-07-18 11:20 UTC|newest]

Thread overview: 90+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-17 22:16 [U-Boot] [PATCH 00/52] ARM: remove broken boards Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 01/52] ARM: remove broken "assabet" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 02/52] ARM: remove broken "dnp1110" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 03/52] ARM: remove broken "gcplus" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 04/52] ARM: remove broken "jornada" board Wolfgang Denk
2011-07-18 11:20   ` Kristoffer Ericson [this message]
2011-07-18 12:11     ` Wolfgang Denk
2011-07-18 16:38       ` Kristoffer Ericson
2011-07-17 22:16 ` [U-Boot] [PATCH 05/52] ARM: remove broken "lart" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 06/52] ARM: remove broken "shannon" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 07/52] ARM: remove broken "ap7" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 08/52] ARM: remove broken "ap720t" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 09/52] ARM: remove broken "armadillo" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 10/52] ARM: remove broken "B2" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 11/52] ARM: remove broken "ep7312" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 12/52] ARM: remove broken "evb4510" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 13/52] ARM: remove broken "impa7" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 14/52] ARM: remove broken "integratorap" board Wolfgang Denk
2011-07-17 22:46   ` Linus Walleij
2011-07-18  8:33     ` Albert ARIBAUD
2011-07-18 12:00       ` Wolfgang Denk
2011-07-18 19:33         ` Linus Walleij
2011-08-12 13:05           ` Albert ARIBAUD
2011-07-17 22:16 ` [U-Boot] [PATCH 15/52] ARM: remove broken "SMN42" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 16/52] ARM: remove broken "lpc2292sodimm" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 17/52] ARM: remove broken "modnet50" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 18/52] ARM: remove broken "ap920t" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 19/52] ARM: remove broken "ap922_XA10" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 20/52] ARM: remove broken "ap926ejs" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 21/52] ARM: remove broken "ap946es" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 22/52] ARM: remove broken "ap966" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 23/52] ARM: remove broken "cp920t" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 24/52] ARM: remove broken "cp922_XA10" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 25/52] ARM: remove broken "cp926ejs" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 26/52] ARM: remove broken "cp946es" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 27/52] ARM: remove broken "cp966" board Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 28/52] ARM: remove broken "edb93xx" boards Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 29/52] ARM: remove broken "lpd7a40x" boards Wolfgang Denk
2011-07-17 22:16 ` [U-Boot] [PATCH 30/52] ARM: remove broken "mx1fs2" board Wolfgang Denk
2011-07-18 12:36   ` Stefano Babic
2011-07-17 22:16 ` [U-Boot] [PATCH 31/52] ARM: remove broken "netstar" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 32/52] ARM: remove broken "sbc2410x" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 33/52] ARM: remove broken "scb9328" board Wolfgang Denk
2011-07-18  8:02   ` Torsten Koschorrek
2011-07-18  8:29     ` Albert ARIBAUD
2011-07-18 12:38       ` Stefano Babic
2011-07-18 12:24   ` Stefano Babic
2011-07-18 12:31     ` Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 34/52] ARM: remove broken "smdk2400" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 35/52] ARM: remove broken "spearXXX" boards Wolfgang Denk
2011-07-19 11:06   ` Vipin Kumar
2011-07-17 22:17 ` [U-Boot] [PATCH 36/52] ARM: remove broken "versatile" boards Wolfgang Denk
2011-07-18 12:29   ` Stefano Babic
2011-07-18 12:34     ` Wolfgang Denk
2011-07-18 12:47       ` Albert ARIBAUD
2011-07-18 13:19         ` Stefano Babic
2011-07-17 22:17 ` [U-Boot] [PATCH 37/52] ARM: remove broken "voiceblue" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 38/52] ARM: remove broken "integratorcp" board Wolfgang Denk
2011-08-12 13:06   ` Albert ARIBAUD
2011-07-17 22:17 ` [U-Boot] [PATCH 39/52] ARM: remove broken "tnetv107x_evm" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 40/52] ARM: remove broken "at91cap9adk" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 41/52] ARM: remove broken "meesc" board Wolfgang Denk
2011-07-19 11:51   ` Matthias Fuchs
2011-07-17 22:17 ` [U-Boot] [PATCH 42/52] ARM: remove broken "cmc_pu2" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 43/52] ARM: remove broken "csb637" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 44/52] ARM: remove broken "kb9202" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 45/52] ARM: remove broken "m501sk" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 46/52] ARM: remove broken "at91rm9200dk" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 47/52] ARM: remove broken "at91sam9261ek" / "at91sam9g10ek" boards Wolfgang Denk
2011-07-18  2:52   ` [U-Boot] [PATCH 47/52] ARM: remove broken "at91sam9261ek" /"at91sam9g10ek" boards Hong Xu
2011-07-18  6:39     ` Albert ARIBAUD
2011-07-25  7:39       ` Hong Xu
2011-07-26 12:59         ` [U-Boot] AT91: rework and fixes (was:Re: [PATCH 47/52] ARM: remove broken "at91sam9261ek" /"at91sam9g10ek" boards) Reinhard Meyer
2011-07-26 13:21           ` [U-Boot] AT91: rework and fixes Andreas Bießmann
2011-07-27  2:07           ` Hong Xu
2011-07-30 11:12   ` [U-Boot] [PATCH 47/52] ARM: remove broken "at91sam9261ek" / "at91sam9g10ek" boards Remy Bohmer
2011-08-02 10:54     ` Reinhard Meyer
2011-08-03  8:20       ` Remy Bohmer
2011-07-17 22:17 ` [U-Boot] [PATCH 48/52] ARM: remove broken "at91sam9263ek" board Wolfgang Denk
2011-08-02 19:11   ` Reinhard Meyer
2011-07-17 22:17 ` [U-Boot] [PATCH 49/52] ARM: remove broken "at91sam9m10g45ek" / "at91sam9g45ekes" boards Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 50/52] ARM: remove broken "at91sam9rlek" board Wolfgang Denk
2011-08-01 14:11   ` Reinhard Meyer
2011-07-17 22:17 ` [U-Boot] [PATCH 51/52] ARM: remove broken "SBC35_A9G20" board Wolfgang Denk
2011-07-17 22:17 ` [U-Boot] [PATCH 52/52] ARM: remove broken "tny_a9260" / "tny_a9g20" boards Wolfgang Denk
2011-07-18  9:51 ` [U-Boot] [PATCH 00/52] ARM: remove broken boards Albert ARIBAUD
2011-07-18 12:08   ` Wolfgang Denk
2011-07-18 12:35     ` Albert ARIBAUD
2011-07-18 13:45       ` Wolfgang Denk
2011-07-19 13:29 ` Reinhard Meyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110718112058.GA2596@Boggieman \
    --to=kristoffer.ericson@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.