Re: [U-Boot] [PATCH] arm: add IPL support

2013-12-09 Thread Kuo-Jung Su
2013/12/6 Tom Rini tr...@ti.com: On Wed, Dec 04, 2013 at 11:50:48AM +0800, Kuo-Jung Su wrote: Initial Program Loader (IPL) usually runs with .text and .rodata in ROM, while .data and .bss reside in RAM. This patch uses the AT keyword to specify load address, and a small code snippet in

Re: [U-Boot] [PATCH 4/9 V9] Exynos5420: Add DDR3 initialization for 5420

2013-12-09 Thread Rajeshwari Birje
Hi Minkyu Kang, Please do find the comment bellow. On Thu, Dec 5, 2013 at 12:55 PM, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi Minkyu Kang, Thank you for comments. On Tue, Dec 3, 2013 at 11:45 AM, Minkyu Kang mk7.k...@samsung.com wrote: Dear Rajeshwari S Shinde, On 02/12/13

[U-Boot] [PATCH 5/6] blackfin: fixing warning by including proper headers

2013-12-09 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- arch/blackfin/lib/board.c |1 + arch/blackfin/lib/clocks.c |5 - board/bf609-ezkit/bf609-ezkit.c |1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 3/6] blackfin: Disable commands to reduce l1 ram requirement

2013-12-09 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- include/configs/bf506f-ezkit.h |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/configs/bf506f-ezkit.h b/include/configs/bf506f-ezkit.h index 5ad3ee7..eed2d5b

[U-Boot] [PATCH 2/6] blackfin: fix building error by adding macro CONFIG_SYS_I2C

2013-12-09 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- include/configs/bf561-ezkit.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/bf561-ezkit.h b/include/configs/bf561-ezkit.h index 404039a..fb6f948 100644 ---

[U-Boot] [PATCH 1/6] blackfin: fix build error by adding CONFIG_BFIN_SERIAL

2013-12-09 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- include/configs/blackvme.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/blackvme.h b/include/configs/blackvme.h index cd37f9a..6e5774c 100644 --- a/include/configs/blackvme.h

[U-Boot] [PATCH 4/6] blackfin: fix building error by enlarging the memory size

2013-12-09 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- include/configs/bf561-acvilon.h |2 +- include/configs/cm-bf537e.h |4 ++-- include/configs/cm-bf537u.h |3 ++- include/configs/tcm-bf537.h |3 ++- 4 files changed, 7

[U-Boot] [PATCH 6/6] blackfin: remove build warning

2013-12-09 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- arch/blackfin/cpu/initcode.c | 18 ++ arch/blackfin/include/asm/blackfin_local.h |7 +-- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git

[U-Boot] [PATCH v2] t2080qds/ddr: update ddr parameters

2013-12-09 Thread Shengzhou Liu
- optimize ddr parameters for whole frequency range from 1500MT/s to 2140MT/s. - remove unused patameters: 'cpo', 'wrdata delay', '2T', which is unrelated to DDR3/3L on t2080qds. - remove unused rdimm code(only udimm is supported on t2080qds board). Signed-off-by: Shengzhou Liu

Re: [U-Boot] [PATCH] vexpress: fix timer address on non-A9 platforms

2013-12-09 Thread Marc Zyngier
On 07/12/13 21:03, Rob Herring wrote: On Sat, Dec 7, 2013 at 5:11 AM, Marc Zyngier marc.zyng...@arm.com wrote: Commit b3a7f22b3e09 (ARM: vexpress: convert to common timer code) converted the VE timer code to the generic framework, but hardcoded the timer address of the A9 testchip. Change it

[U-Boot] [PATCH 01/11 V10] EXYNOS5: Create a common board file

2013-12-09 Thread Rajeshwari S Shinde
Create a common board.c file for all functions which are common across all EXYNOS5 platforms. exynos_init function is provided for platform specific code. Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - None Changes in V4:

[U-Boot] [PATCH 08/11 V10] Exynos5420: Add base patch for SMDK5420

2013-12-09 Thread Rajeshwari S Shinde
Adding the base patch for Exynos based SMDK5420. This shall enable compilation and basic boot support for SMDK5420. Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com Signed-off-by: Akshay Saraswat aksha...@samsung.com --- Changes in V2: - None Changes in V3: - None

[U-Boot] [PATCH 04/11 V10] EXYNOS5420: Add dmc and phy_control register structure

2013-12-09 Thread Rajeshwari S Shinde
Add dmc and phy_control register structure for 5420. Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com --- Changes in V10: - New patch arch/arm/include/asm/arch-exynos/dmc.h | 167 + 1 file changed, 167 insertions(+) diff --git

[U-Boot] [PATCH 11/11 V10] SPL: EXYNOS: Prepare for variable size SPL support

2013-12-09 Thread Rajeshwari S Shinde
When variable size SPL is used, the BL1 expects the SPL to be encapsulated differently: instead of putting the checksum at a fixed offset in the SPL blob, prepend the blob with a header including the size and the checksum. The enhancements include - adding a command line option, '--vs' to

[U-Boot] [PATCH 06/11 V10] Exynos5420: Add DDR3 initialization for 5420

