Re: [U-Boot] [PATCH 24/26] dts: mtmips: add default pinctrl to eth nodes for all boards

2019-08-28 Thread Stefan Roese
On 28.08.19 08:38, Weijie Gao wrote: This patch adds a referenceable name to eth node, and adds default pinctrl for all boards. There are two pinctrl nodes used for two scenarios: ephy_iot_mode- for IOT boards which have only one port (PHY0) ephy_router_mode - For routers which have more tha

Re: [U-Boot] [PATCH 25/26] configs: mtmips: change all boards to use mtk high-speed uart driver

2019-08-28 Thread Stefan Roese
On 28.08.19 08:38, Weijie Gao wrote: This patch changes all defconfig files of mtmips to use mtk high-speed uart driver. This driver is compatible with ns16550a when baudrate <= 115200. Signed-off-by: Weijie Gao As already suggested by Daniel, please move this change into a Kconfig "select"

Re: [U-Boot] [PATCH 1/3] arm: socfpga: Convert reset manager from struct to defines

2019-08-28 Thread Ley Foon Tan
On Wed, Aug 28, 2019 at 9:39 PM Marek Vasut wrote: > > On 8/28/19 3:28 PM, Ley Foon Tan wrote: > > [...] > > >>>Tested this on Agilex, look okay. But, pending test on other device > >>> families, like Gen5 or A10. Not sure any side effect with this change. > >>> 2. Secure (for PSCI) and non-se

Re: [U-Boot] [PATCH v5 0/7] usb: Add cadence USB3 gadget/host/phy driver

2019-08-28 Thread Sherry Sun
Hi Vignesh, > > Hi Sherry, > > On 21/08/19 8:05 PM, Sherry Sun wrote: > > These patches introduce new Cadence driver to U-Boot. > > The first patch is to add the Cadence USB3 IP(CDNS3) core and driver > > for the usb gadget. > > The second patch introduce the xhci-imx8 usb host driver separately

Re: [U-Boot] [PATCH V3 24/27] imx8m: soc: probe clock device in arch_cpu_init_dm

2019-08-28 Thread Schrempf Frieder
Hi Peng, On 27.08.19 08:25, Peng Fan wrote: > Because we need to get cpu freq in print_cpuinfo at very early stage, > so we need to make sure the ccm be probed. > > Signed-off-by: Peng Fan > --- > arch/arm/mach-imx/imx8m/soc.c | 17 + > 1 file changed, 17 insertions(+) > > di

Re: [U-Boot] python3 support for pylibfdt

2019-08-28 Thread Simon Glass
Hi Tom, On Wed, 28 Aug 2019 at 07:47, Tom Rini wrote: > > On Wed, Aug 28, 2019 at 07:44:11AM -0600, Simon Glass wrote: > > Hi Peter, > > > > On Wed, 28 Aug 2019 at 05:46, Peter Robinson wrote: > > > > > > Hi Simon, > > > > > > > > > > > > With the EOL of python2 soon I've been looking at the Fed

[U-Boot] [PATCH v1] apalis-tk1: use distroboot by default

2019-08-28 Thread Igor Opaniuk
From: Igor Opaniuk Use distro boot by default instead legacy wrappers. Signed-off-by: Igor Opaniuk --- configs/apalis-tk1_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/apalis-tk1_defconfig b/configs/apalis-tk1_defconfig index be0554b150..bb36bb3870 1006

[U-Boot] [PATCH V3 0/6] bmips: add brcmnand support

2019-08-28 Thread Álvaro Fernández Rojas
These patches add support for brcmnand on bmips. The current brcmnand driver only supports controller >= 4.0, which means that only BCM63268 works right now. v3: Introduce changes suggested by Daniel Schwierzeck: - Introduce soc_to_priv helper definition. - Switch to dev_remap_addr_name. v2: Dro

[U-Boot] [PATCH V3 1/6] nand: brcm: add BCM6368 support

2019-08-28 Thread Álvaro Fernández Rojas
This adds support for BCM6368, BCM6328, BCM6362 and BCM63268 SoCs. Signed-off-by: Álvaro Fernández Rojas Reviewed-by: Daniel Schwierzeck --- v3: Introduce changes suggested by Daniel Schwierzeck: - Introduce soc_to_priv helper definition. - Switch to dev_remap_addr_name. v2: no changes d

[U-Boot] [PATCH V3 2/6] bmips: bcm6368: add support for brcmnand

