Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-05-29 Thread Stefano Babic
Hi Joe, On 29/05/2015 08:09, Joe Hershberger wrote: Hmm.. this seems missing for all imx boards ... $ grep -lr CONFIG_NET configs | xargs grep MX It seems that in ed36323f, Masahiro added the CONFIG_NET config to Kconfig, but most things depended on (and defined) CONFIG_CMD_NET, which he

Re: [U-Boot] [PATCH 5/8] ARM: sunxi: Add sun6i specific PSCI implementation

2015-05-29 Thread Hans de Goede
Hi, On 29-05-15 05:08, Chen-Yu Tsai wrote: On Thu, May 28, 2015 at 11:22 PM, Maxime Ripard maxime.rip...@free-electrons.com wrote: On Thu, May 28, 2015 at 09:25:31PM +0800, Chen-Yu Tsai wrote: This adds PSCI support for sun6i. So far it only supports the PWR_ON method. Signed-off-by: Chen-Yu

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-05-29 Thread Joe Hershberger
Hi Bin, On Fri, May 29, 2015 at 2:16 AM, Bin Meng bmeng...@gmail.com wrote: Hi Heiko, On Fri, May 29, 2015 at 1:19 PM, Heiko Schocher h...@denx.de wrote: Hello Bin, Am 29.05.2015 04:33, schrieb Bin Meng: Hi Joe, On Fri, May 29, 2015 at 1:53 AM, Joe Hershberger

[U-Boot] [PATCH v3 06/11] ARM: UniPhier: move CONFIG_SYS_TEXT_BASE to Kconfig

2015-05-29 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: None Changes in v2: - Sort by savedefconfig Kconfig| 2 +- configs/ph1_ld4_defconfig | 1 + configs/ph1_pro4_defconfig | 1 + configs/ph1_sld8_defconfig | 1 + include/configs/uniphier.h | 6

[U-Boot] [PATCH v3 04/11] ARM: UniPhier: remove unnecessary cache coherency code

2015-05-29 Thread Masahiro Yamada
Cache coherency for SMP is cared by Linux. In U-Boot, the secondary CPU(s) are just sleeping. Nothing in memory is shared with the primary CPU. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: None Changes in v2: None arch/arm/mach-uniphier/lowlevel_init.S | 24

[U-Boot] [PATCH v3 02/11] ARM: UniPhier: update the vendor name of UniPhier in Kconfig

2015-05-29 Thread Masahiro Yamada
The business for UniPhier Soc family has been transferred from Panasonic Corporation to Socionext Inc. Update the SoC select menu in Kconfig. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: - Newly added Changes in v2: None arch/arm/Kconfig |

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-05-29 Thread Bin Meng
Hi Heiko, On Fri, May 29, 2015 at 1:19 PM, Heiko Schocher h...@denx.de wrote: Hello Bin, Am 29.05.2015 04:33, schrieb Bin Meng: Hi Joe, On Fri, May 29, 2015 at 1:53 AM, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Stefano, On Wed, May 27, 2015 at 4:29 AM, Stefano Babic

Re: [U-Boot] [PATCH 0/8] ARM: sunxi: Support PSCI for sun6i and sun8i

2015-05-29 Thread Maxime Ripard
On Fri, May 29, 2015 at 11:15:19AM +0800, Chen-Yu Tsai wrote: - That we have a way to replace the Allwinner bootloader in NAND on these SoCs. That's especially true on the A31, which will boot on NAND by default. We don't look so far off though. Hmm... Is this somehow related?

[U-Boot] [PATCH] arm: dcc: Add uart dcc support for armv8

2015-05-29 Thread Michal Simek
From: Siva Durga Prasad Paladugu siva.durga.palad...@xilinx.com Added UART DCC support for armv8 Signed-off-by: Siva Durga Prasad Paladugu siva...@xilinx.com Signed-off-by: Michal Simek michal.si...@xilinx.com --- Not sure if CONFIG_CPU_ARMV8 is the right symbol but we are following pattern

Re: [U-Boot] [PATCH 5/8] ARM: sunxi: Add sun6i specific PSCI implementation

