Re: [U-Boot] [PATCH 09/45] arm: Remove edb9315a board

2015-08-31 Thread sergey kostanbaev
Hi Simon, It seems I missed moving to generic board CONFIG_SYS_GENERIC_BOARD. So could you point what is better to read to adopt it? Thanks On Mon, Aug 31, 2015 at 4:19 AM, Simon Glass wrote: > This board has not been converted to generic board by the deadline. > Remove it. > > Signed-off-by:

Re: [U-Boot] [PATCH 03/45] arm: Remove most LaCie boards

2015-08-31 Thread Simon Guinot
On Sun, Aug 30, 2015 at 07:18:57PM -0600, Simon Glass wrote: > These boards have not been converted to generic board by the deadline. > Remove all except edmini_v2 (which has been converted). Hi Simon, Great... Is it still time to convert this boards to "generic board" support ? You know, a dire

[U-Boot] [PATCH] include: configs: Enable DWC3 and DFU in OMAP5 uEVM

2015-08-31 Thread Kishon Vijay Abraham I
Enabled dwc3, dwc3-omap and PHY to get DWC3 functional in OMAP5 uEVM. Also enabled support for DFU. Signed-off-by: Kishon Vijay Abraham I --- include/configs/omap5_uevm.h | 62 ++ 1 file changed, 62 insertions(+) diff --git a/include/configs/omap5_uevm.

Re: [U-Boot] [PATCH] include: configs: Enable DWC3 and DFU in OMAP5 uEVM

2015-08-31 Thread Sekhar Nori
On Monday 31 August 2015 12:04 PM, Kishon Vijay Abraham I wrote: > Enabled dwc3, dwc3-omap and PHY to get DWC3 functional in OMAP5 > uEVM. Also enabled support for DFU. Nitpicking, but use of present tense is preferred here. See bullet #3 here: http://www.denx.de/wiki/view/U-Boot/Patches#Commit_me

Re: [U-Boot] [PATCH 24/45] arm: Remove openrd boards

2015-08-31 Thread Simon Kågström
On 2015-08-31 07:28, Prafulla Wadaskar wrote: > Cced maintainer for this board, Simon Kagstrom > > On 31-Aug-2015 7:07 am, Simon Glass wrote: > > These boards have not been converted to generic board by the deadline. > Remove them. Fine by me at least, although I'm really no longer mai

Re: [U-Boot] [PATCH 0/4] arm: rmobile: Stout board support and minor fixes

2015-08-31 Thread Nobuhiro Iwamatsu
Hi, Vladimir. Sorry about this. I just applied my repository. Best regards, Nobuhiro 2015-08-21 4:57 GMT+09:00 Vladimir Barinov : > Hello Nobuhiro-san, > > Could you provide any response for this patchset. > > TIA, > Vladimir > > On 20.07.2015 20:48, Vladimir Barinov wrote: >> >> This patch s

[U-Boot] [PATCH 2/8] dm: pci: Allow skipping device configuration

2015-08-31 Thread Bin Meng
The non-dm pci driver can skip specified device configuration. With dm conversion, this capability is lost. Add this back for dm pci. Signed-off-by: Bin Meng --- drivers/pci/pci-uclass.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c i

[U-Boot] [PATCH 3/8] x86: Convert to use driver model pci on quark/galileo

2015-08-31 Thread Bin Meng
Move to driver model pci for Intel quark/galileo. Signed-off-by: Bin Meng --- arch/x86/cpu/quark/pci.c | 42 -- arch/x86/cpu/quark/quark.c | 8 arch/x86/dts/galileo.dts | 8 ++-- configs/galileo_defconfig | 1 + include/configs/galile

[U-Boot] [PATCH 8/8] x86: quark: Optimize MRC execution time

2015-08-31 Thread Bin Meng
Boot time performance degradation is observed with the conversion to use dm pci. Intel Quark SoC has a low end x86 processor with only 400MHz frequency and the most time consuming part is with MRC. Each MRC register programming requires indirect access via pci bus. With dm pci, accessing pci config

[U-Boot] [PATCH 6/8] net: designware: Add support to PCI designware devices

2015-08-31 Thread Bin Meng
The Designware ethernet controller is also seen on PCI bus, e.g. on Intel Quark SoC. Add this support in the DM version driver. Signed-off-by: Bin Meng --- drivers/net/designware.c | 39 +++ 1 file changed, 39 insertions(+) diff --git a/drivers/net/designwar

[U-Boot] [PATCH 7/8] x86: Convert to use driver model eth on quark/galileo

2015-08-31 Thread Bin Meng
Convert to use DM version of Designware ethernet driver on Intel quark/galileo. Signed-off-by: Bin Meng --- arch/x86/cpu/quark/quark.c | 19 --- configs/galileo_defconfig | 2 +- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/arch/x86/cpu/quark/quark.c b/arch/

Re: [U-Boot] [PATCH 11/13] arm: zynq: dts: Add U-Boot device tree additions

2015-08-31 Thread Masahiro Yamada
Simon, 2015-08-30 0:10 GMT+09:00 Simon Glass : > We need to mark some device tree nodes so that they are available before > relocation. This enables driver model to find these automatically. In the > case of SPL it ensures that these nodes will be retained in SPL. > > Signed-off-by: Simon Glass

[U-Boot] [PATCH] dts: do not cut down pinctrl-0 and pinctrl-names for SPL full-pinctrl

2015-08-31 Thread Masahiro Yamada
These properties are necessary to use full-featured pinctrl drivers in SPL. Signed-off-by: Masahiro Yamada --- dts/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/dts/Kconfig b/dts/Kconfig index a04bb96..0f4d755 100644 --- a/dts/Kconfig +++ b/dts/Kconfig @@ -59,6 +59,7 @@ config DEF

