Re: [U-Boot] [PATCH v5 10/12] arm: goni: dfu: Add support for DFU to Goni target

2014-05-15 Thread Minkyu Kang
On 29/04/14 04:13, Mateusz Zalega wrote: > Proper adjustment for supporting DFU at GONI target has been made. > The s5p_goni.h file has been updated. Moreover the code for low level > USB initialization has been added to GONI board code. > > The malloc pool has been enlarged in order to support la

Re: [U-Boot] [PATCH v5 09/12] arm: goni: Update configuration for Goni target

2014-05-15 Thread Minkyu Kang
On 29/04/14 04:13, Mateusz Zalega wrote: > Configuration file for GONI has been updated to support FAT file system, > new mmc partitioning scheme and read linux kernel from eMMC instead of > OneNAND. > > Signed-off-by: Arkadiusz Wlodarczyk > Signed-off-by: Kyungmin Park > Signed-off-by: Mateusz

Re: [U-Boot] [PATCH v5 11/12] arm: goni: enable GPT command

2014-05-15 Thread Minkyu Kang
On 29/04/14 04:13, Mateusz Zalega wrote: > Signed-off-by: Mateusz Zalega > Cc: Minkyu Kang > --- > Changes since v1: > - reordered > --- > include/configs/s5p_goni.h | 5 + > 1 file changed, 5 insertions(+) > applied to u-boot-samsung. Thanks, Minkyu Kang. __

Re: [U-Boot] [PATCH v5 12/12] arm: goni: enable USB Mass Storage

2014-05-15 Thread Minkyu Kang
On 29/04/14 04:13, Mateusz Zalega wrote: > UMS-related defines were added to Samsung Goni config header. > > Signed-off-by: Mateusz Zalega > Cc: Minkyu Kang > --- > Changes since v1: > - reordered > --- > include/configs/s5p_goni.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/inc

Re: [U-Boot] [PATCHv5 00/14] mmc: exynos: code cleanup and support DDR mode

2014-05-15 Thread Minkyu Kang
On 16/05/14 13:59, Jaehoon Chung wrote: > If card and host are supported DDR mode, then it can be used the DDR mode. > This patch-set has dependency about beomho's patch-set. > (Based-on u-boot-samsung repository) > > It's result for loading image. > > sdhci controller ->5260488 bytes read in 259

Re: [U-Boot] [PATCH] ARM: exynos5420: removed undefined gpio structure

2014-05-15 Thread Minkyu Kang
On 14/05/14 19:44, Jaehoon Chung wrote: > It's removed the exynos5_gpio_part1. > > Signed-off-by: Jaehoon Chung > --- > board/samsung/smdk5420/smdk5420.c |3 --- > 1 file changed, 3 deletions(-) > > diff --git a/board/samsung/smdk5420/smdk5420.c > b/board/samsung/smdk5420/smdk5420.c > inde

[U-Boot] [PATCH v2] examples: select libgcc for non-default architecture

2014-05-15 Thread Alexey Brodkin
In case of multilib-enabled toolchains if default architecture differ from the one examples are being built for linker will fail to link example object files with libgcc of another (non-compatible) architecture. Interesting enough for years in main Makefile we used CFLAGS/c_flags for this but not

Re: [U-Boot] [PATCH] spl: consolidate arch/arm/include/asm/arch-*/spl.h

2014-05-15 Thread Masahiro Yamada
Hi Tim, Tom, > > Tom / Masahiro, > > Any update on this? This is a very useful cleanup and there is at > least one pending patch series that depend on it. No update from me. Version 2 is the latest one. http://patchwork.ozlabs.org/patch/341817/ I am also waiting for the review. Best Regards

Re: [U-Boot] [PATCH] spl: consolidate arch/arm/include/asm/arch-*/spl.h

2014-05-15 Thread Tim Harvey
On Mon, Apr 28, 2014 at 1:16 AM, Masahiro Yamada wrote: > > Hi Tom, > > On Fri, 25 Apr 2014 14:52:06 -0400 > Tom Rini wrote: > > > On Wed, Apr 16, 2014 at 03:44:36PM +0900, Masahiro Yamada wrote: > > > > > arch/arm/include/asm/spl.h requires all SoCs to have > > > arch/arm/include/asm/arch-*/spl.

Re: [U-Boot] [PATCH v3] dfu: Introduction of the "dfu_hash_algo" env variable for checksum method setting

2014-05-15 Thread Lukasz Majewski
Hi Wolfgang, > Dear Lukasz, > > In message <20140515154334.626923b4@amdc2363> you wrote: > > > > > This reinforces my speculation that you are actually addressing > > > the wrong problem. Instead of adding new code and environment > > > variables and making the system even more complex, we shou

[U-Boot] [AVR32] CONFIG_SYS_TEXT_BASE is missing from atngw100mkii board

2014-05-15 Thread Masahiro Yamada
Hi Andreass, I noticed by chance atngw100mkii board does not define CONFIG_SYS_TEXT_BASE, although the other AVR32 boards define it. Is this your intention, or mistake? This is what I did: $ git branch * master $ git describe v2014.07-rc1-79-g2072e72 $ make mrproper $ make atngw100mkii_c