2019-08-28 Thread Álvaro Fernández Rojas
BCM6368 uses old 2.1 HW nand controller, which isn't currently supported by brcmnand driver. Signed-off-by: Álvaro Fernández Rojas --- v3: no changes v2: no changes arch/mips/dts/brcm,bcm6368.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/arch/mips/dts/brcm,bcm63

[U-Boot] [PATCH V3 6/6] bmips: enable vr-3032u nand support

2019-08-28 Thread Álvaro Fernández Rojas
Signed-off-by: Álvaro Fernández Rojas --- v3: no changes v2: Drop CONFIG_SYS_NAND_DRIVER_ECC_LAYOUT arch/mips/dts/comtrend,vr-3032u.dts| 13 + configs/comtrend_vr3032u_ram_defconfig | 5 + include/configs/comtrend_vr3032u.h | 5 + 3 files changed, 23 insertions(+)

[U-Boot] [PATCH V3 3/6] bmips: bcm6328: add support for brcmnand

2019-08-28 Thread Álvaro Fernández Rojas
BCM6328 uses old 2.2 HW nand controller, which isn't currently supported by brcmnand driver. Signed-off-by: Álvaro Fernández Rojas --- v3: no changes v2: no changes arch/mips/dts/brcm,bcm6328.dtsi | 16 1 file changed, 16 insertions(+) diff --git a/arch/mips/dts/brcm,bcm6328

[U-Boot] [PATCH V3 5/6] bmips: bcm63268: add support for brcmnand

2019-08-28 Thread Álvaro Fernández Rojas
BCM63268 uses 4.0 HW nand controller, which is currently supported by brcmnand driver. Signed-off-by: Álvaro Fernández Rojas --- v3: no changes v2: no changes arch/mips/dts/brcm,bcm63268.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/arch/mips/dts/brcm,bcm63268.d

[U-Boot] [PATCH V3 4/6] bmips: bcm6362: add support for brcmnand

2019-08-28 Thread Álvaro Fernández Rojas
BCM6362 uses old 2.2 HW nand controller, which isn't currently supported by brcmnand driver. Signed-off-by: Álvaro Fernández Rojas --- v3: no changes v2: no changes arch/mips/dts/brcm,bcm6362.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/arch/mips/dts/brcm,bcm63

Re: [U-Boot] Wandboard boot failure when HAB support is enabled

2019-08-28 Thread Breno Matheus Lima
Hi Jon, Em qua, 28 de ago de 2019 às 09:49, Jon Szymaniak escreveu: > > Hello all, > > I'd like to get U-Boot >= 2019.07 booting on a Wandboard Quad with HAB > support enabled, but appear to be running into either some regressions > (or matters of PEBKAC). For the scope of this discussion, I'm o

Re: [U-Boot] [PATCH v4 1/1] board: arm: Add support for Broadcom BCM7445

2019-08-28 Thread Thomas Fitzsimmons
Hi Bin, Bin Meng writes: > Hi Thomas, > > On Wed, Aug 28, 2019 at 6:31 AM Thomas Fitzsimmons > wrote: >> >> Hi Bin, >> >> Bin Meng writes: >> >> > Hi Thomas, >> > >> > On Sat, Jun 9, 2018 at 6:06 AM Thomas Fitzsimmons >> > wrote: >> >> >> >> Add support for loading U-Boot on the Broadcom 74

Re: [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device

2019-08-28 Thread Alistair Francis
On Mon, 2019-08-26 at 20:45 +0800, Bin Meng wrote: > On Tue, Aug 20, 2019 at 11:38 PM Auer, Lukas > wrote: > > On Fri, 2019-08-16 at 11:00 -0700, Alistair Francis wrote: > > > Add the mmc0 device as a BOOT_TARGET_DEVICES. > > > > > > Signed-off-by: Alistair Francis > > > --- > > > include/confi

[U-Boot] [RFC BUG] CONFIG_OF_SEPARATE - ARM64 Incorrect calculation for uboot-spl.bin padding

2019-08-28 Thread Anand Gore
Hello, While trying to use the CONFIG_OF_SEPARATE option for ARM64, I noticed that the )/$(SPL_BIN)-pad.bin creates a 0 byte size in scripts/Makefile.spl in the following rule. scripts/Makefile.spl: # Create a file that pads from the end of u-boot-spl-nodtb.bin to bss_end $(obj)/$(SPL_BIN)-

Re: [U-Boot] Wandboard boot failure when HAB support is enabled

