[PATCH 1/1] common: remove duplicate typedef for uchar

2019-12-09 Thread Heinrich Schuchardt
With commit 37db55b7e9db ("linux/types.h: fix typo unchar") we have a duplicate typedef for uchar. As linux/types.h is included in common.h we don't need another typedef for uchar there. Fixes: 37db55b7e9db ("linux/types.h: fix typo unchar") Signed-off-by: Heinrich Schuchardt ---

Re: Wandboard - I2C error when booting with HDMI cable

2019-12-09 Thread Heiko Schocher
Hello Fabio, Hope you are fine? Am 10.12.2019 um 01:33 schrieb Fabio Estevam: Hi Anatolij and Heiko, When booting a wandboard with a HDMI cable connected I get the following I2C messages: U-Boot 2020.01-rc4-00151-g8dc20b6ae3-dirty (Dec 09 2019 - 21:07:48 -0300) CPU: Freescale i.MX6QP

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

2019-12-09 Thread Tom Rini
On Tue, Dec 10, 2019 at 09:05:59AM +0800, ub...@andestech.com wrote: > Hi Tom, > > Please pull some riscv updates: > > - Increase stack size to avoid a stack overflow during distro boot. > - Add hifive-unleashed-a00.dts for SIFIVE FU540. > - Add OF_SEPARATE support for SIFIVE FU540. > - Add SPL

Re: Pull request: u-boot-net.git master

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 09:51:32AM -0600, Joe Hershberger wrote: > Hi Tom, > > Between dropping the superceeded atheros series and applying your nfs trim > patch, things appear to be all good. > > Passed testing at https://travis-ci.org/jhershbe/u-boot/builds/622465407 > > The following

Re: i.MX8MM-EVK Boot failure

2019-12-09 Thread Fabio Estevam
Hi Adam, On Sat, Dec 7, 2019 at 11:42 AM Adam Ford wrote: > > I am trying to run the latest master > > 4b19b89ca4a866b7baa642533e6dbd67cd832d27 > with the clock patches applied for 8mm, but I am getting a boot > failure when I follow the instructions in the README, which are also a > bit wrong.

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

2019-12-09 Thread uboot
Hi Tom, Please pull some riscv updates: - Increase stack size to avoid a stack overflow during distro boot. - Add hifive-unleashed-a00.dts for SIFIVE FU540. - Add OF_SEPARATE support for SIFIVE FU540. - Add SPL support for Andes AX25 AE350. - Improve U-Boot SPL / OpenSBI smp boot flow for

Wandboard - I2C error when booting with HDMI cable

2019-12-09 Thread Fabio Estevam
Hi Anatolij and Heiko, When booting a wandboard with a HDMI cable connected I get the following I2C messages: U-Boot 2020.01-rc4-00151-g8dc20b6ae3-dirty (Dec 09 2019 - 21:07:48 -0300) CPU: Freescale i.MX6QP rev1.0 at 792 MHz Reset cause: WDOG DRAM: 2 GiB force_idle_bus: sda=0 scl=1

[PATCH v2 1/3] wandboard: Fix the DM_PMIC conversion

2019-12-09 Thread Fabio Estevam
Commit ec837c82d709 ("imx6: wandboard: convert to DM_PMIC") caused the following pmic_get() error: CPU: Freescale i.MX6QP rev1.0 at 792 MHz Reset cause: POR DRAM: 2 GiB PMIC: pmic_get() ret -19 ... and since the PMIC presence is used to determine the board

[PATCH v2 3/3] wandboard: Remove repeated PMIC string

2019-12-09 Thread Fabio Estevam
After the conversion to DM_PMIC the following output is seen: PMIC: PMIC: PFUZE100 ID=0x10 Remove the unnecessary PMIC string from the board file to avoid the repetead string. Signed-off-by: Fabio Estevam --- Changes since v1: - Make it part of a patch series board/wandboard/wandboard.c | 2

[PATCH v2 2/3] wandboard: Propagate the error on PMIC function failure

2019-12-09 Thread Fabio Estevam
When pmic_get() or pmic_reg_read() fail, the error code should be propagated instead of returning success. Signed-off-by: Fabio Estevam --- Changes since v1: - None board/wandboard/wandboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/wandboard/wandboard.c

