[U-Boot] [PATCH] Kconfig: Remove trailing whitespaces in prompt

2018-07-22 Thread Michal Simek
Remove additional trailing whitespaces in prompt reported by kconfiglib: warning: DM_PMIC_SANDBOX (defined at drivers/power/pmic/Kconfig:133) has leading or trailing whitespace in its prompt warning: (defined at dts/Kconfig:204) has leading or trailing whitespace in its prompt Signed-off-by: Mic

[U-Boot] [PATCH] microblaze: Add missing quotes around XILINX_MICROBLAZE0_HW_VER

2018-07-22 Thread Michal Simek
This issue is reported by kconfiglib: warning: style: quotes recommended around default value for string symbol XILINX_MICROBLAZE0_HW_VER (defined at board/xilinx/microblaze-generic/Kconfig:37) Signed-off-by: Michal Simek --- board/xilinx/microblaze-generic/Kconfig | 2 +- 1 file changed, 1 ins

Re: [U-Boot] [UBOOT PATCH v2] net: zynq_gem: convert to use livetree

2018-07-22 Thread Siva Durga Prasad Paladugu
Hi Joe/Michal, Can you please take it up if it is fine. Thanks, Siva > -Original Message- > From: Siva Durga Prasad Paladugu [mailto:siva.durga.palad...@xilinx.com] > Sent: Monday, July 16, 2018 6:26 PM > To: u-boot@lists.denx.de > Cc: Michal Simek ; joe.hershber...@ni.com; > grygorii.st

Re: [U-Boot] [PATCH 1/1] dm: sysreset: x86: missing build dependency

2018-07-22 Thread Bin Meng
Hi Heinrich, On Sun, Jul 22, 2018 at 5:48 PM, Heinrich Schuchardt wrote: > make qemu-x86_defconfig > with additional > > #CONFIG_SYSRESET is not set > I don't understand the changes. Why do you want to add "#CONFIG_SYSRESET is not set"? > results in > > LD u-boot > lib/built-in.o: In

Re: [U-Boot] login-password.

2018-07-22 Thread Fabio Estevam
Hi Mehmet, On Mon, Jul 9, 2018 at 10:23 AM, Mehmet Ali İPİN wrote: > May be you know the login/password or a method to bypass this query in > u-boot or kernel files. This seems to be off topic in the U-Boot list. Maybe you could post it to the imx community. Regards, Fabio Estevam __

[U-Boot] [PATCH v2.1 11/13] sunxi: add DRAM support to H6

2018-07-22 Thread Icenowy Zheng
The Allwinner H6 SoC comes with a set of new DRAM controller+PHY combo. Both the controller and the PHY seem to be originate from DesignWare, and are similar to the ones in ZynqMP SoCs. This commit introduces an initial DRAM driver for H6, which contains only LPDDR3 support. The currently known SB

Re: [U-Boot] [RFC] usb: musb-new: omap2430: Enable DM_USB and OF support

2018-07-22 Thread Lukasz Majewski
Hi Adam, > On Sun, Jul 22, 2018 at 11:45 AM Adam Ford wrote: > > > > With upcoming changes that require CONFIG_BLK, this broke > > USB Mass Storage on the OMAP3 boards because if CONFIG_BLK is > > enabled, it assumes that DM_USB is enabled, but it wasn't yet > > available on omap3 and omap4 board

[U-Boot] [PATCH 2/2] db410c: Fixup DRAM

2018-07-22 Thread Ramon Fried
Call the MSM DRAM detection and fixup function to support dynamic detection of onboard memory. Signed-off-by: Ramon Fried --- board/qualcomm/dragonboard410c/dragonboard410c.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/qualcomm/dragonboard410c/dragonboard410c.c b/board/qualcomm/

[U-Boot] [PATCH 1/2] snapdragon: Add DRAM detection & FDT fixup

2018-07-22 Thread Ramon Fried
Fixup the Linux FDT with the detection of onboard DRAM as provided by SBL (Secondary boot loader) by reading the shared-memory region. Signed-off-by: Ramon Fried --- arch/arm/mach-snapdragon/Makefile| 1 + arch/arm/mach-snapdragon/dram.c | 97 arch/

Re: [U-Boot] [RFC] usb: musb-new: omap2430: Enable DM_USB and OF support

2018-07-22 Thread Adam Ford
On Sun, Jul 22, 2018 at 11:45 AM Adam Ford wrote: > > With upcoming changes that require CONFIG_BLK, this broke > USB Mass Storage on the OMAP3 boards because if CONFIG_BLK is > enabled, it assumes that DM_USB is enabled, but it wasn't yet > available on omap3 and omap4 boards. > > This patch conv

[U-Boot] [RFC] usb: musb-new: omap2430: Enable DM_USB and OF support

2018-07-22 Thread Adam Ford
With upcoming changes that require CONFIG_BLK, this broke USB Mass Storage on the OMAP3 boards because if CONFIG_BLK is enabled, it assumes that DM_USB is enabled, but it wasn't yet available on omap3 and omap4 boards. This patch converts the OMAP2430 MUSB glue to support DM_USB and extracts the n

[U-Boot] [RFC 1/1] efi_loader: check parameters of efi_file_open()

2018-07-22 Thread Heinrich Schuchardt
Check the parameters of efi_file_open(). Signed-off-by: Heinrich Schuchardt --- Hello Takahiro, this patch is necessary to become more UEFI compliant. But it interferes with your FAT patch series. You might integrate the changes into the next version of you patch series. Otherwise I keep the pa

Re: [U-Boot] [PATCH 1/1] bios_emulator: remove assignment without effect

2018-07-22 Thread Heinrich Schuchardt
On 03/19/2018 06:59 PM, Simon Glass wrote: > On 18 March 2018 at 04:01, Heinrich Schuchardt wrote: >> Assigning a parameter which is not used afterwards has not effect. >> >> Signed-off-by: Heinrich Schuchardt >> --- >> drivers/bios_emulator/atibios.c | 1 - >> 1 file changed, 1 deletion(-) > >

[U-Boot] [PATCH 1/1] dm: sysreset: x86: missing build dependency

2018-07-22 Thread Heinrich Schuchardt
make qemu-x86_defconfig with additional #CONFIG_SYSRESET is not set results in LD u-boot lib/built-in.o: In function `efi_reset_system_boottime': lib/efi_loader/efi_runtime.c:122: undefined reference to `do_reset' Fixes: fabb2b4c7f28 ("dm: sysreset: x86: Add a sysreset driver") Sig

Re: [U-Boot] [PATCH 01/17] fs: fat: extend get_fs_info() for write use

2018-07-22 Thread Heinrich Schuchardt
On 07/20/2018 08:06 PM, Heinrich Schuchardt wrote: > On 07/20/2018 04:57 AM, AKASHI Takahiro wrote: >> get_fs_info() was introduced in major re-work of read operation by Rob. >> We want to reuse this function in write operation by extending it with >> additional members in fsdata structure. >> >> S