[U-Boot] TFTP Timeout Interval problem

2015-08-31 Thread Gong Q . Y .
Hi, I got a problem with tftp and found this patch. - commit 620776d734e4b126c407f636bda825a594a17723 Author: Pavel Machek Date: Tue Aug 18 14:34:26 2015 +0200 tftp: adjust settings to be suitable for 100Mbit ethernet -- The default timeout is changed to 100 (ms) an

Re: [U-Boot] [PATCH 04/13] dm: serial: Deal with stdout-path with an alias

2015-08-31 Thread Michal Simek
On 08/29/2015 05:10 PM, Simon Glass wrote: > Sometimes stdout-path contains a UART alias along with speed, etc. For > example: > > stdout-path = "serial0:115200n8"; > > Add support for decoding this. > > Signed-off-by: Simon Glass > --- > > drivers/serial/serial-uclass.c | 30 ++

Re: [U-Boot] [PATCH 07/13] arm: zynq: Use separate device tree instead of embedded

2015-08-31 Thread Michal Simek
On 08/29/2015 05:10 PM, Simon Glass wrote: > Production boards should not use CONFIG_OF_EMBED. Fix this for the Zybo > boards. Zynq boards? As you see I have enabled OF_EMBED some weeks ago. zynq: Make CONFIG_OF_EMBED default case 98b532b42079a7ffd617ce0330d6778288b7c535 What's the reason not to

Re: [U-Boot] [PATCH 11/13] arm: zynq: dts: Add U-Boot device tree additions

2015-08-31 Thread Michal Simek
On 08/29/2015 05:10 PM, Simon Glass wrote: > We need to mark some device tree nodes so that they are available before > relocation. This enables driver model to find these automatically. In the > case of SPL it ensures that these nodes will be retained in SPL. > > Signed-off-by: Simon Glass > ---

Re: [U-Boot] [PATCH 13/13] arm: zynq: Move serial driver to driver model

2015-08-31 Thread Michal Simek
On 08/29/2015 05:10 PM, Simon Glass wrote: > Update this driver to use driver model and change all users. > > Signed-off-by: Simon Glass > --- > > arch/arm/Kconfig| 1 + > drivers/serial/serial_zynq.c| 162 > > include/configs/zynq

Re: [U-Boot] Pull request: u-boot-video/master

2015-08-31 Thread Tom Rini
On Mon, Aug 31, 2015 at 01:00:44AM +0200, Anatolij Gustschin wrote: > Hey Tom, > > The following changes since commit b217c89e8565ade3aaa9f74c33c93236bf151187: > > Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-07-20 > 17:12:52 -0400) > > are available in the git repositor

Re: [U-Boot] [PATCH] include: configs: Enable DWC3 and DFU in OMAP5 uEVM

2015-08-31 Thread Tom Rini
On Mon, Aug 31, 2015 at 12:11:39PM +0530, Sekhar Nori wrote: > On Monday 31 August 2015 12:04 PM, Kishon Vijay Abraham I wrote: > > Enabled dwc3, dwc3-omap and PHY to get DWC3 functional in OMAP5 > > uEVM. Also enabled support for DFU. > > Nitpicking, but use of present tense is preferred here. S

Re: [U-Boot] TFTP Timeout Interval problem

2015-08-31 Thread Pavel Machek
Hi! > I got a problem with tftp and found this patch. Yes, sorry about that. Just revert it, or update to newer u-boot where it should be reverted. > - > commit 620776d734e4b126c407f636bda825a594a17723 > Author: Pavel Machek > Date: Tue Aug 18 14:34:26 2015 +0200 > > tftp: ad

Re: [U-Boot] [PATCH 0/7] Add board detection for Odroid XU3 / XU3Lite / XU4

2015-08-31 Thread Przemyslaw Marczak
Hello Anand, On 08/30/2015 09:03 PM, Anand Moon wrote: hi Przemyslaw, On 28 August 2015 at 19:29, Przemyslaw Marczak mailto:p.marc...@samsung.com>> wrote: > This patchset adds: > - define the CPU name for Chromebook Peach Pi as Exynos5800 > - set the cpu id of Exynos5422 to 0x5422 > - S2MPS

Re: [U-Boot] [PATCH] arm: socfpga: dm: Fix DM initialization failure after warm reset