[PATCH] wandboard: Remove repeated PMIC string

2019-12-09 Thread Fabio Estevam
After the conversion to DM_PMIC the following output is seen: PMIC: PMIC: PFUZE100 ID=0x10 Remove the unnecessary PMIC string from the board file to avoid the repetead string. Signed-off-by: Fabio Estevam --- Hi Stefano, This one depends on these two patches: [PATCH 1/2] wandboard: Fix the

Re: Pull request: u-boot-net.git master

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 11:15:39PM +, Joe Hershberger wrote: > Hi Tom, > > On Mon, Dec 9, 2019 at 4:49 PM Tom Rini wrote: > > > > On Mon, Dec 09, 2019 at 09:51:32AM -0600, Joe Hershberger wrote: > > > > > Hi Tom, > > > > > > Between dropping the superceeded atheros series and applying your

Re: [PATCH 09/20] clk: imx: pllv3: add support for PLLV3_AV type

2019-12-09 Thread Lukasz Majewski
On Mon, 9 Dec 2019 18:13:04 +0100 Giulio Benetti wrote: > Hi Lukasz, > > On 12/8/19 4:05 PM, Lukasz Majewski wrote: > > On Wed, 4 Dec 2019 18:44:28 +0100 > > Giulio Benetti wrote: > > > >> Add support for PLLV3 AV type. > >> > >> Signed-off-by: Giulio Benetti > >> --- > >>

[PATCH 1/2] wandboard: Fix the the DM_PMIC conversion

2019-12-09 Thread Fabio Estevam
Commit ec837c82d709 ("imx6: wandboard: convert to DM_PMIC") caused the following pmic_get() error: CPU: Freescale i.MX6QP rev1.0 at 792 MHz Reset cause: POR DRAM: 2 GiB PMIC: pmic_get() ret -19 ... and since the PMIC presence is used to determine the board

[PATCH 2/2] wandboard: Propagate the error on PMIC function failure

2019-12-09 Thread Fabio Estevam
When pmic_get() or pmic_reg_read() fail, the error code should be propagated instead of returning success. Signed-off-by: Fabio Estevam --- board/wandboard/wandboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/wandboard/wandboard.c

RE: [PATCH 1/4] serial: n16550: Support run-time configuration

2019-12-09 Thread Park, Aiden
Hi Bin/Simon, Thanks for adding me in this review thread. I like this approach very much. Let me make a patch for Slim Bootloader to follow up this dynamic ns16550 and send it for review. Thanks. > -Original Message- > From: Bin Meng > Sent: Sunday, December 8, 2019 3:31 AM > To:

Re: [PATCH 14/20] serial_lpuart: add clock enable if CONFIG_CLK is defined

2019-12-09 Thread Lukasz Majewski
On Mon, 9 Dec 2019 16:20:10 +0100 Giulio Benetti wrote: > Hi Lukasz, > > On 12/8/19 3:52 PM, Lukasz Majewski wrote: > > On Wed, 4 Dec 2019 18:44:33 +0100 > > Giulio Benetti wrote: > > > >> This driver assumes that lpuart clock is already enabled before > >> probing but using DM only lpuart

Re: [PATCH 12/20] pinctrl: add i.MXRT driver

2019-12-09 Thread Lukasz Majewski
On Mon, 9 Dec 2019 12:54:33 +0100 Giulio Benetti wrote: > Hi Lukasz, Stefano, Fabio, all, > > On 12/8/19 3:45 PM, Lukasz Majewski wrote: > > On Wed, 4 Dec 2019 18:44:31 +0100 > > Giulio Benetti wrote: > > > >> Add i.MXRT pinctrl driver. > >> > >> Signed-off-by: Giulio Benetti > >> --- >

Re: [PATCH 11/20] clk: imx: add i.IMXRT1050 clk driver

2019-12-09 Thread Lukasz Majewski
On Mon, 9 Dec 2019 11:53:05 +0100 Giulio Benetti wrote: > Forgotten to ask you... > > On 12/9/19 11:49 AM, Giulio Benetti wrote: > > Hi Lukasz, > > > > On 12/8/19 3:40 PM, Lukasz Majewski wrote: > >> On Wed, 4 Dec 2019 18:44:30 +0100 > >> Giulio Benetti wrote: > >> > >>> Add i.MXRT1050