2013-12-09 Thread Rajeshwari S Shinde
This patch intends to add DDR3 initialization code for Exynos5420. Signed-off-by: Akshay Saraswat aksha...@samsung.com Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com --- Changes in V2: - Corrected a compilation issue for SMDK5250. Changes in V3: - None Changes in V4:

[U-Boot] [PATCH 03/11 V10] EXYNOS5420: Add power register structure.

2013-12-09 Thread Rajeshwari S Shinde
Add structure for power register for Exynos5420 Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com --- Changes in V10: - New patch arch/arm/include/asm/arch-exynos/power.h | 837 +++ 1 file changed, 837 insertions(+) diff --git

[U-Boot] [PATCH 07/11 V10] Exynos5420: Add support for 5420 in pinmux and gpio

2013-12-09 Thread Rajeshwari S Shinde
Adds code in pinmux and gpio framework to support Exynos5420. Signed-off-by: Naveen Krishna Chatradhi ch.nav...@samsung.com Signed-off-by: Akshay Saraswat aksha...@samsung.com Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2:

[U-Boot] [PATCH 10/11 V10] Config: Add initial config for SMDK5420

2013-12-09 Thread Rajeshwari S Shinde
Adding initial config for SMDK5420 to build and boot U-Boot over Exynos based SMDK5420. Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3:

[U-Boot] [PATCH 02/11 V10] Exynos5420: Add base addresses for 5420

2013-12-09 Thread Rajeshwari S Shinde
Adds base addresses of various IPs and controllers required for Exynos5420. Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None

[U-Boot] [PATCH 09/11 V10] DTS: Add dts support for SMDK5420

2013-12-09 Thread Rajeshwari S Shinde
This patch adds dts support for SMDK5420. exynos5.dtsi created is a common file which has the nodes common to both 5420 and 5250. Signed-off-by: Akshay Saraswat aksha...@samsung.com Signed-off-by: Rajeshwari S Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in

[U-Boot] [PATCH 00/11 V10] EXYNOS5420: Add SMDK5420 board support

2013-12-09 Thread Rajeshwari S Shinde
This patch adds basic board support for SMDK5420 board. These patches are tested for booting fine on EVT1 SMDK5420. Changes in V2: - Corrected a compilation issue for SMDK5420. Changes in V3: - Add patch to support variable size SPL support - Add patch to disable SMU for

[U-Boot] Pull request mmc tree

2013-12-09 Thread Pantelis Antoniou
Hi Tom, The following changes since commit f44483b57c49282299da0e5c10073b909cdad979: Merge branch 'serial' of git://git.denx.de/u-boot-microblaze (2013-12-02 08:48:02 -0500) are available in the git repository at: git://git.denx.de/u-boot-mmc.git master for you to fetch changes up to

Re: [U-Boot] [PATCH] powerpc/mpc85xx: Add support for single source clocking

2013-12-09 Thread priyanka.j...@freescale.com
Hello York, I am not able to find mail which contains your comment on to undefined CONFIG_DDR_CLK_FREQ, so replying on original mail. You are right that we don't need to define CONFIG_DDR_CLK_FREQ in case of single source clocking. But as T1040QDS supports both single source clocking and

Re: [U-Boot] [PATCH] powerpc/mpc85xx: Add support for single source clocking

2013-12-09 Thread priyanka.j...@freescale.com
-Original Message- From: Jain Priyanka-B32167 Sent: Monday, December 09, 2013 2:59 PM To: Sun York-R58495 Cc: Aggrwal Poonam-B10812; Jain Priyanka-B32167; u-boot@lists.denx.de Subject: RE: [PATCH] powerpc/mpc85xx: Add support for single source clocking Hello York, I am not

Re: [U-Boot] [PATCH 1/3] arm: atmel: sama5d3: add spi spl boot support

2013-12-09 Thread Andreas Bießmann
Hi Bo, On 12/02/2013 04:24 AM, Bo Shen wrote: Add SPI SPL boot support for sama5d3xek board. Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/at91-common/spl.c |2 ++ arch/arm/include/asm/arch-at91/spl.h |2 ++ board/atmel/sama5d3xek/sama5d3xek.c |2 ++

[U-Boot] [PATCH] netbsd:fix documentation typo.

2013-12-09 Thread Kees Jongenburger
From: Kees Jongenburger kees.jongenbur...@gmail.com The documentation suggested the arguments where passed over r3-r6 while the code bellow simply does that over r0-r3. Cc: Kumar Gala ga...@kernel.crashing.org --- common/cmd_bootm.c | 8 1 file changed, 4 insertions(+), 4 deletions(-)

Re: [U-Boot] [U-Boot, v3, 4/4] cmd_eeprom: bug fix for i2c read/write

2013-12-09 Thread Alexey Brodkin
Hi Heiko, On Mon, 2013-12-09 at 07:56 +0100, Heiko Schocher wrote: Applied to u-boot.i2c.git, thanks! I'm wondering if you've seen a discussion between me and Kuo-jung regarding this patch and consequences of it being applied. Do you mind to comment on questions we discussed there? My main

Re: [U-Boot] [PATCH v2 00/13] ARMv7: add PSCI support to u-boot

2013-12-09 Thread Ian Campbell
On Sat, 2013-12-07 at 11:19 +, Marc Zyngier wrote: The kernel now boots in HYP mode, finds its secondary CPU without any SMP code present in the kernel, and runs KVM out of the box. Hopefully, the Xen/ARM guys can do the same fairly easily. Indeed, I booted with this series on a cb2 and

