[U-Boot] [NEXT] mpc52xx, uc101: Cleanup use of CONFIG_SYS_SRAM_BASE and CONFIG_SYS_SRAM_SIZE

2010-09-13 Thread Heiko Schocher
Signed-off-by: Heiko Schocher h...@denx.de --- include/configs/uc101.h |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/include/configs/uc101.h b/include/configs/uc101.h index fc0b103..1972261 100644 --- a/include/configs/uc101.h +++ b/include/configs/uc101.h @@ -65,9

[U-Boot] [PATCH v3] at91: Add arch_preboot_os which disables PIT in a faster way

2010-09-13 Thread Alexander Stein
When disabled the PIT runs until it reaches the CPIV value. The Linux PIT driver stops the PIT and waits until it stopped. This can take over 100ms. Simply stopping in u-boot isn't sufficient as the PIT will still be running when Linux is waiting until it stopped. So, we stop it in u-boot by

Re: [U-Boot] [PATCH] powerpc: Cleanup BOOTFLAG_* usage

2010-09-13 Thread Stefan Roese
On Monday 13 September 2010 07:34:40 Wolfgang Denk wrote: BOOTFLAG_COLD and BOOTFLAG_WARM have identical definitions for every PowerPC board, so share a common definition. Signed-off-by: Peter Tyser pty...@xes-inc.com --- It looks like there are only a few boards (5) that use the

Re: [U-Boot] [STATUS] v2010.09-rc1 is out / v2010.09 delayed by 2 weeks

2010-09-13 Thread Stefano Babic
Steve Sakoman wrote: On Fri, Sep 10, 2010 at 10:54 AM, Wolfgang Denk w...@denx.de wrote: Hello everybody: * U-Boot v2010.09-rc1 was released on Fri, 10 Sep 2010. * Release v2010.09 is scheduled in 18 days - on September 28, 2010, i. e. we have a delay against the original plan of about 2

[U-Boot] [PATCH] ppc4xx: Fix CATcenter build and add it to MAKEALL

2010-09-13 Thread Stefan Roese
Signed-off-by: Stefan Roese s...@denx.de --- MAKEALL |1 + include/configs/CATcenter.h | 23 ++- 2 files changed, 3 insertions(+), 21 deletions(-) diff --git a/MAKEALL b/MAKEALL index b34ae33..6002ade 100755 --- a/MAKEALL +++ b/MAKEALL @@ -195,6

Re: [U-Boot] [PATCH 3/4] MMC Multi-block Support

2010-09-13 Thread Lei Wen
Hi, Has this changed been merged into uboot mainline? Current mmc framework read is rather slow comparing with the write... If we could get the multiply-read behavior, that would be nice. :-) Thanks, Lei On Sat, May 15, 2010 at 1:37 AM, Andy Fleming aflem...@gmail.com wrote: On Wed, May 12,

[U-Boot] [PATCH 0/5] ppc4xx: Big header cleanup