[U-Boot] [PATCHv5 08/14] mmc: remove the unnecessary define and fix the wrong bit control

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Reviewed-by: Lukasz Majeski Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/mmc.c |2 +- include/mmc.h | 18 ++ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c inde

[U-Boot] [PATCHv5 14/14] mmc: s5p_sdhci: add the s5p_sdhci_core_init function

2014-05-15 Thread Jaehoon Chung
To reuse the code, added the s5p_sdhci_core_init function. Before applied this patch, didn't use the 8-bit mode at exynos baord. Because it didn't set "MMC_MODE_8BIT". Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/s5p_sdhci.c | 42 +

[U-Boot] [PATCHv5 09/14] mmc: support the DDR mode for eMMC

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/mmc.c | 16 +--- include/mmc.h |7 +++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index dd6a6ef..08187d5 100644

[U-Boot] [PATCHv5 06/14] ARM: dts: exynos: rename from EXYNOS5_DWMMC to EXYNOS_DWMMC

2014-05-15 Thread Jaehoon Chung
Exynos serise can be supported the dw-mmc controller. So, it's good that used the general prefix as "_EXYNOS_DWMMC". Signed-off-by: Jaehoon Chung --- arch/arm/dts/exynos5.dtsi |8 doc/device-tree-bindings/exynos/dwmmc.txt |8 include/fdtdec.h

[U-Boot] [PATCHv5 10/14] mmc: dw_mmc: support the DDR mode

2014-05-15 Thread Jaehoon Chung
Support the DDR mode at dw-mmc controller Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/dw_mmc.c | 12 ++-- include/dwmmc.h |3 +++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/dw_mmc.c b/driv

[U-Boot] [PATCHv5 12/14] mmc: exynos_dw_mmc: enable the DDR mode

2014-05-15 Thread Jaehoon Chung
Set the ddr mode capability by default. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/exynos_dw_mmc.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c index 28941ad..d96dfe1 1006

[U-Boot] [PATCHv5 11/14] ARM: dts: exnyos: enable dw-mmc controller

2014-05-15 Thread Jaehoon Chung
Enabled the dw-mmc controller. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- arch/arm/dts/exynos4412-trats2.dts |6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/exynos4412-trats2.dts b/arch/arm/dts/exynos4412-trat

[U-Boot] [PATCHv5 01/14] arm: exynos: pinmux: add sdmmc4 gpio configratuion

2014-05-15 Thread Jaehoon Chung
From: Beomho Seo For use dwmmc controller at exynos4, add SDMMC4 gpio configuration. Signed-off-by: Beomho Seo Signed-off-by: Jaehoon Chung Tested-by: Piotr Wilczek Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Minkyu Kang --- arch/arm/cpu/armv7/exynos/pinmux.c | 35

[U-Boot] [PATCHv5 04/14] ARM: exynos: board: change the mmc/sd init sequence

2014-05-15 Thread Jaehoon Chung
Exynos4 can be used the dwmmc controller for eMMC. Then it needs to check dwmmc_init() at first. Signed-off-by: Jaehoon Chung Reviewed-by: Lukasz Majewski Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- board/samsung/common/board.c | 13 ++--- 1 file changed, 6 insertions(+

[U-Boot] [PATCHv5 13/14] ARM: exynos4: enable the dwmmc configuration

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- include/configs/exynos4-dt.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/exynos4-dt.h b/include/configs/exynos4-dt.h index cbd2d20..0c560ae 100644 --- a/include/configs/exynos4-dt

[U-Boot] [PATCHv5 02/14] arm: exynos: clock: Remove exynos4x12_set_mmc_clk function

2014-05-15 Thread Jaehoon Chung
From: Beomho Seo exynos4x12_set_mmc_clk function have been removed. Because, exynos4x12_clock and exynos4_clock return same div_fsys* value. Signed-off-by: Beomho Seo Signed-off-by: Jaehoon Chung Tested-by: Piotr Wilczek Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Minkyu Kang --- arch/arm/c

[U-Boot] [PATCHv5 07/14] mmc: exynos_dw_mmc: restore the property into host

2014-05-15 Thread Jaehoon Chung
Restore the platdata(property of dt) into host struct. Then data's information is maintained and reused anywhere. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/exynos_dw_mmc.c | 204 +++ include/dwmmc.

[U-Boot] [PATCHv5 05/14] ARM: exynos: clock: modify the set_mmc_clk for exynos4

2014-05-15 Thread Jaehoon Chung
Modified the mmc_set_clock for eynos4. The goal of this patch is that fsys-div register should be reset. And retore the div-value, not using the value of lowlevel_init. (For using SDMMC4, this patch is needs) Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski ---

[U-Boot] [PATCHv5 00/14] mmc: exynos: code cleanup and support DDR mode

2014-05-15 Thread Jaehoon Chung
If card and host are supported DDR mode, then it can be used the DDR mode. This patch-set has dependency about beomho's patch-set. (Based-on u-boot-samsung repository) It's result for loading image. sdhci controller ->5260488 bytes read in 259 ms (19.4 MiB/s) dwmmc controller without DDR mode ->

[U-Boot] [PATCHv5 03/14] board: trats2: Enable device tree on Trats2

2014-05-15 Thread Jaehoon Chung
From: Beomho Seo This patch add dwmmc emmc controller node on exynos4 and exynos4412 device tree. Signed-off-by: Beomho Seo Signed-off-by: Jaehoon Chung Tested-by: Piotr Wilczek Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Minkyu Kang --- arch/arm/dts/exynos4.dtsi |8 a

Re: [U-Boot] [PATCH 3/8] mxc_i2c: Use the 3th i2c channel for imx25

2014-05-15 Thread Heiko Schocher
Hello Thomas, Am 15.05.2014 16:34, schrieb die...@gmx.de: From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/i2c/mxc_i2c.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) as this I think goes through the imx tree: Acked-by: Heiko Schocher bye, Heiko -- DENX Software E