2019-08-28 Thread Jon Szymaniak
Hi Breno, On Wed, Aug 28, 2019 at 12:14 PM Breno Matheus Lima wrote: > > Hi Jon, > > Em qua, 28 de ago de 2019 às 09:49, Jon Szymaniak > escreveu: > > > > Hello all, > > > > I'd like to get U-Boot >= 2019.07 booting on a Wandboard Quad with HAB > > support enabled, but appear to be running into

Re: [U-Boot] [PATCH] board_f: fix noncached reservation calculation

2019-08-28 Thread Vikas MANOCHA
Hi, > -Original Message- > From: Stephen Warren > Sent: Tuesday, August 27, 2019 7:50 PM > To: Vikas MANOCHA ; Tom Rini > > Cc: twar...@wwwdotorg.org; u-boot@lists.denx.de; Stephen Warren > > Subject: Re: [PATCH] board_f: fix noncached reservation calculation > > On 8/27/19 6:01 PM, Vi

Re: [U-Boot] [PATCH] board_f: fix noncached reservation calculation

2019-08-28 Thread Tom Rini
On Wed, Aug 28, 2019 at 07:22:36PM +, Vikas MANOCHA wrote: > Hi, > > > -Original Message- > > From: Stephen Warren > > Sent: Tuesday, August 27, 2019 7:50 PM > > To: Vikas MANOCHA ; Tom Rini > > > > Cc: twar...@wwwdotorg.org; u-boot@lists.denx.de; Stephen Warren > > > > Subject: Re:

[U-Boot] [RFC PATCH] patman: Use the Change-Id, version, and prefix in the Message-Id

2019-08-28 Thread Douglas Anderson
As per the centithread on ksummit-discuss [1], there are folks who feel that if a Change-Id is present in a developer's local commit that said Change-Id could be interesting to include in upstream posts. Specifically if two commits are posted with the same Change-Id there's a reasonable chance that

Re: [U-Boot] [PATCH] board_f: fix noncached reservation calculation

2019-08-28 Thread Vikas MANOCHA
Hi Tom, > -Original Message- > From: Tom Rini > Sent: Wednesday, August 28, 2019 12:31 PM > To: Vikas MANOCHA > Cc: Stephen Warren ; twar...@wwwdotorg.org; > u-boot@lists.denx.de; Stephen Warren > Subject: Re: [PATCH] board_f: fix noncached reservation calculation > > On Wed, Aug 28, 2

Re: [U-Boot] [RFC PATCH] patman: Use the Change-Id, version, and prefix in the Message-Id

2019-08-28 Thread Doug Anderson
Hi, On Wed, Aug 28, 2019 at 2:05 PM Johannes Berg wrote: > > Hi Doug, > > Some comments on the actual mechanics here (vs. on the kernel list I > picked this up from). > > It seems like perhaps you could increase the "count" variable. You got: > > 20190828132723.0.RFC.Ie6289f437ae533d7fcaddfcee920

[U-Boot] rockchip: rk3399: TPL: rockpro64: Wrong memory size detected

2019-08-28 Thread Kurt Miller
The board has 4G memory but only 2G is detected by TPL. Please let me know if additional information is needed. With u-boot master TPL output: U-Boot TPL 2019.10-rc3-00020-ge4b8dd9b34-dirty (Aug 28 2019 - 17:26:44) LPDDR4, 50MHz BW=32 Col=10 Bk=8 CS0 Row=15 CS=1 Die BW=16 Size=1024MB LPDDR4, 50MH

Re: [U-Boot] python3 support for pylibfdt

2019-08-28 Thread Tom Rini
On Wed, Aug 28, 2019 at 10:11:16AM -0600, Simon Glass wrote: > Hi Tom, > > On Wed, 28 Aug 2019 at 07:47, Tom Rini wrote: > > > > On Wed, Aug 28, 2019 at 07:44:11AM -0600, Simon Glass wrote: > > > Hi Peter, > > > > > > On Wed, 28 Aug 2019 at 05:46, Peter Robinson wrote: > > > > > > > > Hi Simon,

Re: [U-Boot] [PATCH V3 24/27] imx8m: soc: probe clock device in arch_cpu_init_dm

2019-08-28 Thread Peng Fan
Hi Frieder, > Subject: Re: [PATCH V3 24/27] imx8m: soc: probe clock device in > arch_cpu_init_dm > > Hi Peng, > > On 27.08.19 08:25, Peng Fan wrote: > > Because we need to get cpu freq in print_cpuinfo at very early stage, > > so we need to make sure the ccm be probed. > > > > Signed-off-by: Pen