2010-09-13 Thread Stefan Roese
This patchset tries to cleanup and the PPC4xx headers. To do this the following things are done: - Move headers from include/* to arch/powerpc/include/asm/* to not clutter the toplevel include directory that much - Create header files for each PPC4xx SoC variant and move SoC specific defines

[U-Boot] [PATCH 1/5] ppc4xx: Remove unreferenced file include/405_dimm.h

2010-09-13 Thread Stefan Roese
Signed-off-by: Stefan Roese s...@denx.de --- include/405_dimm.h |4 1 files changed, 0 insertions(+), 4 deletions(-) delete mode 100644 include/405_dimm.h diff --git a/include/405_dimm.h b/include/405_dimm.h deleted file mode 100644 index 103a349..000 --- a/include/405_dimm.h +++

[U-Boot] [PATCH 2/5] ppc4xx: Move ppc4xx headers to powerpc include directory

2010-09-13 Thread Stefan Roese
This patch moves some ppc4xx related headers from the common include directory (include/) to the powerpc specific one (arch/powerpc/include/asm/). This way to common include directory is not so cluttered with files. Signed-off-by: Stefan Roese s...@denx.de ---

[U-Boot] [PATCH 3/5] ppc4xx: Move gpio.h to ppc4xx-gpio.h since its ppc4xx specific

2010-09-13 Thread Stefan Roese
Signed-off-by: Stefan Roese s...@denx.de --- arch/blackfin/cpu/cmd_gpio.c |2 +- arch/blackfin/cpu/gpio.c |2 +- arch/powerpc/cpu/ppc4xx/cpu_init.c |2 +- arch/powerpc/cpu/ppc4xx/gpio.c |2 +-

[U-Boot] [PATCH 4/5] ppc4xx: Big header cleanup, mostly PPC440 related

2010-09-13 Thread Stefan Roese
This patch starts a bit PPC4xx header cleanup. First patch mostly touches PPC440 files. A later patch will touch the PPC405 files as well. This cleanup is done by creating header files for all SoC versions and moving the SoC specific defines into these special headers. This way the common header

Re: [U-Boot] [PATCH 1/2] mmc: add boundary check for mmc operation

2010-09-13 Thread Sergei Shtylyov
Hello. On 13-09-2010 8:06, Lei Wen wrote: Signed-off-by: Lei Wenlei...@marvell.com --- drivers/mmc/mmc.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index cf4ea16..5ff1c54 100644 --- a/drivers/mmc/mmc.c +++

Re: [U-Boot] [PATCH 2/2] mmc: print out avaible partition table

2010-09-13 Thread Sergei Shtylyov
Hello. On 13-09-2010 8:06, Lei Wen wrote: Signed-off-by: Lei Wenlei...@marvell.com --- common/cmd_mmc.c | 20 disk/part.c |3 +++ 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index c0b30d8..fe04f8d

Re: [U-Boot] [STATUS] v2010.09-rc1 is out / v2010.09 delayed by 2 weeks

2010-09-13 Thread Stefano Babic
Wolfgang Denk wrote: Hello everybody: * U-Boot v2010.09-rc1 was released on Fri, 10 Sep 2010. * Release v2010.09 is scheduled in 18 days - on September 28, 2010, i. e. we have a delay against the original plan of about 2 weeks. For details please see

Re: [U-Boot] [PATCH 1/2] mmc: add boundary check for mmc operation

2010-09-13 Thread Lei Wen
On Mon, Sep 13, 2010 at 4:52 PM, Sergei Shtylyov sshtyl...@mvista.com wrote: Hello. On 13-09-2010 8:06, Lei Wen wrote: Signed-off-by: Lei Wenlei...@marvell.com ---  drivers/mmc/mmc.c |   10 ++  1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/mmc.c

[U-Boot] [PATCH v3] cp/cmp: Add WATCHDOG_RESET in copy and compare loop

2010-09-13 Thread Stefan Roese
On some boards with a very short watchdog timeout, the cp and cmp commands may reset the board. This patch adds some watchdog resets inside the loops. Otherwise for example the lwmon5 board will reset while doing something like this: = cp.b fc00 100 10 Signed-off-by: Stefan Roese

[U-Boot] [PATCH 1/2] mmc: add boundary check for mmc operation

2010-09-13 Thread Lei Wen
Signed-off-by: Lei Wen lei...@marvell.com --- drivers/mmc/mmc.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index cf4ea16..42638f6 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -92,6 +92,11 @@ mmc_bwrite(int

[U-Boot] [PATCH 2/2] mmc: print out avaible partition table

2010-09-13 Thread Lei Wen
Signed-off-by: Lei Wen lei...@marvell.com --- common/cmd_mmc.c | 20 disk/part.c |3 +++ 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index c0b30d8..437dd88 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c

Re: [U-Boot] zImage on ARM

2010-09-13 Thread Wolfgang Denk
Dear Nicolas, In message alpine.lfd.2.00.1009122338310.19...@xanadu.home you wrote: Maybe this should/could be addressed on the Linux side then? We don't have such problems on PwerPC, for example. On the Linux side, we currently have a fully position independent zImage. So you already

Re: [U-Boot] [PATCH 03/26] ARM: cp15: setup mmu and enable dcache

2010-09-13 Thread V, Aneesh
Hello Heiko, -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot- boun...@lists.denx.de] On Behalf Of Heiko Schocher Sent: Wednesday, August 11, 2010 11:46 PM To: U-Boot user list Cc: Alessandro Rubini Subject: [U-Boot] [PATCH 03/26] ARM: cp15: setup mmu and enable

Re: [U-Boot] [PATCH] zlib: Add further watchdog reset calls

2010-09-13 Thread Stefan Roese
Hi Wolfgang, On Thursday 09 September 2010 20:27:08 Wolfgang Denk wrote: +++ b/lib/zlib.c @@ -1599,6 +1599,8 @@ int flush; strm-adler = state-check = adler32(0L, Z_NULL, 0); state-mode = TYPE; case TYPE: + if (strm-outcb !=

Re: [U-Boot] [PATCH] mpc5xxx_fec: add call to reset_phy() after PHY initialization

2010-09-13 Thread Wolfgang Denk
Dear Ben, In message 1282208946-18823-1-git-send-email-ya...@emcraft.com Ilya Yanok wrote: Some boards need their board-specific PHY quirks to be called to PHY to work normally. As mpc5xxx_fec driver uses on demand PHY initialization and can even reinit PHY during normal operation we can't

Re: [U-Boot] [PATCH 03/26] ARM: cp15: setup mmu and enable dcache

2010-09-13 Thread Wolfgang Denk
Dear V, Aneesh, In message ff55437e1f14da4baeb721a458b6701706c5888...@dbde02.ent.ti.com you wrote: Initially I had a done bit to only set up page tables at the beginning. However, since the aligmnent requirement was for the whole object file, this extra integer tool 16kB in BSS, so I

Re: [U-Boot] [NEXT] mpc52xx, uc101: Cleanup use of CONFIG_SYS_SRAM_BASE and CONFIG_SYS_SRAM_SIZE

2010-09-13 Thread Wolfgang Denk
Dear Heiko Schocher, In message 4c8dc0a6.9010...@denx.de you wrote: Signed-off-by: Heiko Schocher h...@denx.de --- include/configs/uc101.h |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) Applied to next branch. Thanks Best regards, Wolfgang Denk -- DENX Software

[U-Boot] [PATCH] [NEXT v2] mpc52xx: Cleanup use of CONFIG_SYS_SRAM_BASE and CONFIG_SYS_SRAM_SIZE

2010-09-13 Thread Heiko Schocher
cleanup for the uc101 and the mucmc52 board. Signed-off-by: Heiko Schocher h...@denx.de --- include/configs/mucmc52.h |2 ++ include/configs/uc101.h |4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/mucmc52.h b/include/configs/mucmc52.h index

Re: [U-Boot] [PATCH] [NEXT v2] mpc52xx: Cleanup use of CONFIG_SYS_SRAM_BASE and CONFIG_SYS_SRAM_SIZE

2010-09-13 Thread Wolfgang Denk
Dear Heiko Schocher, In message 4c8df911.1020...@denx.de you wrote: cleanup for the uc101 and the mucmc52 board. Signed-off-by: Heiko Schocher h...@denx.de --- include/configs/mucmc52.h |2 ++ include/configs/uc101.h |4 +--- 2 files changed, 3 insertions(+), 3 deletions(-)

Re: [U-Boot] TFTP load for file over 50MB fails

2010-09-13 Thread StephenPaulraj Chinnadurai-ERS,HCLTech
-Original Message- From: Wolfgang Denk [mailto:w...@denx.de] Sent: Thursday, September 02, 2010 1:51 PM To: StephenPaulraj Chinnadurai-ERS,HCLTech Cc: Marek Vasut; u-boot@lists.denx.de Subject: Re: [U-Boot] TFTP load for file over 50MB fails Dear StephenPaulraj Chinnadurai-ERS,HCLTech,

[U-Boot] [PATCH 2/2 V2] mmc: print out avaible partition table

2010-09-13 Thread Lei Wen
Signed-off-by: Lei Wen lei...@marvell.com --- common/cmd_mmc.c | 20 disk/part.c |3 +++ 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index c0b30d8..437dd88 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c

Re: [U-Boot] [PATCH 1/2] zlib/gunzip: Use WATCHDOG_RESET macro

2010-09-13 Thread Detlev Zundel
Hi Stefan, As usually done in U-Boot, the watchdog_reset code is called via a macro (WATCHDOG_RESET). In zlib.c this was done differently, by using a function pointer which is initialized with WATCHDOG_RESET upon watchdog usage or with NULL otherwise. This patch now uses the plain

Re: [U-Boot] [PATCH 2/2 v2] zlib: Add further watchdog reset calls

2010-09-13 Thread Detlev Zundel
Hi Stefan, Patch 253cb831 [zlib: add watchdog reset call] added already a few watchdog reset calls to the new zlib U-Boot port. But on some boards this is not enough. Additional calls are needed on boards with short watchdog timeouts. This was detected and tested on the lwmon5 board with a

Re: [U-Boot] [PATCH] da850evm: basic MII EMAC support

2010-09-13 Thread Ben Gardiner
Hi Mike, On Sat, Sep 11, 2010 at 12:01 AM, Mike Frysinger vap...@gentoo.org wrote: On Friday, September 10, 2010 16:10:16 Ben Gardiner wrote: The current da850evm support in u-boot/master [1] omits any use of the davinci EMAC. This patch adds basic support for the EMAC using the MII PHY found

Re: [U-Boot] [PATCH] da850evm: basic MII EMAC support

2010-09-13 Thread Ben Gardiner
Hi Ben, On Sun, Sep 12, 2010 at 11:45 PM, Ben Warren biggerbadder...@gmail.com wrote: Please consider doing this differently.  If you change the driver to make 'davinci_eth_set_mac_addr()' meet the signature of 'eth_device-write_hwaddr()', all the environment handling is done automagically.  

Re: [U-Boot] [PATCH] da850evm: basic MII EMAC support

2010-09-13 Thread Ben Warren
Hi Ben, On Monday, September 13, 2010, Ben Gardiner bengardi...@nanometrics.ca wrote: Hi Ben, On Sun, Sep 12, 2010 at 11:45 PM, Ben Warren biggerbadder...@gmail.com wrote: Please consider doing this differently.  If you change the driver to make 'davinci_eth_set_mac_addr()' meet the

Re: [U-Boot] zImage on ARM

2010-09-13 Thread Nicolas Pitre
On Mon, 13 Sep 2010, Wolfgang Denk wrote: Dear Nicolas, In message alpine.lfd.2.00.1009122338310.19...@xanadu.home you wrote: Maybe this should/could be addressed on the Linux side then? We don't have such problems on PwerPC, for example. On the Linux side, we currently have a

Re: [U-Boot] [PATCH 1/2 V2] mmc: add boundary check for mmc operation

2010-09-13 Thread Sergei Shtylyov
Hello. Lei Wen wrote: Change log: change the puts to printf to better formating. This change log should have followed the --- tear-line. Signed-off-by: Lei Wen lei...@marvell.com --- WBR, Sergei ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 2/2 V2] mmc: print out avaible partition table

2010-09-13 Thread Sergei Shtylyov
Hello. Lei Wen wrote: Signed-off-by: Lei Wen lei...@marvell.com [...] diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index c0b30d8..437dd88 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c [...] @@ -230,5 +249,6 @@ U_BOOT_CMD( read device num addr blk# cnt\n mmc write

Re: [U-Boot] ARM mach-types.h (was: Re: [PATCH 1/5] add DOCKSTAR machine type)

2010-09-13 Thread Thomas Weber
Am 08.09.2010 22:05, schrieb Paulraj, Sandeep: Yes, I know. The problem we're discussing is that the version of mach-types.h as included in the mainline LInux kernel tree is relatively old when compared to the current state of the ARM machine registry. The question was if we should risk

[U-Boot] [PATCH 2/2 V3] mmc: print out avaible partition table

2010-09-13 Thread Lei Wen
Signed-off-by: Lei Wen lei...@marvell.com --- V3: add additional space after device num common/cmd_mmc.c | 20 disk/part.c |3 +++ 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index c0b30d8..45924e3 100644 ---

[U-Boot] [PATCH 1/2 V3] mmc: add boundary check for mmc operation

2010-09-13 Thread Lei Wen
Signed-off-by: Lei Wen lei...@marvell.com --- V2: Change log: change the puts to printf to better formating. drivers/mmc/mmc.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index cf4ea16..23928c1 100644 ---

Re: [U-Boot] [PATCH 1/2 V2] mmc: add boundary check for mmc operation

2010-09-13 Thread Lei Wen
Fix in V3.. Thanks, Lei On Mon, Sep 13, 2010 at 9:40 PM, Sergei Shtylyov sshtyl...@mvista.com wrote: Hello. Lei Wen wrote: Change log: change the puts to printf to better formating.   This change log should have followed the --- tear-line. Signed-off-by: Lei Wen lei...@marvell.com ---

Re: [U-Boot] [PATCH 2/2 V2] mmc: print out avaible partition table

2010-09-13 Thread Lei Wen
Fixed in V3. Thanks, Lei On Mon, Sep 13, 2010 at 9:41 PM, Sergei Shtylyov sshtyl...@mvista.com wrote: Hello. Lei Wen wrote: Signed-off-by: Lei Wen lei...@marvell.com [...] diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index c0b30d8..437dd88 100644 --- a/common/cmd_mmc.c +++

Re: [U-Boot] [STATUS] v2010.09-rc1 is out / v2010.09 delayed by 2 weeks

2010-09-13 Thread Steve Sakoman
On Mon, Sep 13, 2010 at 12:24 AM, Stefano Babic sba...@denx.de wrote: Steve Sakoman wrote: On Fri, Sep 10, 2010 at 10:54 AM, Wolfgang Denk w...@denx.de wrote: Hello everybody: * U-Boot v2010.09-rc1 was released on Fri, 10 Sep 2010. * Release v2010.09 is scheduled in 18 days - on September

Re: [U-Boot] [PATCH] powerpc: Cleanup BOOTFLAG_* usage

2010-09-13 Thread Peter Tyser
On Mon, 2010-09-13 at 08:27 +0200, Stefan Roese wrote: On Monday 13 September 2010 07:34:40 Wolfgang Denk wrote: BOOTFLAG_COLD and BOOTFLAG_WARM have identical definitions for every PowerPC board, so share a common definition. Signed-off-by: Peter Tyser pty...@xes-inc.com ---

Re: [U-Boot] [PATCH v3] USB-CDC: Fix coding style issues

2010-09-13 Thread Vitaly Kuzmichev
Hello Remy, vkuzmic...@mvista.com wrote: [...] - /* use PKTSIZE (or aligned... from u-boot) and set + /* + * use PKTSIZE (or aligned... from u-boot) and set * wMaxSegmentSize accordingly*/ Could you please fix the last line before commit? I missed this and would not like

