[U-Boot] Hi guys, maybe this is not the best list but I ask about my problem

2010-03-18 Thread Fabio Giovagnini
I'm developing a custom board (designed by me) based on sh2a 7203 (Renesas). I have some troubles with my SST flash, while I'm sure my eth0 card works. For building my rootfs I use a script Im able to mount the nfsroot filesystem but I get this message: IP-Config: Complete: device=eth0,

Re: [U-Boot] [PATCH] add new board pm9g45

2010-03-18 Thread Maxim Podbereznyi
Russian company MENTOREL released at91sam9G45 based SODIMM module a couple of months ago. Module is named GEM45 and I guess it is more integrated as it has the following features: - 128M DDR2 main memory - 64M DDR2 second memory for frame buffer or smt else - 128/256M NAND - 64/128M

Re: [U-Boot] [PATCH] env: fix endian ordering in crc table

2010-03-18 Thread Joakim Tjernlund
Jeff Angielski j...@theptrgroup.com wrote on 2010/03/18 02:14:19: From: Jeff Angielski j...@theptrgroup.com To: u-boot@lists.denx.de Cc: Joakim Tjernlund joakim.tjernl...@transmode.se Date: 2010/03/18 02:14 Subject: [PATCH] env: fix endian ordering in crc table The crc table was being

Re: [U-Boot] [PATCH] Marvell GuruPlug Board Support

2010-03-18 Thread Siddarth Gore
On Mon, 2010-03-15 at 09:08 -0700, Wolfgang Denk wrote: ... --- /dev/null +++ b/board/Marvell/guruplug/guruplug.h @@ -0,0 +1,39 @@ +#define GURUPLUG_OE_LOW (~(0)) +#define GURUPLUG_OE_HIGH (~(0)) Is this correct? Both LOW and HIGH use the same value?? Sorry.

[U-Boot] [PATCH v2] Marvell GuruPlug Board Support

2010-03-18 Thread Siddarth Gore
GuruPlug Standard: 1 Gb Ethernet, 2 USB 2.0 GuruPlug Plus: 2 Gb Ethernet, 2 USB 2.0, 1 eSATA, 1 uSD slot References: http://www.globalscaletechnologies.com/t-guruplugdetails.aspx http://plugcomputer.org This patch is for GuruPlug Plus, but it supports Standard version as well. Signed-off-by:

Re: [U-Boot] Hi guys, maybe this is not the best list but I ask about my problem

2010-03-18 Thread Wolfgang Denk
Dear Fabio Giovagnini, you are indeed completely off topic here on the U-Boot list. In message 201003180657.27345.fabio.giovagn...@aurion-tech.com you wrote: Im able to mount the nfsroot filesystem but I get this message: ... Warning: unable to open an initial console.

[U-Boot] [PATH] at91: add hwecc method for nand

