Re: [U-Boot] Question about dfu flash rootfs image

2013-10-13 Thread Lukasz Majewski
Hi Heiko, > There was a discussion, how to reorganize the dfu_alt_info var, see: > > http://lists.denx.de/pipermail/u-boot/2013-July/158920.html > > I think, your question fits into this thread ... I plan to present some initial idea for dfu_alt_info at ELCE u-boot mini summit, so any input is

Re: [U-Boot] [PATCH 1/3 v2] exynos: i2c: Fix i2c driver to handle NACKs properly

2013-10-13 Thread Heiko Schocher
Hello Naveen, Am 03.10.2013 13:22, schrieb Naveen Krishna Chatradhi: The Exynos5 i2c driver does not handle NACKs properly. This change: - fixes the NACK processing problem (do not continue transaction if address cycle was NACKed) - eliminates a fair amount of duplicate code Signed-off-by:

Re: [U-Boot] [PATCH] RFC: samsung: i2c: Enable new CONFIG_SYS_I2C framework

2013-10-13 Thread Heiko Schocher
Hello Naveen, Am 30.09.2013 08:58, schrieb Naveen Krishna Chatradhi: This enables CONFIG_SYS_I2C on Samsung, updating existing s3c24x0 i2c driver to support this. Note: Not for merge, Just for review and suggestions. Signed-off-by: Naveen Krishna Chatradhi --- drivers/i2c/Makefile |

Re: [U-Boot] [PATCH] I2C:Zynq: Adapt this driver to the new model

2013-10-13 Thread Heiko Schocher
Hello Michael, Am 26.09.2013 17:43, schrieb Michael Burr: Signed-off-by: Michael Burr Cc: Heiko Schocher Cc: Michal Simek --- === Note: this patch depends on the previous patch titled === "[PATCH] I2C: Zynq: Support for 0-length register address" === submitted 24 Sep. 2013. Tested on Xilinx ZC7

Re: [U-Boot] [RFC] i2c_reloc_fixup fails on m68k

2013-10-13 Thread Heiko Schocher
Hello Jens, Am 24.09.2013 09:41, schrieb Jens Scharsig: Hello Heiko, Hello Jens, I have a access violation problem with i2c_reloc_fixup on coldfire m68k systems. I found out, the i2c_reloc_fixup tries to relocate the adapter itself, but at this time i2c_adap_p is already relocated. Which to

Re: [U-Boot] Question about dfu flash rootfs image

2013-10-13 Thread Heiko Schocher
Hello Bo, Am 12.10.2013 09:18, schrieb Bo Shen: Hi All, Now I am implementing DFU support on Atmel sama5d3xek board, when try to download rootfs image to NAND flash through DFU, we need to drop ffs from rootfs image. Do you use ubi or jffs2? In dfu_nand.c when it call nand_write_skip_bad()

Re: [U-Boot] [PATCH v5 2/8] ARM: add secure monitor handler to switchto non-secure state

2013-10-13 Thread TigerLiu
Hi, Albert: >My apologies: I though you had meant "how to get the submission to go >into mainline", while you actually meant "how to get accepted >submissions" locally. > >Let me just add that if you want to (ir)regularly find out which code >has been accepted into mainline, there is no need to re-

Re: [U-Boot] [PATCH v5 2/8] ARM: add secure monitor handler to switchto non-secure state

2013-10-13 Thread Albert ARIBAUD
Hi tiger...@viatech.com.cn, On Mon, 14 Oct 2013 10:14:44 +0800, wrote: > Hi, Albert: > Thanks ! > I used cmd "git clone git://git.denx.de/u-boot.git " to get the master > source code. My apologies: I though you had meant "how to get the submission to go into mainline", while you actually meant

Re: [U-Boot] [PATCH] kirkwood: ib62x0: use device tree and update config

2013-10-13 Thread Fabio Estevam
On Sun, Oct 13, 2013 at 11:38 PM, Luka Perkov wrote: > Signed-off-by: Luka Perkov > --- > include/configs/ib62x0.h | 37 - > 1 file changed, 20 insertions(+), 17 deletions(-) > > diff --git a/include/configs/ib62x0.h b/include/configs/ib62x0.h > index 7fa0c53.

[U-Boot] [PATCH] kirkwood: ib62x0: use device tree and update config

2013-10-13 Thread Luka Perkov
Signed-off-by: Luka Perkov --- include/configs/ib62x0.h | 37 - 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/include/configs/ib62x0.h b/include/configs/ib62x0.h index 7fa0c53..90ed0fb 100644 --- a/include/configs/ib62x0.h +++ b/include/config

Re: [U-Boot] [PATCH v5 2/8] ARM: add secure monitor handler to switchto non-secure state

2013-10-13 Thread TigerLiu
Hi, Albert: Thanks ! I used cmd "git clone git://git.denx.de/u-boot.git " to get the master source code. Best wishes, ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v14 09/10] arm64: board support of vexpress_aemv8a

2013-10-13 Thread fenghua
From: David Feng Signed-off-by: David Feng Signed-off-by: Bhupesh Sharma --- board/armltd/vexpress64/Makefile | 27 + board/armltd/vexpress64/vexpress64.c | 50 + boards.cfg |1 + include/configs/vexpress_aemv8a.h| 191

Re: [U-Boot] [Patch v1 1/1] jffs2: change U_BOOT_CMD ls to fsls

