[U-Boot] [Patch] make eb_cpux9k2 board usable with 2011.03 -RC1

2011-02-04 Thread e...@bus-elektronik.de
* add CONFIG_AT91_FAMILY (fix error with soft_i2c.c) Signed-off-by: Jens Scharsig e...@bus-elektronik.de --- This patch is essentially to make the eb_cpux9k2 board working/compatible with 2011.03-RC1. include/configs/eb_cpux9k2.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[U-Boot] [Patch 0/2] update EB+CPU9K2 board

2011-02-04 Thread e...@bus-elektronik.de
The following two small Patches will update the BuS EB+CPU9K2 board. * Fix: eb_cpux9k2 NFSBOOTCOMMAND * eb_cpux9k2: fix chip select initialization for frame buffer (increase speed) regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [Patch 1/2] update EB+CPU9K2 board

2011-02-04 Thread e...@bus-elektronik.de
* Fix: eb_cpux9k2 NFSBOOTCOMMAND Signed-off-by: Jens Scharsig e...@bus-elektronik.de --- include/configs/eb_cpux9k2.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index 754fc8b..aabbc6b 100644 ---

[U-Boot] [Patch 2/2] update EB+CPU9K2 board

2011-02-04 Thread e...@bus-elektronik.de
* eb_cpux9k2: fix chip select initialization for frame buffer (increase speed) Signed-off-by: Jens Scharsig e...@bus-elektronik.de --- board/BuS/eb_cpux9k2/cpux9k2.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/board/BuS/eb_cpux9k2/cpux9k2.c

[U-Boot] Uboot and memory test

2011-02-04 Thread markus74
Hi, This is a question related to memory testing from within Uboot: On a CPU (ppc476) there is 2 GB RAM which is tested in Uboot (the operating system uses this memory). On the same CPU there is an additional 256 MB memory chip which is used only by the IP-stack and not the operating system.

Re: [U-Boot] Uboot and memory test

2011-02-04 Thread Wolfgang Denk
Dear marku...@bredband.net, In message d7989a847972829bac8c26247783c...@imap.bredband.net you wrote: This is a question related to memory testing from within Uboot: Actually this is not quite correct. Your question is a very general one and only artially related to U-Boot, if at all. On a

Re: [U-Boot] [PATCH] Fix gunzip to work for any gziped uImage size

2011-02-04 Thread Catalin Radu
Anthony Foiani wrote: Catalin, greetings! Some very minor code style issues that I noticed. All cosmetic. Catalin Radu cata...@virtualmetrix.com writes: Signed-off-by: Catalin Radu cata...@virtualmetrix.com --- lib/gunzip.c | 16 ++-- 1 files changed, 10

[U-Boot] [PATCH] Fix gunzip to work for any gziped uImage size

2011-02-04 Thread Catalin Radu
Signed-off-by: Catalin Radu cata...@virtualmetrix.com --- lib/gunzip.c | 16 ++-- 1 files changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/gunzip.c b/lib/gunzip.c index 482a476..8b16b24 100644 --- a/lib/gunzip.c +++ b/lib/gunzip.c @@ -106,12 +106,16 @@ int zunzip(void

[U-Boot] [PATCH 00/32] Massive x86 Update - Bring x86 in line with ARM and PPC

2011-02-04 Thread Graeme Russ
This patch series marks a considerably significant milestone in the x86 port of U-Boot - Running the initial init sequence from Flash using the CPU on-die cache as a temporary stack. Prior to this patch series, the low-level assembler code running in Flash was responsible for initialising SDRAM

[U-Boot] [PATCH 01/32] x86: Fix definition of global_data struct for asm-offsets.c

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/include/asm/global_data.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/i386/include/asm/global_data.h b/arch/i386/include/asm/global_data.h index e3f8a25..e9000c3 100644 ---

[U-Boot] [PATCH 02/32] x86: Align config.mk and linker scripts with other arches

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/config.mk | 13 -- arch/i386/cpu/config.mk |4 +- arch/i386/cpu/u-boot.lds | 104 ++ board/eNET/config.mk |4 -- board/eNET/u-boot.lds| 104

[U-Boot] [PATCH 03/32] eNET: Create distinct board configurations

2011-02-04 Thread Graeme Russ
Position independant functionality is due for removal from the x86 architecture, so create two distinct configurations - One for Flash and one for SRAM Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/config.mk |1 - boards.cfg |3 ++- 2 files changed, 2

[U-Boot] [PATCH 06/32] x86: Fix mangled umlauts

2011-02-04 Thread Graeme Russ
git mergetool has a nasty habit of mangling umlats - fix ones that have been missed in previous submissions Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/start.S |2 +- arch/i386/lib/board.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 07/32] x86: Add stack dump to register dump

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/interrupts.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/arch/i386/cpu/interrupts.c b/arch/i386/cpu/interrupts.c index e4d0868..cdff3d9 100644 --- a/arch/i386/cpu/interrupts.c +++