Re: [U-Boot] [PATCH] examples: select libgcc for non-default architecture

2014-05-15 Thread Wolfgang Denk
Dear Alexey Brodkin, In message <1400176075-8709-1-git-send-email-abrod...@synopsys.com> you wrote: > In case of multilib-enabled toolchains if default architecture differ from > the one examples are being built for linker will fail to link example object > files with libgcc of another (non-compat

[U-Boot] [PATCH][v3] powerpc/t4qds: Add alternate serdes protocols to align with A-007186

2014-05-15 Thread shh.xie
From: Shaohui Xie A-007186: SerDes PLL is calibrated at reset. It is possible for jitter to increase and cause the PLL to unlock when the temperature delta from the time the PLL is calibrated exceeds +56C/-66C when using X VDD of 1.35 V (or +70C/-80C when using XnVDD of 1.5 V). No issues are seen

Re: [U-Boot] [PATCH] examples: select libgcc for non-default architecture

2014-05-15 Thread Masahiro Yamada
Hi Alexey, On Thu, 15 May 2014 21:47:55 +0400 Alexey Brodkin wrote: > In case of multilib-enabled toolchains if default architecture differ from > the one examples are being built for linker will fail to link example object > files with libgcc of another (non-compatible) architecture. > > Inter

Re: [U-Boot] Pull request: u-boot-sh/rmobile into u-boot-arm/master

2014-05-15 Thread Nobuhiro Iwamatsu
Hi, Albert. Could you apply this PR? Best regards, Nobuhiro 2014-05-02 5:14 GMT+09:00 Nobuhiro Iwamatsu : > Dear Albert Aribaud, > > Please pull u-boot-sh/rmobile into u-boot-arm/master. > > The following changes since commit c9aab0f9dd23fddcebf5984dc19e62b514e759a7: > > Merge branch 'u-bo

Re: [U-Boot] [RESEND PATCHv4 07/14] mmc: exynos_dw_mmc: restore the property into host

2014-05-15 Thread Minkyu Kang
On 15/05/14 17:57, Jaehoon Chung wrote: > Restore the platdata(property of dt) into host struct. > Then data's information is maintained and reused anywhere. > > Signed-off-by: Jaehoon Chung > Tested-by: Lukasz Majewski > Acked-by: Lukasz Majewski > --- > drivers/mmc/exynos_dw_mmc.c | 205 >

Re: [U-Boot] please pull u-boot-samsung master

2014-05-15 Thread Minkyu Kang
Hi Albert, On 15/05/14 23:28, Albert ARIBAUD wrote: > Hi Minkyu, > > On Tue, 13 May 2014 19:47:35 +0900, Minkyu Kang > wrote: > >> Dear Albert, >> >> The following changes since commit 7904b70885f3c589c239f6ac978f299a6744557f: >> >> ARM: highbank: use default prompt (2014-05-02 11:43:25 +0200

Re: [U-Boot] USB-ethernet LAN9500 U-Boot source

2014-05-15 Thread Simon Glass
Hi Raghunath, On 14 May 2014 01:04, Raghunath Pol wrote: > Dear Simon Glass, > > In one of your post mentioned about SMSC LAN9500 u-boot drivers. > > http://www.mail-archive.com/u-boot@lists.denx.de/msg50068.html > we are in need of this drivers. Pls guide to source at earliest. It is at drivers

[U-Boot] [PATCH] Add myself as maintainer for chromebook-x86

2014-05-15 Thread Simon Glass
This is currently the only x86 board. Signed-off-by: Simon Glass --- boards.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards.cfg b/boards.cfg index 3a59686..a2980b7 100644 --- a/boards.cfg +++ b/boards.cfg @@ -1211,7 +1211,7 @@ Active sparc leon3 -

Re: [U-Boot] [PATCH] arm: Allow u-boot to run from offset base address

2014-05-15 Thread Wolfgang Denk
Dear Darwin, In message <5374e64b.1060...@broadcom.com> you wrote: > > > This makes no sense to me. CONFIG_SYS_TEXT_BASE is a compile time > > constant. So the result of all this is always known at compile time, > > too. I feel you misunderstand that CONFIG_SYS_TEXT_BASE is just the > > start

Re: [U-Boot] [PATCH] mmc: omap_hsmmc: add adma support

2014-05-15 Thread Tom Rini
On Thu, May 15, 2014 at 07:45:28PM +0530, Balaji T K wrote: > On Monday 12 May 2014 08:20 PM, Tom Rini wrote: > >On Mon, May 12, 2014 at 07:12:44PM +0530, Balaji T K wrote: > >>On Monday 12 May 2014 06:58 PM, Tom Rini wrote: > >>>On Fri, May 02, 2014 at 07:25:20PM +0530, Balaji T K wrote: > >>> > >

[U-Boot] [PATCH] examples: select libgcc for non-default architecture

2014-05-15 Thread Alexey Brodkin
In case of multilib-enabled toolchains if default architecture differ from the one examples are being built for linker will fail to link example object files with libgcc of another (non-compatible) architecture. Interesting enough for years in main Makefile we used CFLAGS/c_flags for this but not

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2014-05-15 Thread Albert ARIBAUD
Hi Tom, On Tue, 13 May 2014 14:14:42 -0700, Tom Warren wrote: > Albert, > > Please pull u-boot-tegra/master into ARM/master. Thanks! > > ./MAKEALL -s tegra AOK, checkpatch.pl is OK, and ./MAKEALL -a arm only > shows failures that were already present in ARM/master. > > The following changes s

Re: [U-Boot] [PATCH] arm: Allow u-boot to run from offset base address

2014-05-15 Thread Darwin Rambo
On 14-05-15 08:21 AM, Wolfgang Denk wrote: Dear Darwin, In message <5374cd55.3010...@broadcom.com> you wrote: Do you really want to check a define at runtime? Placement is typically at the end of RAM and allocation goes down, not up as in this patch. Aren't you overlapping memory here? Yes, I

Re: [U-Boot] [PATCH v4] net/phy: Add support for CS4315/CS4340 PHY

2014-05-15 Thread York Sun
On 04/11/2014 03:14 AM, Shengzhou Liu wrote: > Add support for Cortina CS4315/CS4340 10G PHY. > - This driver loads CS43xx firmware to initialize Cortina PHY. > - To define macro CONFIG_PHY_CORTINA will enable this driver. > - Cortina PHY has non-standard offset of PHY ID registers, so > define o

Re: [U-Boot] [PATCH] arm: Allow u-boot to run from offset base address

2014-05-15 Thread Wolfgang Denk
Dear Darwin, In message <5374cd55.3010...@broadcom.com> you wrote: > > > Do you really want to check a define at runtime? Placement is typically > > at the end of RAM and allocation goes down, not up as in this patch. > > Aren't you overlapping memory here? > > Yes, I wanted the runtime check si

Re: [U-Boot] please pull u-boot-samsung master

2014-05-15 Thread Albert ARIBAUD
Hi Minkyu, On Tue, 13 May 2014 19:47:35 +0900, Minkyu Kang wrote: > Dear Albert, > > The following changes since commit 7904b70885f3c589c239f6ac978f299a6744557f: > > ARM: highbank: use default prompt (2014-05-02 11:43:25 +0200) > > are available in the git repository at: > > http://git.d

Re: [U-Boot] [PATCH] arm: Allow u-boot to run from offset base address

2014-05-15 Thread Wolfgang Denk
Dear Darwin, In message <5374cc3b.7000...@broadcom.com> you wrote: > > I mean that the loader loads u-boot to it's correct address, which is > offset by a small amount because of a previous header requiring alignment. > Here's an example. u-boot is compiled to run at 0x8820 because we want >

[U-Boot] [PATCH 1/8] imx25: Add new hardware registers

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- arch/arm/include/asm/arch-mx25/iomux-mx25.h | 25 +++-- arch/arm/include/asm/imx-common/iomux-v3.h | 13 - arch/arm/lib/asm-offsets.c |9 + 3 files changed, 40 insertions(+), 7

[U-Boot] [PATCH 7/8] imx25: Add new registers defines

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- arch/arm/include/asm/arch-mx25/imx-regs.h | 271 - 1 file changed, 264 insertions(+), 7 deletions(-) diff --git a/arch/arm/include/asm/arch-mx25/imx-regs.h b/arch/arm/include/asm/arch-mx25/imx-regs.h index a17f8

[U-Boot] [PATCH 8/8] video: imx25lcdc: add board_video_init() call

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/video/imx25lcdc.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/video/imx25lcdc.c b/drivers/video/imx25lcdc.c index 3b45472..94ef033 100644 --- a/drivers/video/imx25lcdc.c +++ b/drivers/video/imx25

[U-Boot] [PATCH 4/8] input: Add support for FMA1125 touch controller

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/input/Makefile |3 +- drivers/input/fma1125.c | 47 include/fma1125.h | 140 +++ 3 files changed, 189 insertions(+), 1 deletion(-) create mode 100644 drivers/

[U-Boot] [PATCH 6/8] zmx25: Extended support for cpu and base boards

2014-05-15 Thread dietho
From: Thomas Diener Added support for additional hardware variants. Signed-off-by: Thomas Diener --- We don't use a linux kernel and have to do the complete hardware setup in the boot loader. board/syteco/zmx25/lowlevel_init.S | 21 + board/syteco/zmx25/zmx25.c | 1052 +

[U-Boot] [PATCH 3/8] mxc_i2c: Use the 3th i2c channel for imx25

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/i2c/mxc_i2c.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 595019b..96cc739 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -540,7 +540,7

[U-Boot] [PATCH 5/8] input: Add support for MPR121 touch controller

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/input/Makefile |3 +- drivers/input/mpr121.c | 67 include/mpr121.h | 158 3 files changed, 227 insertions(+), 1 deletion(-) create mode 100644 driver

[U-Boot] [PATCH 0/8] zmx25: Add hardware support

2014-05-15 Thread dietho
From: Thomas Diener This patchset is the result of the "[PATCH 3/4] zmx25: Add extended support for the cpu and base boards" (http://patchwork.ozlabs.org/patch/341717/). I split the patch up as Stefano Babic recommended. Thomas Diener (8): imx25: Add new hardware registers drivers: Add poly

[U-Boot] [PATCH 2/8] input: Add polytouch touch sensor controller

2014-05-15 Thread dietho
From: Thomas Diener Signed-off-by: Thomas Diener --- drivers/input/Makefile|1 + drivers/input/polytouch.c | 138 + include/polytouch.h | 35 3 files changed, 174 insertions(+) create mode 100644 drivers/input/polytouch.

Re: [U-Boot] [PATCH v3 0/5] ARM: refactor start.S files

2014-05-15 Thread Albert ARIBAUD
On Tue, 15 Apr 2014 16:13:46 +0200, Albert ARIBAUD wrote: > This series aims at refactoring start.S files. Some of these > files contain cache-related or cpu-reset-related core, which > is moved where it belongs. Useless symbols are removed, and > finally, exception vector code, common across all

Re: [U-Boot] please pull u-boot-samsung master

2014-05-15 Thread Albert ARIBAUD
Hi Minkyu, On Tue, 13 May 2014 19:47:35 +0900, Minkyu Kang wrote: > Dear Albert, > > The following changes since commit 7904b70885f3c589c239f6ac978f299a6744557f: > > ARM: highbank: use default prompt (2014-05-02 11:43:25 +0200) > > are available in the git repository at: > > http://git.d

Re: [U-Boot] [PATCH] arm: Allow u-boot to run from offset base address

2014-05-15 Thread Darwin Rambo
On 14-05-14 03:41 PM, Jeroen Hofstee wrote: Hello Darwin, On wo, 2014-05-14 at 15:05 -0700, Darwin Rambo wrote: +#ifdef CONFIG_ARM64 + /* +* Fix relocation if u-boot is not on an aligned address. +*/ + { + int offset = CONFIG_SYS_TEXT_BASE % 4096; +

Re: [U-Boot] [PATCH] arm: Allow u-boot to run from offset base address

2014-05-15 Thread Darwin Rambo
On 14-05-14 09:26 PM, Wolfgang Denk wrote: Dear Darwin Rambo, In message <1400105145-6628-1-git-send-email-dra...@broadcom.com> you wrote: If an earlier loader stage requires an image header and a specific offset, then u-boot's base address (CONFIG_SYS_TEXT_BASE) may be advanced beyond an alig

Re: [U-Boot] [PATCH] mmc: omap_hsmmc: add adma support

2014-05-15 Thread Balaji T K
On Monday 12 May 2014 08:20 PM, Tom Rini wrote: On Mon, May 12, 2014 at 07:12:44PM +0530, Balaji T K wrote: On Monday 12 May 2014 06:58 PM, Tom Rini wrote: On Fri, May 02, 2014 at 07:25:20PM +0530, Balaji T K wrote: MMC instance 1 and 2 is capable of ADMA in omap4, omap5. Add support for ADMA

Re: [U-Boot] [PATCH v3] dfu: Introduction of the "dfu_hash_algo" env variable for checksum method setting

2014-05-15 Thread Wolfgang Denk
Dear Lukasz, In message <20140515154334.626923b4@amdc2363> you wrote: > > > This reinforces my speculation that you are actually addressing the > > wrong problem. Instead of adding new code and environment variables > > and making the system even more complex, we should just leave > > everything

Re: [U-Boot] [PATCH v3] dfu: Introduction of the "dfu_hash_algo" env variable for checksum method setting

2014-05-15 Thread Lukasz Majewski
Hi Wolfgang, > Dear Lukasz, > > In message <20140515090904.32f1d13d@amdc2363> you wrote: > > > > > > What I complained about is the change in behaviour. I asked to > > > > make the existing behaviour the default, so unaware users will > > > > not be affected. Only if you intentionally want some

Re: [U-Boot] [PATCH v2 0/5] zynq: fix OF control of Zynq

2014-05-15 Thread Michal Simek
On 05/15/2014 01:37 PM, Masahiro Yamada wrote: > Zynq boards define CONFIG_OF_CONTROL and CONFIG_OF_SEPARATE, > but it is not working. > > One possible workaround was to edit include/configs/zynq-common.h > to disable > CONFIG_OF_CONTROL > CONFIG_OF_SEPARATE > CONFIG_DISPLAY_BOARDINFO_LATE >

Re: [U-Boot] [PATCH v3 4/5] net/designware: reorder struct dw_eth_dev to pack more efficiently.

2014-05-15 Thread Siarhei Siamashka
On Wed, 14 May 2014 19:30:29 +0100 Ian Campbell wrote: > On Thu, 2014-05-08 at 22:26 +0100, Ian Campbell wrote: > > The {r,t}xbuffs fields also need to be aligned. Previously this was done > > implicitly because they immediately followed the descriptor tables. Make > > this > > explicit and also

[U-Boot] [PATCH] board/t208x: update t2080qds/t2080rdb for errata A-007186

2014-05-15 Thread Shengzhou Liu
As errata A-007186, we need to use the alternate serdes protocol instead of those impacted protocols. - add support for serdes protocols: 0x1b, 0x50, 0x5e, 0x64, 0x6a, 0xd2, 0x67, 0x70. - update t2080_rcw.cfg to adapt to new rcw_66_15 for t2080qds and t2080rdb. Signed-off-by: Shengzhou Liu -

Re: [U-Boot] [Bug Report] Patman removes author's Signed-off-by credit

2014-05-15 Thread Masahiro Yamada
Hi Simon, On Wed, 14 May 2014 19:41:55 -0600 Simon Glass wrote: > > Yes I noticed it too. I am not sure how I introduced this bug, but it > serves me right for not writing a unit test. Please try this patch. > > http://patchwork.ozlabs.org/patch/348502/ > Oops, I overlooked this patch. I con

Re: [U-Boot] [PATCH 2/4] zynq: load u-boot-dtb.img for SD boot

2014-05-15 Thread Masahiro Yamada
Hi Michal, > > diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h > > index 731e69b..38e3d54 100644 > > --- a/include/configs/zynq-common.h > > +++ b/include/configs/zynq-common.h > > @@ -253,7 +253,7 @@ > > #define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION1 > > #define CO

Re: [U-Boot] [PATCH 0/4] zynq: fix OF control of Zynq

2014-05-15 Thread Masahiro Yamada
On Wed, 14 May 2014 16:14:55 +0200 Michal Simek wrote: > I have tested it on zc702 and it is working correctly. > > Tested-by: Michal Simek > > Regarding patches 3/4 and 4/4 maybe will be just easier > to add full DTS because you will want to use OF configuration > for ethernet, mmc, usb, etc

[U-Boot] [PATCH v2 5/5] zynq: add UART nodes to device tree to initialize UART with OF

2014-05-15 Thread Masahiro Yamada
Commit c9416b92 added OF UART initialization support but aliases nodes are missing in device tree. Signed-off-by: Masahiro Yamada Cc: Michal Simek Tested-by: Masahiro Yamada [on ZC706 board] Tested-by: Michal Simek [on ZC702 board] --- Changes in v2: None arch/arm/dts/zynq-microzed.dts|

[U-Boot] [PATCH v2 1/5] build: support a new image u-boot-dtb.img

2014-05-15 Thread Masahiro Yamada
In SPL framework, SPL uses u-boot.img to load u-boot.bin. Here, u-boot.img = uImage header + u-boot.bin To use OF control with a separate devicetree, u-boot.dtb must be placed right after u-boot.bin. In this case, u-boot-dtb.bin is generally used. Here, u-boot-dtb.bin = u-boot.bin + u-boot

[U-Boot] [PATCH v2 2/5] zynq: load u-boot-dtb.img if CONFIG_OF_SEPARATE is defined

2014-05-15 Thread Masahiro Yamada
SPL should load "u-boot-dtb.img" if both CONFIG_OF_CONTROL and CONFIG_OF_SEPARATE are defined. Otherwise, "u-boot.img" should be loaded. Since CONFIG_OF_CONTROL is always undefined for SPL_BUILD, the undef block should be moved below the conditional definition of CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME.

[U-Boot] [PATCH v2 4/5] zynq: add memory nodes to device tree to initialize DRAM with OF

2014-05-15 Thread Masahiro Yamada
Commit 9e0e37ac added OF RAM initialization support but memory nodes are missing in device tree. Signed-off-by: Masahiro Yamada Cc: Michal Simek Tested-by: Masahiro Yamada [on ZC706 board] Tested-by: Michal Simek [on ZC702 board] --- Changes in v2: None arch/arm/dts/zynq-microzed.dts| 5

[U-Boot] [PATCH v2 0/5] zynq: fix OF control of Zynq

2014-05-15 Thread Masahiro Yamada
Zynq boards define CONFIG_OF_CONTROL and CONFIG_OF_SEPARATE, but it is not working. One possible workaround was to edit include/configs/zynq-common.h to disable CONFIG_OF_CONTROL CONFIG_OF_SEPARATE CONFIG_DISPLAY_BOARDINFO_LATE CONFIG_FIT_SIGNATURE CONFIG_RSA I am not satisfied with thi

[U-Boot] [PATCH v2 3/5] zynq: import zynq-7000.dtsi from Linux Kernel

2014-05-15 Thread Masahiro Yamada
Our current motivation is to use OF initialization for RAM and UART. But adding full DTS would be helpful in future, for instance, for OF configuration of Ethernet, MMC, USB, etc. This commit imports arch/arm/boot/dts/zynq-7000.dtsi from Linux 3.15-rc5 and adjusts the license comment block for SPD

Re: [U-Boot] [PATCH v3] dfu: Introduction of the "dfu_hash_algo" env variable for checksum method setting

2014-05-15 Thread Wolfgang Denk
Dear Lukasz, In message <20140515090904.32f1d13d@amdc2363> you wrote: > > > > What I complained about is the change in behaviour. I asked to make > > > the existing behaviour the default, so unaware users will not be > > > affected. Only if you intentionally want some other behaviour you > > > c

[U-Boot] [PATCH][v2] board/p1_p2_rdb:Enable p1_p2_rdb boot from NAND/SD/SPI in SPL

2014-05-15 Thread Prabhakar Kushwaha
In the earlier patches, the SPL/TPL fraamework was introduced. For SD/SPI flash booting way, we introduce the SPL to enable a loader stub. The SPL was loaded by the code from the internal on-chip ROM. The SPL initializes the DDR according to the SPD and loads the final uboot image into DDR, then ju

Re: [U-Boot] [PATCH v3] dfu: Introduction of the "dfu_hash_algo" env variable for checksum method setting

2014-05-15 Thread Heiko Schocher
Hello Lukasz, Sorry for answering so late to this thread ... Am 15.05.2014 09:09, schrieb Lukasz Majewski: Hi Tom, Wolfgang, On Fri, May 09, 2014 at 10:31:54AM +0200, Wolfgang Denk wrote: Dear Lukasz, In message<20140509085203.31133238@amdc2363> you wrote: For automated tests I use MD5 a

Re: [U-Boot] [PATCH] serial_mxc: disable new features of autobaud detection

2014-05-15 Thread Stefano Babic
Hi Eric, On 15/05/2014 01:58, Eric Nelson wrote: > Bit 7 of UCR3 is described in the i.MX3x/i.MX5x/i.MX6x > reference manuals as follows: > > Autobaud Detection Not Improved-. Disables new features of > autobaud detection (See Baud Rate Automatic Detection > Protocol, for more

Re: [U-Boot] [PATCH 12/12] imx: ventana: switch to SPL

2014-05-15 Thread Stefano Babic
Hi Tim, On 15/05/2014 00:32, Tim Harvey wrote: > > I figured this one out - it has nothing to do with the order of > calling arch_cpu_init() its that the MMDC isn't always 'ready' by the > time the BSS is cleared and thus in my failure case the BSS isn't > getting entirely cleared which causes t

[U-Boot] [PULL] : Please pull u-boot-imx

2014-05-15 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx, thanks ! The following changes since commit d2a3e911390f9fc4d8c0ee4b3c7fc75f4fd3fd19: Merge branch 'u-boot/master' (2014-05-09 11:50:14 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master for you to fetch chan

[U-Boot] [RESEND PATCHv4 14/14] mmc: s5p_sdhci: add the s5p_sdhci_core_init function

2014-05-15 Thread Jaehoon Chung
To reuse the code, added the s5p_sdhci_core_init function. Before applied this patch, didn't use the 8-bit mode at exynos baord. Because it didn't set "MMC_MODE_8BIT". Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/s5p_sdhci.c | 42 +

[U-Boot] [RESEND PATCHv4 00/14] mmc: exynos: code cleanup and support DDR mode

2014-05-15 Thread Jaehoon Chung
If card and host are supported DDR mode, then it can be used the DDR mode. This patch-set has dependency about beomho's patch-set. (Based-on u-boot-samsung repository) It's result for loading image. sdhci controller ->5260488 bytes read in 259 ms (19.4 MiB/s) dwmmc controller without DDR mode ->

[U-Boot] [RESEND PATCHv4 13/14] ARM: exynos4: enable the dwmmc configuration

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- include/configs/exynos4-dt.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/exynos4-dt.h b/include/configs/exynos4-dt.h index 2040bf7..7710bae 100644 --- a/include/configs/exynos4-dt

[U-Boot] [RESEND PATCHv4 04/14] ARM: exynos: board: change the mmc/sd init sequence

2014-05-15 Thread Jaehoon Chung
Exynos4 can be used the dwmmc controller for eMMC. Then it needs to check dwmmc_init() at first. Signed-off-by: Jaehoon Chung Reviewed-by: Lukasz Majewski Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- board/samsung/common/board.c | 13 ++--- 1 file changed, 6 insertions(+

[U-Boot] [RESEND PATCHv4 08/14] mmc: remove the unnecessary define and fix the wrong bit control

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Reviewed-by: Lukasz Majeski Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/mmc.c |2 +- include/mmc.h | 18 ++ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c inde

[U-Boot] [RESEND PATCHv4 06/14] ARM: dts: exynos: rename from EXYNOS5_DWMMC to EXYNOS_DWMMC

2014-05-15 Thread Jaehoon Chung
Exynos serise can be supported the dw-mmc controller. So, it's good that used the general prefix as "_EXYNOS_DWMMC". Signed-off-by: Jaehoon Chung --- arch/arm/dts/exynos5.dtsi |8 doc/device-tree-bindings/exynos/dwmmc.txt |8 include/fdtdec.h

[U-Boot] [RESEND PATCHv4 07/14] mmc: exynos_dw_mmc: restore the property into host

2014-05-15 Thread Jaehoon Chung
Restore the platdata(property of dt) into host struct. Then data's information is maintained and reused anywhere. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/exynos_dw_mmc.c | 205 --- include/dwmmc.

[U-Boot] [RESEND PATCHv4 10/14] mmc: dw_mmc: support the DDR mode

2014-05-15 Thread Jaehoon Chung
Support the DDR mode at dw-mmc controller Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/dw_mmc.c | 12 ++-- include/dwmmc.h |3 +++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/dw_mmc.c b/driv

[U-Boot] [RESEND PATCHv4 05/14] ARM: exynos: clock: modify the set_mmc_clk for exynos4

2014-05-15 Thread Jaehoon Chung
Modified the mmc_set_clock for eynos4. The goal of this patch is that fsys-div register should be reset. And retore the div-value, not using the value of lowlevel_init. (For using SDMMC4, this patch is needs) Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski ---

[U-Boot] [RESEND PATCHv4 12/14] mmc: exynos_dw_mmc: enable the DDR mode

2014-05-15 Thread Jaehoon Chung
Set the ddr mode capability by default. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/exynos_dw_mmc.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c index 99047a7..4b8d23b 1006

[U-Boot] [RESEND PATCHv4 02/14] arm: exynos: clock: Remove exynos4x12_set_mmc_clk function

2014-05-15 Thread Jaehoon Chung
From: Beomho Seo exynos4x12_set_mmc_clk function have been removed. Because, exynos4x12_clock and exynos4_clock return same div_fsys* value. Signed-off-by: Beomho Seo Signed-off-by: Jaehoon Chung Tested-by: Piotr Wilczek Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Minkyu Kang --- arch/arm/c

[U-Boot] [RESEND PATCHv4 01/14] arm: exynos: pinmux: add sdmmc4 gpio configratuion

2014-05-15 Thread Jaehoon Chung
From: Beomho Seo For use dwmmc controller at exynos4, add SDMMC4 gpio configuration. Signed-off-by: Beomho Seo Signed-off-by: Jaehoon Chung Tested-by: Piotr Wilczek Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Minkyu Kang --- arch/arm/cpu/armv7/exynos/pinmux.c | 35

[U-Boot] [RESEND PATCHv4 09/14] mmc: support the DDR mode for eMMC

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/mmc.c | 16 +--- include/mmc.h |7 +++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index dd6a6ef..08187d5 100644

[U-Boot] [RESEND PATCHv4 03/14] board: trats2: Enable device tree on Trats2

2014-05-15 Thread Jaehoon Chung
From: Beomho Seo This patch add dwmmc emmc controller node on exynos4 and exynos4412 device tree. Signed-off-by: Beomho Seo Signed-off-by: Jaehoon Chung Tested-by: Piotr Wilczek Cc: Lukasz Majewski Cc: Piotr Wilczek Cc: Minkyu Kang --- arch/arm/dts/exynos4.dtsi |8 a

[U-Boot] [RESEND PATCHv4 11/14] ARM: dts: exnyos: enable dw-mmc controller

2014-05-15 Thread Jaehoon Chung
Enabled the dw-mmc controller. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- arch/arm/dts/exynos4412-trats2.dts |6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/exynos4412-trats2.dts b/arch/arm/dts/exynos4412-trat

Re: [U-Boot] [PATCHv4 00/13] mmc: exynos: code cleanup and support DDR mode

2014-05-15 Thread Jaehoon Chung
Discard this patch-set. I missed the some patch..resend the patch. Sorry! Best Regards, Jaehoon Chung On 05/15/2014 05:49 PM, Jaehoon Chung wrote: > If card and host are supported DDR mode, then it can be used the DDR mode. > This patch-set has dependency about beomho's patch-set. > (Based-on u-b

Re: [U-Boot] [PATCH v2 1/4] bootm: make use of legacy image format configurable

2014-05-15 Thread Michal Simek
On 05/15/2014 07:47 AM, Heiko Schocher wrote: > Hello Michal, > > Am 14.05.2014 13:16, schrieb Michal Simek: >> On 05/14/2014 12:54 PM, Heiko Schocher wrote: >>> make the use of legacy image format configurable through >>> the config define CONFIG_IMAGE_FORMAT_LEGACY. >>> >>> When relying on signe

[U-Boot] [PATCHv4 07/13] mmc: remove the unnecessary define and fix the wrong bit control

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Reviewed-by: Lukasz Majeski Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/mmc.c |2 +- include/mmc.h | 18 ++ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c inde

[U-Boot] [PATCHv4 11/13] mmc: exynos_dw_mmc: enable the DDR mode

2014-05-15 Thread Jaehoon Chung
Set the ddr mode capability by default. Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/exynos_dw_mmc.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c index 99047a7..4b8d23b 1006

[U-Boot] [PATCHv4 08/13] mmc: support the DDR mode for eMMC

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/mmc.c | 16 +--- include/mmc.h |7 +++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index dd6a6ef..08187d5 100644

[U-Boot] [PATCHv4 12/13] ARM: exynos4: enable the dwmmc configuration

2014-05-15 Thread Jaehoon Chung
Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- include/configs/exynos4-dt.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/exynos4-dt.h b/include/configs/exynos4-dt.h index 2040bf7..7710bae 100644 --- a/include/configs/exynos4-dt

[U-Boot] [PATCHv4 09/13] mmc: dw_mmc: support the DDR mode

2014-05-15 Thread Jaehoon Chung
Support the DDR mode at dw-mmc controller Signed-off-by: Jaehoon Chung Tested-by: Lukasz Majewski Acked-by: Lukasz Majewski --- drivers/mmc/dw_mmc.c | 12 ++-- include/dwmmc.h |3 +++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/dw_mmc.c b/driv

  1   2   >