2015-05-29 Thread Maxime Ripard
On Fri, May 29, 2015 at 11:08:43AM +0800, Chen-Yu Tsai wrote: +.globl psci_fiq_enter +psci_fiq_enter: + push{r0-r12} + + @ Switch to secure + mrc p15, 0, r7, c1, c1, 0 + bic r8, r7, #1 + mcr p15, 0, r8, c1, c1, 0 + isb + + @

[U-Boot] [PATCH 2/8] usb:xhci:exynos: Remove common dwc3 drv functions calls

2015-05-29 Thread Ramneek Mehresh
Remove all redundant dwc3 driver function calls that are defined by dwc3 driver Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- drivers/usb/host/xhci-exynos5.c | 78 include/configs/exynos5-common.h | 1 + 2 files changed, 1

[U-Boot] [PATCH 4/8] usb:xhci:keystone: Remove common dwc3 drv functions calls

2015-05-29 Thread Ramneek Mehresh
Remove all redundant dwc3 driver function calls that are defined by dwc3 driver Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- drivers/usb/host/xhci-keystone.c | 88 include/configs/ks2_evm.h| 1 + 2 files changed, 1

[U-Boot] [PATCH 3/8] usb:xhci:omap: Remove common dwc3 drv functions calls

2015-05-29 Thread Ramneek Mehresh
Remove all redundant dwc3 driver function calls that are defined by dwc3 driver Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- drivers/usb/host/xhci-omap.c | 60 -- drivers/usb/phy/omap_usb_phy.c | 18 -

[U-Boot] [PATCH 6/8] arch:arm:fsl: Add XHCI support for LS1021A

2015-05-29 Thread Ramneek Mehresh
From: ramneek mehresh ramneek.mehr...@freescale.com Add base register address information for USB XHCI controller on LS1021A Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- arch/arm/include/asm/arch-ls102xa/config.h| 1 +

[U-Boot] [PATCH 8/8] include:configs:ls1021aqds: Enable USB IP support

2015-05-29 Thread Ramneek Mehresh
From: ramneek mehresh ramneek.mehr...@freescale.com Enable USB IP support for both EHCI and XHCI for ls1021aqds platform Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- include/configs/ls1021aqds.h | 22 +- 1 file changed, 17 insertions(+), 5 deletions(-)

[U-Boot] [PATCH 0/8] usb:xhci:dwc3: Add dwc3 drv code

2015-05-29 Thread Ramneek Mehresh
A lot of dwc3 code has been duplicated in various xhci drivers. Hence, to minimize this duplication, a new dwc3 file is written that provides common APIs for all other drivers. First four patches introduce dwc3 file, and necessary changes are made in other drivers for this new drv. I would

[U-Boot] [PATCH 1/8] drivers:usb:dwc3: Add DWC3 controller driver support

2015-05-29 Thread Ramneek Mehresh
Add support for DWC3 XHCI controller driver Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- drivers/usb/host/Makefile| 1 + drivers/usb/host/xhci-dwc3.c | 91 include/linux/usb/dwc3.h | 6 +++ 3 files changed, 98

Re: [U-Boot] [PATCH] x86: Fix regression build issue of coreboot-x86_defconfig

2015-05-29 Thread Bin Meng
Hi Simon, On Fri, May 29, 2015 at 7:24 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 28 May 2015 at 09:05, Bin Meng bmeng...@gmail.com wrote: Hi Simon, Hi Joe, On Thu, May 28, 2015 at 7:25 AM, Simon Glass s...@chromium.org wrote: Hi, On 27 May 2015 at 10:27, Joe Hershberger

[U-Boot] [PATCH v3 01/11] ARM: UniPhier: replace asm/io.h with linux/io.h

2015-05-29 Thread Masahiro Yamada
In the Linux coding style, it is recommended to include linux/io.h rather than asm/io.h. Follow this trend. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: - Newly added Changes in v2: None arch/arm/mach-uniphier/board_late_init.c| 5 ++---

[U-Boot] [PATCH v3 10/11] ARM: UniPhier: fix pin mux setting for USB port 2 of PH1-sLD8

