Re: [U-Boot] [STATUS] v2011.09-rc1 is out

2011-09-13 Thread Helmut Raiger
On 09/12/2011 11:03 PM, Scott Wood wrote: Patchwork links are more useful than message IDs. OK. I'm still trying to get that contribution busyness up and running. No, the next branch is for when the next merge window opens. There seemed to be enough uncertainty about how the hardware works to

[U-Boot] [PATCH 02/26] net: emaclite: Remove deviceid property

2011-09-13 Thread Michal Simek
Cleanup structure. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c index 8d170a3..2a5c5e1 100644 ---

[U-Boot] [PATCH 01/26] net: emaclite: Change driver name and add address

2011-09-13 Thread Michal Simek
Current xilinx emaclite use net multi registration but doesn't support several emaclites interfaces. Changing driver name with adding address to name is the first step how to distiguish several drivers. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c |2 +- 1

[U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Michal Simek
Hi, here is the whole package with Microblaze and Xilinx driver changes. All patches are available in git://www.denx.de/git/u-boot-microblaze.git master branch if you like to test them. Thanks for your review, Michal Michal Simek (26): net: emaclite: Change driver name and add address

[U-Boot] [PATCH 03/26] net: emaclite: Use calloc instead of malloc

2011-09-13 Thread Michal Simek
Simplify driver logic and clear eth_device structure in one command. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c index

[U-Boot] [PATCH 05/26] net: emaclite: Use dynamic allocation

2011-09-13 Thread Michal Simek
Every emaclite instance use own setting. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Free allocated space when private data allocation failed --- drivers/net/xilinx_emaclite.c | 41 + 1 files changed, 25 insertions(+), 16 deletions(-) diff

[U-Boot] [PATCH 07/26] net: emaclite: Use unsigned long for baseaddr

2011-09-13 Thread Michal Simek
Baseaddr should be unsigned long. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c |4 ++-- include/netdev.h |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c

[U-Boot] [PATCH 06/26] net: emaclite: Setup RX/TX ping pong for every instance

2011-09-13 Thread Michal Simek
Setup RX/TX ping-pong buffer for every emaclite IP separately. The next patch move initialization directly to board code. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c | 123 ++-- 1 files changed, 68 insertions(+), 55

[U-Boot] [PATCH 09/26] net: emaclite: Use PKTSIZE directly

2011-09-13 Thread Michal Simek
Do not setup additional ENET_MAX_MTU macro. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c | 10 -- 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c index eca6ef9..5ce95f8 100644

[U-Boot] [PATCH 04/26] net: emaclite: Remove baseaddress from xemaclite

2011-09-13 Thread Michal Simek
Use dev-iobase instead of baseaddress. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c | 42 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c

[U-Boot] [PATCH 08/26] net: emaclite: Move RX/TX ping pong initialization to board

2011-09-13 Thread Michal Simek
Init RX/TX ping pong directly from board not in the driver. Signed-off-by: Michal Simek mon...@monstr.eu --- .../xilinx/microblaze-generic/microblaze-generic.c | 18 -- drivers/net/xilinx_emaclite.c | 11 --- include/netdev.h

[U-Boot] [PATCH 11/26] microblaze: Support CTRL+C when tftp is running

2011-09-13 Thread Michal Simek
Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/lib/board.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c index d97543b..5510c12 100644 --- a/arch/microblaze/lib/board.c +++

[U-Boot] [PATCH 10/26] net: emaclite: Fix coding style

2011-09-13 Thread Michal Simek
Coding style should follow linux coding style. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c | 57 +++- 1 files changed, 27 insertions(+), 30 deletions(-) diff --git a/drivers/net/xilinx_emaclite.c

[U-Boot] [PATCH 12/26] microblaze: Support flashes on lower addresses

2011-09-13 Thread Michal Simek
Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Change symbol references provided by a linker script v3: Move externs to header --- arch/microblaze/include/asm/processor.h |5 - arch/microblaze/lib/board.c |4 2 files changed, 8 insertions(+), 1 deletions(-)

[U-Boot] [PATCH 13/26] microblaze: Initialize jumptable and console

2011-09-13 Thread Michal Simek
This changes were done to get support for netconsole. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Fix commit message v3: Fix coding style --- arch/microblaze/lib/board.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/microblaze/lib/board.c

[U-Boot] [PATCH 14/26] microblaze: Fix unaligned.h for endians

2011-09-13 Thread Michal Simek
Also support little endian MB. Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/include/asm/unaligned.h | 17 + 1 files changed, 1 insertions(+), 16 deletions(-) diff --git a/arch/microblaze/include/asm/unaligned.h b/arch/microblaze/include/asm/unaligned.h

[U-Boot] [PATCH 15/26] microblaze: Copy bootfile from variables

2011-09-13 Thread Michal Simek
Setup bootfile. Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/lib/board.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c index 75748f3..8865a60 100644 --- a/arch/microblaze/lib/board.c +++

[U-Boot] [PATCH 16/26] microblaze: Remove debug saving value

2011-09-13 Thread Michal Simek
Forget to remove debug code. Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/cpu/start.S |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/microblaze/cpu/start.S b/arch/microblaze/cpu/start.S index 93a9efd..d3370c4 100644 ---

[U-Boot] [PATCH 17/26] microblaze: Setup MB vectors if feature is enable for u-boot

2011-09-13 Thread Michal Simek
For example: Setup reset vectors if reset address is setup. Setup user exception vector if user exception is enabled Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/cpu/start.S | 34 ++ 1 files changed, 22 insertions(+), 12 deletions(-) diff

[U-Boot] [PATCH 18/26] microblaze: Save and restore first unused vector

2011-09-13 Thread Michal Simek
Use one memory space to detect little/big endian platforms. The first unused address(0x28) is used instead 0x0 address (reset vectors). Detection rewrited reset vector setup from first stage bootloader. Workflow: 1. Store 0x28 to r7 2. Do little/big endian test 3. Restore r7 to 0x28

[U-Boot] [PATCH 19/26] microblaze: Clean up reset asm code

2011-09-13 Thread Michal Simek
- Remove code copying - Reset address is setup from first stage bootloader - Support reset vector setup on little endian Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/cpu/start.S | 25 + 1 files changed, 5 insertions(+), 20 deletions(-) diff --git

[U-Boot] [PATCH 20/26] microblaze: Do not select NFS for platforms without ethernet

2011-09-13 Thread Michal Simek
Undefined network functionality for systems without ethernet and disable NFS support. Signed-off-by: Michal Simek mon...@monstr.eu --- include/configs/microblaze-generic.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/microblaze-generic.h

[U-Boot] [PATCH 22/26] microblaze: Enable FDT/FIT support

2011-09-13 Thread Michal Simek
Enable FDT and FIT support. Signed-off-by: Michal Simek mon...@monstr.eu --- include/configs/microblaze-generic.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index a334110..a811b76

[U-Boot] [PATCH 21/26] microblaze: Remove address offset for uart16550

2011-09-13 Thread Michal Simek
U-Boot BSP handle 0x3 offset for big endian systems. Little endian Microblaze systems don't use any offset. Signed-off-by: Michal Simek mon...@monstr.eu --- include/configs/microblaze-generic.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[U-Boot] [PATCH 23/26] serial: uartlite: Support for SERIAL_MULTI

2011-09-13 Thread Michal Simek
Add support for SERIAL MULTI for uartlite. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Use in/out_be32 functions Clean coding style --- common/serial.c | 14 drivers/serial/serial_xuartlite.c | 142 - include/serial.h

[U-Boot] [PATCH 24/26] microblaze: Enable SERIAL_MULTI

2011-09-13 Thread Michal Simek
Enable support for SERIAL_MULTI. Microblaze can use uart16550 and uartlite drivers. Signed-off-by: Michal Simek mon...@monstr.eu --- Note: Follow serial.h conding style. --- arch/microblaze/lib/board.c |4 include/configs/microblaze-generic.h |2 ++ include/serial.h

[U-Boot] [PATCH 25/26] net: axi_ethernet: Add driver to u-boot

2011-09-13 Thread Michal Simek
Add axi_ethernet driver for little-endian Microblaze. RX/TX BDs and rxframe buffer are shared among all axi_ethernet MACs. Only one MAC can work in one time. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Fix cammelcase weirdness Create mdio_wait function with timeouts

[U-Boot] [PATCH 26/26] microblaze: Wire up axi_ethernet driver initialization

2011-09-13 Thread Michal Simek
Initialize axi_ethernet driver. Signed-off-by: Michal Simek mon...@monstr.eu --- .../xilinx/microblaze-generic/microblaze-generic.c |6 ++ include/configs/microblaze-generic.h |4 2 files changed, 10 insertions(+), 0 deletions(-) diff --git

Re: [U-Boot] Uboot for Mips

2011-09-13 Thread fayazvf
hi, I have the same problem, I have 512MB of RAM but uboot detects only 128MB.I have XCode board(MIPS). Pls help if you have already figured out the solution. Rahanesh wrote: Hi All, I am currently working on MIPS board. I have a 32MB RAM. The address that is shown in uboot when i

[U-Boot] [PATCH 2/9] powerpc/mpc85xxcds: Fix PCI speed

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com Use Hz for 33MHz, Hz for 66MHz. Signed-off-by: Ebony Zhu ebony@freescale.com Signed-off-by: Zhao Chenhui chenhui.z...@freescale.com --- board/freescale/common/cadmus.c |8

[U-Boot] [PATCH 5/9] powerpc/mpc8548cds: Fix network initialization

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com Add board_eth_init(). PCIe network card is also supported. Put RGMII init after tsec_eth_init(). Skip initializing eTSEC3 and eTSEC4 with Carrier boards prior to ver 1.3. Signed-off-by: Ebony Zhu ebony@freescale.com Signed-off-by: Zhao Chenhui

[U-Boot] [PATCH 1/9] powerpc/mpc8548cds: Fix booting message

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com Align the output for PCI. Replace PCI with PCI1. Signed-off-by: Zhao Chenhui chenhui.z...@freescale.com --- board/freescale/mpc8548cds/mpc8548cds.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git

[U-Boot] [PATCH 4/9] powerpc/mpc8548: Add workaround for erratum NMG_eTSEC129

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com Erratum NMG_eTSEC129 (eTSEC86 in MPC8548 document) applies to some early verion silicons. This workaround detects if the eTSEC Rx logic is properly initialized, and reinitialize the eTSEC Rx logic. Signed-off-by: Gong Chen g.c...@freescale.com

[U-Boot] [PATCH 6/9] powerpc/mpc8548cds: Update config file

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com -Increase the size of malloc space. -Enable e1000 network card. -Change the location of env address. -Use hwconfig to turn off ECC. Signed-off-by: Zhao Chenhui chenhui.z...@freescale.com --- include/configs/MPC8548CDS.h | 14 +++--- 1

[U-Boot] [PATCH 9/9] powerpc/mpc8548cds: Add 36-bit support

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com Signed-off-by: Zhao Chenhui chenhui.z...@freescale.com --- boards.cfg |1 + include/configs/MPC8548CDS.h | 52 ++ 2 files changed, 53 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 7/9] powerpc/mpc8548: Add workaround for erratum NMG_LBC103

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com The erratum NMG_LBC103 is LBIU3 in MPC8548 errata document. Any local bus transaction may fail during LBIU resynchronization process when the clock divider [CLKDIV] is changing. Ensure there is no transaction on the local bus for at least 100