Re: [U-Boot] [PATCH v2 01/13] ARM: HYP/non-sec: fix alignment requirements for vectors

2013-12-09 Thread Ian Campbell
On Sat, 2013-12-07 at 11:19 +, Marc Zyngier wrote: Make sure the vectors are aligned on a 32 byte boundary, not the code that deals with it... Signed-off-by: Marc Zyngier marc.zyng...@arm.com Looks like Masahiro Yamada's equivalent patch is now in the u-boot-arm tree. Ian.

Re: [U-Boot] [PATCH v2 00/13] ARMv7: add PSCI support to u-boot

2013-12-09 Thread Marc Zyngier
On 09/12/13 10:51, Ian Campbell wrote: On Sat, 2013-12-07 at 11:19 +, Marc Zyngier wrote: The kernel now boots in HYP mode, finds its secondary CPU without any SMP code present in the kernel, and runs KVM out of the box. Hopefully, the Xen/ARM guys can do the same fairly easily.

Re: [U-Boot] new uboot for custom platform

2013-12-09 Thread Lukasz Majewski
Hi Cornel, The CPU is : samsung s3c6410xh 66 S3C6410 will never die ... due to Tomasz Figa (tom3q) heroic effort :-). We (mostly Tomasz with my little help) were trying to upstream the platform again - please follow Tomasz work on github: https://github.com/tom3q/u-boot/commits/s3c64xx The

Re: [U-Boot] [U-Boot, v3, 4/4] cmd_eeprom: bug fix for i2c read/write

2013-12-09 Thread Heiko Schocher
Hello Alexey, Am 09.12.2013 11:35, schrieb Alexey Brodkin: Hi Heiko, On Mon, 2013-12-09 at 07:56 +0100, Heiko Schocher wrote: Applied to u-boot.i2c.git, thanks! I'm wondering if you've seen a discussion between me and Kuo-jung regarding this patch and consequences of it being applied. Do

Re: [U-Boot] [linux-sunxi] Re: [PATCH v2 00/13] ARMv7: add PSCI support to u-boot

2013-12-09 Thread Marc Zyngier
On 09/12/13 11:29, Hans de Goede wrote: Hi, On 12/09/2013 11:51 AM, Ian Campbell wrote: On Sat, 2013-12-07 at 11:19 +, Marc Zyngier wrote: The kernel now boots in HYP mode, finds its secondary CPU without any SMP code present in the kernel, and runs KVM out of the box. Hopefully, the

Re: [U-Boot] [linux-sunxi] Re: [PATCH v2 00/13] ARMv7: add PSCI support to u-boot

2013-12-09 Thread Ian Campbell
On Mon, 2013-12-09 at 12:29 +0100, Hans de Goede wrote: Hi, On 12/09/2013 11:51 AM, Ian Campbell wrote: On Sat, 2013-12-07 at 11:19 +, Marc Zyngier wrote: The kernel now boots in HYP mode, finds its secondary CPU without any SMP code present in the kernel, and runs KVM out of the

Re: [U-Boot] [U-Boot,1/4] at91: add new gpio pin definitions

2013-12-09 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: This patch define new names for GPIO pins on at91 devices. Follow up patches will convert the whole infrastructure to use these new definitions. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Tested-by: Bo Shen

Re: [U-Boot] [U-Boot,2/4] at91: redefine legacy GPIO PIN_BASE

2013-12-09 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: In order to get the very same value for legacy pin definitions and new gpio definitions set the legacy PIN_BASE to 0. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/arm/include/asm/arch-at91/gpio.h |

Re: [U-Boot] [U-Boot,3/4] at91: nand: switch atmel_nand to generic GPIO API

2013-12-09 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Acked-by: Jens Scharsig (BuS Elektronik)e...@bus-elektronik.de Tested-by: Jens Scharsig (BuS Elektronik)e...@bus-elektronik.de Acked-by: Scott Wood

Re: [U-Boot] [U-Boot,4/4] at91: switch coloured LED to gpio API

2013-12-09 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/arm/cpu/arm926ejs/at91/led.c | 16 +++- board/ronetix/pm9261/led.c| 14 +++--- board/ronetix/pm9263/led.c| 10

Re: [U-Boot] [U-Boot,v3,1/2] arm, at91: add Siemens board taurus and axm

2013-12-09 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: enable support for the siemens AT91SAM9G20 based boards taurus and axm. Signed-off-by: Roger Meier r.me...@siemens.com Reviewed-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen

Re: [U-Boot] [U-Boot,v3,2/2] arm, at91: add siemens corvus board

2013-12-09 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: enable support for the siemens AT91SAM9G20 based board corvus. Signed-off-by: Boris Schmidt boris.schm...@siemens.com Reviewed-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen

Re: [U-Boot] [U-Boot, v3] arm: at91: support for the Calao USB-A9263 board (based on AT91SAM9263)