2015-05-29 Thread Masahiro Yamada
The register value should be 1, not 4. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: - Newly added Changes in v2: None arch/arm/mach-uniphier/ph1-sld8/pinctrl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v3 00/11] UniPhier updates for v2015.07-rc2

2015-05-29 Thread Masahiro Yamada
Masahiro Yamada (11): ARM: UniPhier: replace asm/io.h with linux/io.h ARM: UniPhier: update the vendor name of UniPhier in Kconfig ARM: UniPhier: use 32 bit register access for debug UART setting ARM: UniPhier: remove unnecessary cache coherency code ARM: UniPhier: remove meaningless

[U-Boot] [PATCH v3 09/11] ARM: UniPhier: update DDR PHY register map for PH1-Pro5

2015-05-29 Thread Masahiro Yamada
PH1-Pro5 includes a newer version of DDR PHY IP. Some registers have been added to the reserved areas. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: None Changes in v2: None arch/arm/mach-uniphier/include/mach/ddrphy-regs.h | 11 +++ 1 file changed, 7

[U-Boot] [PATCH v3 07/11] ARM: UniPhier: set MACH_PH1_PRO4 as default SoC

2015-05-29 Thread Masahiro Yamada
One disadvantage of commit a26cd04920dc (arch: Make board selection choices optional) is that Kconfig could create such an insane .config file that no board is selected. As PH1-Pro4 is the main stream of UniPhier SoC family, rip off the optional again in favor of PH1-Pro4 as the default SoC.

[U-Boot] [PATCH v3 08/11] ARM: UniPhier: enable CONFIG_NET_RANDOM_ETHADDR

2015-05-29 Thread Masahiro Yamada
Since commit 92ac52082140 (net: Remove all references to CONFIG_ETHADDR and friends), the ethernet device on UniPhier boards is not working because of the incorrect (all-zero) MAC address. Enable CONFIG_NET_RANDOM_ETHADDR to generate the random one. Signed-off-by: Masahiro Yamada

[U-Boot] [PATCH v3 05/11] ARM: UniPhier: remove meaningless CONFIG_SPL_BUILD ifdefs

2015-05-29 Thread Masahiro Yamada
This file is only built for SPL. These ifdef conditionals are unnecessary because UniPhier platform now supports UART on SPL. Show appropriate messages on error. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: None Changes in v2: None

[U-Boot] [PATCH v3 11/11] ARM: UniPhier: add pin mux setting for NAND CS1 of PH1-Pro4

2015-05-29 Thread Masahiro Yamada
The chip select 1 of the NAND controller is available if you want to use, although the pins are shared with UART port 2. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: - Newly added Changes in v2: None arch/arm/mach-uniphier/ph1-pro4/pinctrl.c | 2 ++ 1 file

[U-Boot] [PATCH v3 03/11] ARM: UniPhier: use 32 bit register access for debug UART setting

2015-05-29 Thread Masahiro Yamada
For the same reason as commit d0c47b3ef7c5 (serial: UniPhier: use 32 bit register access), use str instead of strb for the LCR register setting. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Changes in v3: None Changes in v2: None

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-05-29 Thread Joe Hershberger
Hi Heiko, On Fri, May 29, 2015 at 12:28 AM, Heiko Schocher h...@denx.de wrote: Hello Joe, Am 28.05.2015 19:53, schrieb Joe Hershberger: Hi Stefano, On Wed, May 27, 2015 at 4:29 AM, Stefano Babic sba...@denx.de wrote: commit fd3056337e6fcc140f400e11edd33f6f1cb37de1 Use env callbacks for

[U-Boot] Issue about support spi-nand in u-boot

2015-05-29 Thread peterpandong
Hi Jagan I looked through your code[1] about support Linux spi-nor framework in u-boot. It is really great. I'm working on spi-nand in u-boot now. And I met some issues. Maybe we can have a discussion. 1. Currently spi_flash struct is tied with spi nor, as spi nand is also a kind of spi

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-05-29 Thread Heiko Schocher
Hello Joe, Am 29.05.2015 08:09, schrieb Joe Hershberger: Hi Heiko, On Fri, May 29, 2015 at 12:28 AM, Heiko Schocher h...@denx.de wrote: Hello Joe, Am 28.05.2015 19:53, schrieb Joe Hershberger: Hi Stefano, On Wed, May 27, 2015 at 4:29 AM, Stefano Babic sba...@denx.de wrote: commit