[U-Boot] [PATCH 3/9] powerpc/mpc8548: Add workaround for erratum NMG_DDR120

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com Erratum NMG_DDR120 (DDR19 in MPC8548 errata document) applies to some early version silicons. The default settings of the DDR IO receiver biasing may not work at cold temperature. When a failure occurs, a DDR input latches an incorrect value. The

[U-Boot] [PATCH 8/9] powerpc/mpc8548cds: Fix config according to system address map

2011-09-13 Thread Zhao Chenhui
From: chenhui zhao chenhui.z...@freescale.com - Fix config according to system address map in the manual. - Rework tlb and law tables. - Remove unnecessary macros. Signed-off-by: Zhao Chenhui chenhui.z...@freescale.com --- board/freescale/mpc8548cds/law.c| 19 +

Re: [U-Boot] [PATCH v7] dreamplug: initial board support.

2011-09-13 Thread Igor Grinberg
On 09/12/11 14:45, Jason Cooper wrote: Copied wholeheartedly from board/Marvell/guruplug and modified to add support for SPI NOR flash. CONFIG_MACH_DREAMPLUG defined in include/configs/dreamplug.h until Linus's kernel.org tree adds it to mach-types.h. Once it trickles down, the definition

Re: [U-Boot] UBI problems on current u-boot

