Re: [U-Boot] [PATCH v5] arm: dts: Stratix10: Add QSPI node

2019-04-08 Thread Simon Goldschmidt
On Tue, Apr 9, 2019 at 7:33 AM Ley Foon Tan wrote: > > On Wed, Apr 3, 2019 at 1:45 PM Ley Foon Tan wrote: > > > > Merge qspi dts node from Linux. > > Commit 0cb140d07fc75fb (arm64: dts: stratix10: Add QSPI support for > > Stratix10) > > > > Add -u-boot.dtsi files for non Linux dts properties

Re: [U-Boot] [PATCH v5] arm: dts: Stratix10: Add QSPI node

2019-04-08 Thread Ley Foon Tan
On Wed, Apr 3, 2019 at 1:45 PM Ley Foon Tan wrote: > > Merge qspi dts node from Linux. > Commit 0cb140d07fc75fb (arm64: dts: stratix10: Add QSPI support for Stratix10) > > Add -u-boot.dtsi files for non Linux dts properties and > update properties for Uboot. > - add u-boot,dm-pre-reloc > - add

[U-Boot] [PATCH] fastboot: Replace literal 32 with PART_NAME_LEN

2019-04-08 Thread Alex Kiernan
Where we have to compute partition names, rather than using a hardcoded 32 for the partition name length, replace with PART_NAME_LEN. Signed-off-by: Alex Kiernan --- drivers/fastboot/fb_mmc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/fastboot/fb_mmc.c

Re: [U-Boot] [PATCH 1/1] efi_loader: variables PlatformLang and PlatformLangCodes

2019-04-08 Thread Heinrich Schuchardt
On 4/9/19 3:18 AM, AKASHI Takahiro wrote: > On Fri, Apr 05, 2019 at 03:33:54AM +0200, Heinrich Schuchardt wrote: >> Since TianoCore EDK2 commit d65f2cea36d1 ("ShellPkg/CommandLib: Locate >> proper UnicodeCollation instance") in edk2 the UEFI Shell crashes if EFI >> variable PlatformLang is not

[U-Boot] [PATCH] Revert "fdt: Fix FIT header verification in mkimage and conduct same checks as bootm"

2019-04-08 Thread Vagrant Cascadian
This reverts commit d32aa3cae44e618048ff7f378577d44f9b6d6dcc. This breaks the "list_image" test in tests/image/test-imagetools.sh, where mkimage and dumpimage are expected to have the same output: Listing image contents... # debian/build/tools/tools/mkimage -l linux.itb

Re: [U-Boot] [PATCH 1/1] arm: print information about loaded UEFI images

2019-04-08 Thread Heinrich Schuchardt
On 4/9/19 3:31 AM, AKASHI Takahiro wrote: > On Thu, Apr 04, 2019 at 10:23:47PM +0200, Heinrich Schuchardt wrote: >> If an exception occurs in a UEFI loaded image we need the start address of >> the image to determine the relocation offset. >> >> This patch adds the necessary lines after the