Re: [U-Boot] [PATCH] spi: cadence_qspi: Fix the indirect ahb trigger address setting

2015-05-29 Thread Stefan Roese
Hi Vikas, (added Dinh, Graham and Marek to Cc) On 29.05.2015 03:22, Vikas Manocha wrote: Trigger base address can be set to the spi flash address without any masking, here is the explanation of the register. QSPI_IND_AHB_ADDR_TRIGGER : Trigger Address is the base address that is used by the

Re: [U-Boot] [U-Boot, v3, 1/4] Kconfig: Enable usage of escape char '\' in string values

2015-05-29 Thread Stefan Roese
On 27.05.2015 23:58, Tom Rini wrote: On Mon, May 18, 2015 at 02:08:21PM +0200, Stefan Roese wrote: I might have missed something, but I failed to use the escape char '\' in strings. To pass a printf format string like foo %d bar\n via Kconfig to the code. Right now its not possible to use the

[U-Boot] [PATCH] tools/kwboot: Add parameters to set delay and timeout via cmdline

2015-05-29 Thread Stefan Roese
To support the Armada 38x, new values for the request-delay and the response-timeout are needed. As the values already implemented in this tool (for Kirkwood and Armada XP) don't seem to work here. To make this more flexible, lets add make those 2 parameters configurable via the cmdline. Here the

Re: [U-Boot] [PATCH] tools/kwboot: Add parameters to set delay and timeout via cmdline

2015-05-29 Thread Luka Perkov
Hi Stefan, On Fri, May 29, 2015 at 01:25:04PM +0200, Stefan Roese wrote: To support the Armada 38x, new values for the request-delay and the response-timeout are needed. As the values already implemented in this tool (for Kirkwood and Armada XP) don't seem to work here. To make this more

Re: [U-Boot] [PATCH 2/2] sunxi/spl: Detect at runtime where from SPL was read

2015-05-29 Thread Hans de Goede
Hi, On 28-05-15 15:18, Daniel Kochmański wrote: Make possible using single `u-boot-sunxi-with-spl.bin` binary for both NAND memory and SD card. Detection where SPL was read from is implemented in `spl_boot_device`. Detection is performed only if `SPL_NAND_SUPPORT` is enabled. Unless SD card

Re: [U-Boot] Issue about support spi-nand in u-boot

2015-05-29 Thread Jagan Teki
On 29 May 2015 at 11:42, Peter Pan 潘栋 (peterpandong) peterpand...@micron.com wrote: Hi Jagan I looked through your code[1] about support Linux spi-nor framework in u-boot. It is really great. I'm bit concern about the spi-flash framework and planning to make generic thanks for your response

Re: [U-Boot] Broken support for hummingboard i2

2015-05-29 Thread Otavio Salvador
On Thu, May 28, 2015 at 9:11 PM, Andrei Gherzan and...@gherzan.ro wrote: Reproduced in yocto (U-Boot SPL 2015.04+fslc+gb16ec2d) and using fedora arm toolchain. Reproduce steps: $ make mrproper $ make mx6cuboxi_defconfig $ make $ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 $ sudo dd

Re: [U-Boot] Broken support for hummingboard i2

2015-05-29 Thread Andrei Gherzan
Hello Otavio, Same results with: $ sudo dd if=SPL of=/dev/mmcblk0 conv=notrunc seek=2 bs=512 ; sync [sudo] password for agherzan: $ sudo dd if=u-boot.img of=/dev/mmcblk0 conv=notrunc seek=69 bs=1K ; sync Regards, Andrei On Fri, May 29, 2015 at 1:53 PM, Otavio Salvador ota...@ossystems.com.br

Re: [U-Boot] [PATCH 2/2] sunxi/spl: Detect at runtime where from SPL was read