[U-Boot] [PATCH 2/5] e1000: Add a small SPI driver wrapper around the EEPROM code

2010-09-13 Thread Kyle Moffett
To make it possible to use the sspi command with the e1000 firmware EEPROM we add a small generic SPI driver wrapper around the existing e1000 SPI backend. Signed-off-by: Kyle Moffett kyle.d.moff...@boeing.com --- drivers/net/e1000.c | 92 ++-

[U-Boot] [PATCH 3/5] mpc85xx: Add inline GPIO acessor functions

2010-09-13 Thread Kyle Moffett
To ease the implementation of other MPC85xx board ports, several common GPIO helpers are added to asm/mpc85xx_gpio.h. Since each of these compiles to no more than 4-5 instructions it would be very inefficient to call them out of line, therefore we put them entirely in the header file.

[U-Boot] [PATCH 1/5] e1000: New e1000 commands for SPI EEPROM management

2010-09-13 Thread Kyle Moffett
For our new board ports, we are programming the EEPROMs attached to our Intel 82571EB controllers from software (using U-Boot and Linux). This code provides a helpful set of e1000 subcommands for performing EEPROM manipulation on e1000 devices, including displaying a hex-dump, copying to and from

[U-Boot] [PATCH 1/5] e1000: Clean up handling of dual-port NICs and support 82571