Re: [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open()

2019-04-08 Thread Heinrich Schuchardt
On 4/9/19 4:37 AM, AKASHI Takahiro wrote: > On Sat, Apr 06, 2019 at 04:42:56PM +0200, Heinrich Schuchardt wrote: >> For debugging it is helpful to know the address of the file handle created >> by the Open() method of the EFI file protocol. So let's write it with >> EFI_PRINT(). > > Just a

Re: [U-Boot] [PATCH 1/1] efi_loader: define development target in README.uefi

2019-04-08 Thread Heinrich Schuchardt
On 4/9/19 3:49 AM, AKASHI Takahiro wrote: > On Mon, Apr 01, 2019 at 01:28:24AM +0700, Alexander Graf wrote: >> >> On 28.03.19 14:11, Heinrich Schuchardt wrote: >>> Describe the target scope of the UEFI implementation in U-Boot. >>> >>> Signed-off-by: Heinrich Schuchardt >>> --- >>>

Re: [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open()

2019-04-08 Thread AKASHI Takahiro
On Sat, Apr 06, 2019 at 04:42:56PM +0200, Heinrich Schuchardt wrote: > For debugging it is helpful to know the address of the file handle created > by the Open() method of the EFI file protocol. So let's write it with > EFI_PRINT(). Just a question. How will you use the address for debugging?

Re: [U-Boot] [PATCH 1/1] efi_loader: define development target in README.uefi

2019-04-08 Thread AKASHI Takahiro
On Mon, Apr 01, 2019 at 01:28:24AM +0700, Alexander Graf wrote: > > On 28.03.19 14:11, Heinrich Schuchardt wrote: > > Describe the target scope of the UEFI implementation in U-Boot. > > > > Signed-off-by: Heinrich Schuchardt > > --- > > doc/README.uefi | 11 +++ > > 1 file changed, 11

[U-Boot] [ANN] U-Boot v2019.04 released

2019-04-08 Thread Tom Rini
Hey all, So it is release day and despite a few last minute regression fixes, I think I'm overall comfortable doing the release today. Our next release is v2019.07 so we once again have time to stabilize things prior to release and not feel rushed. With this release, we've hit the deadline for

Re: [U-Boot] [PATCH] arm: sunxi: Enable DM_MMC on required SoCs

2019-04-08 Thread Tom Rini
On Tue, Apr 09, 2019 at 01:57:54AM +0530, Jagan Teki wrote: > Enabling DM_MMC is forcing CONFIG_BLK=y so if any board which uses > SCSI must need to enable DM_SCSI otherwise SCSI reads on that particular > target making invalid reading to the disk drive. > > Allwinner platform do support SCSI on

Re: [U-Boot] Pull request for v2019.04-rc4

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 03:47:31PM +0200, Anatolij Gustschin wrote: > Hi Tom, > > please pull last minute fix for Ethernet on i.MX8QXP MEK board. > These patches were already reviewed/tested and acked by Joe, but > didn't make it into the tree yet (last u-boot-net pull request > was rejected due

Re: [U-Boot] [PATCH v2 2/2] efi_loader: parameter checks in StartImage and Exit()

2019-04-08 Thread Takahiro Akashi
On Fri, Apr 05, 2019 at 03:52:58AM +0200, Heinrich Schuchardt wrote: > Add parameter checks in the StartImage() and Exit() boottime services: > - check that the image handle is valid and has the loaded image protocol > installed > - in StartImage() record the current image > - in Exit() check

Re: [U-Boot] [PATCH 1/1] arm: print information about loaded UEFI images

2019-04-08 Thread AKASHI Takahiro
On Thu, Apr 04, 2019 at 10:23:47PM +0200, Heinrich Schuchardt wrote: > If an exception occurs in a UEFI loaded image we need the start address of > the image to determine the relocation offset. > > This patch adds the necessary lines after the registers in the crash dump > for armv8. A possible

Re: [U-Boot] [PATCH 1/1] efi_loader: variables PlatformLang and PlatformLangCodes

2019-04-08 Thread AKASHI Takahiro
On Fri, Apr 05, 2019 at 03:33:54AM +0200, Heinrich Schuchardt wrote: > Since TianoCore EDK2 commit d65f2cea36d1 ("ShellPkg/CommandLib: Locate > proper UnicodeCollation instance") in edk2 the UEFI Shell crashes if EFI > variable PlatformLang is not defined. > > As this variable is anyway

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Peter Robinson
On Tue, 9 Apr 2019, 01:48 Jagan Teki, wrote: > On Tue, Apr 9, 2019 at 12:02 AM Michael Nazzareno Trimarchi > wrote: > > > > Hi jagan > > > > > > On Mon., 8 Apr. 2019, 8:26 pm Tom Rini, wrote: > >> > >> On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > >> > Hi Paul, > >> > > >> > On

[U-Boot] [PATCH] mmc: sdhci: Read capabilities register before updating host caps

2019-04-08 Thread Timur Prokopenko
From: Timur Prokopenko Date: Thu, 4 Apr 2019 11:05:05 +0300 Subject: [U-Boot] [PATCH] mmc: sdhci: Read capabilities register and update host caps U-Boot doesn't analyze SDHCI capabilities register while choosing speed mode and sets HS mode unconditionally which is incorrect. This patch checks

[U-Boot] [PATCH] sunxi: Add H6 SPI SPL support

2019-04-08 Thread Marek Kraus
Add H6 SPI addresses and masks (since H6 memory map is totally different). Tested on Pine H64 rev B with Winbond W25Q128FW, Signed-off-by: Marek Kraus --- arch/arm/mach-sunxi/Kconfig | 2 +- arch/arm/mach-sunxi/spl_spi_sunxi.c | 123

Re: [U-Boot] [PATCH 16/16] stm32mp1: add stusb1600 support for DK1 and DK2 board

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:24 +0100 Patrick Delaunay wrote: > The DK1 and DK2 boards use the USB Type-C controller STUSB1600. > This patch updates: > - the device tree to add the I2C node in the DT > - the board stm32mp1 to probe this I2C device and use this controller > to check cable

Re: [U-Boot] [PATCH 13/16] usb: dwc2: add support for STM32MP1

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:21 +0100 Patrick Delaunay wrote: > Add compatible "st,stm32mp1-hsotg" and associated driver data to > manage the usb33d-supply and the ST specific register for VBus > sensing. > > Signed-off-by: Patrick Delaunay > # Conflicts: > # drivers/usb/gadget/dwc2_udc_otg.c

Re: [U-Boot] [PATCH 11/16] usb: dwc2_udc_otg: Read MAX_HW_ENDPOINT from HWCFG4 register

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:19 +0100 Patrick Delaunay wrote: > Some DWC2 ip variant doesn't use 16 hardware endpoint as hardcoded > in the driver. Bits INEps [29:26] of HWCFG4 register allows to get > this information. > > Signed-off-by: Patrice Chotard > Signed-off-by: Patrick Delaunay > --- >

Re: [U-Boot] [PATCH 12/16] usb: dwc2_udc_otg: Add tx_fifo_sz array support

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:20 +0100 Patrick Delaunay wrote: > From: Patrice Chotard > > All TX fifo size can be different, add tx_fifo_sz_array[] > into dwc2_plat_otg_data to be able to set them. > > tx_fifo_sz_array[] is 17 Bytes long and can contains max 16 > tx fifo size (synopsys IP

Re: [U-Boot] [PATCH 09/16] usb: dwc2: Add force-b-session-valid support

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:17 +0100 Patrick Delaunay wrote: > Handle "force-b-session-valid" property from DT. > > Signed-off-by: Patrick Delaunay > --- > > drivers/usb/gadget/dwc2_udc_otg.c | 9 + > drivers/usb/gadget/dwc2_udc_otg_regs.h | 8 ++-- > include/usb/dwc2_udc.h

Re: [U-Boot] [PATCH 10/16] usb: dwc2: Add function for session B check

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:18 +0100 Patrick Delaunay wrote: > Add a new function to check the session B validity, to be use to check > cable connection. > > Signed-off-by: Patrick Delaunay > --- > > drivers/usb/gadget/dwc2_udc_otg.c | 9 + > include/usb/dwc2_udc.h| 2 ++ >

Re: [U-Boot] [PATCH 08/16] usb: dwc2: force reset assert before to probe the driver

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:16 +0100 Patrick Delaunay wrote: > Reset the hardware to be sure of the device state. > > Signed-off-by: Patrick Delaunay > --- > > drivers/usb/gadget/dwc2_udc_otg.c | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git

Re: [U-Boot] [PATCH 07/16] usb: dwc2: convert driver to DM_USB_GADGET

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:15 +0100 Patrick Delaunay wrote: > Minimal conversion to driver model by using the uclass > UCLASS_USB_GADGET_GENERIC based on: > - reset uclass > - clock uclass > - generic uclass. > > Signed-off-by: Patrick Delaunay > --- > > doc/device-tree-bindings/usb/dwc2.txt

Re: [U-Boot] [PATCH 06/16] usb: dwc2: remove unused variable regs_otg

2019-04-08 Thread Lukasz Majewski
On Fri, 29 Mar 2019 15:42:14 +0100 Patrick Delaunay wrote: > Remove the global regs_otg variable. > > Signed-off-by: Patrick Delaunay > --- > > drivers/usb/gadget/dwc2_udc_otg.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/drivers/usb/gadget/dwc2_udc_otg.c >

[U-Boot] [PATCH] arm: sunxi: Enable DM_MMC on required SoCs

2019-04-08 Thread Jagan Teki
Enabling DM_MMC is forcing CONFIG_BLK=y so if any board which uses SCSI must need to enable DM_SCSI otherwise SCSI reads on that particular target making invalid reading to the disk drive. Allwinner platform do support SCSI on A10, A20 and R40 SoC's out of these only A10 have DM_SCSI enabled. So

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Tue, Apr 09, 2019 at 12:56:48AM +0530, Jagan Teki wrote: > On Tue, Apr 9, 2019 at 12:43 AM Tom Rini wrote: > > > > On Tue, Apr 09, 2019 at 12:41:48AM +0530, Jagan Teki wrote: > > > On Tue, Apr 9, 2019 at 12:39 AM Tom Rini wrote: > > > > > > > > On Tue, Apr 09, 2019 at 12:37:04AM +0530, Jagan

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Tue, Apr 9, 2019 at 12:43 AM Tom Rini wrote: > > On Tue, Apr 09, 2019 at 12:41:48AM +0530, Jagan Teki wrote: > > On Tue, Apr 9, 2019 at 12:39 AM Tom Rini wrote: > > > > > > On Tue, Apr 09, 2019 at 12:37:04AM +0530, Jagan Teki wrote: > > > > Hi Tom, > > > > > > > > On Tue, Apr 9, 2019 at 12:19

[U-Boot] [PATCH v2 12/13] Convert CONFIG_TRACE_BUFFER_SIZE et al to Kconfig

2019-04-08 Thread Simon Glass
This converts the following to Kconfig: CONFIG_TRACE_BUFFER_SIZE CONFIG_TRACE_EARLY_SIZE CONFIG_TRACE_EARLY CONFIG_TRACE_EARLY_ADDR Signed-off-by: Simon Glass --- Changes in v2: None lib/Kconfig | 48 lib/trace.c

[U-Boot] [PATCH v2 06/13] sandbox: Increase the early-trace-buffer size

2019-04-08 Thread Simon Glass
This buffer is too small now that sandbox has grown in size. Increase it. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to increase the early-trace-buffer size for sandbox include/configs/sandbox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 08/13] div64: Use kernel types

2019-04-08 Thread Simon Glass
These functions still use uint32_t and uint64_t but checkpatch now requests that the kernel types be used instead. Update them as well as a few resulting checkpatch errors. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to use kernel types in div64 include/div64.h | 70

[U-Boot] [PATCH v2 11/13] Convert CONFIG_TRACE to Kconfig

2019-04-08 Thread Simon Glass
This converts the following to Kconfig: CONFIG_TRACE Signed-off-by: Simon Glass --- Changes in v2: None cmd/Kconfig | 2 +- lib/Kconfig | 9 + scripts/config_whitelist.txt | 1 - 3 files changed, 10 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v2 13/13] sandbox: Enable the 'trace' command when tracing is used

2019-04-08 Thread Simon Glass
Enable this by default so that tracing can be inspected if enabled. This cannot rely on the 'imply' in lib/Kconfig since this method of enabling tracing relates on an environment variable (FTRACE) and does not use Kconfig. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to enable

[U-Boot] [PATCH v2 05/13] bootstage: Allow calling bootstage_mark() before bootstage_init()

2019-04-08 Thread Simon Glass
It is possible for this to happen if something goes wrong very early in the init sequence. Add a check for this. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to allow calling bootstage_mark() before bootstage_init() common/bootstage.c | 7 +++ 1 file changed, 7

[U-Boot] [PATCH v2 10/13] trace: Tidy up error returns

2019-04-08 Thread Simon Glass
At present many functions in this file return -1. Update them to return a valid error code. Also tidy up the 'return' statements at the same time, since these should have a blank line before them. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to tidy up error returns in trace.c

[U-Boot] [PATCH v2 09/13] div64: Don't instrument the division function

2019-04-08 Thread Simon Glass
This function may be called from tracing code, since that code needs to read the timer and this often requires calling do_div(), which calls __div64_32(). If this function is instrumented it causes an infinite loop, since emitting a trace record requests the time, which in turn emits a trace

[U-Boot] [PATCH v2 04/13] sandbox: Move pre-console buffer out of the way of tracing

2019-04-08 Thread Simon Glass
These two buffers currently conflict if tracing is enabled. Move the pre-console buffer and update the documentation. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to move pre-console buffer out of the way of tracing board/sandbox/README.sandbox | 3 +++

[U-Boot] [PATCH v2 07/13] initcall: Drop use of header files

2019-04-08 Thread Simon Glass
This file should not include header files. They have already been included by the time initcall.h is included. Also, document how to enable debugging in this file. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to drop use of header files in initcall.h include/initcall.h | 11

[U-Boot] [PATCH v2 02/13] sandbox: Correct maths in allocation routines

2019-04-08 Thread Simon Glass
Allocation routines were adjusted to ensure that the returned addresses are a multiple of the page size, but the header code was not updated to take account of this. These routines assume that the header size is the same as the page size which is unlikely. At present os_realloc() does not work

[U-Boot] [PATCH v2 03/13] sandbox: Drop the printf() in setup_ram_buf()

2019-04-08 Thread Simon Glass
This was really intended for debugging. Drop it. Signed-off-by: Simon Glass --- Changes in v2: - Add a new patch to drop the printf() in setup_ram_buf() arch/sandbox/cpu/start.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arch/sandbox/cpu/start.c

[U-Boot] [PATCH v2 01/13] sandbox: Improve debugging in initcall_run_list()

2019-04-08 Thread Simon Glass
At present if one of the initcalls fails on sandbox the address printing is not help, e.g.: initcall sequence 557678967c80 failed at call 5576709dfe1f (err=-96) This is because U-Boot gets relocated high into memory and the relocation offset (gd->reloc_off) does not work correctly for

[U-Boot] [PATCH v2 00/13] sandbox: Tidy up initcall and tracing

2019-04-08 Thread Simon Glass
This series started from a patch to make sandbox show a useful address when an initcall failed (an address that can be looked up in u-boot.map). Since then various other problems with addresses have been found, so this series now includes fixes for those also, as well as some clean-ups. Changes

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Tue, Apr 09, 2019 at 12:41:48AM +0530, Jagan Teki wrote: > On Tue, Apr 9, 2019 at 12:39 AM Tom Rini wrote: > > > > On Tue, Apr 09, 2019 at 12:37:04AM +0530, Jagan Teki wrote: > > > Hi Tom, > > > > > > On Tue, Apr 9, 2019 at 12:19 AM Tom Rini wrote: > > > > > > > > On Tue, Apr 09, 2019 at

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Tue, Apr 9, 2019 at 12:39 AM Tom Rini wrote: > > On Tue, Apr 09, 2019 at 12:37:04AM +0530, Jagan Teki wrote: > > Hi Tom, > > > > On Tue, Apr 9, 2019 at 12:19 AM Tom Rini wrote: > > > > > > On Tue, Apr 09, 2019 at 12:17:15AM +0530, Jagan Teki wrote: > > > > On Tue, Apr 9, 2019 at 12:02 AM

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Tue, Apr 09, 2019 at 12:37:04AM +0530, Jagan Teki wrote: > Hi Tom, > > On Tue, Apr 9, 2019 at 12:19 AM Tom Rini wrote: > > > > On Tue, Apr 09, 2019 at 12:17:15AM +0530, Jagan Teki wrote: > > > On Tue, Apr 9, 2019 at 12:02 AM Michael Nazzareno Trimarchi > > > wrote: > > > > > > > > Hi jagan >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
Hi Tom, On Tue, Apr 9, 2019 at 12:19 AM Tom Rini wrote: > > On Tue, Apr 09, 2019 at 12:17:15AM +0530, Jagan Teki wrote: > > On Tue, Apr 9, 2019 at 12:02 AM Michael Nazzareno Trimarchi > > wrote: > > > > > > Hi jagan > > > > > > > > > On Mon., 8 Apr. 2019, 8:26 pm Tom Rini, wrote: > > >> > > >>

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Tue, Apr 09, 2019 at 12:17:15AM +0530, Jagan Teki wrote: > On Tue, Apr 9, 2019 at 12:02 AM Michael Nazzareno Trimarchi > wrote: > > > > Hi jagan > > > > > > On Mon., 8 Apr. 2019, 8:26 pm Tom Rini, wrote: > >> > >> On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > >> > Hi Paul, >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Tue, Apr 9, 2019 at 12:02 AM Michael Nazzareno Trimarchi wrote: > > Hi jagan > > > On Mon., 8 Apr. 2019, 8:26 pm Tom Rini, wrote: >> >> On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: >> > Hi Paul, >> > >> > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski >> > wrote: >> > > >> >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Michael Nazzareno Trimarchi
Hi jagan On Mon., 8 Apr. 2019, 8:26 pm Tom Rini, wrote: > On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > > Hi Paul, > > > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > > wrote: > > > > > > Hi, > > > > > > On Thu, 2019-04-04 at 05:51 -0300, Pablo Sebastián Greco wrote: >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > Hi Paul, > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > wrote: > > > > Hi, > > > > On Thu, 2019-04-04 at 05:51 -0300, Pablo Sebastián Greco wrote: > > > A few days ago I tried to boot my Bananapi_M2_Ultra with 2019.04rc, I > >

Re: [U-Boot] [PATCH] imx: Extend PCL063 support for phyCORE-i.MX6ULL SOM

2019-04-08 Thread Parthiban
Hello Martyn, On 4/8/19 7:45 PM, Martyn Welch wrote: > On Sun, 2019-04-07 at 19:56 +0200, Parthiban Nallathambi wrote: >> diff --git a/board/phytec/pcl063/spl.c b/board/phytec/pcl063/spl.c >> index b93cd493f2..73a774645d 100644 >> --- a/board/phytec/pcl063/spl.c >> +++ b/board/phytec/pcl063/spl.c

[U-Boot] Pull request for UEFI sub-system for v2019.07-rc1

2019-04-08 Thread Heinrich Schuchardt
The following changes since commit 0e62d5b2abb69ddc9e58215e2d8dfa5d33996b8a: Merge tag 'u-boot-imx-20190405' of git://git.denx.de/u-boot-imx (2019-04-05 09:09:56 -0400) are available in the Git repository at: https://git.denx.de/u-boot-efi.git tags/efi-2019-07-rc1 for you to fetch changes

Re: [U-Boot] [PATCH] imx: Extend PCL063 support for phyCORE-i.MX6ULL SOM

2019-04-08 Thread Martyn Welch
On Sun, 2019-04-07 at 19:56 +0200, Parthiban Nallathambi wrote: > diff --git a/board/phytec/pcl063/spl.c b/board/phytec/pcl063/spl.c > index b93cd493f2..73a774645d 100644 > --- a/board/phytec/pcl063/spl.c > +++ b/board/phytec/pcl063/spl.c > @@ -13,6 +13,7 @@ > #include > #include > #include

[U-Boot] [PATCH 2/2] board: ti: am654: select SYS_DISABLE_DCACHE_OPS for arm64 build

2019-04-08 Thread Vignesh Raghavendra
AM654 SoC is IO coherent wrt A53 cores, therefore enable SYS_DISABLE_DCACHE_OPS to avoid cache operations in A53 SPL/U-Boot. Signed-off-by: Vignesh Raghavendra --- Changes since RFC: Rename config option to SYS_DISABLE_DCACHE_OPS board/ti/am65x/Kconfig | 1 + 1 file changed, 1 insertion(+)

[U-Boot] [PATCH 1/2] arch: armv8: Provide a way to disable cache maintenance ops

2019-04-08 Thread Vignesh Raghavendra
On AM654 SoC(arm64) which is IO coherent and has L3 Cache, cache maintenance operations being done to support non-coherent platforms causes issues. For example, here is how U-Boot prepares/handles a buffer to receive data from a device (DMA Write). This may vary slightly depending on the driver

[U-Boot] [PATCH 0/2] Add Kconfig to disable cache ops

2019-04-08 Thread Vignesh Raghavendra
This series adds a Kconfig to disable cache maintenance operations on a coherent architectures. And disable cache flush/invalidate ops for SPL/U-Boot code running on A53 core of AM654 SoC(which is IO coherent) Vignesh Raghavendra (2): arch: armv8: Provide a way to disable cache maintenance ops

Re: [U-Boot] [PATCH 3/4] arm: sunxi: h6: fix reset using r_wdog

2019-04-08 Thread Clément Péron
+Chen-Yu. I would like to fix the reset using the R_WDOG instead of WDOG. What do you think? If it's acceptable I will propose a similar patch on ATF. Regards, Clement On Mon, 8 Apr 2019 at 18:41, Clément Péron wrote: > > WDOG in H6 is broken so the reset is actually not working. > > Use the

[U-Boot] [PATCH 3/4] arm: sunxi: h6: fix reset using r_wdog

2019-04-08 Thread Clément Péron
WDOG in H6 is broken so the reset is actually not working. Use the R_WDOG instead. Signed-off-by: Clément Péron --- arch/arm/include/asm/arch-sunxi/cpu_sun50i_h6.h | 1 + arch/arm/mach-sunxi/board.c | 9 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 2/4] arm: dts: h6: Add Beelink GS1 initial support