[U-Boot] [PATCH 08/32] x86: Move Global Descriptor Table defines to processor.h

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/cpu.c |8 +--- arch/i386/include/asm/processor.h |9 ++--- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/arch/i386/cpu/cpu.c b/arch/i386/cpu/cpu.c index ae40384..1dcbb98 100644 ---

[U-Boot] [PATCH 10/32] x86: Call early_board_init when warm booting

2011-02-04 Thread Graeme Russ
early_board_init has been skipped to avoid SDRAM corruption in the case that a fully relocatable image has been loaded into SDRAM and is being executed from SDRAM. x86 is being aligned with other architectures (ARM and PPC in particlar) and will be using Cache-As-RAM to run a C environment from

[U-Boot] [PATCH 09/32] x86: Add processor flags header from linux

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/cpu.c | 13 +++- arch/i386/cpu/interrupts.c |3 +- arch/i386/cpu/sc520/sc520.c |7 ++- arch/i386/cpu/start.S |3 +- arch/i386/cpu/start16.S

[U-Boot] [PATCH 11/32] x86: Make cpu init functions weak

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/cpu.c | 14 -- arch/i386/cpu/sc520/sc520.c | 11 +++ arch/i386/include/asm/u-boot-i386.h |2 ++ board/eNET/eNET.c | 22 -- 4 files

[U-Boot] [PATCH 12/32] sc520: Define MMCR address in include file

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/sc520.c |2 +- arch/i386/cpu/sc520/sc520_asm.S | 49 - arch/i386/include/asm/ic/sc520.h | 36 ++- board/eNET/eNET_start16.S|7 +++-- 4

[U-Boot] [PATCH 14/32] sc520: Remove printf calls from cpu_init_f

2011-02-04 Thread Graeme Russ
In later patches, cpu_init_f will be called before console has been initialised and printf will not be legitimately available Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/sc520.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 13/32] sc520: Move board specific settings to board init function

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/sc520.c | 19 --- board/eNET/eNET.c |9 + 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/arch/i386/cpu/sc520/sc520.c b/arch/i386/cpu/sc520/sc520.c index

[U-Boot] [PATCH 15/32] eNET: Fix eNET Interrupt Setup for Linux

2011-02-04 Thread Graeme Russ
Fix minor issues with the configuration of the hardware interrupts for Linux when booting the eNET board Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/eNET.c | 15 +-- 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/board/eNET/eNET.c

[U-Boot] [PATCH 17/32] eNET: Define MMCR values in config.h

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/eNET.c | 104 +++- board/eNET/eNET_start16.S |5 +- include/configs/eNET.h| 382 + 3 files changed, 445 insertions(+), 46 deletions(-) diff --git

[U-Boot] [PATCH 20/32] x86: Move initial gd to fixed location

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/start.S | 12 +- arch/i386/include/asm/global_data.h |7 +- arch/i386/lib/board.c | 36 +++--- include/configs/eNET.h |3 ++ 4 files

[U-Boot] [PATCH 21/32] x86: Use Cache-As-RAM for initial stack

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/Makefile|1 + arch/i386/cpu/sc520/sc520_asm.S |6 +- arch/i386/cpu/sc520/sc520_car.S | 94 +++ arch/i386/cpu/start.S | 35 +++--- include/configs/eNET.h

[U-Boot] [PATCH 22/32] sc520: Move RAM sizing code from asm to C

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/Makefile |2 +- arch/i386/cpu/sc520/sc520.c | 110 --- arch/i386/cpu/sc520/sc520_asm.S | 608 - arch/i386/cpu/sc520/sc520_sdram.c | 532

[U-Boot] [PATCH 23/32] x86: Defer setup of final stack

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/start.S | 44 +--- arch/i386/lib/board.c |6 -- 2 files changed, 33 insertions(+), 17 deletions(-) diff --git a/arch/i386/cpu/start.S b/arch/i386/cpu/start.S index

[U-Boot] [PATCH 24/32] x86: Move call to dram_init_f into board_init_f

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/start.S |3 --- arch/i386/include/asm/u-boot-i386.h |1 + arch/i386/lib/board.c |3 +++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/arch/i386/cpu/start.S