Re: Pull request: u-boot-net.git master

2019-12-09 Thread Joe Hershberger
Hi Tom, On Mon, Dec 9, 2019 at 4:49 PM Tom Rini wrote: > > On Mon, Dec 09, 2019 at 09:51:32AM -0600, Joe Hershberger wrote: > > > Hi Tom, > > > > Between dropping the superceeded atheros series and applying your nfs trim > > patch, things appear to be all good. > > > > Passed testing at

Re: Pull request: u-boot-net.git master

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 09:51:32AM -0600, Joe Hershberger wrote: > Hi Tom, > > Between dropping the superceeded atheros series and applying your nfs trim > patch, things appear to be all good. > > Passed testing at https://travis-ci.org/jhershbe/u-boot/builds/622465407 > > The following

Re: [PATCH] cros_ec: use uint instead of uint8_t for cmd param

2019-12-09 Thread Simon Glass
On Mon, 9 Dec 2019 at 13:27, Michael Auchter wrote: > > Chromium EC commands can be up to 16-bits, so using a uint8_t here can > cause truncation. Update to use a uint instead. > > It looks like this should likely have been done as a part of > 9fea76f5d30264dc08ac591a7a89427b8441555b, but this

Re: [PATCH v2 1/4] serial: ns16550: Support run-time configuration

2019-12-09 Thread Simon Goldschmidt
Am 09.12.2019 um 17:59 schrieb Simon Glass: At present this driver uses an assortment of CONFIG options to control how it accesses the hardware. This is painful for platforms that are supposed to be controlled by a device tree or a previous-stage bootloader. Add a new CONFIG option to enable

[PATCH] cros_ec: use uint instead of uint8_t for cmd param

2019-12-09 Thread Michael Auchter
Chromium EC commands can be up to 16-bits, so using a uint8_t here can cause truncation. Update to use a uint instead. It looks like this should likely have been done as a part of 9fea76f5d30264dc08ac591a7a89427b8441555b, but this function was skipped for some reason. Signed-off-by: Michael

Re: [U-Boot] [PATCH 1/9] phy: atheros: introduce debug read and write functions

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 01:46:32PM -0600, Joe Hershberger wrote: > Hi Tom, > > On Mon, Dec 9, 2019 at 12:47 PM Tom Rini wrote: > > > > On Mon, Dec 09, 2019 at 07:42:00PM +0100, Michael Walle wrote: > > > Hi Tom, Hi Joe, > > > > > > Am 2019-12-06 00:58, schrieb Tom Rini: > > > > On Fri, Dec 06,

Re: [U-Boot] [PATCH 1/9] phy: atheros: introduce debug read and write functions

2019-12-09 Thread Joe Hershberger
Hi Tom, On Mon, Dec 9, 2019 at 12:47 PM Tom Rini wrote: > > On Mon, Dec 09, 2019 at 07:42:00PM +0100, Michael Walle wrote: > > Hi Tom, Hi Joe, > > > > Am 2019-12-06 00:58, schrieb Tom Rini: > > > On Fri, Dec 06, 2019 at 12:27:39AM +0100, Michael Walle wrote: > > > > Hi Joe, Hi Tom, > > > > > > >

Re: [PATCH 1/1] arm: -march=armv5t for ARM11

2019-12-09 Thread Tom Rini
On Sat, Dec 07, 2019 at 09:14:50AM +0100, Heinrich Schuchardt wrote: > In GCC 9 support for the Armv5 and Armv5E architectures (which have no > known implementations) has been removed, cf. > https://gcc.gnu.org/gcc-9/changes.html > > Commit 16540d07fd62 ("arm: fix -march for ARM11") changed the

Re: [GIT PULL] Pull request: u-boot-imx u-boot-imx-20191209

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 12:28:43PM +0100, Stefano Babic wrote: > Hi Tom, > > some fixes for 2020.01, please pull from u-boot-imx, thanks ! > > Travis: https://travis-ci.org/sbabic/u-boot-imx/builds/621583741 > > u-boot-imx-20191209: > > Fixes for 2020.01 Appli