2010-09-13 Thread Kyle Moffett
Consolidate the test for a dual-port NIC to one location for easy modification, then fix support for the dual-port 82571. Signed-off-by: Kyle Moffett kyle.d.moff...@boeing.com --- drivers/net/e1000.c | 66 +- drivers/net/e1000.h |6 2

[U-Boot] [PATCH 2/5] e1000: Restructure and streamline PCI device probing

2010-09-13 Thread Kyle Moffett
By allocating the e1000 device structures much earlier, we can easily generate better error messages and siginficantly clean things up. The only user-visable change (aside from reworded error messages) is that a detected e1000 device which fails to initialize due to software or hardware error

[U-Boot] [PATCH 4/5] e1000: New e1000 commands for SPI EEPROM management

2010-09-13 Thread Kyle Moffett
For our new board ports, we are programming the EEPROMs attached to our Intel 82571EB controllers from software (using U-Boot and Linux). This code provides a helpful set of e1000 subcommands for performing EEPROM manipulation on e1000 devices, including displaying a hex-dump, copying to and from

[U-Boot] [PATCH 5/5] e1000: Add a small SPI driver wrapper around the EEPROM code

2010-09-13 Thread Kyle Moffett
To make it possible to use the sspi command with the e1000 firmware EEPROM we add a small generic SPI driver wrapper around the existing e1000 SPI backend. Signed-off-by: Kyle Moffett kyle.d.moff...@boeing.com --- drivers/net/e1000.c | 92 ++-