[U-Boot] [PATCH 26/32] x86: Move console initialisation into board_init_f

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/lib/board.c | 15 --- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/arch/i386/lib/board.c b/arch/i386/lib/board.c index 73aaadc..1a9 100644 --- a/arch/i386/lib/board.c +++ b/arch/i386/lib/board.c

[U-Boot] [PATCH 27/32] x86: Fix incorrect usage of relocation offset

2011-02-04 Thread Graeme Russ
x86 has always used relocation offset in the opposite sense to the ELF standard - Fix this Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/start.S |2 +- arch/i386/lib/board.c | 10 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git

[U-Boot] [PATCH 28/32] x86: Split board_init_f() into init_fnc_t compatible functions

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/include/asm/global_data.h | 12 +++- arch/i386/lib/board.c | 111 +-- 2 files changed, 74 insertions(+), 49 deletions(-) diff --git a/arch/i386/include/asm/global_data.h

[U-Boot] [PATCH 29/32] x86: Rearrange function calls in board_init_f

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/lib/board.c | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/arch/i386/lib/board.c b/arch/i386/lib/board.c index 44e871b..4751e49 100644 --- a/arch/i386/lib/board.c +++ b/arch/i386/lib/board.c

[U-Boot] [PATCH 31/32] sc520: Release CAR and enable caching

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/sc520.c | 16 +++- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/arch/i386/cpu/sc520/sc520.c b/arch/i386/cpu/sc520/sc520.c index e5dcac6..d0c313b 100644 --- a/arch/i386/cpu/sc520/sc520.c +++

[U-Boot] [PATCH 30/32] x86: Convert board_init_f to use an init_sequence

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/lib/board.c | 70 1 files changed, 29 insertions(+), 41 deletions(-) diff --git a/arch/i386/lib/board.c b/arch/i386/lib/board.c index 4751e49..0c37c23 100644 ---

[U-Boot] [PATCH 32/32] eNET: Move initial Global Data into CAR

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- include/configs/eNET.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 50ee73e..0358b97 100644 --- a/include/configs/eNET.h +++ b/include/configs/eNET.h @@ -169,7

[U-Boot] [PATCH 25/32] x86: Move test for cold boot into init functions

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/i386/cpu/sc520/sc520.c |7 --- arch/i386/lib/board.c | 17 +++-- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/arch/i386/cpu/sc520/sc520.c b/arch/i386/cpu/sc520/sc520.c index d5597ca..e5dcac6

[U-Boot] [PATCH 16/32] eNET: Add RTC support to eNET

2011-02-04 Thread Graeme Russ
The SC520 has an inbuilt MC146818 - Enable it for the eNET board Signed-off-by: Graeme Russ graeme.r...@gmail.com --- drivers/rtc/mc146818.c |6 ++ include/configs/eNET.h |2 ++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/rtc/mc146818.c

[U-Boot] [PATCH 18/32] eNET: Rearrange PAR assignments

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/eNET.c | 61 --- include/configs/eNET.h | 15 --- 2 files changed, 46 insertions(+), 30 deletions(-) diff --git a/board/eNET/eNET.c b/board/eNET/eNET.c index

[U-Boot] [PATCH 19/32] eNET: General code cleanup

2011-02-04 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/eNET.c | 17 +-- board/eNET/eNET_start.S |7 - include/configs/eNET.h | 290 --- 3 files changed, 129 insertions(+), 185 deletions(-) diff --git a/board/eNET/eNET.c

[U-Boot] [PATCH] [NEXT] Make STANDALONE_LOAD_ADDR configurable per board

2011-02-04 Thread Wolfgang Denk
Rename STANDALONE_LOAD_ADDR into CONFIG_STANDALONE_LOAD_ADDR and allow that the architecture-specific default value gets overwritten by defining the value in the board header file. Signed-off-by: Wolfgang Denk w...@denx.de Cc: Mike Frysinger vap...@gentoo.org Cc: Shinya Kuribayashi

[U-Boot] multiple serial in evaluation board