2015-05-29 Thread Daniel Kochmański
Hi, Hans de Goede writes: Hi, On 28-05-15 15:18, Daniel Kochmański wrote: Make possible using single `u-boot-sunxi-with-spl.bin` binary for both NAND memory and SD card. Detection where SPL was read from is implemented in `spl_boot_device`. Detection is performed only if

[U-Boot] [PATCH 5/8] drivers:usb:fsl: Add XHCI driver support

2015-05-29 Thread Ramneek Mehresh
From: ramneek mehresh ramneek.mehr...@freescale.com Add xhci driver support for all FSL socs Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- drivers/usb/host/Makefile| 1 + drivers/usb/host/xhci-fsl.c | 109 +++

[U-Boot] [PATCH 7/8] include:configs:ls1021atwr: Enable USB IP support

2015-05-29 Thread Ramneek Mehresh
From: ramneek mehresh ramneek.mehr...@freescale.com Enable USB IP support for both EHCI and XHCI for ls1021atwr platform Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- include/configs/ls1021atwr.h | 38 ++ 1 file changed, 38 insertions(+)

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

2015-05-29 Thread Marek Vasut
Tom, let me know if this builds please. The following changes since commit 012681b1fa822492bb8fdc5c2dd3d24d6092e110: am33xx, spl, siemens: enable debug uart output again (2015-05-28 08:18:25 -0400) are available in the git repository at: git://git.denx.de/u-boot-usb.git HEAD for you to

[U-Boot] [PATCH v4 1/4] Kconfig: Enable usage of escape char '\' in string values

2015-05-29 Thread Stefan Roese
I might have missed something, but I failed to use the escape char '\' in strings. To pass a printf format string like foo %d bar\n via Kconfig to the code. Right now its not possible to use the escape character '\' in Kconfig string values correctly to e.g. set this string value test output\n.

Re: [U-Boot] [PATCH 2/2] sunxi/spl: Detect at runtime where from SPL was read

2015-05-29 Thread Hans de Goede
Hi, On 29-05-15 14:18, Daniel Kochmański wrote: Hi, Hans de Goede writes: Hi, On 28-05-15 15:18, Daniel Kochmański wrote: Make possible using single `u-boot-sunxi-with-spl.bin` binary for both NAND memory and SD card. Detection where SPL was read from is implemented in `spl_boot_device`.

[U-Boot] [PATCH] gpio: fix typos in GPIO header

2015-05-29 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- I also noticed British English spelling standardise and behaviour, but I kept them. I am not sure if it is justified to fix them... include/asm-generic/gpio.h | 16 1 file changed, 8 insertions(+), 8 deletions(-)

[U-Boot] [PATCH] image-fit: Fix compiler warning in fit_conf_print()

2015-05-29 Thread Hans de Goede
This fixes the following compiler warning: In file included from tools/common/image-fit.c:1:0: ./tools/../common/image-fit.c: In function ‘fit_conf_print’: ./tools/../common/image-fit.c:1470:27: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]

Re: [U-Boot] [PATCH v2 22/22] x86: Add support for Intel Minnowboard Max

2015-05-29 Thread Bin Meng
Hi Andrew, Simon, On Fri, May 29, 2015 at 2:09 AM, Andrew Bradford and...@bradfordembedded.com wrote: On 05/28 10:30, Simon Glass wrote: Hi Andrew, On 27 May 2015 at 08:39, Andrew Bradford and...@bradfordembedded.com wrote: On 05/27 13:19, Bin Meng wrote: Hi Simon, On Wed, May 27,

Re: [U-Boot] [PATCHv3 2/3] driver/ddr/altera/: Add the sdram calibration portion