Re: [U-Boot] [PATCH] qemu-riscv64_smode, sifive-fu540: fix extlinux (define preboot)

2019-08-28 Thread Atish Patra
On Wed, 2019-08-21 at 12:07 -0700, David Abdurachmanov wrote: > Commit 37304aaf60bf92a5dc3ef222ba520698bd862a44 removed preboot > commands in RISC-V targets and broke extlinux support as reported > by Fu Wei . > > The patch finishes migration of CONFIG_USE_PREBOOT and CONFIG_REBOOT > to Kconfig. >

Re: [U-Boot] [PATCH 12/26] clk: add clock gating driver for MediaTek MIPS platform

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:24 +0200, Daniel Schwierzeck wrote: > > Am 28.08.19 um 08:37 schrieb Weijie Gao: > > This patch adds clock gating driver for MediaTek MIPS platform > > > > Signed-off-by: Weijie Gao > > --- > > drivers/clk/Kconfig | 8 > > drivers/clk/Makefile

Re: [U-Boot] [PATCH 07/26] pinctrl: add support for MediaTek MT7628

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 14:37 +0200, Stefan Roese wrote: > On 28.08.19 14:26, Stefan Roese wrote: > > On 28.08.19 08:37, Weijie Gao wrote: > >> This patch adds pinctrl support for mt7628, with a file for common pinmux > >> functions and a file for mt7628 which has additional support for pinconf. > >>

Re: [U-Boot] [PATCH 16/26] net: mt7628-eth: remove phy link up detection

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:37 +0200, Stefan Roese wrote: > On 28.08.19 08:38, Weijie Gao wrote: > > The mt7628 has an embedded ethernet switch (5 phy ports + 1 cpu port). > > Although in IOT mode only port0 is usable, the phy0 is still connected > > to the switch, not the ethernet gmac directly. > >

Re: [U-Boot] [PATCH 11/26] dts: mtmips: update reset controller node for mt7628

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:18 +0200, Stefan Roese wrote: > On 28.08.19 08:37, Weijie Gao wrote: > > This patch updates reset controller node for mt7628 > > > > Signed-off-by: Weijie Gao > > --- > > arch/mips/dts/mt7628a.dtsi | 36 > > 1 file changed, 24 inser

Re: [U-Boot] [PATCH 26/26] configs: mtmips: add necessary drivers for mtmips boards

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:40 +0200, Stefan Roese wrote: > On 28.08.19 15:35, Daniel Schwierzeck wrote: > > > > > > Am 28.08.19 um 08:38 schrieb Weijie Gao: > >> This patch adds pinctrl driver, clock gate driver and reset controller > >> support for defconfig files of mtmips boards. > >> > >> Signe

Re: [U-Boot] [PATCH 1/1] x86: efi_loader: Fix invalid address return from efi_alloc()

2019-08-28 Thread Bin Meng
+Heinrich, On Wed, Aug 28, 2019 at 2:35 AM Park, Aiden wrote: > > This issue can be seen on 32bit operation when one of E820_RAM type > entries is greater than 4GB memory space. > > The efi_alloc() finds a free memory in the conventional memory which > is greater than 4GB. But, it does type cast

Re: [U-Boot] [PATCH 1/1] x86: efi_loader: Fix invalid address return from efi_alloc()

2019-08-28 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Wednesday, August 28, 2019 8:37 PM > To: Park, Aiden ; Heinrich Schuchardt > > Cc: Simon Glass ; u-boot@lists.denx.de > Subject: Re: [PATCH 1/1] x86: efi_loader: Fix invalid address return from > efi_alloc()

Re: [U-Boot] [PATCH 1/1] efi_selftest: use standalone UEFI program for exception

2019-08-28 Thread Heinrich Schuchardt
On 8/29/19 5:18 AM, Bin Meng wrote: Hi Heinrich, On Wed, Aug 28, 2019 at 1:26 AM Heinrich Schuchardt wrote: To fully demonstrate crash outputs for UEFI images provide a standalone UEFI application that tries to invoke an illegal opcode. Signed-off-by: Heinrich Schuchardt --- lib/efi_selft

Re: [U-Boot] [PATCH 1/1] efi_selftest: use standalone UEFI program for exception