2011-02-04 Thread Ran Shalit
Hello, I would like to configure multiple serial (UART's) in the OMAP l-138 evaluation board (da850evm). I thought that in the serial section of the da850evm.h I should only add CONFIG_SERIAL_MULTI, but then I got compilation problem: \common\serial.c #error No default console . It also seem

Re: [U-Boot] [PATCH] Add support for ASIX's AX88783 ethernet chip

2011-02-04 Thread Joe XUE
Than you Stefano. Date: Wed, 2 Feb 2011 19:02:11 +0100 From: sba...@denx.de To: lg...@hotmail.com CC: u-boot@lists.denx.de; w...@denx.de Subject: Re: [U-Boot] [PATCH] Add support for ASIX's AX88783 ethernet chip On 01/31/2011 06:42 PM, Joe Xue wrote: for more information about this

Re: [U-Boot] [PATCH] Add support for ASIX's AX88783 ethernet chip

2011-02-04 Thread Stefano Babic
On 02/04/2011 03:47 PM, Joe XUE wrote: Do not forget to add always the net Maintainer to CC (Wolfgang Denk), I added him now. Not exactly understand your meaning. You mean I should add wd as maintainer to my code or just add him in mail. Only add him in mail. He is the maintainer for

Re: [U-Boot] [PATCH V2] EfikaMX: switch to MACH_TYPE_MX51_EFIKAMX

2011-02-04 Thread Stefano Babic
On 02/03/2011 03:19 PM, Loïc Minier wrote: Upstream linux moved from MACH_TYPE_MX51_LANGE51 to MACH_TYPE_MX51_EFIKAMX. Signed-off-by: Loïc Minier loic.min...@linaro.org --- Changes for V2: * Add Signed-off-by Applied to u-boot-imx, as this is a fix, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH] Introduce a new linker flag LDFLAGS_FINAL

2011-02-04 Thread Haiying Wang
Dear Wolfgang, On Tue, 2011-02-01 at 14:40 -0600, Scott Wood wrote: On Tue, 1 Feb 2011 21:20:50 +0100 Wolfgang Denk w...@denx.de wrote: Dear Scott Wood, In message 20110201135136.0817f...@udp111988uds.am.freescale.net you wrote: Prior to the introduction of LDFLAGS_u-boot,

Re: [U-Boot] [PATCH] Add support for ASIX's AX88783 ethernet chip

2011-02-04 Thread Wolfgang Denk
Dear Joe XUE, In message snt105-w339861012ab3a9edcc0ddaac...@phx.gbl you wrote: Signed-off-by: Joe Xue lg...@hotmail.com Please add a version number to your patch to make easier tracking which is your last version. Will add it. Do not forget to add always the net Maintainer

Re: [U-Boot] [STATUS] v2011.03-rc1 released

2011-02-04 Thread Scott Wood
On Thu, 3 Feb 2011 18:52:58 +0100 Alexander Holler hol...@ahsoftware.de wrote: Hello, Am 02.02.2011 22:55, schrieb Wolfgang Denk: * U-Boot v2011.03-rc1 was released on Wed, 02 Feb 2011. * Release v2011.03 is scheduled in 39 days - on March 13, 2011. Please help testing, and check if

Re: [U-Boot] omap3 mux enabling

2011-02-04 Thread Alexander Holler
Am 02.02.2011 15:50, schrieb jacopo mondi: Mine is a question related to an end-user problem, since I'm no more able to do multiplexing for my DM3730 Beagleboard xM platform. The problem is quite simple, multiplexer configurations are totally ignored by u-boot (v2010.12), and I'm not able to

[U-Boot] [U-boot-file] arch/powerpc/cpu/mpc85xx/p1013_serdes.c is missing

2011-02-04 Thread Renaud Barbier
just noticed the following: The object file p1013_serdes.o is referenced in the file arch/powerpc/cpu/mpc85xx/Makefile: COBJS-$(CONFIG_P1013) += p1013_serdes.o However, the source code is not found in the directory. -- Renaud Barbier 14, Links Place 3/2 great Michael House Edinburgh,

Re: [U-Boot] [PATCH] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-02-04 Thread Jason Kridner
On Mon, Jan 24, 2011 at 6:08 PM, Alexander Holler hol...@ahsoftware.de wrote: Using the new env import command it is possible to use plain text files instead of script-images. Plain text files are much easier to handle. I agree this has been a frequent concern of BeagleBoard users. I would

Re: [U-Boot] [U-boot-file] arch/powerpc/cpu/mpc85xx/p1013_serdes.c is missing

2011-02-04 Thread Kumar Gala
On Feb 4, 2011, at 11:30 AM, Renaud Barbier wrote: just noticed the following: The object file p1013_serdes.o is referenced in the file arch/powerpc/cpu/mpc85xx/Makefile: COBJS-$(CONFIG_P1013) += p1013_serdes.o However, the source code is not found in the directory. I'll fix it, it