2011-09-13 Thread Stefan Roese
Hi Holger, On Monday 12 September 2011 19:16:33 Holger Brunck wrote: I have seen in mainline kernel this fix in the ubi layer: commit b86a2c56e512f46d140a4bcb4e35e8a7d4a99a4b Author: Artem Bityutskiy artem.bityuts...@nokia.com Date: Sun May 24 14:13:34 2009 +0300 UBI: do not switch

Re: [U-Boot] [PATCH V2] ARM: Update mach-types

2011-09-13 Thread Igor Grinberg
On 09/12/11 17:10, Marek Vasut wrote: On Monday, September 12, 2011 04:04:39 PM Holger Brunck wrote: Hi, On 09/12/2011 03:54 PM, Stefano Babic wrote: On 09/12/2011 03:36 PM, Marek Vasut wrote: Have you checked that the removed boards are not supported in U-Boot? No, but then the respective

Re: [U-Boot] U-Boot for AMCC Sequoia Board (PPC440EPX) fails to boot for version 2009.11-rc1 onwards

2011-09-13 Thread Stefan Roese
Doug, On Friday 09 September 2011 22:04:51 Hayes,Doug wrote: I removed the same 2 calls from the latest U-Boot (2011.06) and it boots to U-Boot prompt as well. Not sure how to set the card to 33MHz, it may already start at 33MHz. The documentation on SW2 doesn't mention PCI settings (our

Re: [U-Boot] UBI problems on current u-boot

2011-09-13 Thread Holger Brunck
Hi Stefan, On 09/13/2011 09:39 AM, Stefan Roese wrote: Hi Holger, On Monday 12 September 2011 19:16:33 Holger Brunck wrote: I have seen in mainline kernel this fix in the ubi layer: commit b86a2c56e512f46d140a4bcb4e35e8a7d4a99a4b Author: Artem Bityutskiy artem.bityuts...@nokia.com Date:

Re: [U-Boot] UBI problems on current u-boot

2011-09-13 Thread Stefan Roese
Hi Holger, On Tuesday 13 September 2011 10:32:34 Holger Brunck wrote: But this patch is not easy to port onto u-boot because previously undergoing changes in the kernels ubi layer... Correct. UBI has undergone many changes since the integration into U-Boot back in the end of 2008

[U-Boot] [PATCH] UBI: fix endless loop when a bitflip was detected

2011-09-13 Thread Holger Brunck
On km_kirkwood boards we saw that u-boot gets stuck if the UBI layer detects a correctable bitflip in the NAND flash when u-boot tries to attach to the UBI device. This was already fixed in the UBI layer in the current mainline linux. The original commit was: commit

Re: [U-Boot] [PATCH 1/2] coldfire: Fix compilation for most coldfire boards

2011-09-13 Thread Jin Zhengxiong-R64188
-Original Message- From: Jin Zhengxiong-R64188 Sent: Friday, September 09, 2011 4:19 PM To: 'Wolfgang Denk' Cc: Stany MARCEL; u-boot@lists.denx.de Subject: RE: [U-Boot] [PATCH 1/2] coldfire: Fix compilation for most coldfire boards -Original Message- From:

Re: [U-Boot] [PATCH 1/1 V3] add support for mcf5307 cpu

2011-09-13 Thread Jin Zhengxiong-R64188
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Angelo Dureghello Sent: Sunday, September 11, 2011 12:32 AM To: U-Boot@lists.denx.de Cc: Jin Zhengxiong-R64188 Subject: [U-Boot] [PATCH 1/1 V3] add support for mcf5307 cpu Add

Re: [U-Boot] [RFC PATCH v2 1/6] fdt: ARM: Add device tree control of U-Boot (CONFIG_OF_CONTROL)

2011-09-13 Thread Wolfgang Denk
Dear Simon Glass, In message capnjgz3kzjoagjfkpkxqp+-jnztyecuaetlz0nvgzv1f-xu...@mail.gmail.com you wrote: I would love to, yes. To some extent there is a bit of this already, at least for specific subsystems. Clearly the fdt would work better if we could just hand U-Boot the fdt and say

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Wolfgang Denk
Dear Michal Simek, In message 1315897821-23049-1-git-send-email-mon...@monstr.eu you wrote: here is the whole package with Microblaze and Xilinx driver changes. All patches are available in git://www.denx.de/git/u-boot-microblaze.git master branch if you like to test them. Arghhh. No.

[U-Boot] howw to configure the config file for AT91SAM9263-EK board

2011-09-13 Thread Padmalatha G
hi, which config file i have to use for AT91SAM9263-EK board and what is the path for that . Regards: Padma Larsen Toubro Limited www.larsentoubro.com This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient,

Re: [U-Boot] [PATCH 2/9] powerpc/mpc85xxcds: Fix PCI speed

2011-09-13 Thread Wolfgang Denk
Dear Zhao Chenhui, In message 1315898131-27710-2-git-send-email-chenhui.z...@freescale.com you wrote: From: chenhui zhao chenhui.z...@freescale.com Use Hz for 33MHz, Hz for 66MHz. But that's actually wrong. Hz is not 33 MHz, but 33.33 MHz; on the other hand, 33

Re: [U-Boot] [STATUS] v2011.09-rc1 is out

2011-09-13 Thread Graeme Russ
Hi Wolfgang On 12/09/11 05:56, Wolfgang Denk wrote: Hello everybody: * U-Boot v2011.96-rc1 was released on Sun, Sep 11, 2011 * Release v2011.09 is scheduled in 11 days - on September 22, 2011. Please help testing, and check if all your relevant patches have been included. All (1)

Re: [U-Boot] [PATCH] mx31pdk: Remove unneeded config

2011-09-13 Thread Stefano Babic
On 09/12/2011 06:32 PM, Fabio Estevam wrote: Currently there are two config options for building a U-boot binary for MX31PDK: make mx31pdk_config or, make mx31pdk_nand_config mx31pdk_config was developed first when no NAND SPL support was available for MX31 and it requires that

Re: [U-Boot] [PATCH] MX31: mx31pdk: Remove nand_spl config.mk file

2011-09-13 Thread Stefano Babic
On 09/12/2011 07:13 PM, Fabio Estevam wrote: Hi Stefano, On Mon, Sep 5, 2011 at 3:55 PM, Fabio Estevam fabio.este...@freescale.com wrote: No need to have a config.mk to only store a single line. Signed-off-by: Fabio Estevam fabio.este...@freescale.com ---

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Michal Simek
Dear Wolfgang Denk, In message 1315897821-23049-1-git-send-email-mon...@monstr.eu you wrote: here is the whole package with Microblaze and Xilinx driver changes. All patches are available in git://www.denx.de/git/u-boot-microblaze.git master branch if you like to test them. Arghhh. No.