2015-05-29 Thread Dinh Nguyen
On 05/28/2015 01:18 PM, Marek Vasut wrote: On Thursday, May 28, 2015 at 05:41:26 PM, Dinh Nguyen wrote: On 05/25/2015 08:23 AM, Wolfgang Denk wrote: Dear Pavel, In message 20150525123750.GD9943@amd you wrote: + ** All global variables that are explicitly initialized (including ** +

[U-Boot] [PATCH v3 resend 2/3] sunxi/spl: Detect at runtime where from SPL was read

2015-05-29 Thread Daniel Kochmański
Make possible using single `u-boot-sunxi-with-spl.bin` binary for both NAND memory and SD card. Detection where SPL was read from is implemented in `spl_boot_device`. V2: - Move signature verification to helper function - Avoid unnecessary condition nesting V3: - Further simplification of

[U-Boot] [PATCH v3 resend 0/3] typo in PATCH v3 2/3

2015-05-29 Thread Daniel Kochmański
Sorry, some typo left after rebasing (affects only patch 2/3). Daniel Kochmański (3): sunxi: Create helper function veryfing valid boot signature on MMC sunxi/spl: Detect at runtime where from SPL was read mmc: Protect `mmc_initialize` from initilizing mmc multiple times

[U-Boot] [PATCH] mx6cuboxi: Fix boot of hummingboard dual-lite

2015-05-29 Thread Fabio Estevam
Hummingboard dual-lite is picking the incorrect calibration structure. Fix it so that it can boot. While at it, also fix p1_mpdgctrl1 register to match Solid-run's setting. Reported-by: Andrei Gherzan and...@gherzan.ro Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- I do not have

[U-Boot] [PATCH v3 3/3] mmc: Protect `mmc_initialize` from initilizing mmc multiple times

2015-05-29 Thread Daniel Kochmański
`mmc_initialize` might be called from various places and initializing list head of `mmc_devices` can lead to memory leaks. Signed-off-by: Daniel Kochmański dkochman...@turtle-solutions.eu CC: Roy Spliet r.spl...@ultimaker.com Cc: Ian Campbell i...@hellion.org.uk Cc: Hans De Goede

[U-Boot] [PATCH v3 1/3] sunxi: Create helper function veryfing valid boot signature on MMC

2015-05-29 Thread Daniel Kochmański
This patch extracts checking for valid SD card eGON.BT0 signature from `board_mmc_init` into function `sunxi_mmc_has_egon_boot_signature`. Buffer for mmc sector is allocated and freed at runtime. `panic` is triggered on malloc failure. Signed-off-by: Daniel Kochmański

[U-Boot] Missing patches in patchwork

2015-05-29 Thread York Sun
Jeremy, I noticed many patches are missing in u-boot project for yesterday. Is there an issue? York ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v3 follow-up 3/3] sunxi: Remove redundant check from `board_mmc_init` for signature

2015-05-29 Thread Daniel Kochmański
Removes checking for signature on mmc devices, because it is done on `spl_boot_device`. This is follow-up patch to V3. Signed-off-by: Daniel Kochmański dkochman...@turtle-solutions.eu CC: Roy Spliet r.spl...@ultimaker.com Cc: Ian Campbell i...@hellion.org.uk Cc: Hans De Goede hdego...@redhat.com

Re: [U-Boot] [PATCH] spi: cadence_qspi: Fix the indirect ahb trigger address setting

2015-05-29 Thread vikasm
Hi Stefan, On 05/28/2015 11:20 PM, Stefan Roese wrote: Hi Vikas, (added Dinh, Graham and Marek to Cc) On 29.05.2015 03:22, Vikas Manocha wrote: Trigger base address can be set to the spi flash address without any masking, here is the explanation of the register. QSPI_IND_AHB_ADDR_TRIGGER

[U-Boot] [PATCH v3 2/3] sunxi/spl: Detect at runtime where from SPL was read

2015-05-29 Thread Daniel Kochmański
Make possible using single `u-boot-sunxi-with-spl.bin` binary for both NAND memory and SD card. Detection where SPL was read from is implemented in `spl_boot_device`. V2: - Move signature verification to helper function - Avoid unnecessary condition nesting V3: - Further simplification of

[U-Boot] [PATCH v2] board: add support for Vision System's Baltos Industrial PC

2015-05-29 Thread Yegor Yefremov
Vision Systems's Baltos is based on AM335x SoC from Texas Instruments. This patch adds support such Industrial PCs in mainline u-boot. [ ba...@ti.com: updated original patch to current u-boot ] Signed-off-by: Yegor Yefremov yegorsli...@googlemail.com Signed-off-by: Felipe Balbi ba...@ti.com ---