2013-10-13 Thread Suriyan Ramasami
Hello Wolfgang Denk, On Sat, Oct 12, 2013 at 11:38 AM, Wolfgang Denk wrote: > Dear Suriyan Ramasami, > > In message <1381366918-17590-1-git-send-email-suriya...@gmail.com> you wrote: >> multiple definitions of `_u_boot_list_2_cmd_2_ls' if CONFIG_CMD_JFFS2 >> and CONFIG_CMD_FS_GENERIC are defined.

Re: [U-Boot] [RFC PATCH] usb: dfu: make nand upload working

2013-10-13 Thread Marek Vasut
Dear Lukasz Majewski, > On Sat, 12 Oct 2013 15:47:14 +0800 > > Bo Shen wrote: > > If won't pass value to dfu->r_left, it always 0, make no transfer, > > the dfu-util on host side report failed. So, before starting transfer, > > pass the value, then nand uploading can work. > > > > Signed-off-by

Re: [U-Boot] [PATCH] ARM: mxs: Do not reconfigure FEC clock in FEC init

2013-10-13 Thread Marek Vasut
Hi, CCing Alexandre and Hector. Can you test please? > Do not reconfigure the FEC clock during board_eth_init(), otherwise > the FEC might have stability issues, refuse to autonegotiate link > entirely or even corrupt packets while indicating correct checksum > on them. Instead, move the FEC cloc

Re: [U-Boot] [PATCH v1] arm: remove unneeded symbol offsets and _TEXT_BASE

2013-10-13 Thread Albert ARIBAUD
Hi Benoît, On Sun, 13 Oct 2013 17:00:25 +0200 (CEST), Benoît Thébaudeau wrote: > Hi Albert, > > On Sunday, October 13, 2013 9:10:28 AM, Albert ARIBAUD wrote: > > Remove the last uses of symbol offsets in ARM U-Boot. > > Remove some needless uses of _TEXT_BASE. > > Remove all _TEXT_BASE definiti

[U-Boot] [PATCH] ARM: mxs: Do not reconfigure FEC clock in FEC init

2013-10-13 Thread Marek Vasut
Do not reconfigure the FEC clock during board_eth_init(), otherwise the FEC might have stability issues, refuse to autonegotiate link entirely or even corrupt packets while indicating correct checksum on them. Instead, move the FEC clock init to board_early_init_f(), where all the other upstream cl

[U-Boot] [PATCH] .gitignore: add auto-generated /include/[s|t]pl-autoconf.mk

2013-10-13 Thread Daniel Schwierzeck
Signed-off-by: Daniel Schwierzeck --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 9069fff..869b1b8 100644 --- a/.gitignore +++ b/.gitignore @@ -70,6 +70,8 @@ /reloc_off /include/generated/ +/include/spl-autoconf.mk +/include/tpl-autoconf.mk

Re: [U-Boot] [PATCH v1] arm: remove unneeded symbol offsets and _TEXT_BASE

2013-10-13 Thread Benoît Thébaudeau
Hi Albert, On Sunday, October 13, 2013 9:10:28 AM, Albert ARIBAUD wrote: > 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 > --- > _TEXT_BASE was only used by ARM to allow reso

Re: [U-Boot] How/Where does "_start" get assigned a value ?

2013-10-13 Thread Gerhard Sittig
On Thu, Oct 10, 2013 at 17:37 +0200, Gerhard Sittig wrote: > > On Wed, Oct 09, 2013 at 09:07 -0700, djoker wrote: > > > > I have a armv7 board and am looking at the "_start" symbol address, using > > the following command: > > *nm u-boot | grep -w _start* > > > > It returned the following: > > *

[U-Boot] [PATCH 2/2] Enable btrfs support in mx53loco config

2013-10-13 Thread Adnan Ali
Enable btrfs support in mx53loco config Signed-off-by: Adnan Ali --- include/configs/mx53loco.h |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index a4b610f..bf361a3 100644 --- a/include/configs/mx53loco.h +++ b/i

[U-Boot] [PATCH 1/2] Introduced btrfs file-system with btrload command

2013-10-13 Thread Adnan Ali
Introduces btrfs file-system to read file from volume/sub-volumes with btrload command. This implementation has read-only support. This btrfs implementation is based on syslinux btrfs code. v13: Added pre-calculated crc for BE & LE v11: Mirro super block check. v10: patch problem rewor

Re: [U-Boot] [PATCH v1] arm: remove unneeded symbol offsets and _TEXT_BASE

2013-10-13 Thread Albert ARIBAUD
On Sun, 13 Oct 2013 09:10:28 +0200, Albert ARIBAUD wrote: > 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 > --- > _TEXT_BASE was only used by ARM to allow resolution of > sy

[U-Boot] [PATCH v1] arm: remove unneeded symbol offsets and _TEXT_BASE

2013-10-13 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 --- _TEXT_BASE was only used by ARM to allow resolution of symbol offsets, themselves only needed due to absolute relocations. In some p

[U-Boot] [PATCH v1] patman: add Series-commit-notes tag and section

2013-10-13 Thread Albert ARIBAUD
Sometimes a commit should have notes enclosed with it rather than withing the cover letter -- possibly even because there is no cover letter. Add 'Series-commit-notes' tag, similar to 'Series-notes'; lines between this tag and the next END line are inserted in the patch right after the '---' separa