Re: [U-Boot] [PATCH 3/3] configs: k2hk_hs_evm: Resync defconfig with non-HS defconfig

2018-03-24 Thread Lokesh Vutla
On Friday 23 March 2018 02:14 AM, Andrew F. Davis wrote: > Signed-off-by: Andrew F. Davis > --- > configs/k2hk_hs_evm_defconfig | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/configs/k2hk_hs_evm_defconfig b/configs/k2hk_hs_evm_defconfig > index 09ac21e8f3..1cca0caef8

Re: [U-Boot] [PATCHv3 2/2] ARM: dts: zynq: Rename dts for Z-turn board

2018-03-24 Thread Alexander Graf
On 25.03.18 01:32, Anton Gerasimov wrote: > Makes naming in line with other Zynq boards. > > Signed-off-by: Anton Gerasimov Reviewed-by: Alexander Graf Alex ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCHv3 1/2] ARM: dts: zynq: Update dts for Z-turn board

2018-03-24 Thread Alexander Graf
On 25.03.18 01:31, Anton Gerasimov wrote: > Delete devices implemented in PL, stylistic changes. > > Signed-off-by: Anton Gerasimov Reviewed-by: Alexander Graf Alex ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 2/2] tools/imximage: use 0x prefix in HAB Blocks line

2018-03-24 Thread Breno Matheus Lima
Hi Rasmus, 2018-03-23 9:40 GMT-03:00 Fabio Estevam : > On Fri, Mar 23, 2018 at 8:08 AM, Rasmus Villemoes > wrote: >> The u-boot-ivt.img.log file contains 0x prefixes in the HAB Blocks line, >> while the SPL.log does not. For consistency, and to

Re: [U-Boot] [PATCH 1/2] Makefile: always preserve output for images that can contain HAB Blocks

2018-03-24 Thread Breno Matheus Lima
Hi All, 2018-03-23 8:08 GMT-03:00 Rasmus Villemoes : > The current makefile logic disables creation of the > SPL.log/u-boot-ivt.img.log etc. files when V=1 is given on the command > line, the rationale presumably being that the user wants and gets the > information on

Re: [U-Boot] [PATCH] Makefile: always preserve output for images that can contain HAB Blocks

2018-03-24 Thread Breno Matheus Lima
Hi All, My bad, I have commented in the wrong patch, my intention was to comment in [PATCH 1/2] Makefile: always preserve output for images that can contain HAB Blocks. Thanks, Breno Lima 2018-03-24 19:06 GMT-03:00 Breno Matheus Lima : > Hi Rasmus, > > 2018-03-02 10:36

Re: [U-Boot] [PATCH] Makefile: always preserve output for images that can contain HAB Blocks

2018-03-24 Thread Breno Matheus Lima
Hi Rasmus, 2018-03-02 10:36 GMT-03:00 Rasmus Villemoes : > The current makefile logic disables creation of the > SPL.log/u-boot-ivt.img.log etc. files when V=1 is given on the command > line, the rationale presumably being that the user wants and gets the > information

[U-Boot] [PATCH 0/2] efi_loader: (network) event handling