[U-Boot] [PATCH 3/5] e1000: Rewrite EEPROM checksum error to give more information

2010-09-13 Thread Kyle Moffett
As an aide to debugging, we should print out the expected value of the EEPROM checksum in addition to just saying that it is wrong. Signed-off-by: Kyle Moffett kyle.d.moff...@boeing.com --- drivers/net/e1000.c | 48 ++-- 1 files changed, 30

Re: [U-Boot] [PATCH 3/5] mpc85xx: Add inline GPIO acessor functions

2010-09-13 Thread Moffett, Kyle D
Whoops! Please ignore this grouping of patches (1-3 of 5), I accidentally specified the wrong commit range and sent 3 emails before I realized. I've since resent the correct patch queue. My apologies! Cheers, Kyle Moffett On Sep 13, 2010, at 11:51, Kyle Moffett wrote: To ease the

Re: [U-Boot] 83xx fails to boot with moderately sized kernels

2010-09-13 Thread Scott Wood
On Sat, 11 Sep 2010 09:19:34 +0200 Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Dear Ira W. Snyder, In message 20100910181022.ga18...@ovro.caltech.edu you wrote: Would you prefer a patch only for the MPC8349EMDS, or should I try and convert the other boards too? How

[U-Boot] [PATCH] ARM: Consolidate bootcount_{store|load}