2015-08-31 Thread Jian Luo
Hi, On 28.08.2015 23:48, Marek Vasut wrote: On Friday, August 28, 2015 at 02:09:15 PM, Jian Luo wrote: Hi Marek, Hi, On 28.08.2015 14:01, Marek Vasut wrote: > On Friday, August 28, 2015 at 01:40:08 PM, Jian Luo wrote: snip >> "Security policy". :( > > But thunderbird works ?

Re: [U-Boot] [PATCH 09/45] arm: Remove edb9315a board

2015-08-31 Thread Simon Glass
Hi, On 31 August 2015 at 01:38, sergey kostanbaev wrote: > Hi Simon, > > It seems I missed moving to generic board CONFIG_SYS_GENERIC_BOARD. So could > you point what is better to read to adopt it? Yes - please see doc/README.generic-board which has instructions. It should be very simple. Regar

Re: [U-Boot] [PATCH 03/45] arm: Remove most LaCie boards

2015-08-31 Thread Simon Glass
Hi Simon, On 31 August 2015 at 01:51, Simon Guinot wrote: > On Sun, Aug 30, 2015 at 07:18:57PM -0600, Simon Glass wrote: >> These boards have not been converted to generic board by the deadline. >> Remove all except edmini_v2 (which has been converted). > > Hi Simon, > > Great... Is it still time

Re: [U-Boot] [PATCH 8/8] x86: quark: Optimize MRC execution time

2015-08-31 Thread Simon Glass
Hi Bin, On 31 August 2015 at 03:52, Bin Meng wrote: > Boot time performance degradation is observed with the conversion > to use dm pci. Intel Quark SoC has a low end x86 processor with > only 400MHz frequency and the most time consuming part is with MRC. > Each MRC register programming requires

Re: [U-Boot] [PATCH 2/8] dm: pci: Allow skipping device configuration

2015-08-31 Thread Simon Glass
Hi Bin, On 31 August 2015 at 03:52, Bin Meng wrote: > The non-dm pci driver can skip specified device configuration. With > dm conversion, this capability is lost. Add this back for dm pci. > > Signed-off-by: Bin Meng > --- > > drivers/pci/pci-uclass.c | 3 +++ > 1 file changed, 3 insertions(+)

Re: [U-Boot] [PATCH 0/7] Add board detection for Odroid XU3 / XU3Lite / XU4

2015-08-31 Thread Simon Glass
Hi Przemyslaw, On 28 August 2015 at 07:59, Przemyslaw Marczak wrote: > This patchset adds: > - define the CPU name for Chromebook Peach Pi as Exynos5800 > - set the cpu id of Exynos5422 to 0x5422 > - S2MPS11 PMIC I/O driver > - Exynos5420-compatible (9-channel, 12-bit) ADC driver > - board detect

Re: [U-Boot] [PATCH] dts: do not cut down pinctrl-0 and pinctrl-names for SPL full-pinctrl

2015-08-31 Thread Simon Glass
On 31 August 2015 at 04:36, Masahiro Yamada wrote: > These properties are necessary to use full-featured pinctrl drivers > in SPL. > > Signed-off-by: Masahiro Yamada > --- > > dts/Kconfig | 1 + > 1 file changed, 1 insertion(+) Acked-by: Simon Glass

Re: [U-Boot] [PATCH 1/1] arm: at91: convert meesc board to generic board

2015-08-31 Thread Simon Glass
On 30 August 2015 at 23:32, Daniel Gorsulowski wrote: > Signed-off-by: Daniel Gorsulowski > --- > include/configs/meesc.h | 2 ++ > 1 file changed, 2 insertions(+) Reviewed-by: Simon Glass ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.den

Re: [U-Boot] [PATCH] arm: socfpga: dm: Fix DM initialization failure after warm reset

2015-08-31 Thread Marek Vasut
On Monday, August 31, 2015 at 03:00:22 PM, Jian Luo wrote: > Hi, Hi! > On 28.08.2015 23:48, Marek Vasut wrote: > > On Friday, August 28, 2015 at 02:09:15 PM, Jian Luo wrote: > >> Hi Marek, > > > > Hi, > > > >> On 28.08.2015 14:01, Marek Vasut wrote: > >> > On Friday, August 28, 2015 at 01:40:

Re: [U-Boot] [PATCH 11/13] arm: zynq: dts: Add U-Boot device tree additions

2015-08-31 Thread Simon Glass
Hi Michal, On 31 August 2015 at 05:30, Michal Simek wrote: > On 08/29/2015 05:10 PM, Simon Glass wrote: >> We need to mark some device tree nodes so that they are available before >> relocation. This enables driver model to find these automatically. In the >> case of SPL it ensures that these nod

Re: [U-Boot] [PATCH 11/13] arm: zynq: dts: Add U-Boot device tree additions

2015-08-31 Thread Simon Glass
Hi Masahiro, On 31 August 2015 at 04:01, Masahiro Yamada wrote: > Simon, > > > 2015-08-30 0:10 GMT+09:00 Simon Glass : >> We need to mark some device tree nodes so that they are available before >> relocation. This enables driver model to find these automatically. In the >> case of SPL it ensures

Re: [U-Boot] [PATCH 13/13] arm: zynq: Move serial driver to driver model

2015-08-31 Thread Simon Glass
Hi Michal, On 31 August 2015 at 05:33, Michal Simek wrote: > On 08/29/2015 05:10 PM, Simon Glass wrote: >> Update this driver to use driver model and change all users. >> >> Signed-off-by: Simon Glass >> --- >> >> arch/arm/Kconfig| 1 + >> drivers/serial/serial_zynq.c| 162

Re: [U-Boot] [PATCH 04/13] dm: serial: Deal with stdout-path with an alias

2015-08-31 Thread Simon Glass
Hi Michal, On 31 August 2015 at 05:13, Michal Simek wrote: > On 08/29/2015 05:10 PM, Simon Glass wrote: >> Sometimes stdout-path contains a UART alias along with speed, etc. For >> example: >> >> stdout-path = "serial0:115200n8"; >> >> Add support for decoding this. >> >> Signed-off-by: Sim

Re: [U-Boot] [PATCH 07/13] arm: zynq: Use separate device tree instead of embedded

2015-08-31 Thread Simon Glass
Hi Michal, On 31 August 2015 at 05:24, Michal Simek wrote: > On 08/29/2015 05:10 PM, Simon Glass wrote: >> Production boards should not use CONFIG_OF_EMBED. Fix this for the Zybo >> boards. > > Zynq boards? > > As you see I have enabled OF_EMBED some weeks ago. > zynq: Make CONFIG_OF_EMBED defaul

Re: [U-Boot] [PATCH 8/8] x86: quark: Optimize MRC execution time

2015-08-31 Thread Simon Glass
Hi Bin, On 31 August 2015 at 07:43, Bin Meng wrote: > Hi Simon, > > On Mon, Aug 31, 2015 at 9:20 PM, Simon Glass wrote: >> Hi Bin, >> >> On 31 August 2015 at 03:52, Bin Meng wrote: >>> Boot time performance degradation is observed with the conversion >>> to use dm pci. Intel Quark SoC has a low

Re: [U-Boot] [PATCH 21/45] arm: Remove omap3_logic board

2015-08-31 Thread Simon Glass
Hi Adam, On 31 August 2015 at 07:47, Adam Ford wrote: > If I add the one-line patch to add generic support, can we keep this in > there for the short term? I am working on more patches to both the Kernel > and U-boot but I haven't pushed them for approvals yet. That's fine - make sure you run-t

Re: [U-Boot] [PATCH 03/45] arm: Remove most LaCie boards

2015-08-31 Thread Albert ARIBAUD
Hi SimonS, Le Mon, 31 Aug 2015 07:16:16 -0600, Simon Glass a écrit : > Hi Simon, > > On 31 August 2015 at 01:51, Simon Guinot wrote: > > On Sun, Aug 30, 2015 at 07:18:57PM -0600, Simon Glass wrote: > >> These boards have not been converted to generic board by the deadline. > >> Remove all exce

Re: [U-Boot] [PATCH 07/13] arm: zynq: Use separate device tree instead of embedded

2015-08-31 Thread Michal Simek
On 08/31/2015 03:54 PM, Simon Glass wrote: > Hi Michal, > > On 31 August 2015 at 05:24, Michal Simek wrote: >> On 08/29/2015 05:10 PM, Simon Glass wrote: >>> Production boards should not use CONFIG_OF_EMBED. Fix this for the Zybo >>> boards. >> >> Zynq boards? >> >> As you see I have enabled OF_E

Re: [U-Boot] [PATCH 04/13] dm: serial: Deal with stdout-path with an alias

2015-08-31 Thread Michal Simek
On 08/31/2015 03:54 PM, Simon Glass wrote: > Hi Michal, > > On 31 August 2015 at 05:13, Michal Simek wrote: >> On 08/29/2015 05:10 PM, Simon Glass wrote: >>> Sometimes stdout-path contains a UART alias along with speed, etc. For >>> example: >>> >>> stdout-path = "serial0:115200n8"; >>> >>>

Re: [U-Boot] [PATCH 00/13] dm: arm: zynq: Convert serial driver to driver model

2015-08-31 Thread Michal Simek
On 08/29/2015 05:10 PM, Simon Glass wrote: > This series updates the Zynq serial driver to use driver model. Along the > way several problems are fixed: > > - Support for /chosen/stdout-path using an alias > - Fix to fdtgrep which is currently breaking alias building > - Avoid building u-boot-spl-

Re: [U-Boot] [PATCH 13/13] arm: zynq: Move serial driver to driver model

2015-08-31 Thread Michal Simek
On 08/31/2015 03:54 PM, Simon Glass wrote: > Hi Michal, > > On 31 August 2015 at 05:33, Michal Simek wrote: >> On 08/29/2015 05:10 PM, Simon Glass wrote: >>> Update this driver to use driver model and change all users. >>> >>> Signed-off-by: Simon Glass >>> --- >>> >>> arch/arm/Kconfig

Re: [U-Boot] [PATCH 21/45] arm: Remove omap3_logic board

2015-08-31 Thread Tom Rini
On Mon, Aug 31, 2015 at 08:47:16AM -0500, Adam Ford wrote: > If I add the one-line patch to add generic support, can we keep this in > there for the short term? I am working on more patches to both the Kernel > and U-boot but I haven't pushed them for approvals yet. Adding Peter. Yes. And you

Re: [U-Boot] [PATCH 11/13] arm: zynq: dts: Add U-Boot device tree additions

2015-08-31 Thread Michal Simek
On 08/31/2015 03:54 PM, Simon Glass wrote: > Hi Michal, > > On 31 August 2015 at 05:30, Michal Simek wrote: >> On 08/29/2015 05:10 PM, Simon Glass wrote: >>> We need to mark some device tree nodes so that they are available before >>> relocation. This enables driver model to find these automatica

Re: [U-Boot] [PATCH 41/45] arm: Remove omap3_evm board

2015-08-31 Thread Tom Rini
On Sun, Aug 30, 2015 at 07:19:35PM -0600, Simon Glass wrote: > This board has not been converted to generic board by the deadline. > Remove it. > > Signed-off-by: Simon Glass Acked-by: Tom Rini -- Tom signature.asc Description: Digital signature

[U-Boot] [PATCH 13/13] sunxi: cubietruck: Enable the USB OTG controller

2015-08-31 Thread Maxime Ripard
The Cubietruck has a mini-USB connector that can be used to power up the board and as an OTG connector. Since we have already some USB host-only ports right beside this one, enable it in gadget mode Signed-off-by: Maxime Ripard --- configs/Cubietruck_defconfig | 5 + 1 file changed, 5 inser

[U-Boot] [PATCH 00/13] Implement fastboot over NAND

2015-08-31 Thread Maxime Ripard
Hi everyone, Here is the first attempt at getting fastboot flashing functions working on top of a NAND. While the NAND support itself was quite easy to do, the support for the Android sparse images was quite difficult to add, and ended up being a quite huge refactoring of the sparse parse already

[U-Boot] [PATCH 02/13] sparse: Move main header parsing to a function of its own

2015-08-31 Thread Maxime Ripard
The current sparse image format parser is quite tangled, with a lot of code duplication. Start refactoring it by moving the header parsing function to a function of its own. Signed-off-by: Maxime Ripard --- common/aboot.c | 55 +-- 1 file chan

[U-Boot] [PATCH 07/13] fastboot: Implement NAND backend

2015-08-31 Thread Maxime Ripard
So far the fastboot code was only supporting MMC-backed devices for its flashing operations (flash and erase). Add a storage backend for NAND-backed devices. Signed-off-by: Maxime Ripard --- common/Makefile | 7 +- common/fb_nand.c| 198

[U-Boot] [PATCH 04/13] sparse: Simplify multiple logic

2015-08-31 Thread Maxime Ripard
To check the alignment of the image blocks to the storage blocks, the current code uses a convoluted syntax, while a simple mod also does the work. Signed-off-by: Maxime Ripard --- common/aboot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/aboot.c b/common/aboot.

[U-Boot] [PATCH 08/13] fastboot: nand: Add pre erase and write hooks

2015-08-31 Thread Maxime Ripard
Some devices might need to do some per-partition initialization (ECC/Randomizer settings change for example) before actually accessing it. Add some hooks before the write and erase operations to let the boards define what they need to do if needed. Signed-off-by: Maxime Ripard --- common/fb_nan

[U-Boot] [PATCH 05/13] sparse: Implement storage abstraction

2015-08-31 Thread Maxime Ripard
The current sparse image parser relies heavily on the MMC layer, and doesn't allow any other kind of storage medium to be used. Rework the parser to support any kind of storage medium, as long as there is an implementation for it. Signed-off-by: Maxime Ripard --- common/aboot.c | 51 ++

[U-Boot] [PATCH 01/13] mtd: uboot: Add meaningful error message

2015-08-31 Thread Maxime Ripard
The current error message in get_part if CONFIG_MTDPARTS is disabled is "offset is not a number" which is confusing and doesn't help at all. Change that for something that might give a hint on what's going on. Signed-off-by: Maxime Ripard --- drivers/mtd/mtd_uboot.c | 2 +- 1 file changed, 1 in

[U-Boot] [PATCH 06/13] fastboot: Move fastboot response functions to fastboot core

2015-08-31 Thread Maxime Ripard
The functions and a few define to generate a fastboot message to be sent back to the host were so far duplicated among the users. Move them all to a common place. Signed-off-by: Maxime Ripard --- common/aboot.c | 14 ++ common/fb_mmc.c | 43 +

[U-Boot] [PATCH 11/13] sunxi: Add support for android boot image

2015-08-31 Thread Maxime Ripard
When using the fastboot boot command, the image sent to U-Boot will be an Android boot image. If the support is missing, that won't obviously work, so we need it in our configuration. Signed-off-by: Maxime Ripard --- include/configs/sunxi-common.h | 1 + 1 file changed, 1 insertion(+) diff --gi

[U-Boot] [PATCH 09/13] sparse: Rename the file and header

2015-08-31 Thread Maxime Ripard
The Android sparse image format is currently supported through a file called aboot, which isn't really such a great name, since the sparse image format is only used for transferring data with fastboot. Rename the file and header to a file called "sparse", which also makes it consistent with the he

[U-Boot] [PATCH 12/13] sunxi: A13-Olinuxino: Enable the USB OTG controller

2015-08-31 Thread Maxime Ripard
The A13-Olinuxino has a mini-USB connector that can be used to power up the board and as an OTG connector. Since we have already some USB host-only ports right beside this one, enable it in gadget mode Signed-off-by: Maxime Ripard --- configs/A13-OLinuXino_defconfig | 2 ++ 1 file changed, 2 in

[U-Boot] [PATCH 10/13] sunxi: Make the fastboot buffer larger

2015-08-31 Thread Maxime Ripard
When using fastboot and flashing a larger image such as the main partition of a system, the current 32MB limit for the buffer is quite small. Increase it to something that looks decent for such a use case. Signed-off-by: Maxime Ripard --- include/configs/sunxi-common.h | 2 +- 1 file changed, 1

[U-Boot] [PATCH 03/13] sparse: Refactor chunk parsing function

2015-08-31 Thread Maxime Ripard
The chunk parsing code was duplicating a lot of code among the various chunk types, while all of them could be covered by generic and simple functions. Refactor the current code to reuse as much code as possible and hopefully make the chunk parsing loop more readable and concise. Signed-off-by: M

Re: [U-Boot] [PATCH 43/45] arm: Remove ti814x_evm board

2015-08-31 Thread Felipe Balbi
Hi, On Sun, Aug 30, 2015 at 07:19:37PM -0600, Simon Glass wrote: > This board has not been converted to generic board by the deadline. > Remove it. > > Signed-off-by: Simon Glass there are people using this and ti816x at least. > --- > > arch/arm/Kconfig | 6 -- > board/ti/ti81

Re: [U-Boot] [PATCH 41/45] arm: Remove omap3_evm board

2015-08-31 Thread Felipe Balbi
On Sun, Aug 30, 2015 at 07:19:35PM -0600, Simon Glass wrote: > This board has not been converted to generic board by the deadline. > Remove it. > > Signed-off-by: Simon Glass I have a feeling people still this too. > --- > > arch/arm/cpu/armv7/omap3/Kconfig | 13 -- > board/quipos/cair

Re: [U-Boot] [PATCH 10/13] sunxi: Make the fastboot buffer larger

2015-08-31 Thread Hans de Goede
Hi, On 31-08-15 16:46, Maxime Ripard wrote: When using fastboot and flashing a larger image such as the main partition of a system, the current 32MB limit for the buffer is quite small. Increase it to something that looks decent for such a use case. Signed-off-by: Maxime Ripard --- include/

Re: [U-Boot] [PATCH 43/45] arm: Remove ti814x_evm board

2015-08-31 Thread Simon Glass
Hi, On 31 August 2015 at 08:50, Felipe Balbi wrote: > Hi, > > On Sun, Aug 30, 2015 at 07:19:37PM -0600, Simon Glass wrote: >> This board has not been converted to generic board by the deadline. >> Remove it. >> >> Signed-off-by: Simon Glass > > there are people using this and ti816x at least. O

Re: [U-Boot] [PATCH 41/45] arm: Remove omap3_evm board

2015-08-31 Thread Simon Glass
Hi, On 31 August 2015 at 09:11, Tony Lindgren wrote: > * Felipe Balbi [150831 07:54]: >> On Sun, Aug 30, 2015 at 07:19:35PM -0600, Simon Glass wrote: >> > This board has not been converted to generic board by the deadline. >> > Remove it. >> > >> > Signed-off-by: Simon Glass >> >> I have a feel

[U-Boot] Please pull u-boot-dm

2015-08-31 Thread Simon Glass
Hi Tom, This includes Masahiro's pinctrl uclass (used by Rockchip), a few bug fixes and tidy-ups, and conversion of the TPM code to driver model. The following changes since commit f875bbb49111c308b90b9ca74d1b79f69498b278: ARM: dts: uniphier: add ProXstream2 and PH1-LD6b SoC/board support (20

[U-Boot] [PATCH] sunxi_nand_spl: Be smarter about where to look for backup u-boot.bin

2015-08-31 Thread Hans de Goede
We know when u-boot is written to its own partition, in this case the layout always is: eb 0 spl eb 1 spl-backup eb 2 u-boot eb 3 u-boot-backup eb: erase-block So if we cannot load u-boot from its primary offset we know exactly where to look for it. Signed-off-by: Hans de Goede --- drivers/mt

Re: [U-Boot] [PATCH 41/45] arm: Remove omap3_evm board

2015-08-31 Thread Tony Lindgren
* Felipe Balbi [150831 07:54]: > On Sun, Aug 30, 2015 at 07:19:35PM -0600, Simon Glass wrote: > > This board has not been converted to generic board by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > I have a feeling people still this too. Yeah it seems this is too early fo

Re: [U-Boot] [PATCH 43/45] arm: Remove ti814x_evm board

2015-08-31 Thread Tony Lindgren
* Felipe Balbi [150831 07:54]: > Hi, > > On Sun, Aug 30, 2015 at 07:19:37PM -0600, Simon Glass wrote: > > This board has not been converted to generic board by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > there are people using this and ti816x at least. Yes and it seems

Re: [U-Boot] [PATCH][v6] imx: imx7d: add imx-common cpu support for imx7d

2015-08-31 Thread Stefano Babic
Hi Adrian, On 29/08/2015 01:07, Adrian Alonso wrote: > Add imx-common cpu support for imx7d SoC > - Update reset_cause for imx7d > - Enable watchdog driver built for imx7d > > Signed-off-by: Adrian Alonso > Signed-off-by: Peng Fan > Signed-off-by: Ye.Li > --- > Changes for V2: Split patch to e

Re: [U-Boot] [PATCH] arm: imx-common: init: extend init_aips to support imx7

2015-08-31 Thread Stefano Babic
Hi Adrian, On 29/08/2015 01:06, Adrian Alonso wrote: > Extend init_aips to support imx7 SoC, use is_soc_type > and is_cpu_type to resolve at run time aips3 settings > > Signed-off-by: Adrian Alonso > --- > arch/arm/imx-common/init.c | 44 > 1 file ch

Re: [U-Boot] [PATCH] arm: imx-common: init: extend init_aips to support imx7

2015-08-31 Thread Alonso Adrian
Hi Stefano, > -Original Message- > From: Stefano Babic [mailto:sba...@denx.de] > Sent: Monday, August 31, 2015 10:46 AM > To: Alonso Lazcano Adrian-B38018 ; u- > b...@lists.denx.de; sba...@denx.de > Cc: ota...@ossystems.com.br; Estevam Fabio-R49496 > ; Li Frank-B20596 ; > Garg Nitin-B37173

Re: [U-Boot] [PATCH 41/45] arm: Remove omap3_evm board

2015-08-31 Thread Tom Rini
On Mon, Aug 31, 2015 at 10:38:04AM -0400, Tom Rini wrote: > On Sun, Aug 30, 2015 at 07:19:35PM -0600, Simon Glass wrote: > > > This board has not been converted to generic board by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > Acked-by: Tom Rini OK, after further poking:

Re: [U-Boot] [PATCH][v6] imx: imx7d: initial arch level support

2015-08-31 Thread Stefano Babic
Hi Adrian, On 29/08/2015 01:08, Adrian Alonso wrote: > * Add system arch level header files > - imx-regs.h: iMX7D SoC system architecture registers > - crm_regs.h: Clock control module registers > - sys_proto.h: helper callback function for SoC setup > > Signed-off-by: Adrian Alonso > Sign

Re: [U-Boot] valid RAM region on a 256MB fails occasionally

2015-08-31 Thread harsha kiran
i found the problem.. The first stage bootloader has initialized the mmu unit and since the second stage is running on an already initialized RAM, the RAM test still sees data outside physical address and hence thinks it to be 1GB. When it tries to relocate itself into this address range, it fai

Re: [U-Boot] [PATCH 44/45] arm: Remove ti816x_evm board

2015-08-31 Thread Tom Rini
On Sun, Aug 30, 2015 at 07:19:38PM -0600, Simon Glass wrote: > This board has not been converted to generic board by the deadline. > Remove it. > > Signed-off-by: Simon Glass Nacked-by: Tom Rini And one is getting sent to me shortly, I'll patch now and confirm once the board gets here. -- T

Re: [U-Boot] [PATCH 43/45] arm: Remove ti814x_evm board

2015-08-31 Thread Tom Rini
On Sun, Aug 30, 2015 at 07:19:37PM -0600, Simon Glass wrote: > This board has not been converted to generic board by the deadline. > Remove it. > > Signed-off-by: Simon Glass Nacked-by: Tom Rini And I'll dig mine out, patch and post. -- Tom signature.asc Description: Digital signature

[U-Boot] Please pull u-boot-sunxi master

2015-08-31 Thread Hans de Goede
Hi Tom, Here is another sunxi pull-req for v2015.10, highlights: -Bug fixes and cleanups to the spl nand support which was merged at the beginning of the v2015.10 cycle -Add support for a few new boards -Misc fixes The following changes since commit f875bbb49111c308b90b9ca74d1b79f69498b278:

Re: [U-Boot] [PATCH v2 1/4] ubifs: Modify ubifs u-boot wrapper function prototypes for generic fs use

2015-08-31 Thread Hans de Goede
Hi, On 28-08-15 16:52, Tom Rini wrote: On Tue, Aug 25, 2015 at 01:32:05PM +0200, Hans de Goede wrote: Hi, On 25-08-15 13:00, Heiko Schocher wrote: Hello Hans, Am 22.08.2015 um 20:04 schrieb Hans de Goede: Modify the ubifs u-boot wrapper function prototypes for generic fs use, and give them

[U-Boot] [PATCH v2 1/3] ubifs: Modify ubifs u-boot wrapper function prototypes for generic fs use

2015-08-31 Thread Hans de Goede
Modify the ubifs u-boot wrapper function prototypes for generic fs use, and give them their own header file. This is a preparation patch for adding ubifs support to the generic fs code from fs/fs.c. Signed-off-by: Hans de Goede Reviewed-by: Heiko Schocher --- common/cmd_ubifs.c| 12 ++-

[U-Boot] [PATCH v2 2/3] ubifs: Add functions for generic fs use

2015-08-31 Thread Hans de Goede
Implement the necessary functions for implementing generic fs support for ubifs. Signed-off-by: Hans de Goede Reviewed-by: Heiko Schocher --- fs/ubifs/ubifs.c | 62 +++ include/ubifs_uboot.h | 4 2 files changed, 66 insertions(+) diff

[U-Boot] [PATCH v2 3/3] ubifs: Add generic fs support

2015-08-31 Thread Hans de Goede
Add generic fs support, so that commands like ls, load and test -e can be used on ubifs. Signed-off-by: Hans de Goede Reviewed-by: Heiko Schocher --- disk/part.c | 23 +++ fs/fs.c | 16 include/fs.h | 1 + 3 files changed, 40 insertions(+) diff --git

[U-Boot] [PATCH v2 0/3] ubifs: Add generic fs support

2015-08-31 Thread Hans de Goede
Hi Tom, Heiko, Here is v2 of my ubifs generic fs support series. Changes since v1: -Use a helper function instead of exporting the ubifs_mounted variable. Regards, Hans ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo

Re: [U-Boot] [PATCH][v6] imx: imx7d: initial arch level support

2015-08-31 Thread Alonso Adrian
Hi Stefano, > -Original Message- > From: Stefano Babic [mailto:sba...@denx.de] > Sent: Monday, August 31, 2015 11:01 AM > To: Alonso Lazcano Adrian-B38018 ; u- > b...@lists.denx.de; sba...@denx.de > Cc: ota...@ossystems.com.br; Estevam Fabio-R49496 > ; Li Frank-B20596 ; > Garg Nitin-B37173

Re: [U-Boot] [PATCH][v6] imx: mx7dsabresd: Add support for MX7D SABRESD board

2015-08-31 Thread Stefano Babic
Hi Adrian, On 29/08/2015 01:08, Adrian Alonso wrote: > * Add i.MX7D SABRESD target board support with enabled modules: > UART, PMIC, USB/OTG, SD, eMMC, ENET, I2C, 74LV IOX. > > Build target: mx7dsabresd_config > > Signed-off-by: Peng Fan > Signed-off-by: Fugang Duan > Signed-off-by: Ye.Li

Re: [U-Boot] [PATCH 0/3] cm-fx6 maintenance

2015-08-31 Thread Stefano Babic
Hi Nikita, On 30/08/2015 14:36, Nikita Kiryanov wrote: > This is a collection of small fixes and improvements to cm-fx6. > > Cc: Stefano Babic > Cc: Igor Grinberg > > Nikita Kiryanov (3): > arm: mx6: cm-fx6: force host mode on usb controller > arm: mx6: cm-fx6: print PCB revision > arm:

Re: [U-Boot] [PATCH][v6] imx: imx7d: initial arch level support

2015-08-31 Thread Stefano Babic
Hi Adrian, On 31/08/2015 18:22, Alonso Adrian wrote: >> >> I am confused...Peng has reordered sys_proto.h splitting in a common part >> ./arch/arm/include/asm/imx-common/sys_proto.h and in a cpu part. >> >> The common part contains the prototypes valid for all i.MXes. You have posted >> again a f

Re: [U-Boot] [PATCH][v2] thermal: imx: add imx7d soc thermal support

2015-08-31 Thread Stefano Babic
Hi Adrian, On 29/08/2015 01:19, Adrian Alonso wrote: > Add imx7 SoC thermal driver support > > Signed-off-by: Adrian Alonso > --- > Changes for V2: Fix build error for missin macro check ;P > > drivers/thermal/imx_thermal.c | 86 > --- > 1 file changed,

Re: [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection

2015-08-31 Thread Stefano Babic
On 28/08/2015 15:05, Soeren Moch wrote: > On 08/13/15 21:08, Soeren Moch wrote: >> Signed-off-by: Soeren Moch >> --- >> Cc: Stefano Babic >> --- >> arch/arm/cpu/armv7/mx6/Kconfig | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/arch/arm/cpu/armv7/mx6/Kconfig >> b/arc

Re: [U-Boot] [PATCH v2 2/2] arm, imx6: add aristainetos 2b board version

2015-08-31 Thread Stefano Babic
On 24/08/2015 11:36, Heiko Schocher wrote: > there is a 2b board version of the aristainetos2 > board. Differences to the v2: > > - spi cs for the nor flash and display controller > changed > - some pinmux changes > - LED gpio settings changed > > Signed-off-by: Heiko Schocher > > --- > > Ch

Re: [U-Boot] [PATCH v2 1/2] video, lg4573: make spi bus and cs configurable

2015-08-31 Thread Stefano Babic
On 24/08/2015 11:36, Heiko Schocher wrote: > make the spi bus and the spi chipselect configurable > for the lg4573 driver. Use it on the aristainetos > boards. > > Signed-off-by: Heiko Schocher > > --- > > Changes in v2: > - add comments from Stefano Babic > - move this patch before the 2b ar

Re: [U-Boot] [PATCH 0/9] imx: mx6: support LPDDR2 and add mx6slevk spl

2015-08-31 Thread Stefano Babic
On 17/08/2015 10:10, Peng Fan wrote: > This patch set is to support SPL for mx6slevk board. > But mx6slevk features one LPDDR2 chip. Then we need to first add > LPDDR2 SPL support. Also introduce one ddr_type entry to > differentiate DDR3 and LPDDR2. This patch set also correct tRFC and > tXS for D

Re: [U-Boot] [PATCH V2] mxc: ocotp fix hole in shadow registers

2015-08-31 Thread Stefano Babic
On 26/08/2015 09:40, Peng Fan wrote: > There is a hole in shadow registers address map of size 0x100 > between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL. > Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses, > we should account for this hole in address spa

Re: [U-Boot] [PATCH V2] mxc: ocotp fix hole in shadow registers

2015-08-31 Thread Stefano Babic
On 31/08/2015 18:57, Stefano Babic wrote: > On 26/08/2015 09:40, Peng Fan wrote: >> There is a hole in shadow registers address map of size 0x100 >> between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL. >> Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses, >

Re: [U-Boot] [PATCH V2 2/3] net: fec: do not access reserved register for i.MX6UL

2015-08-31 Thread Stefano Babic
Hi Peng, On 23/08/2015 17:43, Stefano Babic wrote: > On 12/08/2015 11:40, Peng Fan wrote: >> The MIB RAM and FIFO receive start register does not exist on >> i.MX6UL. Accessing these register will cause enet not work well. >> >> Signed-off-by: Peng Fan >> Signed-off-by: Fugang Duan >> Cc: Joe He

Re: [U-Boot] [PATCH 0/7] Add board detection for Odroid XU3 / XU3Lite / XU4

2015-08-31 Thread Przemyslaw Marczak
Hello Simon, On 08/31/2015 03:22 PM, Simon Glass wrote: Hi Przemyslaw, On 28 August 2015 at 07:59, Przemyslaw Marczak wrote: This patchset adds: - define the CPU name for Chromebook Peach Pi as Exynos5800 - set the cpu id of Exynos5422 to 0x5422 - S2MPS11 PMIC I/O driver - Exynos5420-compatib

Re: [U-Boot] [PATCH 10/13] sunxi: Make the fastboot buffer larger

2015-08-31 Thread Rob Herring
On Mon, Aug 31, 2015 at 10:01 AM, Hans de Goede wrote: > Hi, > > On 31-08-15 16:46, Maxime Ripard wrote: >> >> When using fastboot and flashing a larger image such as the main partition >> of a system, the current 32MB limit for the buffer is quite small. >> >> Increase it to something that looks

[U-Boot] [PATCH] arm: socfpga: Add support for the Terasic DE-0 Atlas board

2015-08-31 Thread dinguyen
From: Dinh Nguyen Add support for the Terasic DE0-Nano/Atlas-SoC Kit, which is a CycloneV based board. The board can boot from SD/MMC. Ethernet is a bit different because it has a KSZ9031 PHY, so for now, ethernet doesn't quite work yet, as a few patches are needed to support the PHY. Signed-off

Re: [U-Boot] [PATCH v5 1/5] spi: cadence_qspi: move trigger base configuration in init

2015-08-31 Thread Vikas MANOCHA
Hi Marek, > -Original Message- > From: Vikas MANOCHA > Sent: Thursday, August 27, 2015 9:03 AM > To: Marek Vasut > Cc: u-boot@lists.denx.de; s...@denx.de; grmo...@opensource.altera.com; > jt...@openedev.com > Subject: RE: [PATCH v5 1/5] spi: cadence_qspi: move trigger base > configuration

[U-Boot] [PATCH] tools/kwboot.c: Support UART fallback mode

2015-08-31 Thread Kevin Smith
On some processors such as Armada 38x, if the hardware- configured boot mode fails, the CPU falls back to booting over UART. When this happens the chip prints a failure message, waits for the magic sequence and, when it is received, prints a "(boot)" message, then sends a NAK to start the transfer

  1   2   >