2019-04-08 Thread Clément Péron
Beelink GS1 is an Allwinner H6 based TV box, which support: - Allwinner H6 Quad-core 64-bit ARM Cortex-A53 - GPU Mali-T720 - 2GB LPDDR3 RAM - 16GB eMMC - AXP805 PMIC - 1Gbps GMAC via RTL8211E - USB 2.0 and 3.0 Host - HDMI port - S/PDIF port - 5V/2A DC power supply - Wi-Fi/BT via Fn-Link 6222B-SRB

[U-Boot] [PATCH 4/4] arm: dts: h6: minor sync with linux

2019-04-08 Thread Clément Péron
There are some minor differences between U-Boot and Linux. Sync only the minor changes. Signed-off-by: Clément Péron --- arch/arm/dts/sun50i-h6.dtsi | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/dts/sun50i-h6.dtsi b/arch/arm/dts/sun50i-h6.dtsi index

[U-Boot] [PATCH 1/4] arm: dts: h6: move MMC pinctrl to soc

2019-04-08 Thread Clément Péron
There is only one muxing avalaible for each MMC controller. Move this pinmux to the SOC dtsi. Signed-off-by: Clément Péron --- arch/arm/dts/sun50i-h6-orangepi.dtsi | 2 -- arch/arm/dts/sun50i-h6-pine-h64.dts | 4 arch/arm/dts/sun50i-h6.dtsi | 4 3 files changed, 4