Re: [U-Boot] [STATUS] v2011.09-rc1 is out

2011-09-13 Thread Stefano Babic
On 09/11/2011 09:56 PM, Wolfgang Denk wrote: Hello everybody: * U-Boot v2011.96-rc1 was released on Sun, Sep 11, 2011 * Release v2011.09 is scheduled in 11 days - on September 22, 2011. Please help testing, and check if all your relevant patches have been included. i.MX boards build

Re: [U-Boot] [RFC PATCH v2 1/6] fdt: ARM: Add device tree control of U-Boot (CONFIG_OF_CONTROL)

2011-09-13 Thread Simon Glass
Hi Wolfgang, On Tue, Sep 13, 2011 at 2:47 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message capnjgz3kzjoagjfkpkxqp+-jnztyecuaetlz0nvgzv1f-xu...@mail.gmail.com you wrote: I would love to, yes. To some extent there is a bit of this already, at least for specific

Re: [U-Boot] [PATCH 0/7] Bootgraph.pl instrumentation support for UBoot

2011-09-13 Thread Simon Glass
Hi Graeme, On Mon, Sep 12, 2011 at 10:24 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, On Tue, Sep 13, 2011 at 2:34 PM, Simon Glass s...@chromium.org wrote: Hi Andrew, On Sat, Sep 10, 2011 at 5:40 AM, Andrew Murray amur...@theiet.org wrote: On 1 September 2011 00:53, Andrew Murray

Re: [U-Boot] [PATCH V2] ARM: Update mach-types

2011-09-13 Thread Prafulla Wadaskar
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Marek Vasut Sent: Monday, September 12, 2011 9:13 PM To: u-boot@lists.denx.de Cc: Valentin Longchamp; Holger Brunck Subject: Re: [U-Boot] [PATCH V2] ARM: Update mach-types

Re: [U-Boot] [RFC PATCH v2 1/6] fdt: ARM: Add device tree control of U-Boot (CONFIG_OF_CONTROL)

2011-09-13 Thread Wolfgang Denk
Dear Simon, In message CAPnjgZ1y+i0FdawcbBuOi0+SC+Xq3AS=zztti1tvjv8ccnw...@mail.gmail.com you wrote: U-Boot shall not initialize all possible available devices, but always only those that it needs itself to perform it's task, which usually is just to load and start an OS. =A0It makes no

Re: [U-Boot] [PATCH v7] dreamplug: initial board support.

2011-09-13 Thread Prafulla Wadaskar
-Original Message- From: Jason Cooper [mailto:u-b...@lakedaemon.net] Sent: Monday, September 12, 2011 5:15 PM To: w...@denx.de Cc: u-boot@lists.denx.de; u-b...@lakedaemon.net; Prafulla Wadaskar; Prabhanjan Sarnaik; Ashish Karkare; Siddarth Gore Subject: [PATCH v7] dreamplug:

Re: [U-Boot] [PATCH 0/7] Bootgraph.pl instrumentation support for UBoot

2011-09-13 Thread Graeme Russ
Hi Simon, On 13/09/11 21:52, Simon Glass wrote: Hi Graeme, On Mon, Sep 12, 2011 at 10:24 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, On Tue, Sep 13, 2011 at 2:34 PM, Simon Glass s...@chromium.org wrote: Hi Andrew, On Sat, Sep 10, 2011 at 5:40 AM, Andrew Murray

Re: [U-Boot] [RFC PATCH v2 1/6] fdt: ARM: Add device tree control of U-Boot (CONFIG_OF_CONTROL)

2011-09-13 Thread Simon Glass
Hi Wolfgang, On Tue, Sep 13, 2011 at 4:57 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon, In message CAPnjgZ1y+i0FdawcbBuOi0+SC+Xq3AS=zztti1tvjv8ccnw...@mail.gmail.com you wrote: U-Boot shall not initialize all possible available devices, but always only those that it needs itself

[U-Boot] [PATCH] pm9263: init serial console before relocation

2011-09-13 Thread Asen Chavdarov Dimov
The early messages can be seen on the debug console. Signed-off-by: Asen Chavdarov Dimov di...@ronetix.at --- board/ronetix/pm9263/pm9263.c | 19 +++ include/configs/pm9263.h |1 + 2 files changed, 12 insertions(+), 8 deletions(-) diff --git