2010-09-13 Thread Anatolij Gustschin
This patch consolidates bootcount_{store|load} for ARM by implementing a common version in arch/arm/lib/bootcount.c. This code is now used by all ARM variants that currently have these functions implemented. Also supports two different bootcount versions: a) Use 2 separate words (2 * 32bit)

[U-Boot] Pull request: nand flash

2010-09-13 Thread Scott Wood
The following changes since commit 150f723665674100876c53e0492cd6d2191fe865: Reinhard Meyer (1): display_buffer: fix misaligned buffer are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git master Wolfram Sang (1): nand/davinci: make sure ECC

[U-Boot] [PATCH v2 0/2] da850evm basic MII EMAC support

2010-09-13 Thread Ben Gardiner
This patch series proposes to add basic MII support to the da850evm; the first patch in the series refactors davinci EMAC setup. The second patch in the series enables MII support. Ben Gardiner (2): davinci_emac: davinci_eth_set_mac_addr to -write_hwaddr da850evm: basic MII EMAC support

[U-Boot] [PATCH v2 2/2] da850evm: basic MII EMAC support

2010-09-13 Thread Ben Gardiner
The current da850evm support in u-boot/master omits any use of the davinci EMAC. This patch adds basic support for the EMAC using the MII PHY found on the baseboard of the EVM. The MAC address is read from the environment variable 'ethadd'. Note that this is different from the da850evm support in

Re: [U-Boot] 83xx fails to boot with moderately sized kernels

2010-09-13 Thread Joakim Tjernlund
Scott Wood scottw...@freescale.com wrote on 2010/09/13 21:21:33: On Sat, 11 Sep 2010 09:19:34 +0200 Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Dear Ira W. Snyder, In message 20100910181022.ga18...@ovro.caltech.edu you wrote: Would you prefer a patch only for the