[U-Boot] [PATCH 0/4] Add Beelink GS1

2019-04-08 Thread Clément Péron
This serie introduce the Beelink GS1 board with a patch for the reset on Allwinner H6. Thanks to Jagan Teki most of the Beelink GS1 device-tree is taken from the Orange Pi boards. Clément Péron (4): arm: dts: h6: move MMC pinctrl to soc arm: dts: h6: Add Beelink GS1 initial support arm:

Re: [U-Boot] [PATCH] board: sun50i: h6: Add Beelink GS1 initial support

2019-04-08 Thread Clément Péron
Hi, Please Ignore this patch I will resend a new serie. Thanks, Clement On Mon, 1 Apr 2019 at 16:23, Clément Péron wrote: > > Beelink GS1 is an Allwinner H6 based TV box, > which support: > - Allwinner H6 Quad-core 64-bit ARM Cortex-A53 > - GPU Mali-T720 > - 2GB LPDDR3 RAM > - 16GB eMMC > -

Re: [U-Boot] [PATCH v1 4/5] board: toradex: tdx-cfg-block: add new skus

2019-04-08 Thread Igor Opaniuk
Reviewed-by: Igor Opaniuk On Sat, Apr 6, 2019 at 2:48 PM Marcel Ziswiler wrote: > > From: Marcel Ziswiler > > Add all the latest new SKUs: > - Apalis iMX8 QuadXPlus 2GB Wi-Fi / BT IT > - Apalis iMX8 QuadMax 4GB IT > - Apalis iMX8 QuadPlus 2GB Wi-Fi / BT > - Apalis iMX8 QuadPlus 2GB", > -

