Re: [U-Boot] [PATCH 8/9] SMDK5250: Enable eMMC booting

2012-12-26 Thread Amarendra Reddy
Hi Simon, Thanks for review comments. Please find my responses below. Thanks & Regards Amarendra On 27 December 2012 01:29, Simon Glass wrote: > Hi Amarendra, > > On Thu, Dec 20, 2012 at 5:53 AM, Amarendra Reddy > wrote: > > Hi SImon, > > > > Thanks for the review comments. > > Please find bel

[U-Boot] [PATCH 00/16 V2] SMDK5250: Add FDT support

2012-12-26 Thread Rajeshwari Shinde
This patch set adds FDT support to I2C, I2S, SPI drivers for SMDK5250. Separate patch sets for each driver are rebased on lastest u-boot-samsung. Following is the link for each driver patch set combined 1) I2C V4: "http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/148199"; 2) I2S V3: "http

[U-Boot] [PATCH 02/16 V2] EXYNOS5 : FDT: Add Aliases for I2C device

2012-12-26 Thread Rajeshwari Shinde
This patch adds aliases for I2C. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes since V1: - None board/samsung/dts/exynos5250-smdk5250.dts | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/board/samsung/dts/

[U-Boot] [PATCH 04/16 V2] EXYNOS5: FDT : Decode peripheral id

2012-12-26 Thread Rajeshwari Shinde
Api is added to decode peripheral id based on the interrupt number of the peripheral. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - Removed hardcoded numbers. arch/arm/cpu/armv7/exynos/pinmux.c| 29 + arch/arm/include/as

[U-Boot] [PATCH 05/16 V2] I2C: Driver changes for FDT support

2012-12-26 Thread Rajeshwari Shinde
Functions added to get the I2C bus number and reset I2C bus using FDT node. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes since V1: - Removed unnecessary blank lines and added wherever required. drivers/i2c/s3c24x0_i2c.c | 83

[U-Boot] [PATCH 07/16 V2] EXYNOS5: FDT: Add sound device node data

2012-12-26 Thread Rajeshwari Shinde
Add sound device node data for exynos Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None arch/arm/dts/exynos5250.dtsi |5 + doc/device-tree-bindings/exynos/sound.txt | 27 +++ 2 files changed, 32 insertions(

[U-Boot] [PATCH 01/16 V2] EXYNOS5: FDT: Add I2C device node data

2012-12-26 Thread Rajeshwari Shinde
Add I2C device node data for exynos Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None arch/arm/dts/exynos5250.dtsi | 64 ++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/exynos5250

[U-Boot] [PATCH 03/16 V2] FDT: Add compatible string for I2C

2012-12-26 Thread Rajeshwari Shinde
Add required compatible information for I2C driver. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes since V1: - None include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/

[U-Boot] [PATCH 08/16 V2] EXYNOS5: FDT: Add sound and codec device node

2012-12-26 Thread Rajeshwari Shinde
Adds sound and codec device node parameters Signed-off-by: R. Chandrasekar Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None board/samsung/dts/exynos5250-smdk5250.dts | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --g

[U-Boot] [PATCH 11/16 V2] Sound: WM8994: Add FDT support to codec

2012-12-26 Thread Rajeshwari Shinde
This patch adds FDT support to the codec. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - removed unnecesarry blank lines. drivers/sound/wm8994.c | 74 ++- drivers/sound/wm8994.h |6 +-- 2 files chang

[U-Boot] [PATCH 06/16 V2] SMDK5250: Initialise I2C using FDT

2012-12-26 Thread Rajeshwari Shinde
This patch initialises I2C using FDT. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes since V1: - None board/samsung/smdk5250/smdk5250.c | 20 +--- 1 files changed, 1 insertions(+), 19 deletions(-) diff --git a/board/samsun

[U-Boot] [PATCH 09/16 V2] EXYNOS5: FDT: Add compatible strings for sound

2012-12-26 Thread Rajeshwari Shinde
Add required compatible information for sound driver. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None include/fdtdec.h |2 ++ lib/fdtdec.c |2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/fdtdec.h b/include/fdt

[U-Boot] [PATCH 14/16 V2] EXYNOS5 : FDT: Add Aliases for SPI device

2012-12-26 Thread Rajeshwari Shinde
This patch adds aliases for SPI. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None board/samsung/dts/exynos5250-smdk5250.dts |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/board/samsung/dts/exynos5250-smdk5250.dts b/board/

[U-Boot] [PATCH 10/16 V2] Sound: Add FDT support to driver

2012-12-26 Thread Rajeshwari Shinde
This patch adds FDT support to the sound driver. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None drivers/sound/sound.c | 173 + include/sound.h |4 +- 2 files changed, 105 insertions(+), 72 de

[U-Boot] [PATCH 15/16 V2] EXYNOS5: FDT: Add SPI device node data

2012-12-26 Thread Rajeshwari Shinde
Add SPI device node data for exynos. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None arch/arm/dts/exynos5250.dtsi| 41 +++ doc/device-tree-bindings/exynos/isp-spi.txt | 22 ++ 2 files changed, 63

[U-Boot] [PATCH 12/16 V2] Sound: Add FDT support to CMD.

2012-12-26 Thread Rajeshwari Shinde
This patch adds FDT support to sound init in CMD. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None common/cmd_sound.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_sound.c b/common/cmd_sound.c index 459d1eb..cfca9

[U-Boot] [PATCH 13/16 V2] EXYNOS5: FDT: Add compatible strings for SPI

2012-12-26 Thread Rajeshwari Shinde
Add required compatible information for SPI driver. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - None include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/fdtdec.h b/include/fdtdec.

[U-Boot] [PATCH 16/16 V2] SPI: EXYNOS: Add FDT support to driver.

2012-12-26 Thread Rajeshwari Shinde
This patch adds FDT support to the SPI driver. Signed-off-by: Simon Glass Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes since V1: - Corrected compilation error for non DT and removed extra blank line. drivers/spi/exynos_spi.c | 96

Re: [U-Boot] [PATCH] EXYNOS5: Add L2 Cache Support.

2012-12-26 Thread Rajeshwari Birje
Hi Minkyu Kang, Please do let me know if any comments regarding this patch. Regards, Rajeshwari Shinde. On Sun, Dec 9, 2012 at 1:08 AM, Simon Glass wrote: > On Thu, Nov 29, 2012 at 10:29 PM, Rajeshwari Shinde > wrote: > > This patch set adds L2 Cache Support to EXYNOS. > > > > Signed-off-by:

[U-Boot] powerpc/mpc8315erdb : Integration of customized source code to u-boot

2012-12-26 Thread Krishna Mohan Chagaleti
Hi, I have been trying to test and integrate my customized binary on u-boot. I tried the procedure of executing the example demo application (hello_world.bin) by downloading binary using tftp and executing it. But, it didn't help though. I wanted to know if there is any procedure to integrate my

Re: [U-Boot] [PULL] u-boot-usb/master

2012-12-26 Thread Lukasz Majewski
Hi Stefan, > I wonder where you actually got such an old version of dfu-util. I use the stable debian repository: http://ftp.se.debian.org stable And it is still there (version: dfu-util version 0.1+svnexported) > We > work together with packagers to get new versions in all recent > distros. M

<    1   2