2013-12-09 Thread Andreas Bießmann
Dear Mateusz Kulikowski, Mateusz Kulikowski mateusz.kulikow...@gmail.com writes: Add support for USB-A9263 board manufactured by Calao Systems (http://www.calao-systems.com/). Code is based on old U-Boot sources (2010.09) released by Calao. Signed-off-by: Mateusz Kulikowski

[U-Boot] [PULL] u-boot-atmel/master - u-boot-arm/master

2013-12-09 Thread Andreas Bießmann
Dear Albert Aribaud, please pull the following changes from u-boot-atmel/master into u-boot-arm/master. The following changes since commit 47ed5dd031d7d2c587e6afd386e79ccec1a1b7f7: arm: keep all sections in ELF file (2013-12-07 06:53:58 +0100) are available in the git repository at:

Re: [U-Boot] [linux-sunxi] Re: [PATCH v2 00/13] ARMv7: add PSCI support to u-boot

2013-12-09 Thread Hans de Goede
Hi, On 12/09/2013 11:51 AM, Ian Campbell wrote: On Sat, 2013-12-07 at 11:19 +, Marc Zyngier wrote: The kernel now boots in HYP mode, finds its secondary CPU without any SMP code present in the kernel, and runs KVM out of the box. Hopefully, the Xen/ARM guys can do the same fairly easily.

[U-Boot] [PATCH] lib/time - fix usec_to_tick calculation for hi freq system timers

2013-12-09 Thread Alexey Brodkin
Current implementation works fine if usec * get_tbclk() fits in 32 bits. Otherwise result will be cut down to 32-bit. Fix is obvious - first extend data type of either operand. Signed-off-by: Alexey Brodkin abrod...@synopsys.com Cc: Rob Herring rob.herr...@calxeda.com Cc: Mischa Jonker

[U-Boot] [PATCH] lib/time - remove obsolete code

2013-12-09 Thread Alexey Brodkin
Seems like this is a reminder of some legacy stuff. Definitely of no use now. Signed-off-by: Alexey Brodkin abrod...@synopsys.com Cc: Rob Herring rob.herr...@calxeda.com Cc: Mischa Jonker mjon...@synopsys.com --- lib/time.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/time.c

Re: [U-Boot] [PATCH] time: fix usec_to_tick()

2013-12-09 Thread Rob Herring
On Thu, Dec 5, 2013 at 1:08 PM, Stephen Warren swar...@wwwdotorg.org wrote: From: Stephen Warren swar...@nvidia.com Commit 8dfafdde88eb (Introduce common timer functions) created a common definition of usec_to_tick() which had a couple problems: static unsigned long long

Re: [U-Boot] [PATCH v5] at91: add support for CDU9G25 board

2013-12-09 Thread Andreas Bießmann
Dear Jiří Prchal, On 09/16/2013 11:36 AM, Jiří Prchal wrote: Dne 16.9.2013 10:27, Andreas Bießmann napsal(a): On 09/13/2013 04:41 PM, Jiří Prchal wrote: Dne 13.9.2013 16:10, Andreas Bießmann napsal(a): On 09/13/2013 03:00 PM, Jiri Prchal wrote: snip diff --git

[U-Boot] [PATCH 1/4] dfu: Export allocated dfu buffer size

2013-12-09 Thread Lukasz Majewski
The method for exporting size of allocated buffer is provided. It is afterwards used by USB's dfu function code. Signed-off-by: Lukasz Majewski l.majew...@samsung.com --- drivers/dfu/dfu.c |5 + include/dfu.h |1 + 2 files changed, 6 insertions(+) diff --git a/drivers/dfu/dfu.c

[U-Boot] [PATCH 0/4] dfu: Provide proper Poll Timeout values

2013-12-09 Thread Lukasz Majewski
This patch series adds support for DFU's proper Poll Timeout setting. This fixes problem with dying transmission of a large files (like rootfs). Moreover some very simple clean-up patches have been included. Test HW: Exynos4210 - TRATS board Lukasz Majewski (4): dfu: Export allocated dfu

[U-Boot] [PATCH 4/4] ARM: trats: dfu: Enable default Poll Timeout for Trats board

2013-12-09 Thread Lukasz Majewski
Provide default Poll Timeout value for Trats board. Signed-off-by: Lukasz Majewski l.majew...@samsung.com --- include/configs/trats.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/trats.h b/include/configs/trats.h index 3d080c4..1e37996 100644 ---

[U-Boot] [PATCH 3/4] usb: f_dfu: cosmetic: Code cleanup

2013-12-09 Thread Lukasz Majewski
Code cleanup for dfu_bind_config function Signed-off-by: Lukasz Majewski l.majew...@samsung.com --- drivers/usb/gadget/f_dfu.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/gadget/f_dfu.c b/drivers/usb/gadget/f_dfu.c index b4b4aa4..a045864 100644 ---

[U-Boot] [PATCH 2/4] usb: dfu: f_dfu: Provide infrastructure to adjust DFU's Poll Timeout value

2013-12-09 Thread Lukasz Majewski
It is necessary to deter the host from sending subsequent DFU_GETSTATUS request in the case of e.g. writing the buffer to medium. Here the timeout is increased when we fill up the whole buffer. This delay allows eMMC memory to perform its internal operations. Otherwise we end up with HOST's error

Re: [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include

2013-12-09 Thread menon.nisha...@gmail.com
On Sun, Dec 8, 2013 at 6:29 AM, Nikita Kiryanov nik...@compulab.co.il wrote: ABB code uses LDELAY but does not include the header that provides its definition. Include the header. Cc: Tom Rini tr...@ti.com Signed-off-by: Nikita Kiryanov nik...@compulab.co.il Acked-by: Nishanth Menon

Re: [U-Boot] new uboot for custom platform

2013-12-09 Thread Cornel Miron
I've said that I'm new to every ting about bootloaders, I succeeded in compiling the u-boot for mini6410 but I don't see the files needed to upload on processor nand. Where it suppose to build? Thank you. Miron Cornel Mobile: +40-732.746.305 E-mail:

Re: [U-Boot] [PATCH] powerpc/mpc85xx: Add support for single source clocking

2013-12-09 Thread York Sun
On 12/09/2013 01:28 AM, priyanka.j...@freescale.com wrote: Hello York, I am not able to find mail which contains your comment on to undefined CONFIG_DDR_CLK_FREQ, so replying on original mail. You are right that we don't need to define CONFIG_DDR_CLK_FREQ in case of single source

[U-Boot] [PATCH] ARM: tegra: Use the IRAM for the early stack

2013-12-09 Thread Alban Bedel
Unlike many other platforms the tegra platform has the luxury of already having the SDRAM running during the early init, and it is used for the early stack. However the memory test of the POST subsystem is expecting the SDRAM to be unused, and on tegra platforms the test fail to run as it destroy

Re: [U-Boot] [PATCH] ARM: tegra: Use the IRAM for the early stack

2013-12-09 Thread Stephen Warren
On 12/09/2013 10:06 AM, Alban Bedel wrote: Unlike many other platforms the tegra platform has the luxury of already having the SDRAM running during the early init, and it is used for the early stack. However the memory test of the POST subsystem is expecting the SDRAM to be unused, and on

Re: [U-Boot] [PATCH v2] t2080qds/ddr: update ddr parameters

2013-12-09 Thread York Sun
On 12/08/2013 11:40 PM, Shengzhou Liu wrote: - optimize ddr parameters for whole frequency range from 1500MT/s to 2140MT/s. - remove unused patameters: 'cpo', 'wrdata delay', '2T', which is unrelated to DDR3/3L on t2080qds. - remove unused rdimm code(only udimm is supported on t2080qds

[U-Boot] [PATCH v3 2/4] cm_t335: fix linker file to produce full ELF

2013-12-09 Thread Albert ARIBAUD
Newly added cm_t335 was missed in commit 47ed5dd0 which made ARM targets produce full ELF files. Fix its linker script. This change is binary-invariant when only .dynsym, .dynstr, .dynamic, .plt, .interp and .gun sections are declared. Sections .hash, .got.plt, .dynbss and .ARM.exidx are also

[U-Boot] [PATCH v3 3/4] arm: make _end compiler-generated

2013-12-09 Thread Albert ARIBAUD
This prevents references to _end from generating absolute relocation records. This change is binary invariant for ARM targets. Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v3: - Replace _end in linker scripts with _image_binary_end Changes in v2: None

[U-Boot] [PATCH v3 1/4] mkexynosspl: fix uninitialized buffer

2013-12-09 Thread Albert ARIBAUD
mkexynos reads its input file which might be smaller than its read buffer, but always writes the whole buffer out. This does not affect the functionalyty of the output file, but it makes its content unpredictable as the end of the buffer is never initialized. Fix this by zeroing the buffer before

[U-Boot] [PATCH v3 4/4] arm: remove unneeded symbol offsets and _TEXT_BASE

2013-12-09 Thread Albert ARIBAUD
Remove the last uses of symbol offsets in ARM U-Boot. Remove some needless uses of _TEXT_BASE. Remove all _TEXT_BASE definitions. Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v3: None Changes in v2: - fixed use of _rel_dyn_end instead of _end README

Re: [U-Boot] [PATCH v2 2/2] powerpc/c29xpcie: 8k page size NAND boot support base on TPL/SPL

2013-12-09 Thread Scott Wood
On Mon, 2013-12-09 at 11:10 +0530, Prabhakar Kushwaha wrote: On 12/7/2013 6:51 AM, Scott Wood wrote: Prabhakar, why did you extend that to other uses? Why are both entries ifdeffed here, but only the 0xe000 entry on existing boards? both entry should not be in ifdef.

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

2013-12-09 Thread Albert ARIBAUD
Hi Andreas, On Mon, 9 Dec 2013 13:42:38 +0100, Andreas Bießmann andreas.de...@googlemail.com wrote: Dear Albert Aribaud, please pull the following changes from u-boot-atmel/master into u-boot-arm/master. The following changes since commit 47ed5dd031d7d2c587e6afd386e79ccec1a1b7f7:

[U-Boot] [PATCH v2 01/12] TI:armv7: Change CONFIG_SPL_STACK to not be CONFIG_SYS_INIT_SP_ADDR

2013-12-09 Thread Tom Rini
There are times where we may need more than a few kilobytes of stack space. We also will not be using CONFIG_SPL_STACK location prior to DDR being initialized (CONFIG_SYS_INIT_SP_ADDR is still used there) so pick a good location within DDR for this to be. Tested on OMAP4/AM335x/OMAP5/DRA7xx.

[U-Boot] [PATCH v2 00/12] NAND/MMC environment in SPL, Falcon Mode enhancements

2013-12-09 Thread Tom Rini
Hey all, This series fixes a few bugs / issues, and then sets things up so that we can use MMC (or NAND) for environment in SPL, in addition to NOR flash or simply built-in. The end result is that Falcon Mode becomes much more configurable via the environment, and thus from within Linux.

[U-Boot] [PATCH v2 04/12] env_mmc.c: Remove NULL check on tmp_env1/2

2013-12-09 Thread Tom Rini
With 452a272 we moved to allocating these variables on the stack. So they will never now be NULL so remove these checks. Signed-off-by: Tom Rini tr...@ti.com --- common/env_mmc.c |6 -- 1 file changed, 6 deletions(-) diff --git a/common/env_mmc.c b/common/env_mmc.c index

[U-Boot] [PATCH v2 03/12] env_mmc.c: Allow environment to be used within SPL

2013-12-09 Thread Tom Rini
Inside of SPL we only concern ourself with one MMC device, so instead of being able to use CONFIG_SYS_MMC_ENV_DEV we need to use 0 in SPL. Switch the code to use a 'dev' variable to facilitate this. Signed-off-by: Tom Rini tr...@ti.com --- common/env_mmc.c | 45

[U-Boot] [PATCH v2 02/12] fw_env.c: Switch get_config to use '%ms' in sscanf

2013-12-09 Thread Tom Rini
We currently limit ourself to 16 characters for the device name to read the environment from. This is insufficient for /dev/mmcblk0boot1 to work for example. Switch to '%ms' which gives us a dynamically allocated buffer instead. We're short lived enough to not bother free()ing the buffer.

[U-Boot] [PATCH v2 05/12] mtd: Add a CONFIG_SPL_MTD_SUPPORT for a more full NAND subsystem in SPL

2013-12-09 Thread Tom Rini
This mainly converts the am335x_spl_bch driver to the normal format which means a slight change to nand_info within the driver. Acked-by: Scott Wood scottw...@freescale.com Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: - Document CONFIG_SPL_MTD_SUPPORT in the README --- README

[U-Boot] [PATCH v2 09/12] README: Add CONFIG_SPL_OS_BOOT to README

2013-12-09 Thread Tom Rini
Signed-off-by: Tom Rini tr...@ti.com --- README |4 1 file changed, 4 insertions(+) diff --git a/README b/README index 1b5a598..4b42a71 100644 --- a/README +++ b/README @@ -3157,6 +3157,10 @@ FIT uImage format: supports MMC, NAND and YMODEM loading of U-Boot and NAND

[U-Boot] [PATCH v2 06/12] mtd: Build nand_util.o for CONFIG_ENV_IS_IN_NAND in SPL

2013-12-09 Thread Tom Rini
Cc: Scott Wood scottw...@freescale.com Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: - Surround adding nand_util.o with CONFIG_SPL_ENV_SUPPORT test --- drivers/mtd/nand/Makefile |3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/mtd/nand/Makefile

[U-Boot] [PATCH v2 07/12] spl: Make CONFIG_SPL_ENV_SUPPORT have to be set by all users of env in SPL

2013-12-09 Thread Tom Rini
Previously, we forced a no environment choice on network using SPL. Now we allow all users to set where they want to look for their environment. This means we have to set CONFIG_SPL_ENV_SUPPORT now for ti_armv7_common.h. Signed-off-by: Tom Rini tr...@ti.com --- common/Makefile

[U-Boot] [PATCH v2 10/12] README.falcon: Document environment variables for falcon mode

2013-12-09 Thread Tom Rini
Signed-off-by: Tom Rini tr...@ti.com --- doc/README.falcon |9 + 1 file changed, 9 insertions(+) diff --git a/doc/README.falcon b/doc/README.falcon index 6357b1e..bccf6c9 100644 --- a/doc/README.falcon +++ b/doc/README.falcon @@ -80,6 +80,15 @@ spl_start_uboot() : required

[U-Boot] [PATCH v2 08/12] am335x_evm: Make SPL_OS also check the boot_os variable for falcon mode

2013-12-09 Thread Tom Rini
We use the same variable as a3m071 in the environment to determine if we should boot into Linux or U-Boot. This is useful on boards like Beaglebone Black or AM335x GP EVM where we have persistent storage for the environment. Signed-off-by: Tom Rini tr...@ti.com --- board/ti/am335x/board.c |

Re: [U-Boot] [PATCH] ARM: tegra: Use the IRAM for the early stack

2013-12-09 Thread Alban Bedel
On Mon, 09 Dec 2013 10:09:49 -0700 Stephen Warren swar...@wwwdotorg.org wrote: On 12/09/2013 10:06 AM, Alban Bedel wrote: Unlike many other platforms the tegra platform has the luxury of already having the SDRAM running during the early init, and it is used for the early stack. However the

[U-Boot] [PATCH v2 11/12] a3m071: Make spl_start_uboot test like getenv_yesno does

2013-12-09 Thread Tom Rini
This change makes the behaviour slightly more rebust and will match other implementations which can use getenv_yesno directly. Acked-by: Stefan Roese s...@denx.de Signed-off-by: Tom Rini tr...@ti.com --- board/a3m071/a3m071.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 12/12] spl_mmc/CONFIG_SPL_OS_BOOT: Allow environment to determine what to boot

2013-12-09 Thread Tom Rini
We add two new environment variables, falcon_args_file and falcon_image_file, which when set will override the compiled in default values for falcon mode. Signed-off-by: Tom Rini tr...@ti.com --- common/spl/spl_mmc.c | 28 +++- doc/README.falcon|4 2 files

Re: [U-Boot] [PATCH] ARM: tegra: Use the IRAM for the early stack

2013-12-09 Thread Stephen Warren
On 12/09/2013 11:09 AM, Alban Bedel wrote: On Mon, 09 Dec 2013 10:09:49 -0700 Stephen Warren swar...@wwwdotorg.org wrote: On 12/09/2013 10:06 AM, Alban Bedel wrote: Unlike many other platforms the tegra platform has the luxury of already having the SDRAM running during the early init, and

Re: [U-Boot] SMDK5250 not booting on latest U-boot-samsung

2013-12-09 Thread Albert ARIBAUD
Hi Rajeshwari, On Mon, 9 Dec 2013 13:24:28 +0530, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi All, I have tried booting SMDK5250 on the latest U-boot-Samsung branch, It builds fine but does not boot. Observation: If revert the following patch it works fine: commit

Re: [U-Boot] [PATCH REPOST] ARM: rpi_b: power on SDHCI and USB HW modules

2013-12-09 Thread Andre Heider
On Fri, Dec 06, 2013 at 09:50:24PM -0700, Stephen Warren wrote: On 12/06/2013 06:37 AM, Andre Heider wrote: Hi Stephen, On Tue, Dec 03, 2013 at 09:01:55PM -0700, Stephen Warren wrote: Send RPC commands to the VideoCore to turn on the SDHCI and USB modules. For SDHCI this isn't needed

Re: [U-Boot] Creating U-Boot env image

2013-12-09 Thread Wolfgang Denk
Dear Alexey Smishlayev, In message 52a5d4f1.7020...@xtech2.lv you wrote: I would like to flash the environment variable values to my board, rather than setting them at the prompt. I've founa a tool mkenvimage is made specially for that. I used it to create a binary image of the U-Boot

Re: [U-Boot] [PATCH REPOST] ARM: rpi_b: power on SDHCI and USB HW modules

2013-12-09 Thread Stephen Warren
On 12/09/2013 12:52 PM, Andre Heider wrote: On Fri, Dec 06, 2013 at 09:50:24PM -0700, Stephen Warren wrote: On 12/06/2013 06:37 AM, Andre Heider wrote: Hi Stephen, On Tue, Dec 03, 2013 at 09:01:55PM -0700, Stephen Warren wrote: Send RPC commands to the VideoCore to turn on the SDHCI and USB

[U-Boot] Please pull u-boot-x86.git

2013-12-09 Thread Simon Glass
Hi Tom, Here is the sandbox SPI interface code. Buildman is clean: $ ./tools/buildman/buildman -b x86-push -s Summary of 7 commits for 1187 boards (32 threads, 1 job per thread) 01: Merge branch 'serial' of git://git.denx.de/u-boot-microblaze blackfin: + bf561-acvilon cm-bf561 blackstamp br4

Re: [U-Boot] [PATCH REPOST] ARM: rpi_b: power on SDHCI and USB HW modules

2013-12-09 Thread Andre Heider
On Mon, Dec 09, 2013 at 01:16:45PM -0700, Stephen Warren wrote: On 12/09/2013 12:52 PM, Andre Heider wrote: On Fri, Dec 06, 2013 at 09:50:24PM -0700, Stephen Warren wrote: On 12/06/2013 06:37 AM, Andre Heider wrote: Hi Stephen, On Tue, Dec 03, 2013 at 09:01:55PM -0700, Stephen Warren

Re: [U-Boot] Creating U-Boot env image

2013-12-09 Thread Alexey Smishlayev
Dear Wolfgang Denk, On 2013.12.09. 22:12, Wolfgang Denk wrote: Dear Alexey Smishlayev, In message 52a5d4f1.7020...@xtech2.lv you wrote: What should I do to flash environment values directly to the board's NAND? Why don't you just use env import? I didn't have any information about that.

Re: [U-Boot] Creating U-Boot env image

2013-12-09 Thread Stephen Warren
On 12/09/2013 02:39 PM, Alexey Smishlayev wrote: Dear Wolfgang Denk, On 2013.12.09. 22:12, Wolfgang Denk wrote: Dear Alexey Smishlayev, In message 52a5d4f1.7020...@xtech2.lv you wrote: What should I do to flash environment values directly to the board's NAND? Why don't you just use env

Re: [U-Boot] [PATCH v2 06/12] mtd: Build nand_util.o for CONFIG_ENV_IS_IN_NAND in SPL

2013-12-09 Thread Scott Wood
On Mon, 2013-12-09 at 13:08 -0500, Tom Rini wrote: Cc: Scott Wood scottw...@freescale.com Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: - Surround adding nand_util.o with CONFIG_SPL_ENV_SUPPORT test --- drivers/mtd/nand/Makefile |3 +++ 1 file changed, 3 insertions(+)

Re: [U-Boot] [PATCH 1/3] arm: atmel: sama5d3: add spi spl boot support

2013-12-09 Thread Bo Shen
Hi Andreas, On 12/09/2013 06:28 PM, Andreas Bießmann wrote: Hi Bo, On 12/02/2013 04:24 AM, Bo Shen wrote: Add SPI SPL boot support for sama5d3xek board. Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/at91-common/spl.c |2 ++ arch/arm/include/asm/arch-at91/spl.h |

Re: [U-Boot] OMAP4: NAND support (confusion)

2013-12-09 Thread Vikram Singh Shekhawat
Hi all, Please help me to solve NAND issue in OMAP4.Waiting for your valuable reply. Regards Vikram singh On Thu, Dec 5, 2013 at 3:27 PM, Vikram Singh Shekhawat vikram.si...@vvdntech.com wrote: hi all, I am looking into nand for omap4, i have added patches for nand support in omap4 but

Re: [U-Boot] [PATCH] bootm: Reinstate special case for standalone images

2013-12-09 Thread Michal Simek
On 12/07/2013 12:26 AM, Simon Glass wrote: For standalone images, bootm had a special case where the OS boot function was NULL but did actually exist. It was just called manually. This was removed by commit 35fc84fa which checks for the non-existence of this function before the special case

Re: [U-Boot] FW: [PATCH 06/10] video: exynos: fimd: always use 16bpp display mode.

2013-12-09 Thread Donghwa Lee
Hi, On 3 Dec 2013 18:03, Przemyslaw wrote: This change updates exynos board files too. 16 bpp mode is required by LCD console mode. Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com --- board/samsung/trats/trats.c |2 +- board/samsung/trats2/trats2.c|

Re: [U-Boot] [PATCH v2 2/2] powerpc/c29xpcie: 8k page size NAND boot support base on TPL/SPL

2013-12-09 Thread Prabhakar Kushwaha
On 12/9/2013 11:21 PM, Scott Wood wrote: On Mon, 2013-12-09 at 11:10 +0530, Prabhakar Kushwaha wrote: On 12/7/2013 6:51 AM, Scott Wood wrote: Prabhakar, why did you extend that to other uses? Why are both entries ifdeffed here, but only the 0xe000 entry on existing boards? both entry

Re: [U-Boot] [PATCH 2/4] usb: dfu: f_dfu: Provide infrastructure to adjust DFU's Poll Timeout value

2013-12-09 Thread Bo Shen
Hi Lukasz, On 12/09/2013 11:20 PM, Lukasz Majewski wrote: diff --git a/drivers/usb/gadget/f_dfu.h b/drivers/usb/gadget/f_dfu.h index cc2c455..0c29954 100644 --- a/drivers/usb/gadget/f_dfu.h +++ b/drivers/usb/gadget/f_dfu.h @@ -82,4 +82,6 @@ struct dfu_function_descriptor { __le16

[U-Boot] [PATCH 2/7 V3] mmc: Get secure erase information from card

2013-12-09 Thread Haijun Zhang
Read command class from csd register and secure erase support bit from ext csd register. Also calculate the erase timeout and secure erase timeout. If read ext csd error, error status should be returned instead of give some incorrect information. Error log: = = mmcinfo Device: FSL_SDHC

[U-Boot] [PATCH 3/7 V3] mmc: Enhance erase handling procedure

2013-12-09 Thread Haijun Zhang
This patch enhances the currently implemented erase procedure in u-boot, which has the following problems/missing features... Erass sequence: 1. check if erase command is support by card. If not return. 2. Check the erase range to see if it was aligned. The min erase size should be one erase

[U-Boot] [PATCH 7/7 V3] powerpc/esdhc: Update esdhc command execution process

2013-12-09 Thread Haijun Zhang
The max timeout value esdhc host can accept was about 2.69 sec At 50 Mhz SD_CLK period, the max busy timeout value = 2^27 * SD_CLK period ~= 2.69 sec. In case erase command CMD38 timeout is caculated by mult * 300ms * num(unit by erase group), so the time one erase group need should be more than

[U-Boot] [PATCH 1/7 V3] mmc: Add some usefull macro definition

2013-12-09 Thread Haijun Zhang
From: Haijun Zhang haijun.zh...@freescale.com Add command class define. Add mmc erase and secure erase define. Add secure erase and trim support bit define. Signed-off-by: Haijun Zhang haijun.zh...@freescale.com --- changes for V3: - No changes include/mmc.h | 50

[U-Boot] [PATCH 5/7 V3] mmc: Enhance mmcinfo command

2013-12-09 Thread Haijun Zhang
Once mmc initialization was faild has_init should be set to 0, prepard for the next initialization to recover from error. Once mmcinfo command failed, error should be report instead of printing incorrect mmc device information. Error log: = mmcinfo Device: FSL_SDHC Manufacturer ID: 0 OEM: 0

[U-Boot] [PATCH 4/7 V3] mmc: Update the handling of returned erase block

2013-12-09 Thread Haijun Zhang
If the block rang was not algined, We tried to algined the range, then erase the block. So the block range erased should be less or equal to the block range sent. If error occured during erase procedure part of them will be erased. And use should resend the block rang to continue erase the reset

  1   2   >