Re: [U-Boot] [PATCH 1/2] image: android: allow booting lz4-compressed kernels

2019-04-08 Thread Eugeniu Rosca
Superseded by https://patchwork.ozlabs.org/patch/1081176/ ("[U-Boot,v2,1/2] image: android: allow booting lz4-compressed kernels") ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH v2 1/2] image: android: allow booting lz4-compressed kernels

2019-04-08 Thread Eugeniu Rosca
According to Android image format [1], kernel image resides at 1 page offset from the boot image address. Grab the magic number from there and allow U-Boot to handle LZ4-compressed KNL binaries instead of hardcoding compression type to IH_COMP_NONE. Other compression types, if needed, can be added

[U-Boot] [PATCH v2 2/2] image: android: fix 'iminfo' typo

2019-04-08 Thread Eugeniu Rosca
Fix below CP warning triggered by the 'iminfo' output in another patch: WARNING: 'addrress' may be misspelled - perhaps 'address'? Fixes: 4f1318b29c7a20 ("common: image: minimal android image iminfo support") Signed-off-by: Eugeniu Rosca Acked-by: Marek Vasut --- v2: - Added 'Acked-by: Marek

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Michael Nazzareno Trimarchi
Hi On Mon, Apr 8, 2019 at 4:48 PM Tom Rini wrote: > > On Mon, Apr 08, 2019 at 07:47:13PM +0530, Jagan Teki wrote: > > On Mon, Apr 8, 2019 at 7:31 PM Paul Kocialkowski > > wrote: > > > > > > Hi, > > > > > > Le lundi 08 avril 2019 à 19:21 +0530, Jagan Teki a écrit : > > > > On Mon, Apr 8, 2019 at