Re: [PATCH 1/1] linux/types.h: fix typo unchar

2019-12-09 Thread Tom Rini
On Sun, Dec 08, 2019 at 12:22:01AM +0100, Heinrich Schuchardt wrote: > unsigned char should be called uchar and not unchar. > > This fixes a build error in lib/crypto/x509_cert_parser.c. > > Signed-off-by: Heinrich Schuchardt Applied to u-boot/master, thanks! -- Tom signature.asc

Re: [U-Boot] [PATCH 1/9] phy: atheros: introduce debug read and write functions

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 07:42:00PM +0100, Michael Walle wrote: > Hi Tom, Hi Joe, > > Am 2019-12-06 00:58, schrieb Tom Rini: > > On Fri, Dec 06, 2019 at 12:27:39AM +0100, Michael Walle wrote: > > > Hi Joe, Hi Tom, > > > > > > Am 2019-12-05 16:55, schrieb Joe Hershberger: > > > > Hi Michael, > > >

Re: [U-Boot] [PATCH 1/9] phy: atheros: introduce debug read and write functions

2019-12-09 Thread Michael Walle
Hi Tom, Hi Joe, Am 2019-12-06 00:58, schrieb Tom Rini: On Fri, Dec 06, 2019 at 12:27:39AM +0100, Michael Walle wrote: Hi Joe, Hi Tom, Am 2019-12-05 16:55, schrieb Joe Hershberger: > Hi Michael, > > On Fri, Oct 25, 2019 at 7:28 PM Michael Walle wrote: > > > > Provide functions to read and

[PATCH] i2c: i2c_cdns: fix write timeout on fifo boundary

2019-12-09 Thread Michael Auchter
This fixes an issue that would cause I2C writes to timeout when the number of bytes is a multiple of the FIFO depth (i.e. 16 bytes). Within the transfer loop, after writing the data register with a new byte to transfer, if the transfer size equals the FIFO depth, the loop pauses until the

Re: [U-Boot] [PATCH 0/2] Add support for booting EFI FIT images

2019-12-09 Thread Heinrich Schuchardt
On 12/9/19 9:59 AM, Cristian Ciocaltea wrote: On Sun, Dec 08, 2019 at 01:25:27AM +0100, Heinrich Schuchardt wrote: On 11/28/19 8:20 AM, Heinrich Schuchardt wrote: On 11/27/19 8:45 PM, Cristian Ciocaltea wrote: On Tue, Nov 26, 2019 at 07:31:39PM +0100, Heinrich Schuchardt wrote: On 11/24/19

Re: [PATCH 09/20] clk: imx: pllv3: add support for PLLV3_AV type

2019-12-09 Thread Giulio Benetti
Hi Lukasz, On 12/8/19 4:05 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:28 +0100 Giulio Benetti wrote: Add support for PLLV3 AV type. Signed-off-by: Giulio Benetti --- drivers/clk/imx/clk-pllv3.c | 76 + 1 file changed, 76 insertions(+) diff

[PATCH v2 4/4] x86: Move coreboot over to use the coreboot UART

2019-12-09 Thread Simon Glass
Use this UART to improve the compatibility of U-Boot when used as a coreboot payload. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None arch/x86/dts/coreboot.dts | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/x86/dts/coreboot.dts

[PATCH v2 3/4] x86: serial: Add a coreboot serial driver

2019-12-09 Thread Simon Glass
Coreboot can provide information about the serial device in use on a platform. Add a driver that uses this information to produce a working UART. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None drivers/serial/Kconfig | 11 drivers/serial/Makefile

[PATCH v2 1/4] serial: ns16550: Support run-time configuration

2019-12-09 Thread Simon Glass
At present this driver uses an assortment of CONFIG options to control how it accesses the hardware. This is painful for platforms that are supposed to be controlled by a device tree or a previous-stage bootloader. Add a new CONFIG option to enable fully dynamic configuration. This controls

[PATCH v2 2/4] x86: Update coreboot serial table struct

2019-12-09 Thread Simon Glass
Since mid 2016, coreboot has additional fields in the serial struct that it passes down to U-Boot. Add these so we are in sync. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None arch/x86/include/asm/coreboot_tables.h | 19 +++ 1 file changed, 19