2019-08-28 Thread Bin Meng
Hi Heinrich, On Wed, Aug 28, 2019 at 1:26 AM Heinrich Schuchardt wrote: > > To fully demonstrate crash outputs for UEFI images provide a standalone > UEFI application that tries to invoke an illegal opcode. > > Signed-off-by: Heinrich Schuchardt > --- > lib/efi_selftest/Makefile

Re: [U-Boot] [PATCH 18/26] net: mt7628-eth: add support to isolate LAN/WAN ports

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:46 +0200, Stefan Roese wrote: > On 28.08.19 08:38, Weijie Gao wrote: > > This patch add support for mt7628-eth to isolate LAN/WAN ports mainly to > > Nitpicking: > > s/add/adds > > > prevent LAN devices from getting IP address from WAN. > > > > Signed-off-by: Weijie Gao

Re: [U-Boot] [PATCH 20/26] mmc: mtk-sd: add support for MediaTek MT7620/MT7628 SoCs

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:50 +0200, Stefan Roese wrote: > On 28.08.19 08:38, Weijie Gao wrote: > > This patch adds mmc support for MediaTek MT7620/MT7628 SoCs. > > > > Signed-off-by: Weijie Gao > > --- > > drivers/mmc/Kconfig | 2 +- > > drivers/mmc/mtk-sd.c | 23 --- > >

Re: [U-Boot] [PATCH 25/26] configs: mtmips: change all boards to use mtk high-speed uart driver

2019-08-28 Thread Weijie Gao
On Wed, 2019-08-28 at 15:57 +0200, Stefan Roese wrote: > On 28.08.19 08:38, Weijie Gao wrote: > > This patch changes all defconfig files of mtmips to use mtk high-speed > > uart driver. > > > > This driver is compatible with ns16550a when baudrate <= 115200. > > > > Signed-off-by: Weijie Gao >

Re: [U-Boot] [PATCH 1/1] x86: show UEFI images involved in crash

2019-08-28 Thread Bin Meng
On Mon, Aug 26, 2019 at 1:55 AM Heinrich Schuchardt wrote: > > If a crash occurs, show the loaded UEFI images to facilitate analysis. > > This is an example output: > > => bootefi 0x100 > Found 0 disks > Hello world of bugs! > Invalid Opcode (Undefined Opcode) > EIP: 0010:[<06ceb06e>] EFLAGS:

Re: [U-Boot] [PATCH 1/1] efi_selftest: use standalone UEFI program for exception

2019-08-28 Thread Bin Meng
On Wed, Aug 28, 2019 at 1:26 AM Heinrich Schuchardt wrote: > > To fully demonstrate crash outputs for UEFI images provide a standalone > UEFI application that tries to invoke an illegal opcode. > > Signed-off-by: Heinrich Schuchardt > --- > lib/efi_selftest/Makefile | 10 +-

Re: [U-Boot] [PATCH 1/1] x86: efi_loader: Fix invalid address return from efi_alloc()

2019-08-28 Thread Bin Meng
Hi Aiden, On Thu, Aug 29, 2019 at 12:02 PM Park, Aiden wrote: > > Hi Bin, > > > -Original Message- > > From: Bin Meng [mailto:bmeng...@gmail.com] > > Sent: Wednesday, August 28, 2019 8:37 PM > > To: Park, Aiden ; Heinrich Schuchardt > > > > Cc: Simon Glass ; u-boot@lists.denx.de > > Subj

Re: [U-Boot] [PATCH 1/1] x86: efi_loader: Fix invalid address return from efi_alloc()

2019-08-28 Thread Heinrich Schuchardt
On 8/29/19 5:36 AM, Bin Meng wrote: +Heinrich, On Wed, Aug 28, 2019 at 2:35 AM Park, Aiden wrote: This issue can be seen on 32bit operation when one of E820_RAM type entries is greater than 4GB memory space. The efi_alloc() finds a free memory in the conventional memory which is greater than

[U-Boot] pull request: u-boot-mpc85xx/master

2019-08-28 Thread Prabhakar Kushwaha
Dear Tom, Please find my pull request for u-boot-mpc85xx/master Summary: Enable DM PCI for T2080RDB, T4240RDB, T1024RDB, T1042D4RDB, P1020RDB, P2020RDB, P2041RDB, P3041DS, P4080DS, and MPC8548CDS Travis-CI: https://travis-ci.org/prabhukush/u-boot/builds/577733313 --pk (prab

Re: [U-Boot] [PATCHv3 0/3] dm: pcie_fsl: Fix some issues