[U-Boot] [PATCH v2] dm: remove pre reloc properties in SPL and TPL device tree

2019-04-08 Thread Patrick Delaunay
We can remove the pre reloc property in SPL and TPL device-tree: - u-boot,dm-pre-reloc - u-boot,dm-spl - u-boot,dm-tpl As only the needed node are kept by fdtgrep (1st pass). The associated function (XXX_pre_reloc) are simple for SPL/TPL: return always true. Signed-off-by: Patrick Delaunay ---

Re: [U-Boot] [v2, 0/5] Split fsl_esdhc driver for i.MX

2019-04-08 Thread Y.b. Lu
Any comments? Thanks a lot :) > -Original Message- > From: Y.b. Lu > Sent: Thursday, March 21, 2019 12:32 PM > To: u-boot@lists.denx.de > Cc: Prabhakar Kushwaha ; Peng Fan > ; sba...@denx.de; Y.b. Lu > Subject: [v2, 0/5] Split fsl_esdhc driver for i.MX > > The fsl_esdhc driver was for

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 8:18 PM Tom Rini wrote: > > On Mon, Apr 08, 2019 at 07:47:13PM +0530, Jagan Teki wrote: > > On Mon, Apr 8, 2019 at 7:31 PM Paul Kocialkowski > > wrote: > > > > > > Hi, > > > > > > Le lundi 08 avril 2019 à 19:21 +0530, Jagan Teki a écrit : > > > > On Mon, Apr 8, 2019 at

Re: [U-Boot] [PATCH v2] cmd: mmc: print serial number