[U-Boot] ATMEL maintainer (WAS Re: [PATCH] atmel nand patch CE don't care NAND)

2011-02-04 Thread Michael Trimarchi
Dear Wolfgang I have seen that there is not an atmel maintainer. Is it correct to send the patch to arm one? Who is the right person? Michael Trimarchi On 02/02/2011 04:11 PM, Michael Trimarchi wrote: Hi, this patch fix the support for CE don't care nand Michael Trimarchi

[U-Boot] [PATCH] powerpc/8xxx: Fix possible compile issue related to P1013

2011-02-04 Thread Kumar Gala
The P1013 is a single core version of P1022 and thus should use the p1022_serdes.c code. It was acciently pointing to p1013_serdes.c which doesn't exist. Reported-by: Renaud Barbier renaud.barb...@ge.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- arch/powerpc/cpu/mpc85xx/Makefile |

Re: [U-Boot] ATMEL maintainer (WAS Re: [PATCH] atmel nand patch CE don't care NAND)

2011-02-04 Thread Wolfgang Denk
Dear Michael Trimarchi, In message 4d4c4a77.4060...@gandalf.sssup.it you wrote: I have seen that there is not an atmel maintainer. Is it correct to send the patch to arm one? Who is the right person? Where have you seen that? The official source of this information is

Re: [U-Boot] Pull request: nand flash

2011-02-04 Thread Wolfgang Denk
Dear Scott Wood, In message 20110202221646.GA7634@udp111988uds you wrote: The following changes since commit 42d44f631c4e8e5359775bdc098f2fffde4e5c05: Prepare v2011.03-rc1 (2011-02-02 22:37:32 +0100) are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git

Re: [U-Boot] Pull request: u-boot-sh

2011-02-04 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message aanlktikwvpmrmsytweoofwkwd2rzb_kexlmyobcml...@mail.gmail.com you wrote: git://git.denx.de/u-boot-sh.git master Nobuhiro Iwamatsu (14): sh: Remove config.mk for MigoR board sh: Remove config.mk for ap325rxa board sh: Remove config.mk

Re: [U-Boot] ATMEL maintainer (WAS Re: [PATCH] atmel nand patch CE don't care NAND)

2011-02-04 Thread Michael Trimarchi
On 02/04/2011 08:10 PM, Wolfgang Denk wrote: Dear Michael Trimarchi, In message 4d4c4a77.4060...@gandalf.sssup.it you wrote: I have seen that there is not an atmel maintainer. Is it correct to send the patch to arm one? Who is the right person? Where have you seen that? The official

[U-Boot] [PATCH] Add support Asix's AX88783 ethernet chip v1.00

2011-02-04 Thread Joe Xue
for more information about this chip, please check: http://www.asix.com.tw/products.php?op=pItemdetailPItemID=98;65;86PLine=6 Signed-off-by: Joe Xue lg...@hotmail.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- README|6 + drivers/net/Makefile |1

Re: [U-Boot] Pull request: nand flash

2011-02-04 Thread Scott Wood
On Fri, 4 Feb 2011 20:37:58 +0100 Wolfgang Denk w...@denx.de wrote: Dear Scott Wood, In message 20110202221646.GA7634@udp111988uds you wrote: The following changes since commit 42d44f631c4e8e5359775bdc098f2fffde4e5c05: Prepare v2011.03-rc1 (2011-02-02 22:37:32 +0100) are

Re: [U-Boot] [U-BOOT] [PATCH] env: reduce the stack footprint for the env buf

2011-02-04 Thread Scott Wood
On Fri, 4 Feb 2011 11:08:23 +0800 Lei Wen lei...@marvell.com wrote: Original env buf directly locate at stack lead large stack footprint when call those env functions. It is not good when the system memory is critical or only want the uboot run at restrict range, that is not to touch the

[U-Boot] [PATCH 2/2] powerpc/85xx: Refactor Qman/Portal support to be shared between SoCs

2011-02-04 Thread Kumar Gala
From: Haiying Wang haiying.w...@freescale.com There are some differences between CoreNet (P2040, P3041, P5020, P4080) and and non-CoreNet (P1017, P1023) based SoCs in what features exist and the memory maps. * Rename various immap defines to remove _CORENET_ if they are shared * Added

[U-Boot] [PATCH 1/2] powerpc/85xx: Add support for Freescale P1023/P1017 Processors

2011-02-04 Thread Kumar Gala
From: Roy Zang tie-fei.z...@freescale.com Add P1023 (dual core) P1017 (single core) specific information: * SERDES Table * Added P1023/P1017 to cpu_type_list and SVR list (fixed issue with P1013 not being sorted correctly). * Added P1023/P1027 to config_mpc85xx.h * Added new LAW type

Re: [U-Boot] [PATCH 02/32] x86: Align config.mk and linker scripts with other arches

2011-02-04 Thread Scott Wood
On Fri, 4 Feb 2011 23:35:29 +1100 Graeme Russ graeme.r...@gmail.com wrote: LDFLAGS += --cref -LDFLAGS_u-boot += --gc-sections -PLATFORM_RELFLAGS += -ffunction-sections +LDFLAGS_u-boot += --gc-sections -pie +LDSCRIPT := $(SRCTREE)/$(CPUDIR)/u-boot.lds The use of --cref came up recently (see

[U-Boot] [PATCH] fsl_pci: Add support for FSL PCIe controllers v2.x

2011-02-04 Thread Kumar Gala
From: Prabhakar Kushwaha prabha...@freescale.com FSL PCIe controller v2.1: - New MSI inbound window - Same Inbound windows address as PCIe controller v1.x Added new pit_t member(pmit) to struct ccsr_pci for MSI inbound window FSL PCIe controller v2.2 and v2.3: -

[U-Boot] [PATCH v2] powerpc/8xxx: Fix LAW init to respect pre-initialized entries

2011-02-04 Thread Kumar Gala
If some pre-boot or earlier stage bootloader (NAND SPL) has setup LAW entries consider them good and mark them used. In the NAND SPL case we skip re-initializing based on the law_table since the SPL phase already did that. Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- * Fixed wording

[U-Boot] [PATCH 2/2 v3] powerpc/8xxx: Refactor fsl_ddr_get_spd into common code from board

2011-02-04 Thread Kumar Gala
Move fsl_ddr_get_spd into common mpc8xxx/ddr/main.c as most boards pretty much do the same thing. The only variations are in how many controllers or DIMMs per controller exist. To make this work we standardize on the names of the SPD_EEPROM_ADDRESS defines based on the use case of the board. We

Re: [U-Boot] Pull request: nand flash

2011-02-04 Thread Wolfgang Denk
Dear Scott Wood, In message 20110202221646.GA7634@udp111988uds you wrote: The following changes since commit 42d44f631c4e8e5359775bdc098f2fffde4e5c05: Prepare v2011.03-rc1 (2011-02-02 22:37:32 +0100) are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git

Re: [U-Boot] [PATCH] powerpc/8xxx: Fix possible compile issue related to P1013

2011-02-04 Thread Kumar Gala
On Feb 4, 2011, at 12:56 PM, Kumar Gala wrote: The P1013 is a single core version of P1022 and thus should use the p1022_serdes.c code. It was acciently pointing to p1013_serdes.c which doesn't exist. Reported-by: Renaud Barbier renaud.barb...@ge.com Signed-off-by: Kumar Gala

[U-Boot] [GIT PULL] lease pull u-boot-mpc85xx.git

2011-02-04 Thread Kumar Gala
Some bug fix and errata fixes. - k The following changes since commit 42d44f631c4e8e5359775bdc098f2fffde4e5c05: Prepare v2011.03-rc1 (2011-02-02 22:37:32 +0100) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Kumar Gala (3): powerpc/85xx: Enable

[U-Boot] [PATCH v3] powerpc/8xxx: Fix LAW init to respect pre-initialized entries

2011-02-04 Thread Kumar Gala
If some pre-boot or earlier stage bootloader (NAND SPL) has setup LAW entries consider them good and mark them used. In the NAND SPL case we skip re-initializing based on the law_table since the SPL phase already did that. Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- * Fix problem in

Re: [U-Boot] [U-BOOT] [PATCH] env: reduce the stack footprint for the env buf

2011-02-04 Thread Wolfgang Denk
Dear Lei Wen, In message 1296788903-7604-1-git-send-email-lei...@marvell.com you wrote: Original env buf directly locate at stack lead large stack footprint when call those env functions. It is not good when the system memory is critical or only want the uboot run at restrict range, that is

[U-Boot] [PATCH] powerpc/85xx: Update fixed DDR3 timing table for P4080DS

2011-02-04 Thread York Sun
Most of time U-boot doesn't get an exact clock number. For example, clock 900MHz may be detected as 899.99MHz. 800MHz could be 799.99MHz. Update the table to align the desired clocks in the middle. Signed-off-by: York Sun york...@freescale.com --- board/freescale/corenet_ds/p4080ds_ddr.c | 16

[U-Boot] [PATCH] powerpc/8xxx: Display DIMM model

2011-02-04 Thread York Sun
Beside displaying RDIMM or UDIMM, this patch adds display of the model numbers embedded in SPD. Signed-off-by: York Sun york...@freescale.com --- .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c| 11 +++ 1 files changed, 7 insertions(+), 4 deletions(-) diff --git

Re: [U-Boot] [PATCH 02/32] x86: Align config.mk and linker scripts with other arches

2011-02-04 Thread Graeme Russ
On 05/02/11 07:42, Scott Wood wrote: On Fri, 4 Feb 2011 23:35:29 +1100 Graeme Russ graeme.r...@gmail.com wrote: LDFLAGS += --cref -LDFLAGS_u-boot += --gc-sections -PLATFORM_RELFLAGS += -ffunction-sections +LDFLAGS_u-boot += --gc-sections -pie +LDSCRIPT := $(SRCTREE)/$(CPUDIR)/u-boot.lds

Re: [U-Boot] [PATCH] Introduce a new linker flag LDFLAGS_FINAL

2011-02-04 Thread Graeme Russ
On 02/02/11 06:51, Scott Wood wrote: On Tue, 1 Feb 2011 20:32:29 +0100 Wolfgang Denk w...@denx.de wrote: Dear Scott Wood, In message 20110201102446.23b4a...@udp111988uds.am.freescale.net you wrote: Prior to the introduction of LDFLAGS_u-boot, was LDFLAGS not what was used? So before,

[U-Boot] 12th Anniversary / New Year P-R-O-M-O (Your E- mail has W O N !) Call # +44-703-182-3968

2011-02-04 Thread José Eduardo Monteiro da Cunha
***SEND YOUR DETAILS TO OUR PROCESSING UNIT TO GET FULL INFO Lu c ky# : 12-12-23-35-40-41(12) Tic k et# : 00869575733664 CG PN : 7-22-71-00-66-12 Amount Won: £ 850,000 UK Pounds. For full information send your contact: VERIFICATION / PROCESSING UNIT

[U-Boot] [PATCH 03/17] trigger hardware watchdog in IXP42x serial driver

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- drivers/serial/serial_ixp.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/serial/serial_ixp.c b/drivers/serial/serial_ixp.c index dd26af4..a9acd47 100644 --- a/drivers/serial/serial_ixp.c +++

[U-Boot] IXP42x patch series version 3

2011-02-04 Thread Michael Schwingen
Hi, here is the third incarnation of the IXP patch series. I hope I addressed all the comments from version 2: - timer system now uses no BSS-based variables - use I/O accessors - remove config.mk from board directories - set -ffunction-sections/--gc-sections globally (for IXP architecture)

[U-Boot] [PATCH 02/17] add support for IXP42x Rev. B1 and newer

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/npe/npe.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/ixp/npe/npe.c b/arch/arm/cpu/ixp/npe/npe.c index 857bcad..6d92c53 100644 --- a/arch/arm/cpu/ixp/npe/npe.c +++

[U-Boot] [PATCH 05/17] fix depend target in npe directory

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/npe/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/ixp/npe/Makefile b/arch/arm/cpu/ixp/npe/Makefile index c756a1d..14ab3c7 100644 --- a/arch/arm/cpu/ixp/npe/Makefile +++

[U-Boot] [PATCH 09/17] update/fix AcTux2 board

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux2/actux2.c| 99 +++-- board/actux2/config.mk |6 --- board/actux2/u-boot.lds | 47 + include/configs/actux2.h | 36 +++-- 4 files

[U-Boot] [PATCH 12/17] IXP NPE: add support for fixed-speed MII ports

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/npe/npe.c | 67 +++ 1 files changed, 42 insertions(+), 25 deletions(-) diff --git a/arch/arm/cpu/ixp/npe/npe.c b/arch/arm/cpu/ixp/npe/npe.c index 6d92c53..f0e02bf 100644 ---

[U-Boot] [PATCH 04/17] Fix IXP code to work after relocation was added

2011-02-04 Thread Michael Schwingen
- jump to real flash location after reset before turning off flash mirror - fix timer system to use HZ == 1000, remove broken interrupt-based code Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/cpu.c |5 -- arch/arm/cpu/ixp/start.S

[U-Boot] [PATCH 06/17] support CONFIG_SYS_LDSCRIPT on ARM

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/config.mk |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/config.mk b/arch/arm/config.mk index a6a4742..a7c4d27 100644 --- a/arch/arm/config.mk +++ b/arch/arm/config.mk @@ -63,7 +63,13 @@

[U-Boot] [PATCH 07/17] use -ffunction-sections / --gc-sections on IXP42x

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/config.mk |5 + arch/arm/cpu/ixp/u-boot.lds |8 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/arch/arm/cpu/ixp/config.mk b/arch/arm/cpu/ixp/config.mk index deca3f4..5868cba 100644

[U-Boot] [PATCH 08/17] update/fix AcTux1 board

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux1/actux1.c| 111 -- board/actux1/config.mk |6 --- board/actux1/u-boot.lds | 42 - boards.cfg |5 ++- include/configs/actux1.h | 63

[U-Boot] [PATCH 14/17] update/fix IXDP425 / IXDPG425 boards

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/ixdp425/config.mk|2 - board/ixdp425/flash.c | 427 board/ixdp425/ixdp425.c| 155 ++--- boards.cfg |2 +- include/configs/ixdp425.h |

[U-Boot] [PATCH 15/17] update/fix PDNB3 board

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/prodrive/pdnb3/config.mk |2 -- include/configs/pdnb3.h| 10 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) delete mode 100644 board/prodrive/pdnb3/config.mk diff --git a/board/prodrive/pdnb3/config.mk

[U-Boot] [PATCH 01/17] add XScale sub architecture (IXP/PXA) to maintainer list

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- MAINTAINERS | 44 ++-- 1 files changed, 22 insertions(+), 22 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index b37ed0c..709c5d9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -559,8

[U-Boot] [PATCH 13/17] add dvlhost (dLAN 200 AV Wireless G) board

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- MAINTAINERS|1 + board/dvlhost/Makefile | 50 + board/dvlhost/dvlhost.c| 130 +++ board/dvlhost/dvlhost_hw.h | 47 + board/dvlhost/u-boot.lds | 86 +++

[U-Boot] [PATCH 17/17] run arm_pci_init after relocation

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/lib/board.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index c620d2c..50e63c7 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -262,9

[U-Boot] [PATCH 10/17] update/fix AcTux3 board

2011-02-04 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux3/actux3.c| 126 +++-- board/actux3/config.mk |6 -- board/actux3/u-boot.lds | 53 include/configs/actux3.h | 38 +- 4 files changed, 120

[U-Boot] [PATCH 16/17] IXP42x PCI rewrite

2011-02-04 Thread Michael Schwingen
clean up IXP PCI handling: get rid of IXP-private bus scan, BAR assign etc. code and use u-boot's PCI infrastructure instead. Move board-specific PCI setup code (clock/reset) to board directory. Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/include/asm/arch-ixp/ixp425pci.h

Re: [U-Boot] [Patch V6 0/4] Add basic NVIDIA Tegra2 SoC support

2011-02-04 Thread Albert ARIBAUD
Le 02/02/2011 19:44, Albert ARIBAUD a écrit : Le 02/02/2011 18:06, Tom Warren a écrit : Mike, On Wed, Feb 2, 2011 at 12:57 AM, Mike Rapoportm...@compulab.co.il wrote: On 02/02/11 02:09, Tom Warren wrote: I haven't seen any new feedback on this version (V6) of the patchset since it was

Re: [U-Boot] [PATCH V8 0/5] Add Pantheon soc and dkb board support

2011-02-04 Thread Albert ARIBAUD
Hi All, Le 28/01/2011 10:19, Lei Wen a écrit : This patch set add the Pantheon soc and dkb board support. Prafulla, Is this patchset going to go into u-boot-marvell and requested for pull before 2011-03 is out? Amicalement, -- Albert. ___ U-Boot

Re: [U-Boot] BSS footprint of FAT very high - SPL issues

2011-02-04 Thread Albert ARIBAUD
Hi Aneesh, Le 03/02/2011 11:38, Aneesh V a écrit : On second thoughts I would like to keep the entire bss in SDRAM. With MMC and FAT support, the SPL is already nearing the IRAM budget in OMAP3. It helps to save some space by moving out bss to SDRAM. If needed, I can fix up the start.S by

Re: [U-Boot] [PATCH] arm relocation: Fix calculation of board_init_r

2011-02-04 Thread Albert ARIBAUD
Hi Alexander, Le 03/02/2011 21:52, Alexander Stein a écrit : Signed-off-by: Alexander Steinalexander.st...@informatik.tu-chemnitz.de --- Hello, I just played a bit with my at91sam9g20ek and tried using a new u-boot. So I compiled 656b990daa84bfdd512407ee2e3d2610e305a455 (atmel/wip110202)

Re: [U-Boot] [U-BOOT] [PATCH V2] bootm: replace blob_start with image_start

2011-02-04 Thread Albert ARIBAUD
Le 04/02/2011 03:32, Lei Wen a écrit : Hi Albert, On Mon, Jan 10, 2011 at 6:21 PM, Lei Wenlei...@marvell.com wrote: For uImage always has a 64 bytes header, we couldn't expect to do the xip from the header but should xip from the image start. The latter logic in that section is also move