Re: [U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-13 Thread Wolfram Sang
Hi Marek, On Mon, Sep 12, 2011 at 06:06:39AM +0200, Marek Vasut wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Heiko Schocher h...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/i2c/Makefile |1 +

Re: [U-Boot] [PATCH 0/7] Bootgraph.pl instrumentation support for UBoot

2011-09-13 Thread Simon Glass
Hi Graeme, On Tue, Sep 13, 2011 at 5:01 AM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, On 13/09/11 21:52, Simon Glass wrote: Hi Graeme, On Mon, Sep 12, 2011 at 10:24 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, On Tue, Sep 13, 2011 at 2:34 PM, Simon Glass

[U-Boot] [PATCH]: davinci: Replace CONFIG_PRELOADER with CONFIG_SPL_BUILD in board/davinci/common/misc.c

2011-09-13 Thread Sughosh Ganu
Make the conditional compilation in misc.c based on CONFIG_SPL_BUILD, replacing CONFIG_PRELOADER which was removed as part of commit 401bb30b6d. Making this change, we no longer need to compile memsize.c for hawkboard's nand_spl. Signed-off-by: Sughosh Ganu urwithsugh...@gmail.com --- Tested

Re: [U-Boot] [PATCH]: davinci: Replace CONFIG_PRELOADER with CONFIG_SPL_BUILD in board/davinci/common/misc.c

2011-09-13 Thread Stefano Babic
On 09/13/2011 02:42 PM, Sughosh Ganu wrote: Make the conditional compilation in misc.c based on CONFIG_SPL_BUILD, replacing CONFIG_PRELOADER which was removed as part of commit 401bb30b6d. Making this change, we no longer need to compile memsize.c for hawkboard's nand_spl. Signed-off-by:

Re: [U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-13 Thread Marek Vasut
On Tuesday, September 13, 2011 02:05:30 PM Wolfram Sang wrote: Hi Marek, On Mon, Sep 12, 2011 at 06:06:39AM +0200, Marek Vasut wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Heiko Schocher h...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc:

Re: [U-Boot] [PATCH v6 2/3] Armada100: Enable Ethernet support for GplugD

2011-09-13 Thread Prafulla Wadaskar
-Original Message- From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com] Sent: Thursday, September 08, 2011 4:13 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; vap...@gentoo.org; marek.va...@gmail.com; Ajay Bhargav Subject: [PATCH v6 2/3] Armada100: Enable Ethernet support

Re: [U-Boot] [PATCH v6 3/3] Armada100: Enable 88E3015 PHY support for GplugD

2011-09-13 Thread Prafulla Wadaskar
-Original Message- From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com] Sent: Thursday, September 08, 2011 4:13 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; vap...@gentoo.org; marek.va...@gmail.com; Ajay Bhargav Subject: [PATCH v6 3/3] Armada100: Enable 88E3015 PHY

Re: [U-Boot] [PATCH v6 1/3] net: Adds Fast Ethernet Controller driver for Armada100

2011-09-13 Thread Prafulla Wadaskar
-Original Message- From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com] Sent: Thursday, September 08, 2011 4:13 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; vap...@gentoo.org; marek.va...@gmail.com; Ajay Bhargav Subject: [PATCH v6 1/3] net: Adds Fast Ethernet Controller

Re: [U-Boot] [PATCH v7] dreamplug: initial board support.