2018-03-24 Thread Heinrich Schuchardt
Some changes were made in iPXE which made it impossible to boot from iSCSI with U-Boot anymore. The first patch ensures that queued events are executed when RestoreTPL is called. This mimics what EDK2 does. iPXE relies on this behavior when using this pattern: bs->RestoreTPL (

[U-Boot] [PATCH 2/2] efi_loader: use TPL_NOTIFY for network timer event

2018-03-24 Thread Heinrich Schuchardt
We use a timer to poll the network. iPXE is used for booting from iSCSI drives. It has been changed to run at TPL_CALLBACK most of the time (which is not what the UEFI spec recommends). By changing our timer to TPL_NOTIFY we can ensure that it is nevertheless executed. Signed-off-by: Heinrich

[U-Boot] [PATCH 1/2] efi_loader: RestoreTPL should execute queued events

2018-03-24 Thread Heinrich Schuchardt
When the TPL is lowered queued events may become eligible for execution. iPXE uses the following pattern to request event execution: bs->RestoreTPL ( TPL_APPLICATION ); bs->RaiseTPL ( TPL_CALLBACK ); Signed-off-by: Heinrich Schuchardt ---

[U-Boot] [PATCHv3 2/2] ARM: dts: zynq: Rename dts for Z-turn board

2018-03-24 Thread Anton Gerasimov
Makes naming in line with other Zynq boards. Signed-off-by: Anton Gerasimov --- arch/arm/dts/Makefile| 2 +- arch/arm/dts/{zynq-zturn-myir.dts => zynq-zturn.dts} | 0 configs/zynq_z_turn_defconfig| 2 +- 3 files changed,

[U-Boot] [PATCHv3 1/2] ARM: dts: zynq: Update dts for Z-turn board

2018-03-24 Thread Anton Gerasimov
Delete devices implemented in PL, stylistic changes. Signed-off-by: Anton Gerasimov --- arch/arm/dts/zynq-zturn-myir.dts | 61 1 file changed, 12 insertions(+), 49 deletions(-) diff --git a/arch/arm/dts/zynq-zturn-myir.dts

[U-Boot] [PATCHv3 0/2] Changes to Z-turn dtd

2018-03-24 Thread Anton Gerasimov
Same as v2, but restored mmc0 alias. spi0 is deleted to avoid confusion with spi0 from zynq-7000.dtsi. Anton Gerasimov (2): ARM: dts: zynq: Update dts for Z-turn board ARM: dts: zynq: Rename dts for Z-turn board arch/arm/dts/Makefile | 2 +-

Re: [U-Boot] [PATCH 1/1] mmc: avoid division by zero in meson_mmc_config_clock

2018-03-24 Thread Heinrich Schuchardt
On 03/18/2018 01:03 AM, Vagrant Cascadian wrote: > On 2018-03-17, Heinrich Schuchardt wrote: >> The Odroid C2 fails to read from mmc with U-Boot v2018.03. >> The change avoids a division by zero. >> >> The fix was suggested by Jaehoon in >>

[U-Boot] [RFC] net: eth_write_hwaddr hides ENOSYS

2018-03-24 Thread Heinrich Schuchardt
Hello Simon, in patch db9391e165dd ("net: Move driver-model code into its own file") function eth_write_hwaddr hides() you chose to introduce the follwing lines: static int eth_write_hwaddr(struct udevice *dev) ... /* * Drivers are allowed to decide not to implement this at * run-time. E.g.

Re: [U-Boot] [PATCH] sysreset: rockchip: use dev_read_addr_ptr get cru base

2018-03-24 Thread Dr. Philipp Tomsich
> On 24 Mar 2018, at 07:49, Andy Yan wrote: > > Use system api dev_read_addr_ptr to get cru reg base, > rather than rockchip private api rockchip_get_cru, which > will be cleanup later. > > Signed-off-by: Andy Yan Acked-by: Philipp Tomsich

Re: [U-Boot] [PATCH 1/1] configs: sunxi: enable BLK, DM_MMC, DM_SCSI

2018-03-24 Thread Heinrich Schuchardt
On 03/20/2018 03:29 PM, Maxime Ripard wrote: > On Sun, Mar 18, 2018 at 10:49:57PM +0100, Heinrich Schuchardt wrote: >> On 03/18/2018 10:21 PM, Maxime Ripard wrote: >>> Hi, >>> >>> On Sun, Mar 18, 2018 at 04:20:06PM +0100, Heinrich Schuchardt wrote: doc/driver-model/MIGRATION.txt requires to

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

2018-03-24 Thread Heiko Schocher
Hello Tom, please pull from u-boot-ubi.git master The following changes since commit 423effc04a195ce6a464eadadfa7f765bf786889: Merge git://git.denx.de/u-boot-arc (2018-03-23 09:31:24 -0400) are available in the Git repository at: git://git.denx.de/u-boot-ubi.git master for you to fetch

Re: [U-Boot] [PATCH v3 2/3] Convert CONFIG_UBIFS_SILENCE_MSG to Kconfig

2018-03-24 Thread Heiko Schocher
Hello Petr, Am 24.03.2018 um 01:49 schrieb Petr Vorel: Introduce another difference from upstream (kernel) source in fs/ubifs/super.c: adding preprocessor condition as y variable in mount_ubifs() depends on CONFIG_UBIFS_SILENCE_MSG: fs/ubifs/super.c:1337:15: error: variable ?y? set but not used

Re: [U-Boot] [PATCH v3 3/3] Convert CONFIG_UBI_SILENCE_MSG to Kconfig

2018-03-24 Thread Heiko Schocher
Hello Petr, Am 24.03.2018 um 01:49 schrieb Petr Vorel: Signed-off-by: Petr Vorel --- README| 6 -- configs/am335x_igep003x_defconfig | 1 + configs/igep0032_defconfig| 1 + configs/igep00x0_defconfig| 1 +

Re: [U-Boot] [PATCH v3 1/3] ubifs: Reintroduce using CONFIG_UBIFS_SILENCE_MSG

2018-03-24 Thread Heiko Schocher
Hello Petr, Am 24.03.2018 um 01:49 schrieb Petr Vorel: Use of CONFIG_UBIFS_SILENCE_MSG was added in 147162dac6 ("ubi: ubifs: Turn off verbose prints") Then it was removed in ff94bc40af ("mtd, ubi, ubifs: resync with Linux-3.14") Cc: Joe Hershberger Cc: Heiko Schocher

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

2018-03-24 Thread Jagan Teki
Hi Tom, Please pull this PR. thanks! Jagan. The following changes since commit 2511930193a420eb8bb6cfa9c60912626f68ae67: Merge git://git.denx.de/u-boot-mips (2018-03-21 18:58:03 -0400) are available in the Git repository at: git://git.denx.de/u-boot-spi.git master for you to fetch

[U-Boot] [PATCH] sysreset: rockchip: use dev_read_addr_ptr get cru base

2018-03-24 Thread Andy Yan
Use system api dev_read_addr_ptr to get cru reg base, rather than rockchip private api rockchip_get_cru, which will be cleanup later. Signed-off-by: Andy Yan --- drivers/sysreset/sysreset_rockchip.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git

[U-Boot] [PATCH] power: pwm regulator: support live tree

2018-03-24 Thread Andy Yan
Use live tree compatible api for pwm regulator. Signed-off-by: Andy Yan --- drivers/power/regulator/pwm_regulator.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/power/regulator/pwm_regulator.c