Re: [U-Boot] zImage on ARM

2010-09-13 Thread Wolfgang Denk
Dear Nicolas Pitre, In message alpine.lfd.2.00.1009130917470.19...@xanadu.home you wrote: So your problem could be solved if we were able to specify a relative load address (relative to the start of system RAM), and relative entry point address (offset into image) ? Yes, that would

Re: [U-Boot] 83xx fails to boot with moderately sized kernels

2010-09-13 Thread Scott Wood
On Mon, 13 Sep 2010 23:52:00 +0200 Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Scott Wood scottw...@freescale.com wrote on 2010/09/13 21:21:33: On Sat, 11 Sep 2010 09:19:34 +0200 Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Dear Ira W. Snyder, In message

Re: [U-Boot] [PATCH] powerpc: Cleanup BOOTFLAG_* usage

2010-09-13 Thread Wolfgang Denk
Dear Peter Tyser, In message 1284389585.26713.2967.ca...@petert you wrote: Sounds good, I'll resubmit. Getting rid of the BOOTFLAG_* defines will make bd-bi_bootflags unused. What's the policy on modifying the bd_info structure? Leave an unused bi_bootflags field to prevent breakage of

Re: [U-Boot] [PATCH] powerpc: Cleanup BOOTFLAG_* usage

2010-09-13 Thread Scott Wood
On Tue, 14 Sep 2010 00:02:49 +0200 Wolfgang Denk w...@denx.de wrote: Dear Peter Tyser, In message 1284389585.26713.2967.ca...@petert you wrote: Sounds good, I'll resubmit. Getting rid of the BOOTFLAG_* defines will make bd-bi_bootflags unused. What's the policy on modifying the

Re: [U-Boot] [PATCH] ARM: Consolidate bootcount_{store|load}

2010-09-13 Thread Reinhard Meyer
Dear Anatolij Gustschin, The latter was already used by AT91. Looking at your patch I just noticed that the AT91 version is not up to date. It won't work for AT91SAM9XE. I had a better, struct access variant in my tree but somehow due to rebasing I must have lost it... I'll reconstruct it and

Re: [U-Boot] [PATCH] ARM: Consolidate bootcount_{store|load}

2010-09-13 Thread Reinhard Meyer
Dear Anatolij Gustschin, This patch consolidates bootcount_{store|load} for ARM by implementing a common version in arch/arm/lib/bootcount.c. This code is now used by all ARM variants that currently have these functions implemented. Also supports two different bootcount versions: a)

[U-Boot] [PATCH next] silence awk command display during build

2010-09-13 Thread Kim Phillips
[u-boot next]$ ./MAKEALL 83xx awk '(NF $1 !~ /^#/) { print $1 : $1 _config; $(MAKE) }' boards.cfg .boards.depend Configuring for ve8313 board... Signed-off-by: Kim Phillips kim.phill...@freescale.com --- applies to u-boot.git's next branch. Makefile |2 +- 1 files changed, 1

Re: [U-Boot] [PATCH][v3] mpc8308_p1m: support for MPC8308 P1M board

2010-09-13 Thread Kim Phillips
On Wed, 8 Sep 2010 23:36:59 +0200 Ilya Yanok ya...@emcraft.com wrote: MAINTAINERS |1 + board/mpc8308_p1m/Makefile | 52 board/mpc8308_p1m/config.mk |1 + board/mpc8308_p1m/mpc8308_p1m.c | 122 + board/mpc8308_p1m/sdram.c | 93

Re: [U-Boot] [PATCH next] silence awk command display during build

2010-09-13 Thread Mike Frysinger
On Monday, September 13, 2010 21:17:30 Kim Phillips wrote: [u-boot next]$ ./MAKEALL 83xx awk '(NF $1 !~ /^#/) { print $1 : $1 _config; $(MAKE) }' boards.cfg .boards.depend Configuring for ve8313 board... how about we change MAKEALL to run the config step with -s ? -mike signature.asc

Re: [U-Boot] [PATCH] [U-BOOT] Zoom2 Zoom3: introduced a macro to use a different buffer size when compiling for Zoom2 or Zoom3.