2010-03-18 Thread Nikolay Petukhov
Hi, all. This is a patch to use the hardware ECC controller of the AT91SAM9260 for the AT91 nand. Taken from the kernel 2.6.33. To use this it is necessary to add two definitions in config: CONFIG_ATMEL_NAND_HWECC CONFIG_SYS_NAND_ECC_BASE (AT91_ECC for the AT91SAM9260 and AT91_ECC0 for the

Re: [U-Boot] [PATCH] Marvell GuruPlug Board Support

2010-03-18 Thread Prafulla Wadaskar
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Siddarth Gore Sent: Thursday, March 18, 2010 10:59 AM To: Wolfgang Denk Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik Subject: Re: [U-Boot] [PATCH] Marvell

Re: [U-Boot] [PATCH v2] Marvell GuruPlug Board Support

2010-03-18 Thread Prafulla Wadaskar
-Original Message- From: Siddarth Gore [mailto:go...@marvell.com] Sent: Thursday, March 18, 2010 1:12 PM To: u-boot@lists.denx.de Cc: Prafulla Wadaskar; Prabhanjan Sarnaik; Ashish Karkare; Siddarth Gore Subject: [PATCH v2] Marvell GuruPlug Board Support GuruPlug Standard: 1 Gb

Re: [U-Boot] [PATCH] Marvell GuruPlug Board Support

2010-03-18 Thread Wolfgang Denk
Dear Siddarth Gore, In message 1268890125.23313.27.ca...@pe-dt434 you wrote: ... We have pretty much identical code already in mv_phy_88e1116_init() [in board/Marvell/rd6281a/rd6281a.c], in reset_phy() [in board/Marvell/openrd_base/openrd_base.c], in reset_phy(0 [in

Re: [U-Boot] u-boot stack overwrites end ramdisk

2010-03-18 Thread Norbert van Bolhuis
I was not totally correct. gunzip/inflate has nothing to do with this problem. the problem is this: - do_bootm-bootm_start-arch_lmb_reserve reserves unused memory as in cur_sp-1k upto end-of-mem in my case this is 0x0fb0cb28 - 0x1000 -

Re: [U-Boot] soft_spi.c crash while saveenv

2010-03-18 Thread Detlev Zundel
Hello Horst, I used the soft_spi - driver for saving the u-boot-environment. When I started saveenv u-boot hang - no output. I located the problem in soft_spi.c in function spi_xfer(). This function writes every byte received from the spi-device to the pointer dout. In case of writing to

Re: [U-Boot] uboot on microblaze, compilation error

2010-03-18 Thread Michal Simek
Mike Frysinger wrote: On Wednesday 17 March 2010 14:36:38 Horst Gall wrote: Hi, I try to compile an actual version of u-boot for xilinx microblaze. The linker ends with the error-message: ... mb-ld.real:u-boot.lds:1: parse error In u-boot main-directory I found the file 'u-boot.lds':

Re: [U-Boot] Environmentvar. ipaddr - microblaze

2010-03-18 Thread Detlev Zundel
Hi Horst, in lib_microblaze/board.c board_init() the function env_relocate() should be called before getenv_IPaddr() otherwise there is no chance to save an ip-address in the environment (like in lib_ppc/board.c). You should check this issues with the microblaze custodian listed on the

[U-Boot] [PATCH v2] [ARM] at91: Add support for taskit AT91SAM9G20 boards

2010-03-18 Thread Achim Ehrlich
This adds support for the AT91SAM9G20 boards by taskit GmbH. Both boards, Stamp9G20 and PortuxG20, are integrated in one file. PortuxG20 is basically a SBC built around Stamp9G20. Signed-off-by: Achim Ehrlich aehrl...@taskit.de --- MAINTAINERS|5 + MAKEALL

Re: [U-Boot] serial init

2010-03-18 Thread Michael Zaidman
On Thu, Mar 18, 2010 at 12:33 PM, Valentin Ecker valentin.ecker@gmail.com wrote: ... While board initialization, serial_init() gets called, which calls the driver specific (hardware, etc...) init stuff. The default is that the default serial (in my case the SoC ns16550 ) will be

[U-Boot] [PATCH] correct a syntax typo in at91_matrix.h

2010-03-18 Thread Asen Dimov
Signed-off-by: Asen Dimov di...@ronetix.at --- include/asm-arm/arch-at91/at91_matrix.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/asm-arm/arch-at91/at91_matrix.h b/include/asm-arm/arch-at91/at91_matrix.h index 9b3c110..981ec20 100644 ---

[U-Boot] [PATCH] using AT91_PMC_MCKR_MDIV_ instead of LEGACY one in at91/clock.c

2010-03-18 Thread Asen Dimov
Signed-off-by: Asen Dimov di...@ronetix.at --- cpu/arm926ejs/at91/clock.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/cpu/arm926ejs/at91/clock.c b/cpu/arm926ejs/at91/clock.c index b06d760..ecf91f5 100644 --- a/cpu/arm926ejs/at91/clock.c +++

Re: [U-Boot] serial init

2010-03-18 Thread Valentin Ecker
well, i don't want to use the second com port of the ns16550. Im using an external serial chip over EMIF. so - no, i don't, wouldn't make any sense to me... thx for the help On 18.03.2010, at 12:31, Michael Zaidman wrote: On Thu, Mar 18, 2010 at 12:33 PM, Valentin Ecker

Re: [U-Boot] serial init

2010-03-18 Thread Michael Zaidman
On Thu, Mar 18, 2010 at 2:21 PM, Valentin Ecker valentin.ecker@gmail.com wrote: well, i don't want to use the second com port of the ns16550. Im using an external serial chip over EMIF. I am not familiar with Davinci architecture and probably my case is completely different from yours but

[U-Boot] U-Boot Env Vars in Flash and EEPROM at the same time (hybrid env)?

2010-03-18 Thread Brian Hutchinson
(puts on flame retardant underwear) Can environment variables be pulled from Flash and EEPROM? Why would I want to do this? I need to provide fail safe upgrade path and need to do something similar to the bootcount feature in PPC (I'm using ARM though). I have a internal SRAM that I can use for

Re: [U-Boot] U-Boot Env Vars in Flash and EEPROM at the same time (hybrid env)?

2010-03-18 Thread Brian Hutchinson
... oops, one glaring thing I didn't think about in the approach I presented was the I2C transaction. If power is lost during that transaction I have a similar problem to a loss of power during a saveenv and the flash sector being erased and re written.

Re: [U-Boot] Hi guys, maybe this is not the best list but I ask about my problem

2010-03-18 Thread Fabio Giovagnini
Thanks alot. The very first problem was a permission problem, as you suggestied to ckech. But now I think a Have a problem of irq losing form eth. Thanks again In data giovedì 18 marzo 2010 09:04:22, Wolfgang Denk ha scritto: : Dear Fabio Giovagnini, you are indeed completely off topic here

Re: [U-Boot] U-Boot Env Vars in Flash and EEPROM at the same time (hybrid env)?

2010-03-18 Thread Brian Hutchinson
Hm... And redundant environment is not safe enough for you? I don't know much about redundant env but now that you mention it ... I do remember seeing something about that in the code. I'll look into it. Thanks! The goal is to not brick a device during a upgrade.  Whatever bank you are

Re: [U-Boot] [PATCH V5 10/11] fsl_esdhc: add support for mx51 processor

2010-03-18 Thread stefano babic
Kumar Gala wrote: Do you have any time to possible test a few patches to fsl_esdhc on mx51? Hi Kumar, I could test your patches next week, I have no possibility to access to the imx51evk board before. Should be ok for you ? Stefano --

Re: [U-Boot] [PATCH V5 10/11] fsl_esdhc: add support for mx51 processor

2010-03-18 Thread Kumar Gala
On Mar 18, 2010, at 11:15 AM, Detlev Zundel wrote: Hi Kumar, On Mar 4, 2010, at 1:23 PM, Stefano Babic wrote: The esdhc controller in the mx51 processor is quite the same as the one in some powerpc processors (MPC83xx, MPC85xx). This patches adapts the driver to support the arm mx51.

Re: [U-Boot] [PATH] at91: add hwecc method for nand

2010-03-18 Thread Scott Wood
On Thu, Mar 18, 2010 at 11:55:29AM +0500, Nikolay Petukhov wrote: + /* move to ECC position if needed */ + if (eccpos[0] != 0) { + /* This only works on large pages + * because the ECC controller waits for + * NAND_CMD_RNDOUTSTART after the +

Re: [U-Boot] [PATCH v3] TI: Davinci: NAND Driver Cleanup

2010-03-18 Thread Scott Wood
On Wed, Mar 17, 2010 at 10:03:10AM -0400, Cyril Chemparathy wrote: Modified to use IO accessor routines consistently. Eliminated volatile usage to keep checkpatch.pl happy. Signed-off-by: Cyril Chemparathy cy...@ti.com --- Minor formatting Applied to u-boot-nand-flash/next -Scott

Re: [U-Boot] uboot on microblaze, compilation error

2010-03-18 Thread Mike Frysinger
On Thursday 18 March 2010 05:29:19 Michal Simek wrote: Mike Frysinger wrote: On Wednesday 17 March 2010 14:36:38 Horst Gall wrote: I try to compile an actual version of u-boot for xilinx microblaze. The linker ends with the error-message: ... mb-ld.real:u-boot.lds:1: parse error

[U-Boot] Attn

2010-03-18 Thread ½²±R¬w
Prize Won! (Five hundred and fifty two Thousand pounds sterling), kindly confirm receipt of this email, by forwarding Your Details as stated below to our events manager on Email: rennyharli...@live.com Name/Address/Tel number/Age/Occupation/Country of Origin.