Re: [U-Boot] [PATCH] mx6: repair sl and slx load addresses

2015-05-29 Thread Soeren Moch
Also, I noticed that the following boards have different LOADADDR and/or SYS_TEST_BASE after the aforementioned commit: - cm_fx6 - novena - tbs2910 The current patch does not touch those and assumes they still work with latest u-boot. Maybe a test or two to confirm would not harm... Testers

Re: [U-Boot] [PATCH 03/10] imx6: move generic imx6 options to mx6_common.h

2015-05-29 Thread Soeren Moch
Stefano, As far as I can see, there are only two boards : gw_ventana and tbs2910. CONFIG_DISPLAY_BOARDINFO_LATE enables show_board_info(), and this is not weak, printing twice if we have both CONFIG_DISPLAY_BOARDINFO_LATE and CONFIG_DISPLAY_BOARDINFO. I would suggest that we add #undef

Re: [U-Boot] [PATCH] x86: baytrail: PCI is not always mapped to end of ram

2015-05-29 Thread Andrew Bradford
Hi Bin, On 05/29 13:00, Bin Meng wrote: Hi Andrew, On Wed, May 27, 2015 at 7:53 PM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Bin, On 05/27 12:21, Bin Meng wrote: Hi Andrew, On Tue, May 26, 2015 at 8:17 PM, Andrew Bradford and...@bradfordembedded.com wrote: Hi

Re: [U-Boot] Broken support for hummingboard i2

2015-05-29 Thread Andrei Gherzan
Hi Fabio, On Fri, May 29, 2015 at 4:36 PM, Fabio Estevam feste...@gmail.com wrote: Hi Andrei, On Fri, May 29, 2015 at 8:57 AM, Andrei Gherzan and...@gherzan.ro wrote: Hello Otavio, Same results with: $ sudo dd if=SPL of=/dev/mmcblk0 conv=notrunc seek=2 bs=512 ; sync [sudo] password for

Re: [U-Boot] [PATCH] mx6cuboxi: Fix boot of hummingboard dual-lite

2015-05-29 Thread Andrei Gherzan
Hi, On Fri, May 29, 2015 at 6:00 PM, Fabio Estevam fabio.este...@freescale.com wrote: Hummingboard dual-lite is picking the incorrect calibration structure. Fix it so that it can boot. While at it, also fix p1_mpdgctrl1 register to match Solid-run's setting. Reported-by: Andrei Gherzan

[U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support

2015-05-29 Thread Soeren Moch
Add PRE_CONSOLE_BUFFER support to display early boot messages over HDMI. Signed-off-by: Soeren Moch sm...@web.de --- Cc: Stefano Babic sba...@denx.de --- include/configs/tbs2910.h | 4 1 file changed, 4 insertions(+) diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h index

[U-Boot] [PATCH 1/2] tbs2910: add thermal support

2015-05-29 Thread Soeren Moch
Signed-off-by: Soeren Moch sm...@web.de --- Cc: Stefano Babic sba...@denx.de --- configs/tbs2910_defconfig | 2 ++ include/configs/tbs2910.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/configs/tbs2910_defconfig b/configs/tbs2910_defconfig index cace345..51319d1 100644 ---

Re: [U-Boot] Broken support for hummingboard i2

2015-05-29 Thread Fabio Estevam
Hi Andrei, On Fri, May 29, 2015 at 8:57 AM, Andrei Gherzan and...@gherzan.ro wrote: Hello Otavio, Same results with: $ sudo dd if=SPL of=/dev/mmcblk0 conv=notrunc seek=2 bs=512 ; sync [sudo] password for agherzan: $ sudo dd if=u-boot.img of=/dev/mmcblk0 conv=notrunc seek=69 bs=1K ; sync

[U-Boot] [PATCH] moveconfig: Add a new --git-ref option

2015-05-29 Thread Joe Hershberger
This option allows the 'make *_defconfig' step to run against a former repo state, while the savedefconfig step runs against the current repo state. This is convenient for the case where something in the Kconfig has changed such that the defconfig is no longer complete with the new Kconfigs. This