2010-09-13 Thread Martinez, Aldo
Dear Wolfgang, Zoom2 and Zoom2 used to hang with md command. It was due to a problem with a buffer size in print_buffer() function. A macro was introduced to use a different buffer size in case of compiling for Zoom2 and Zoom3. NAK to this patch. Forst, I thinkt he problem is not

Re: [U-Boot] [PATCH] powerpc: Cleanup BOOTFLAG_* usage

2010-09-13 Thread Peter Tyser
On Mon, 2010-09-13 at 17:13 -0500, Scott Wood wrote: On Tue, 14 Sep 2010 00:02:49 +0200 Wolfgang Denk w...@denx.de wrote: Dear Peter Tyser, In message 1284389585.26713.2967.ca...@petert you wrote: Sounds good, I'll resubmit. Getting rid of the BOOTFLAG_* defines will make

Re: [U-Boot] zImage on ARM

2010-09-13 Thread Nicolas Pitre
On Mon, 13 Sep 2010, Wolfgang Denk wrote: Dear Nicolas Pitre, In message alpine.lfd.2.00.1009130917470.19...@xanadu.home you wrote: So your problem could be solved if we were able to specify a relative load address (relative to the start of system RAM), and relative entry point

Re: [U-Boot] P4080 Reset Vector

2010-09-13 Thread Tony Wang
What board? You can basic support for P4080 in the git tree for u-boot. - k Thanks Kumar, Now I am use p4080ds board from freescale, I download U-Boot 2010.06 version.I check the board code for freescale, just find p2020 directory, no p4080 board. You said U-Boot has basic support for

[U-Boot] [PATCH NEXT V4 0/2] ARMV7: Add support for the Versatile Express Quad Cortex A9 platform

2010-09-13 Thread matt . waddel
From: Matt Waddel matt.wad...@linaro.org Adds support for the ARM quad-core Cortex-A9 processor. This system includes a motherboard(Versatile Express), daughterboard(Coretile), and an SOC(Cortex-A9 quad core). The serial port, ethernet, and flash systems work with these additions. The 2nd patch

[U-Boot] [PATCH NEXT V4 1/2] ARMV7: Versatile Express Coretile CortexA9x4 support

2010-09-13 Thread matt . waddel
From: Matt Waddel matt.wad...@linaro.org Adds support for the ARM quad-core Cortex-A9 processor. This system includes a motherboard(Versatile Express), daughterboard(Coretile), and SOC(Cortex-A9 quad core). The serial port, ethernet, and flash systems work with these additions. The naming

[U-Boot] [PATCH NEXT V4 2/2] ARMV7: Fixed baudrate setting in pl01x driver

2010-09-13 Thread matt . waddel
From: Matt Waddel matt.wad...@linaro.org The pl01x serial driver was lacking the code to switch baudrates from the command line. Fixed by simply saving the new baudrate and calling serial_init() again. Also fixed CamelCase variables, I/O accessors and comment style. Signed-off-by: Matt Waddel

Re: [U-Boot] P4080 Reset Vector

2010-09-13 Thread Liu Dave-R63238
Now I am use p4080ds board from freescale, I download U-Boot 2010.06 version.I check the board code for freescale, just find p2020 directory, no p4080 board. You said U-Boot has basic support for P4080, can you give some more detail informaion such as file name or directory name?

[U-Boot] Multiple binaries built through u-boot source

2010-09-13 Thread Vipin Kumar
Hello, This is about a generic problem which may also be faced by other developers. Our SoC has a masked bootrom area which copies an image from NOR/NAND memories to an internal embedded SRAM. The size of this SRAM is only 8K. This binary initializes the DDR for larger binaries (u-boot/OS) to

[U-Boot] Healthcare/Business and Finance/Consumer/Professional Lists

2010-09-13 Thread postmortem Franks
Until Friday Sep 17 buy any list below for just $199 each, 3 for $299 or 5 for $399: All lists are 100% optin and are 6 months or newer. == HEALTHCARE LISTS == * Physicians (34 specialties) - 788k records, 17k emails, 200k fax numbers * Chiropractors - 108,421 total records * 3,414 emails *