2019-04-08 Thread Ismael Luceno Cortes
On 08/Apr/2019 15:38, Christian Gmeiner wrote: > Might be useful to see the serial number. > > v2: add missing \n. Seems to be still missing it... > > Signed-off-by: Christian Gmeiner > --- > cmd/mmc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/cmd/mmc.c b/cmd/mmc.c > index

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 07:47:13PM +0530, Jagan Teki wrote: > On Mon, Apr 8, 2019 at 7:31 PM Paul Kocialkowski > wrote: > > > > Hi, > > > > Le lundi 08 avril 2019 à 19:21 +0530, Jagan Teki a écrit : > > > On Mon, Apr 8, 2019 at 7:06 PM Paul Kocialkowski > > > wrote: > > > > Hi, > > > > > > > >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Paul Kocialkowski
Hi, Le lundi 08 avril 2019 à 19:47 +0530, Jagan Teki a écrit : > On Mon, Apr 8, 2019 at 7:31 PM Paul Kocialkowski > wrote: > > Hi, > > > > Le lundi 08 avril 2019 à 19:21 +0530, Jagan Teki a écrit : > > > On Mon, Apr 8, 2019 at 7:06 PM Paul Kocialkowski > > > wrote: > > > > Hi, > > > > > > > >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 7:31 PM Paul Kocialkowski wrote: > > Hi, > > Le lundi 08 avril 2019 à 19:21 +0530, Jagan Teki a écrit : > > On Mon, Apr 8, 2019 at 7:06 PM Paul Kocialkowski > > wrote: > > > Hi, > > > > > > Le lundi 08 avril 2019 à 19:03 +0530, Jagan Teki a écrit : > > > > On Mon, Apr 8,

Re: [U-Boot] [PATCH v2 0/2] mtd: rawnand: add STM32 FMC2 NAND flash controller driver

2019-04-08 Thread Patrick DELAUNAY
Hi Christophe, > > This patchset adds the support for the STMicroelectronics FMC2 NAND flash > controller found on STM32MP SOCs. > > This patchset supports: > - the polling mode feature > - a maximum 8k page size > - following ECC strength and step size > - nand-ecc-strength = <8>,

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Paul Kocialkowski
Hi, Le lundi 08 avril 2019 à 19:21 +0530, Jagan Teki a écrit : > On Mon, Apr 8, 2019 at 7:06 PM Paul Kocialkowski > wrote: > > Hi, > > > > Le lundi 08 avril 2019 à 19:03 +0530, Jagan Teki a écrit : > > > On Mon, Apr 8, 2019 at 6:40 PM Paul Kocialkowski > > > wrote: > > > > Hi, > > > > > > > >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 7:07 PM Tom Rini wrote: > > On Mon, Apr 08, 2019 at 06:59:29PM +0530, Jagan Teki wrote: > > On Mon, Apr 8, 2019 at 6:55 PM Tom Rini wrote: > > > > > > On Mon, Apr 08, 2019 at 06:51:48PM +0530, Jagan Teki wrote: > > > > + Andre > > > > > > > > On Mon, Apr 8, 2019 at 6:40 PM

Re: [U-Boot] [PATCH] ARM: dts: i.MX6ULL: U-Boot specific dts for u-boot, dm-spl

2019-04-08 Thread Marcel Ziswiler
Hi Parthiban On Sun, 2019-04-07 at 20:32 +0200, Parthiban Nallathambi wrote: > u-boot,dm-spl property is specific to U-Boot, so created one > for i.MX6ULL platforms. What exactly makes you so sure others do want your exact configuration thereof as well? Shouldn't you make this board specific

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 7:06 PM Paul Kocialkowski wrote: > > Hi, > > Le lundi 08 avril 2019 à 19:03 +0530, Jagan Teki a écrit : > > On Mon, Apr 8, 2019 at 6:40 PM Paul Kocialkowski > > wrote: > > > Hi, > > > > > > Le lundi 08 avril 2019 à 18:23 +0530, Jagan Teki a écrit : > > > > Hi Paul, > > > >

[U-Boot] Pull request for v2019.04-rc4

2019-04-08 Thread Anatolij Gustschin
Hi Tom, please pull last minute fix for Ethernet on i.MX8QXP MEK board. These patches were already reviewed/tested and acked by Joe, but didn't make it into the tree yet (last u-boot-net pull request was rejected due to issues with other patches). Thanks, Anatolij The following changes since

Re: [U-Boot] [PATCH] board: atmel: add SAMA5D2 ICP board

2019-04-08 Thread Stefan Roese
Hi Eugen, On 08.04.19 15:12, eugen.hris...@microchip.com wrote: Hi Stefan, Thanks for reviewing, On 08.04.2019 15:59, Stefan Roese wrote: On 08.04.19 14:50, eugen.hris...@microchip.com wrote: From: Eugen Hristev The SAMA5D2 ICP Board features the SAMA5D27 SoC, together with QSPI

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 7:06 PM Tom Rini wrote: > > On Mon, Apr 08, 2019 at 07:03:29PM +0530, Jagan Teki wrote: > > On Mon, Apr 8, 2019 at 6:40 PM Paul Kocialkowski > > wrote: > > > > > > Hi, > > > > > > Le lundi 08 avril 2019 à 18:23 +0530, Jagan Teki a écrit : > > > > Hi Paul, > > > > > > > >

Re: [U-Boot] [PATCH 2/2] mtd: fix Coverity integer handling issue

2019-04-08 Thread Miquel Raynal
Hi Tom, Tom Rini wrote on Mon, 8 Apr 2019 07:52:16 -0400: > On Mon, Apr 08, 2019 at 11:43:59AM +0200, Miquel Raynal wrote: > > Hello, > > > > Miquel Raynal wrote on Sun, 18 Nov 2018 > > 21:13:47 +0100: > > > > > Hello, > > > > > > Miquel Raynal wrote on Sun, 18 Nov 2018 > > > 21:11:47

Re: [U-Boot] [PATCH] spi: stm32_qspi: move to exec_op

