Re: [U-Boot] NAND ECC Error with wrong SMC ording bug

2009-08-20 Thread Sean MacLennan
On Thu, 20 Aug 2009 07:01:21 +0200 Stefan Roese s...@denx.de wrote: On Thursday 20 August 2009 06:38:51 Sean MacLennan wrote: I see other boards using SMC as well, can someone comment on the change I am proposing. Should I change the correction algorithm or the calculate function? If

Re: [U-Boot] [PATCH v3] Adding support for DevKit8000

2009-08-20 Thread Jean-Christophe PLAGNIOL-VILLARD
On 20:37 Thu 20 Aug , Frederik Kriewitz wrote: On Thu, Aug 20, 2009 at 7:28 PM, Dirk Behmedirk.be...@googlemail.com wrote: Peter Tyser wrote: Hi Frederik, I had some minor aesthetic nitpicks.  I'd change the title to Add support for the DevKit8000 board. I'll fix them  

Re: [U-Boot] Weird issues with u-boot on Microblaze

2009-08-20 Thread Michal Simek
Dana Goyette wrote: Michal Simek wrote: Hi, FIT support is not in mainline u-boot. Only in my testing repository. If I fix that and try to load a FIT image with a kernel and device-tree, the bootm command completely ignores the device tree; unfortunately, Yes the same thing as with

[U-Boot] [PATCH 5/7] microblaze: Short size of global data and fix malloc size

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu If is full malloc area global, data are rewrite because there was bad size of malloc area. Signed-off-by: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek michal.si...@petalogix.com --- include/configs/microblaze-generic.h |4 ++-- 1 files

[U-Boot] [PATCH 1/7] qemu-mips: Fix Qemu website

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek michal.si...@petalogix.com --- board/qemu-mips/README |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/qemu-mips/README b/board/qemu-mips/README index

[U-Boot] [PATCH 2/7] net: Add LL TEMAC driver to u-boot and move Emaclite to NET_MULTI

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu Here are two major changes which should go together. First is adding LL Temac driver to u-boot and the second is changing Emaclite to NET_MULTI api. There are some changes for proper initialization too. Signed-off-by: Michal Simek mon...@monstr.eu

[U-Boot] [PATCH 3/7] microblaze: Enable hush parser

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu With Hush parser is possible to change command line in dtb Signed-off-by: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek michal.si...@petalogix.com --- include/configs/microblaze-generic.h |6 ++ 1 files changed, 6 insertions(+), 0

[U-Boot] [PATCH 4/7] microblaze: Add sbss, scommon and COMMON symbols for clearing

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek michal.si...@petalogix.com --- board/xilinx/microblaze-generic/u-boot.lds |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 7/7] microblaze: Remove AtmarkTechno Suzaku board

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu Users should use microblaze-generic platform. This platform is longer not supported. Signed-off-by: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek michal.si...@petalogix.com --- MAINTAINERS |4 - MAKEALL

[U-Boot] Microblaze update repository

2009-08-20 Thread monstr
Hi All, here are some changes related to Microblaze. The important one is for Ben - adding Xilinx LL_TEMAC driver and changing Emaclite to NET_MULTI interface + changes in microblaze code to support it. And I decided to remove old Xilinx EMAC driver. It is old driver for old IP and none use

[U-Boot] [PATCH 6/7] net: Remove old Xilinx Emac driver

2009-08-20 Thread monstr
From: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek mon...@monstr.eu Signed-off-by: Michal Simek michal.si...@petalogix.com --- drivers/net/Makefile |1 - drivers/net/xilinx_emac.c| 464 --

[U-Boot] BDI initialization for MPC8572

2009-08-20 Thread Vadim B.
guys, I am trying to set up a BDI2000 probe to control an MPC8572 based board (MPC8572DS from freescale to be exact). ftp://78.31.64.234/bdigdb/config/powerpc/mpc85xx/ has a config version for this CPU, but it does pretty much nothing. For some reason the instructions put into the CFG file do

[U-Boot] [PATCH] e500: improve MPIC initialization

2009-08-20 Thread Timur Tabi
The MPIC initialization code for Freescale e500 CPUs was not using I/O accessors, and it was not issuing a read-back to the MPIC after setting mixed mode. This may be the cause of a spurious interrupt on some systems. Signed-off-by: Timur Tabi ti...@freescale.com --- cpu/mpc85xx/interrupts.c |

Re: [U-Boot] NAND ECC Error with wrong SMC ording bug