Re: [U-Boot] [PATCH] phy: atheros: add some debug output

2019-12-09 Thread Joe Hershberger
Hi Michael, On Sun, Oct 27, 2019 at 3:38 PM Michael Walle wrote: > > The network driver has to set the PHY node correctly. If that is not the > case, ar803x_of_init() will fail. Add some debugging output. > > If the device tree binding is not working for you have a look at the >

Re: [PATCH v2] arm64: zynqmp: Add support for u-boot.itb generation with ATF

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 03:21:02PM +0100, Michal Simek wrote: > On 05. 12. 19 15:33, Tom Rini wrote: > > On Thu, Dec 05, 2019 at 09:46:57AM +0100, Michal Simek wrote: > >> Follow i.MX, Sunxi, RISC-V and Rockchip to generate u-boot.itb which > >> includes U-Boot proper, ATF and DTBs in FIT format.

[PATCH 0/2] arm64: zynqmp: Cleanup defconfigs

2019-12-09 Thread Michal Simek
be build like this: export DEVICE_TREE="avnet-ultra96-rev1" make xilinx_zynqmp_virt_defconfig make -j Series depends on patches sent before that's why here is full tree: https://github.com/michalsimek/u-boot/tree/20191209-mainline Thanks, Michal Michal Simek (2): arm64: zynqmp: A

Re: [PATCH 14/20] serial_lpuart: add clock enable if CONFIG_CLK is defined

2019-12-09 Thread Giulio Benetti
Hi Lukasz, On 12/8/19 3:52 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:33 +0100 Giulio Benetti wrote: This driver assumes that lpuart clock is already enabled before probing but using DM only lpuart won't be automatically enabled so add clk_enable() when probing if CONFIG_CLK is

[PATCH 2/2] arm64: zynqmp: Use zynqmp_virt platform

2019-12-09 Thread Michal Simek
Decrease amount of the similar defconfigs and use generic one instead. The change was declared by commit 4b37c13dc353 ("arm64: zynqmp: Introduce virtual defconfig") and this patch removes configs for the most of the boards. Utra96/zcu100/zcu102/zcu102 and ZynqMP based System controllers *a2197*.

[PATCH 1/2] arm64: zynqmp: Add missing Kconfig options to zynqmp_virt platform

2019-12-09 Thread Michal Simek
These options are taken from zcu102/104 platforms. Also use OF_SEPARATE instead of OF_BOARD. Maybe at some point this option will be taken back but as of now board detection is not ready. export DEVICE_TREE="zynqmp-zcu102-revA" make xilinx_zynqmp_virt_defconfig make -j Signed-off-by: Michal