2011-09-13 Thread Wolfgang Denk
Dear Prafulla, In message f766e4f80769bd478052fb6533fa745d1a11467...@sc-vexch4.marvell.com you wrote: Let's have Wolfgang's opinion on this, since this not aligned with current u-boot development strategy. May be we can create a separate header file for tracking (unsupported/tobe

Re: [U-Boot] [RFC PATCH v2 1/6] fdt: ARM: Add device tree control of U-Boot (CONFIG_OF_CONTROL)

2011-09-13 Thread Wolfgang Denk
Dear Simon Glass, In message capnjgz0fvam-dm0af_ziat9ekho+zet4hf_vx9aqsxalp0p...@mail.gmail.com you wrote: Oh OK, well that's actually quite good then. For one thing it means that the idea of init order is perhaps not so critical, since we actually want to remove most of this mandatory

Re: [U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-13 Thread Wolfram Sang
diff --git a/drivers/i2c/mxs_i2c.c b/drivers/i2c/mxs_i2c.c new file mode 100644 index 000..9f380a0 --- /dev/null +++ b/drivers/i2c/mxs_i2c.c @@ -0,0 +1,240 @@ +/* + * Freescale i.MX28 I2C Driver + * + * Copyright (C) 2011 Marek Vasut marek.va...@gmail.com + *

Re: [U-Boot] Bottleneck of NAND copy speed

2011-09-13 Thread Simon Schwarz
Dear Wolfgang, caches are on. Regards Simon On 09/12/2011 01:43 PM, Wolfgang Denk wrote: Dear Simon Schwarz, In message4e6deb26.4020...@gmail.com you wrote: ATM I'm working on a DMA transfer from NAND to RAM of the Linux-image in my SPL. ... Does anyone has an idea where the bottleneck

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Marek Vasut
On Tuesday, September 13, 2011 01:16:12 PM Michal Simek wrote: Dear Wolfgang Denk, In message 1315897821-23049-1-git-send-email-mon...@monstr.eu you wrote: here is the whole package with Microblaze and Xilinx driver changes. All patches are available in

Re: [U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-13 Thread Marek Vasut
On Tuesday, September 13, 2011 03:12:40 PM Wolfram Sang wrote: diff --git a/drivers/i2c/mxs_i2c.c b/drivers/i2c/mxs_i2c.c new file mode 100644 index 000..9f380a0 --- /dev/null +++ b/drivers/i2c/mxs_i2c.c @@ -0,0 +1,240 @@ +/* + * Freescale i.MX28 I2C Driver

Re: [U-Boot] [PATCH v6 3/3] Armada100: Enable 88E3015 PHY support for GplugD

2011-09-13 Thread Marek Vasut
On Tuesday, September 13, 2011 02:54:15 PM Prafulla Wadaskar wrote: -Original Message- From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com] Sent: Thursday, September 08, 2011 4:13 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; vap...@gentoo.org; marek.va...@gmail.com; Ajay

[U-Boot] Pull request u-boot-marvell.git

2011-09-13 Thread Prafulla Wadaskar
Hi Albert Please kindly pull The following changes since commit 07db205b5186ac9722a1f141d97c9a67c43c4ae1: Joe Hershberger (1): omap4_panda: Ignore omap4 SPL called MLO are available in the git repository at: u-boot-marvell.git next branch. Ajay Bhargav (3): net: Adds Fast

Re: [U-Boot] Bottleneck of NAND copy speed

2011-09-13 Thread Simon Schwarz
On 09/12/2011 02:55 PM, Nick Thompson wrote: On 12/09/11 12:21, Simon Schwarz wrote: Hi List, ATM I'm working on a DMA transfer from NAND to RAM of the Linux-image in my SPL. I’m searching for the speed bottleneck of the MT29F1G16ABBHC-ET NAND-Flash on the devkit8000 (OMAP3). From the

Re: [U-Boot] [STATUS] v2011.09-rc1 is out

2011-09-13 Thread Albert ARIBAUD
Le 11/09/2011 21:56, Wolfgang Denk a écrit : Hello everybody: * U-Boot v2011.96-rc1 was released on Sun, Sep 11, 2011 * Release v2011.09 is scheduled in 11 days - on September 22, 2011. Please help testing, and check if all your relevant patches have been included. Most of the ARM

Re: [U-Boot] [PATCH v6 3/3] Armada100: Enable 88E3015 PHY support for GplugD

2011-09-13 Thread Ajay Bhargav
- Marek Vasut marek.va...@gmail.com wrote: On Tuesday, September 13, 2011 02:54:15 PM Prafulla Wadaskar wrote: -Original Message- From: Ajay Bhargav [mailto:ajay.bhar...@einfochips.com] Sent: Thursday, September 08, 2011 4:13 PM To: Prafulla Wadaskar Cc:

Re: [U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-13 Thread Wolfram Sang
Oh I2C, not SPI. Sorry. Will add Based on line, cheers! Cool, thanks. -- Pengutronix e.K. | Wolfram Sang| Industrial Linux Solutions | http://www.pengutronix.de/ | signature.asc Description: Digital signature

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Michal Simek
Marek Vasut wrote: On Tuesday, September 13, 2011 01:16:12 PM Michal Simek wrote: Dear Wolfgang Denk, In message 1315897821-23049-1-git-send-email-mon...@monstr.eu you wrote: here is the whole package with Microblaze and Xilinx driver changes. All patches are available in

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Marek Vasut
On Tuesday, September 13, 2011 03:35:15 PM Michal Simek wrote: Marek Vasut wrote: On Tuesday, September 13, 2011 01:16:12 PM Michal Simek wrote: Dear Wolfgang Denk, In message 1315897821-23049-1-git-send-email-mon...@monstr.eu you wrote: here is the whole package with Microblaze and

Re: [U-Boot] [PATCH v7] dreamplug: initial board support.

2011-09-13 Thread Jason
On Tue, Sep 13, 2011 at 10:32:41AM +0300, Igor Grinberg wrote: On 09/12/11 14:45, Jason Cooper wrote: Copied wholeheartedly from board/Marvell/guruplug and modified to add support for SPI NOR flash. CONFIG_MACH_DREAMPLUG defined in include/configs/dreamplug.h until Linus's

Re: [U-Boot] [PATCH v2] OMAP3: Overo: Update GPMC timing for ethernet chip.

2011-09-13 Thread Philip Balister
On 09/11/2011 12:38 PM, Philip Balister wrote: I see I should have copied a maintainer on this patch. Which tree will this sort of path go upstream via? It seems like my choices are ARM of OMAP3. I've got a number of other patches that should go upstream that are Overo centric. In general,

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Wolfgang Denk
Dear Michal Simek, In message 4e6f5c13.3000...@monstr.eu you wrote: Please read: http://www.denx.de/wiki/view/U-Boot/Patches#Sending_updated_patch_versions What about patch resubmit or resend? Resending unchanged patches should be avoided, if possible. First, it just wastes bandwith and

Re: [U-Boot] [PATCH v2] serial: uartlite: Support for SERIAL_MULTI

2011-09-13 Thread Michal Simek
Michal Simek wrote: Add support for SERIAL MULTI for uartlite. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Use in/out_be32 functions --- common/serial.c | 14 drivers/serial/serial_xuartlite.c | 137 -

Re: [U-Boot] [PATCH v7] dreamplug: initial board support.

2011-09-13 Thread Jason
Albert, On Tue, Sep 13, 2011 at 03:00:59PM +0200, Wolfgang Denk wrote: Dear Prafulla, In message f766e4f80769bd478052fb6533fa745d1a11467...@sc-vexch4.marvell.com you wrote: Let's have Wolfgang's opinion on this, since this not aligned with current u-boot development strategy.

Re: [U-Boot] [RFC PATCH v2 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-09-13 Thread Jason
On Mon, Sep 12, 2011 at 05:12:37PM -0700, Simon Glass wrote: On Mon, Sep 12, 2011 at 4:37 PM, Jason u-b...@lakedaemon.net wrote: Do you have a git tree up that I could base off of?  git.chromium.org's version of u-boot doesn't seem to have your code... You probably need to look at a

Re: [U-Boot] Microblaze/Xilinx drivers changes

2011-09-13 Thread Michal Simek
Wolfgang Denk wrote: Dear Michal Simek, In message 4e6f5c13.3000...@monstr.eu you wrote: Please read: http://www.denx.de/wiki/view/U-Boot/Patches#Sending_updated_patch_versions What about patch resubmit or resend? Resending unchanged patches should be avoided, if possible. First, it

Re: [U-Boot] UBI problems on current u-boot

2011-09-13 Thread Holger Brunck
Hi Stefan On 09/13/2011 10:37 AM, Stefan Roese wrote: On Tuesday 13 September 2011 10:32:34 Holger Brunck wrote: But this patch is not easy to port onto u-boot because previously undergoing changes in the kernels ubi layer... Correct. UBI has undergone many changes since the integration

[U-Boot] RE

2011-09-13 Thread joseconsole
Your E-Mail ID Was Awarded 750,000.00 great british pounds In the British Premier Oil Plc Programmed Send: Name... Resident... Age... Tel... ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] U-boot mainline test report on BeagleBoard

2011-09-13 Thread Tom Rini
On Mon, Sep 12, 2011 at 7:29 PM, Joel A Fernandes agnel.j...@gmail.com wrote: [resending to list as it bounced] On Tue, Sep 6, 2011 at 10:24 PM, Fernandes, Joel A joelag...@ti.com wrote: Hi, Here are some problems I see currently with the today's mainline U-boot not seen with v2011.06 Just

Re: [U-Boot] U-boot mainline test report on BeagleBoard

2011-09-13 Thread Simon Glass
Hi, On Tue, Sep 13, 2011 at 8:57 AM, Tom Rini tom.r...@gmail.com wrote: On Mon, Sep 12, 2011 at 7:29 PM, Joel A Fernandes agnel.j...@gmail.com wrote: [resending to list as it bounced] On Tue, Sep 6, 2011 at 10:24 PM, Fernandes, Joel A joelag...@ti.com wrote: Hi, Here are some problems I

Re: [U-Boot] [PATCH 6/9] powerpc/mpc8548cds: Update config file

2011-09-13 Thread Tabi Timur-B04825
On Tue, Sep 13, 2011 at 2:15 AM, Zhao Chenhui chenhui.z...@freescale.com wrote: From: chenhui zhao chenhui.z...@freescale.com -Increase the size of malloc space. -Enable e1000 network card. -Change the location of env address. -Use hwconfig to turn off ECC. Please repost this patch with a

[U-Boot] da830evm build regression due to commit 11a6fb79745b06610b334bada7167e9e0b619851

2011-09-13 Thread Albert ARIBAUD
Hi all, Commit 11a6fb79745b06610b334bada7167e9e0b619851 (da830: modify the MEMTEST start and end address) in u-boot-arm (initially in u-boot-ti) causes a regression in building the da830evm board, by causing the following warning: cmd_mem.c: In function 'do_mem_mtest': cmd_mem.c:665: warning:

Re: [U-Boot] [PATCH 11/26] microblaze: Support CTRL+C when tftp is running

2011-09-13 Thread Mike Frysinger
On Tuesday, September 13, 2011 03:10:06 Michal Simek wrote: Signed-off-by: Michal Simek mon...@monstr.eu --- arch/microblaze/lib/board.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c index d97543b..5510c12

  1   2   >