Re: [U-Boot] [PATCH V3 3/3] Add support for the LaCie ED Mini V2 board

2009-12-23 Thread Prafulla Wadaskar
Hi Albert First of all I am very sorry for the late feedback Pls find my comments in lined. -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud Sent: Wednesday, December 02, 2009 1:57 AM To: u-boot@lists.denx.de

Re: [U-Boot] [PATCH V3 1/3] Initial support for Marvell Orion5x SoC

2009-12-23 Thread Prafulla Wadaskar
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud Sent: Wednesday, December 02, 2009 1:57 AM To: u-boot@lists.denx.de Subject: [U-Boot] [PATCH V3 1/3] Initial support for Marvell Orion5x SoC This patch adds

Re: [U-Boot] about ram test in u-boot

2009-12-23 Thread Wolfgang Denk
Dear IaMaPlAyEr, In message 2ae8403e0912221835s575a3e31m7578652a6d1e7...@mail.gmail.com you wrote: After I read the datasheet of original chip, I found the parameter tRCD is wrong! In code, tRCD is set to 10ns, but in datasheet, the minimal tRCD is 15ns. ... Could somebody give me some

Re: [U-Boot] [PATCH] bdinfo: Don't print IP or MAC addresses on boards without network support

2009-12-23 Thread Wolfgang Denk
Dear Stefan Roese, In message 1261547803-11526-1-git-send-email...@denx.de you wrote: Signed-off-by: Stefan Roese s...@denx.de --- common/cmd_bdinfo.c |8 1 files changed, 8 insertions(+), 0 deletions(-) I don't consider this a good idea. Please keep in mind that the bdinfo

[U-Boot] [PATCH 0/2] omap3: Remove extern declarations from headers

2009-12-23 Thread Sanjeev Premi
All configurations based on OMAP3 contained extern declarations. This set contains two patches that move these declarations and fix the side-effects of the move. Sanjeev Premi (2): omap3: Remove externs from config files omap3: Remove multiple extern decls for gpmc_cfg board/ti/evm/evm.c

[U-Boot] [PATCH 1/2] omap3: Remove externs from config files

2009-12-23 Thread Sanjeev Premi
All configurations based on OMAP3 define flash related variables as externs. This patch moves all extern declarations to a header file and includes this header into each configuration. Signed-off-by: Sanjeev Premi pr...@ti.com --- include/asm-arm/arch-omap3/omap3_flash.h | 34

[U-Boot] [PATCH 0/3] AM35x: Add support for AM3517EVM

2009-12-23 Thread Vaibhav Hiremath
From: Sanjeev Premi pr...@ti.com This patch-set adds support for the AM3517EVM based on the AM35x processor from Texas Instruments. This required following changes: - Consolidating all SDRC related code in one file. - Adding support for EMIF4 interface - Basic code for supporting AM3517EVM

[U-Boot] [PATCH 3/3] AM35x: Add support for EMIF4

2009-12-23 Thread Vaibhav Hiremath
This patch adds support for the EMIF4 interface available in the AM35x processors. Signed-off-by: Sanjeev Premi pr...@ti.com --- cpu/arm_cortexa8/omap3/Makefile|3 + cpu/arm_cortexa8/omap3/emif4.c | 161 include/asm-arm/arch-omap3/cpu.h

[U-Boot] [PATCH 1/3] omap3: Consolidate SDRC related operations

2009-12-23 Thread Vaibhav Hiremath
Consolidated SDRC related functions into one file - sdrc.c. Signed-off-by: Sanjeev Premi pr...@ti.com --- cpu/arm_cortexa8/omap3/Makefile|3 + cpu/arm_cortexa8/omap3/board.c | 34 +-- cpu/arm_cortexa8/omap3/mem.c | 70 -

[U-Boot] [PATCH 2/3] AM35x: Add support for AM3517EVM

2009-12-23 Thread Vaibhav Hiremath
This patch adds basic support for the AM3517EVM. It includes: - Header and implementation for the board - Default configuration - Updates for makefile - Board specific changes for NAND Signed-off-by: Vaibhav Hiremath hvaib...@ti.com Signed-off-by: Sanjeev Premi pr...@ti.com --- Makefile

[U-Boot] [PATCH] omap3: beagle: fix compile error

2009-12-23 Thread Sanjeev Premi
The configuration for beagle undefs CONFIG_CMD_NET. This leads to following error: lib_arm/libarm.a(board.o): In function `start_armboot': /home/premi/u-boot/lib_arm/board.c:360: undefined reference to `getenv_IPaddr' make: *** [u-boot] Error 1 This patch fixes the error by including offending