Re: [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 03:03:48PM +, Oliver Graute wrote: > On 06/12/19, Tom Rini wrote: > > On Fri, Dec 06, 2019 at 06:23:09PM +0100, Lukasz Majewski wrote: > > > Hi Igor, > > > > > > > Hi Stefano > > > > > > > > On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk > > > > wrote: > > > > > > > > >

Re: [U-Boot] amlogic a96 mini

2019-12-09 Thread Tom Rini
On Mon, Dec 09, 2019 at 08:47:07AM +0100, Belisko Marek wrote: > Hi Tom, > > On Wed, Dec 4, 2019 at 11:26 PM Tom Rini wrote: > > > > On Fri, Nov 29, 2019 at 12:06:33PM +0100, Belisko Marek wrote: > > > > > Hi, > > > > > > I'm trying to run mainline u-boot on amlogic a96mini device but before > >

Re: [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion

2019-12-09 Thread Oliver Graute
On 06/12/19, Tom Rini wrote: > On Fri, Dec 06, 2019 at 06:23:09PM +0100, Lukasz Majewski wrote: > > Hi Igor, > > > > > Hi Stefano > > > > > > On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk > > > wrote: > > > > > > > > From: Igor Opaniuk > > > > > > > > Not all CONFIG_FSL_ESDHC defines were

Re: [PATCH 2/2] video: make BPP and ANSI configs optional

2019-12-09 Thread Steffen Dirkwinkel
On Thu, 2019-12-05 at 19:32 +0100, Anatolij Gustschin wrote: > On Thu, 5 Dec 2019 18:15:49 +0100 > Anatolij Gustschin ag...@denx.de wrote: > > > Many boards do not use all selected framebuffer depth > > configurations, for such boards there is some unused > > code in video and console uclass

[PATCH] arm: xilinx: Use device tree which can be passed on cmd line

2019-12-09 Thread Michal Simek
DEVICE_TREE variable has been added by commit 6ab6b2afa091 ("dts: re-write dts/Makefile more simply with Kbuild") where DT can be specified on command line. If it is not then CONFIG_DEFAULT_DEVICE_TREE is used to ensure backward compatibility. Signed-off-by: Michal Simek ---

[PATCH] arm64: zynqmp: Fix return value of board_fit_config_name_match

2019-12-09 Thread Michal Simek
Empty implementation should not return 0 (success) because that mean that passed name matches the board configuration. Signed-off-by: Michal Simek --- arch/arm/mach-zynqmp/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-zynqmp/spl.c

[PATCH] arm64: zynqmp: Fix symlinks to SC psu_init* files

2019-12-09 Thread Michal Simek
Names have to match device tree file names. Also add missing one. Fixes: 50d92833477e ("arm64: zynqmp: Sync names for SC with Versal") Signed-off-by: Michal Simek --- .../zynqmp/{zynqmp-a2197-g-revA => zynqmp-g-a2197-00-revA} | 0 .../zynqmp/{zynqmp-a2197-m-revA =>

[PATCH] arm64: zynqmp: Add board_boot_order for MMC boot extension

2019-12-09 Thread Michal Simek
In past SPL_ZYNQMP_TWO_SDHCI symbol was introduced to handle boards with two sdhci controllers. The problem was that U-Boot is registering controllers based on aliases in DT but bootmode targets specific controller ID. That's why on boards with one "second" sdhci controller bootmode was pointing

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-09 Thread Sascha Dewald
Hello Amit, no problem. Is there some git feature branch, to have a look ? Thank you Sascha Am Mo., 9. Dez. 2019 um 12:12 Uhr schrieb Amit Tomer : > > Hello Sascha, > > > > Am 07.12.19 um 07:23 schrieb Sascha Dewald: > > > > Hello, > > > > > > > > is there any progress yet ? > > Sorry for

Re: [PATCH v2] arm64: zynqmp: Add support for u-boot.itb generation with ATF

2019-12-09 Thread Michal Simek
On 05. 12. 19 15:33, Tom Rini wrote: > On Thu, Dec 05, 2019 at 09:46:57AM +0100, Michal Simek wrote: >> Follow i.MX, Sunxi, RISC-V and Rockchip to generate u-boot.itb which >> includes U-Boot proper, ATF and DTBs in FIT format. ZynqMP supports FIT for >> quite a long time but with using out of

[PATCH v5] mx7ulp: Add support for Embedded Artists COM board

2019-12-09 Thread Fabio Estevam
The Embedded Artists COM board is based on NXP i.MX7ULP. It has a BD70528 PMIC from Rohm with discrete DCDC powering option and improved current observability (compared to the existing NXP i.MX7ULP EVK). Add the initial support for the board. Signed-off-by: Fabio Estevam --- Changes since v4:

Re: Pull request: socfpga-next

2019-12-09 Thread Simon Goldschmidt
On Mon, Dec 9, 2019 at 1:57 PM Marek Vasut wrote: > > On 12/9/19 9:09 AM, Simon Goldschmidt wrote: > > The following changes since commit b38c3a641fc01fcd4eda5fa107ae3c247baa0196: > > > > Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86 > > (2019-12-08 10:51:00 -0500) > > > > are

[PATCH v2 1/4] apalis-tk1: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Create an proper tegra image: $ cbootimage -s tegra124 apalis-tk1.img.cfg apalis-tk1.img Flash in U-boot shell: > tftpboot ${loadaddr} ${board_name}/${board_name}.img > run update_uboot

[PATCH v2 3/4] colibri_t20: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage(NAND). Create an proper tegra image: $ cbootimage -s tegra20 colibri_t20-512-v12-nand.img.cfg colibri_t20.img Flash in U-boot shell: > tftpboot ${loadaddr}

[PATCH v2 4/4] colibri_t30: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Create an proper tegra image: $ cbootimage -s tegra30 colibri_t30.img.cfg colibri_t30.img Flash in U-boot shell: > tftpboot ${loadaddr} ${board_name}/${board_name}.img > run

[PATCH v2 2/4] apalis_t30: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Create an proper tegra image: $ cbootimage -s tegra30 apalis_t30.img.cfg apalis_t30.img Flash in U-boot shell: > tftpboot ${loadaddr} ${board_name}/${board_name}.img > run update_uboot

[PATCH v2 0/4] toradex: tegra: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
This patch series introduces universtal update_uboot wrapper that helps to update U-Boot image on internal storage (eMMC/NAND). Example of usage: > tftpboot ${loadaddr} ${board_name}/${board_name}.img > run update_uboot Igor Opaniuk (4): apalis-tk1: add update_uboot wrapper apalis_t30: add

Re: Pull request: socfpga-next

2019-12-09 Thread Marek Vasut
On 12/9/19 9:09 AM, Simon Goldschmidt wrote: > The following changes since commit b38c3a641fc01fcd4eda5fa107ae3c247baa0196: > > Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86 > (2019-12-08 10:51:00 -0500) > > are available in the git repository at: > >

Re: [PATCH 15/20] serial_lpuart: add support for i.MXRT

2019-12-09 Thread Giulio Benetti
Hi Lukasz, On 12/8/19 3:58 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:34 +0100 Giulio Benetti wrote: Add i.MXRT compatible string and cpu type support to lpuart driver, to use little endian 32 bits configurations. Also according to RM, the Receive RX FIFO Enable (RXFE) field in

[PATCH v4] mx7ulp: Add support for Embedded Artists COM board

2019-12-09 Thread Fabio Estevam
The Embedded Artists COM board is based on NXP i.MX7ULP. It has a BD70528 PMIC from Rohm with discrete DCDC powering option and improved current observability (compared to the existing NXP i.MX7ULP EVK). Add the initial support for the board. Signed-off-by: Fabio Estevam --- Changes since v3:

Re: [PATCH 12/20] pinctrl: add i.MXRT driver

2019-12-09 Thread Giulio Benetti
Hi Lukasz, Stefano, Fabio, all, On 12/8/19 3:45 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:31 +0100 Giulio Benetti wrote: Add i.MXRT pinctrl driver. Signed-off-by: Giulio Benetti --- drivers/pinctrl/nxp/Kconfig | 14 ++ drivers/pinctrl/nxp/Makefile| 1

[GIT PULL] Pull request: u-boot-imx u-boot-imx-20191209

2019-12-09 Thread Stefano Babic
Hi Tom, some fixes for 2020.01, please pull from u-boot-imx, thanks ! Travis: https://travis-ci.org/sbabic/u-boot-imx/builds/621583741 u-boot-imx-20191209: Fixes for 2020.01 - - imx8qxp_mek: increase buffer sizes and args number - Fixes for imx7ulp - imx8mm: Fix the first root

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-09 Thread Amit Tomer
Hello Sascha, > > Am 07.12.19 um 07:23 schrieb Sascha Dewald: > > > Hello, > > > > > > is there any progress yet ? Sorry for being late on this. We have made some progress, ping from RPI to host is working now. Also, managed to received short files(< 63KB) via TFTP. but haven't managed to get

Re: [U-Boot] imx8m: fix rom version check to unbreak some B0 chips

2019-12-09 Thread Stefano Babic
On 07/12/19 16:29, Patrick Wildt wrote: > Ping? > > On Tue, Nov 19, 2019 at 09:42:06AM +0100, Patrick Wildt wrote: >> Recently the version check was improved to be able to determine that >> we're running on SoC revision 2.1. A check for B0 was tightened so >> that it now must equal 0x20 instead

Re: [PATCH 11/20] clk: imx: add i.IMXRT1050 clk driver

2019-12-09 Thread Giulio Benetti
Forgotten to ask you... On 12/9/19 11:49 AM, Giulio Benetti wrote: Hi Lukasz, On 12/8/19 3:40 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:30 +0100 Giulio Benetti wrote: Add i.MXRT1050 clk driver support. Signed-off-by: Giulio Benetti --- drivers/clk/imx/Kconfig

Re: [PATCH 13/20] ARM: dts: imxrt1050: add dtsi file

2019-12-09 Thread Giulio Benetti
Hi Lukasz, On 12/8/19 3:46 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:32 +0100 Giulio Benetti wrote: Add dtsi file for i.MXRT1050. Signed-off-by: Giulio Benetti --- arch/arm/dts/imxrt1050.dtsi | 146 +++ include/dt-bindings/pinctrl/pins-imxrt1050.h | 993

Re: [PATCH 11/20] clk: imx: add i.IMXRT1050 clk driver

2019-12-09 Thread Giulio Benetti
Hi Lukasz, On 12/8/19 3:40 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:30 +0100 Giulio Benetti wrote: Add i.MXRT1050 clk driver support. Signed-off-by: Giulio Benetti --- drivers/clk/imx/Kconfig | 16 ++ drivers/clk/imx/Makefile| 2 +

Re: [PATCH 02/20] spl: fix entry_point equal to load_addr

2019-12-09 Thread Giulio Benetti
Hi Lukasz, First of all thank you for reviewing my patches and... On 12/8/19 3:37 PM, Lukasz Majewski wrote: On Wed, 4 Dec 2019 18:44:21 +0100 Giulio Benetti wrote: At the moment entry_point is set to image_get_load(header) that sets it to "load address" instead of "entry point", assuming

[PATCH v2 5/5] colibri_vf: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Usage example: > tftpboot ${loadaddr} ${board_name}/u-boot-nand.imx > run update_uboot Signed-off-by: Igor Opaniuk --- include/configs/colibri_vf.h | 5 + 1 file changed, 5

[PATCH v2 0/5] toradex: imx: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
This patch series introduces universtal update_uboot wrapper that helps to update U-Boot image on internal storage. Example of usage: > tftpboot ${loadaddr} ${board_name}/u-boot.img > run update_uboot > tftpboot ${loadaddr} ${board_name}/SPL > run update_spl v2: - remove uboot_hwpart defition

[PATCH v2 4/5] colibri-imx6ull: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Usage example: > tftpboot ${loadaddr} ${board_name}/u-boot-nand.imx > run update_uboot Signed-off-by: Igor Opaniuk --- include/configs/colibri-imx6ull.h | 7 +++ 1 file changed,

[PATCH v2 3/5] colibri_imx6: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. > tftpboot ${loadaddr} ${board_name}/u-boot.img > run update_uboot > tftpboot ${loadaddr} ${board_name}/SPL > run update_spl Signed-off-by: Igor Opaniuk ---

[PATCH v2 2/5] apalis_imx6: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Usage example: > tftpboot ${loadaddr} ${board_name}/u-boot.img > run update_uboot > tftpboot ${loadaddr} ${board_name}/SPL > run update_spl Signed-off-by: Igor Opaniuk ---

[PATCH v2 1/5] colibri_imx7: add update_uboot wrapper

2019-12-09 Thread Igor Opaniuk
From: Igor Opaniuk Add universal update_uboot wrapper that helps to update U-Boot image on internal storage. Usage example: > tftpboot ${loadaddr} ${board_name}/u-boot-dtb.imx > run update_uboot Signed-off-by: Igor Opaniuk --- include/configs/colibri_imx7.h | 17 + 1 file

Re: [U-Boot] [PATCH 0/2] Add support for booting EFI FIT images

2019-12-09 Thread Cristian Ciocaltea
On Sun, Dec 08, 2019 at 01:25:27AM +0100, Heinrich Schuchardt wrote: > On 11/28/19 8:20 AM, Heinrich Schuchardt wrote: > > On 11/27/19 8:45 PM, Cristian Ciocaltea wrote: > > > On Tue, Nov 26, 2019 at 07:31:39PM +0100, Heinrich Schuchardt wrote: > > > > On 11/24/19 9:11 PM, Cristian Ciocaltea

Pull request: socfpga-next

2019-12-09 Thread Simon Goldschmidt
The following changes since commit b38c3a641fc01fcd4eda5fa107ae3c247baa0196: Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86 (2019-12-08 10:51:00 -0500) are available in the git repository at: https://github.com/goldsimon/u-boot.git socfpga-next for you to fetch changes up to