2009-08-20 Thread Victor Gallardo
Hi Sean, The change is necessary in both Linux and u-boot. Without this change customer are seeing the problem. Best Regards, Victor Gallardo -Original Message- From: linuxppc-dev-bounces+vgallardo=amcc@lists.ozlabs.org [mailto:linuxppc-dev-

Re: [U-Boot] [PATCH] e500: improve MPIC initialization

2009-08-20 Thread Timur Tabi
On Thu, Aug 20, 2009 at 5:41 PM, Timur Tabiti...@freescale.com wrote: The MPIC initialization code for Freescale e500 CPUs was not using I/O accessors, and it was not issuing a read-back to the MPIC after setting mixed mode.  This may be the cause of a spurious interrupt on some systems.

Re: [U-Boot] [PATCH 2/7] net: Add LL TEMAC driver to u-boot and move Emaclite to NET_MULTI

2009-08-20 Thread Ben Warren
mon...@monstr.eu wrote: From: Michal Simek mon...@monstr.eu Here are two major changes which should go together. First is adding LL Temac driver to u-boot and the second is changing Emaclite to NET_MULTI api. There are some changes for proper initialization too. Signed-off-by: Michal

Re: [U-Boot] NAND ECC Error with wrong SMC ording bug

2009-08-20 Thread Feng Kan
Hi Stefan: We had a board with high number of correctable ECC errors. Which crashed the jffs when it was miss correcting the wrong byte location. Do you want me to submit a patch for this, or do you prefer to do it. I am submitting a patch for linux right now. Feng Kan AMCC Software On

[U-Boot] [PATCH 2/2] ppc/85xx: Added PCIe support for P1 P2 RDB

2009-08-20 Thread Poonam Aggrwal
* Added PCIe support for P1 P2 RDB * Calls the fsl_pci_init_port function to initialize all the PCIe ports on the board. Signed-off-by: Poonam Aggrwal poonam.aggr...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- - applies on git.denx.de/u-boot-mpc85xx.git branch-next -

[U-Boot] [PATCH 1/2] driver/fsl_pci: Added fsl_pci_init_port function to initialize a single PCIe port.

2009-08-20 Thread Poonam Aggrwal
* Added a generic function fsl_pci_init_port in drivers/pci/fsl_pci.c to initialize a PCIe port. * fsl_pci_init_port can be called from board specific pcie initialization routine, per-port. * This will reduce the code redundancy in the most of the Freescale board specific PCIe inits.

[U-Boot] [PATCH v3][Net] Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API

2009-08-20 Thread Ben Warren
All in-tree boards that use this controller have CONFIG_NET_MULTI added Also: - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900 - changed CS8900_BASE to CONFIG_CS8900_BASE - changed CS8900_BUS?? to CONFIG_CS8900_BUS?? - cleaned up line lengths - modified VCMA9 command function that

Re: [U-Boot] [PATCH 1/3]: arm:kirkwood Define kirkwood phy address magic number

2009-08-20 Thread Prafulla Wadaskar
-Original Message- From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] Sent: Thursday, August 20, 2009 5:17 PM To: Prafulla Wadaskar Cc: U-Boot ML; Ashish Karkare; Prabhanjan Sarnaik Subject: Re: [U-Boot] [PATCH 1/3]: arm:kirkwood Define kirkwood phy address magic

[U-Boot] [PATCH v2] 85xx: Added single core members of FSL P1xx/P2xx processors series

2009-08-20 Thread Kumar Gala
From: Poonam Aggrwal poonam.aggr...@freescale.com P1011 - Single core variant of P1020 P2010 - Single core variant of P2020 Signed-off-by: Poonam Aggrwal poonam.aggr...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- * Updated to keep things sorted. In MAKEALL we keep like

[U-Boot] [PATCH v3] 85xx: Added single core members of FSL P1xx/P2xx processors series

2009-08-20 Thread Kumar Gala
From: Poonam Aggrwal poonam.aggr...@freescale.com P1011 - Single core variant of P1020 P2010 - Single core variant of P2020 Signed-off-by: Poonam Aggrwal poonam.aggr...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- * Somehow I merged commits w/the addition of the RDB

Re: [U-Boot] NAND ECC Error with wrong SMC ording bug

2009-08-20 Thread vimal singh
snip With the current ndfc code, the error correction gets the bits wrong. Switching it back to the original way and the correction is correct. diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c index 89bf85a..497e175 100644 --- a/drivers/mtd/nand/ndfc.c +++

Re: [U-Boot] [PATCH] e500: improve MPIC initialization

2009-08-20 Thread Kumar Gala
On Aug 20, 2009, at 5:41 PM, Timur Tabi wrote: The MPIC initialization code for Freescale e500 CPUs was not using I/O accessors, and it was not issuing a read-back to the MPIC after setting mixed mode. This may be the cause of a spurious interrupt on some systems. Signed-off-by: Timur

<    1   2