Re: [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC

2009-12-23 Thread Prafulla Wadaskar
-Original Message- From: Prafulla Wadaskar Sent: Wednesday, December 23, 2009 11:32 AM To: 'Wolfgang Denk'; Albert ARIBAUD Cc: U-Boot@lists.denx.de Subject: RE: [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC -Original Message- From: Wolfgang

[U-Boot] Question on usage of #define in mpc83xx.h

2009-12-23 Thread Bill Cook
I have a board based on the Freescale MPC8313ERDB configuration. I was having a problem with the output of the USBDR_DRIVE_VBUS pin (we have flakey power on USB devices). I traced this to an incorrect configuration of the SICRL register. The definition in mpc83xx.h for SICRL_USBDR is 0x0C00

[U-Boot] [PATCH] Kirkwood: Updated licencing to GPLv2 or later

2009-12-23 Thread Prafulla Wadaskar
These are few files directly imported from Linux kernel source. These files contains source with GPLv2 only whereas u-boot expects GPLv2 or latter These files are updated for the same with prior permission from original writer Acked-by: Nicolas Pitre n...@marvell.com Signed-off-by: Prafulla

[U-Boot] [PATCH] Kirkwood: Makefile cleanup- fixed ordering (cosmetic change)

2009-12-23 Thread Prafulla Wadaskar
As per coding guidlines, it is good to maintain proper ordering in the makefiles. This was missed during initial coding, corrected here. This was discovered during orion5x code review Thanks to Albert Aribaud for this. Signed-off-by: Prafulla Wadaskar prafu...@marvell.com ---

Re: [U-Boot] Question on usage of #define in mpc83xx.h

2009-12-23 Thread Ron Madrid
--- On Wed, 12/23/09, Bill Cook c...@isgchips.com wrote: of the SICRL register. The definition in mpc83xx.h for SICRL_USBDR is 0x0C00 which seems to be a mask telling which bits control that pin. However, when used in MPC8313ERDB.h and SIMPC8313.h board configurations (and hence my

[U-Boot] [PATCH 0/3] ARM: Add support for EDB93XX boards [rev2]

2009-12-23 Thread Matthias Kaehlcke
Second revision of the patch set for EDB93XX boards --- Changes: * have different patches for CPU, network driver and boards * reimplemented most of assembly code in C * use structures for register maps instead of constants * use MACH_TYPE instead of hard coded values * set

[U-Boot] [PATCH 1/3] ARM: Add support for EP93XX SoCs

2009-12-23 Thread Matthias Kaehlcke
Add support for the Cirrus EP93XX platform Signed-off-by: Matthias Kaehlcke matth...@kaehlcke.net --- cpu/arm920t/ep93xx/Makefile | 56 cpu/arm920t/ep93xx/cpu.c | 51 +++ cpu/arm920t/ep93xx/led.c | 63 cpu/arm920t/ep93xx/led.h | 26

[U-Boot] [PATCH 2/3] Add EP93XX ethernet driver

2009-12-23 Thread Matthias Kaehlcke
Added ethernet driver for EP93XX SoCs Signed-off-by: Matthias Kaehlcke matth...@kaehlcke.net --- drivers/net/Makefile |1 + drivers/net/ep93xx.c | 677 ++ drivers/net/ep93xx.h | 153 include/common.h | 10 +- 4 files

[U-Boot] [PATCH 3/3] Add support for EDB93XX boards

2009-12-23 Thread Matthias Kaehlcke
Added support for the following EDB93XX boards: EDB9301 EDB9302 EDB9302A EDB9307 EDB9307A EDB93012 EDB9315 EDB9315A Signed-off-by: Matthias Kaehlcke matth...@kaehlcke.net --- MAINTAINERS | 10 ++ MAKEALL |8 ++ Makefile | 10 ++

Re: [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC

2009-12-23 Thread Albert ARIBAUD
Prafulla Wadaskar a écrit : I got a GREEN flag from respective owners, we can update these files for GPL v2, I will send the patch soon. Hi Albert, you also take care of the same in your patches Regards.. Prafulla . . Thanks Prafulla. I'll send out a V4 (yes...) patch set with these fixes

[U-Boot] eSDHC driver on mxc

2009-12-23 Thread alfred steele
Hi all, I have basically adapted the linux esdhc driver for the mx35 for uboot. I am using the mmc_init routine in fsl_esdhc driver for the initialization sequence including the IDentification cycle for the card. The issue is that i have a particular card from vendor Kingston which works rock

Re: [U-Boot] [PATCH] TI DaVinci: Driver for the davinci SPI controller

2009-12-23 Thread Mike Frysinger
On Wednesday 23 December 2009 02:44:36 Sudhakar Rajashekhara wrote: --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -34,6 +34,7 @@ COBJS-$(CONFIG_MPC52XX_SPI) += mpc52xx_spi.o COBJS-$(CONFIG_MPC8XXX_SPI) += mpc8xxx_spi.o COBJS-$(CONFIG_MXC_SPI) += mxc_spi.o

[U-Boot] [PATCH] ARM: Fix building without CONFIG_CMD_NET

2009-12-23 Thread Marcel Ziswiler
Delta and Zylonite both do not define CONFIG_CMD_NET by default and therefore failed building: lib_arm/libarm.a(board.o): In function `start_armboot': /home/sumo/Noser/Linux/u-boot.git/lib_arm/board.c:360: undefined reference to `getenv_IPaddr' make: *** [u-boot] Error 1 Saw that this got

[U-Boot] [PATCH] AVR32, i386, m68k, MIPS, NIOS, NIOS2 and SPARC: Fix building without CONFIG_CMD_NET

2009-12-23 Thread Marcel Ziswiler
Saw that this got already fixed for ppc. Duno why nobody considered the other archs as well! Signed-off-by: Marcel Ziswiler marcel.ziswi...@noser.com --- lib_avr32/board.c |2 ++ lib_i386/board.c |2 ++ lib_m68k/board.c |2 ++ lib_mips/board.c |2 ++ lib_nios/board.c |2

Re: [U-Boot] [PATCH] TI DaVinci: Driver for the davinci SPI controller

2009-12-23 Thread Sudhakar Rajashekhara
Hi, On Thu, Dec 24, 2009 at 07:04:18, Mike Frysinger wrote: On Wednesday 23 December 2009 02:44:36 Sudhakar Rajashekhara wrote: --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -34,6 +34,7 @@ COBJS-$(CONFIG_MPC52XX_SPI) += mpc52xx_spi.o COBJS-$(CONFIG_MPC8XXX_SPI) +=

[U-Boot] [PATCH 0/3] Monahan/PXA3xx: integrate Linux NAND controller driver

2009-12-23 Thread Marcel Ziswiler
From: Marcel Ziswiler marcel.ziswi...@noser.com This patch-set integrates the PXA3xx Linux NAND controller driver and adapts the two Monahan/PXA3xx boards delta and zylonite accordingly. Marcel Ziswiler (3): Monahan/PXA3xx: integrate Linux NAND controller driver delta: use new generic NAND

[U-Boot] [PATCH 2/3] delta: use new generic NAND controller driver

2009-12-23 Thread Marcel Ziswiler
This patch adapts the Monahan/PXA3xx board delta to use the new generic NAND controller driver. Signed-off-by: Marcel Ziswiler marcel.ziswi...@noser.com --- board/delta/Makefile|2 +- board/delta/delta.c | 50 + board/delta/nand.c | 554

[U-Boot] [PATCH 3/3] zylonite: use new generic NAND controller driver

2009-12-23 Thread Marcel Ziswiler
This patch adapts the Monahan/PXA3xx board zylonite to use the new generic NAND controller driver. Signed-off-by: Marcel Ziswiler marcel.ziswi...@noser.com --- board/zylonite/Makefile|2 +- board/zylonite/nand.c | 558

Re: [U-Boot] [PATCH] omap3: beagle: fix compile error

2009-12-23 Thread Dirk Behme
On 23.12.2009 15:54, Sanjeev Premi wrote: The configuration for beagle undefs CONFIG_CMD_NET. This leads to following error: lib_arm/libarm.a(board.o): In function `start_armboot': /home/premi/u-boot/lib_arm/board.c:360: undefined reference to `getenv_IPaddr' make: *** [u-boot] Error 1

[U-Boot] Broken OMAP3 EVM and SMDKC100

2009-12-23 Thread Dirk Behme
Doing ./MAKEALL ARM_CORTEX_A8 with recent mainline head, omap3_evm and smdkc100 fail with env_onenand.c: In function 'env_relocate_spec': env_onenand.c:70: error: 'CONFIG_ENV_ADDR_FLEX' undeclared (first use in this function) env_onenand.c:70: error: (Each undeclared identifier is reported

Re: [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC

2009-12-23 Thread Albert ARIBAUD
Albert ARIBAUD a écrit : Prafulla Wadaskar a écrit : I got a GREEN flag from respective owners, we can update these files for GPL v2, I will send the patch soon. Hi Albert, you also take care of the same in your patches Regards.. Prafulla . . Thanks Prafulla. I'll send out a V4