2019-04-08 Thread Patrick DELAUNAY
Hi Christophe, > From: Christophe KERELLO > Sent: vendredi 5 avril 2019 11:47 > > We are facing issues in the driver since SPI NOR framework has moved on SPI > MEM framework, and SPI NAND framework is not running properly with the > current driver. > > To be able to solve issues met on SPI NOR

[U-Boot] [PATCH v2] cmd: mmc: print serial number

2019-04-08 Thread Christian Gmeiner
Might be useful to see the serial number. v2: add missing \n. Signed-off-by: Christian Gmeiner --- cmd/mmc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/mmc.c b/cmd/mmc.c index 8bc3648193..df7fa77f19 100644 --- a/cmd/mmc.c +++ b/cmd/mmc.c @@ -23,6 +23,7 @@ static void

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 06:59:29PM +0530, Jagan Teki wrote: > On Mon, Apr 8, 2019 at 6:55 PM Tom Rini wrote: > > > > On Mon, Apr 08, 2019 at 06:51:48PM +0530, Jagan Teki wrote: > > > + Andre > > > > > > On Mon, Apr 8, 2019 at 6:40 PM Tom Rini wrote: > > > > > > > > On Mon, Apr 08, 2019 at

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 03:28:40PM +0200, Paul Kocialkowski wrote: > Hi, > > Le lundi 08 avril 2019 à 09:25 -0400, Tom Rini a écrit : > > On Mon, Apr 08, 2019 at 06:51:48PM +0530, Jagan Teki wrote: > > > + Andre > > > > > > On Mon, Apr 8, 2019 at 6:40 PM Tom Rini wrote: > > > > On Mon, Apr 08,

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Paul Kocialkowski
Hi, Le lundi 08 avril 2019 à 19:03 +0530, Jagan Teki a écrit : > On Mon, Apr 8, 2019 at 6:40 PM Paul Kocialkowski > wrote: > > Hi, > > > > Le lundi 08 avril 2019 à 18:23 +0530, Jagan Teki a écrit : > > > Hi Paul, > > > > > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > > > wrote: > > >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 07:03:29PM +0530, Jagan Teki wrote: > On Mon, Apr 8, 2019 at 6:40 PM Paul Kocialkowski > wrote: > > > > Hi, > > > > Le lundi 08 avril 2019 à 18:23 +0530, Jagan Teki a écrit : > > > Hi Paul, > > > > > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > > > wrote: > > > >

[U-Boot] [PATCH] cmd: mmc: print serial number

2019-04-08 Thread Christian Gmeiner
Might be useful to see the serial number. Signed-off-by: Christian Gmeiner --- cmd/mmc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/mmc.c b/cmd/mmc.c index 8bc3648193..df7fa77f19 100644 --- a/cmd/mmc.c +++ b/cmd/mmc.c @@ -23,6 +23,7 @@ static void print_mmcinfo(struct mmc *mmc)

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 6:40 PM Paul Kocialkowski wrote: > > Hi, > > Le lundi 08 avril 2019 à 18:23 +0530, Jagan Teki a écrit : > > Hi Paul, > > > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > > wrote: > > > Hi, > > > > > > On Thu, 2019-04-04 at 05:51 -0300, Pablo Sebastián Greco wrote: >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
On Mon, Apr 8, 2019 at 6:55 PM Tom Rini wrote: > > On Mon, Apr 08, 2019 at 06:51:48PM +0530, Jagan Teki wrote: > > + Andre > > > > On Mon, Apr 8, 2019 at 6:40 PM Tom Rini wrote: > > > > > > On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > > > > Hi Paul, > > > > > > > > On Mon, Apr

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Paul Kocialkowski
Hi, Le lundi 08 avril 2019 à 09:25 -0400, Tom Rini a écrit : > On Mon, Apr 08, 2019 at 06:51:48PM +0530, Jagan Teki wrote: > > + Andre > > > > On Mon, Apr 8, 2019 at 6:40 PM Tom Rini wrote: > > > On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > > > > Hi Paul, > > > > > > > > On

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Tom Rini
On Mon, Apr 08, 2019 at 06:51:48PM +0530, Jagan Teki wrote: > + Andre > > On Mon, Apr 8, 2019 at 6:40 PM Tom Rini wrote: > > > > On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > > > Hi Paul, > > > > > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > > > wrote: > > > > > > > >

Re: [U-Boot] arm: sunxi: Bananapi_M2_Ultra not working with DM_MMC

2019-04-08 Thread Jagan Teki
+ Andre On Mon, Apr 8, 2019 at 6:40 PM Tom Rini wrote: > > On Mon, Apr 08, 2019 at 06:23:29PM +0530, Jagan Teki wrote: > > Hi Paul, > > > > On Mon, Apr 8, 2019 at 6:00 PM Paul Kocialkowski > > wrote: > > > > > > Hi, > > > > > > On Thu, 2019-04-04 at 05:51 -0300, Pablo Sebastián Greco wrote: > >

Re: [U-Boot] [PATCH] mtd: nand: let the raw NAND devices be compiled upon selection

2019-04-08 Thread Miquel Raynal
Jagan, Jagan Teki wrote on Mon, 8 Apr 2019 17:28:18 +0530: > Hi Miquel, > > On Mon, Apr 8, 2019 at 3:22 PM Miquel Raynal > wrote: > > > > Hi Jagan, > > > > Miquel Raynal wrote on Mon, 29 Oct 2018 > > 10:07:28 +0100: > > > > > Hi Jagan, > > > > > > Jagan Teki wrote on Tue, 23 Oct 2018 > >

  1   2   >