2019-08-28 Thread Prabhakar Kushwaha
> -Original Message- > From: Z.q. Hou > Sent: Tuesday, August 27, 2019 3:44 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; bmeng...@gmail.com > Cc: Z.q. Hou > Subject: [PATCHv3 0/3] dm: pcie_fsl: Fix some issues > > From: Hou Zhiqiang > > The current driver is not working on som

Re: [U-Boot] [PATCHv2 00/47] powerpc: Enable PCIe DM drvier for some platforms

2019-08-28 Thread Prabhakar Kushwaha
> -Original Message- > From: Z.q. Hou > Sent: Tuesday, August 27, 2019 4:33 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; w...@denx.de; Priyanka Jain > ; Shengzhou Liu ; > bmeng...@gmail.com > Cc: Z.q. Hou > Subject: [PATCHv2 00/47] powerpc: Enable PCIe DM drvier for some platform

Re: [U-Boot] [PATCH 1/1] x86: efi_loader: Fix invalid address return from efi_alloc()

2019-08-28 Thread Heinrich Schuchardt
On 8/29/19 7:04 AM, Bin Meng wrote: Hi Aiden, On Thu, Aug 29, 2019 at 12:02 PM Park, Aiden wrote: Hi Bin, -Original Message- From: Bin Meng [mailto:bmeng...@gmail.com] Sent: Wednesday, August 28, 2019 8:37 PM To: Park, Aiden ; Heinrich Schuchardt Cc: Simon Glass ; u-boot@lists.denx

Re: [U-Boot] [PATCH] MAINTAINERS,board/siemens: update maintainer

2019-08-28 Thread Heiko Schocher
Hello Samuel, Am 23.08.2019 um 16:11 schrieb Samuel Egli: Signed-off-by: Samuel Egli Acked-by: Roger Meier Cc: Heiko Schocher --- board/siemens/draco/MAINTAINERS | 2 +- board/siemens/pxm2/MAINTAINERS | 2 +- board/siemens/rut/MAINTAINERS | 2 +- 3 files changed, 3 insertions(+), 3 de

Re: [U-Boot] [PATCH 1/1] siemens: avoid out of bound access

2019-08-28 Thread Heiko Schocher
Hello Heinrich, Am 22.08.2019 um 21:58 schrieb Heinrich Schuchardt: char num[1]; sprintf(num, "%d", i); leads to a buffer overrun. Simplify the overly complex coding. Signed-off-by: Heinrich Schuchardt --- board/siemens/common/board.c | 5 + 1 file changed, 1 insertion

Re: [U-Boot] [PATCH V3 24/27] imx8m: soc: probe clock device in arch_cpu_init_dm

2019-08-28 Thread Schrempf Frieder
On 29.08.19 03:21, Peng Fan wrote: > Hi Frieder, > >> Subject: Re: [PATCH V3 24/27] imx8m: soc: probe clock device in >> arch_cpu_init_dm >> >> Hi Peng, >> >> On 27.08.19 08:25, Peng Fan wrote: >>> Because we need to get cpu freq in print_cpuinfo at very early stage, >>> so we need to make sure th

Re: [U-Boot] [PATCH 1/1] x86: efi_loader: Fix invalid address return from efi_alloc()

2019-08-28 Thread Bin Meng
Hi Heinrich, On Thu, Aug 29, 2019 at 1:25 PM Heinrich Schuchardt wrote: > > On 8/29/19 7:04 AM, Bin Meng wrote: > > Hi Aiden, > > > > On Thu, Aug 29, 2019 at 12:02 PM Park, Aiden wrote: > >> > >> Hi Bin, > >> > >>> -Original Message- > >>> From: Bin Meng [mailto:bmeng...@gmail.com] > >>>

[U-Boot] Pull request for UEFI sub-system for v2019.10-rc4

2019-08-28 Thread Heinrich Schuchardt
The following changes since commit e4b8dd9b34021241cd05d5cc9d24b4ae34657830: Merge https://gitlab.denx.de/u-boot/custodians/u-boot-mpc85xx (2019-08-27 07:11:37 -0400) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2019-10-rc4 for yo

Re: [U-Boot] toolchain for riscv?

2019-08-28 Thread Rick Chen
Hi Hannes > > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Hannes > > Schmelzer > > Sent: Thursday, August 22, 2019 6:21 PM > > To: U-Boot Mailing List > > Subject: [U-Boot] toolchain for riscv? > > > > hi, > > > > just tried to run moveconfig.py, having trouble to find the tool

<    1   2