Re: [U-Boot] [PATCH 5/6] apalis_imx6: Avoid calling setup_display() from SPL code

2017-09-23 Thread Stefano Babic
Hi Fabio, On 23/09/2017 04:45, Fabio Estevam wrote: > From: Fabio Estevam > > There is no need call setup_display() from SPL code, so move it to > board_init(), which executes only in U-Boot proper. > > Reported-by: Stefano Babic > Signed-off-by: Fabio

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Marek Vasut
On 09/23/2017 02:56 PM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: >> On 09/22/2017 04:20 PM, Tom Rini wrote: >>> On Fri, Sep 15, 2017 at 01:15:25PM -0400, Tom Rini wrote: >>> With support for overlays and calling the -@ flag to dtc we need to have at

[U-Boot] [PULL] u-boot-usb/master

2017-09-23 Thread Marek Vasut
The following changes since commit 91ebf300934461e450f5ef8f386ea9e55d2636c5: Travis-CI: Checkout only v1.4.3 of dtc (2017-09-22 07:40:06 -0400) are available in the git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to

[U-Boot] FAT filesystems and mtools-created filesystems

2017-09-23 Thread Tuomas Tynkkynen
Hi, FAT file systems created by GNU mtools have a problem that mtools doesn't initialize the first cluster field of the '.' and '..' directory entries. That is, with the following script: mkdir fattmp cd fattmp mkdir -p foo/bar/baz touch foo/bar/baz/biff truncate -s 16M ../fattest.img

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Marek Vasut
On 09/22/2017 04:20 PM, Tom Rini wrote: > On Fri, Sep 15, 2017 at 01:15:25PM -0400, Tom Rini wrote: > >> With support for overlays and calling the -@ flag to dtc we need to have >> at least 1.4.3 available now. >> >> Cc: Simon Glass >> Reported-by: Stephen Warren

Re: [U-Boot] [PATCH 5/6] apalis_imx6: Avoid calling setup_display() from SPL code

2017-09-23 Thread Fabio Estevam
Hi Stefano, On Sat, Sep 23, 2017 at 5:43 AM, Stefano Babic wrote: > Max has already fixed apalis / colibri, see for example > http://patchwork.ozlabs.org/patch/817053/. I will apply Max's patches > and drop 5/6 from your series. Anyway, thanks for having thought to > these two

Re: [U-Boot] [PATCH v2 5/6] ARM: Add a new arch + board for QEMU's 'virt' machine

2017-09-23 Thread Tuomas Tynkkynen
Hi Bin, On 09/20/2017 08:02 AM, Bin Meng wrote: Hi Tuomas, On Wed, Sep 20, 2017 at 4:18 AM, Tuomas Tynkkynen wrote: This board builds an U-Boot binary that is bootable with QEMU's 'virt' machine on ARM. The minimal QEMU command line is: qemu-system-arm -machine

Re: [U-Boot] FAT filesystems and mtools-created filesystems

2017-09-23 Thread Tuomas Tynkkynen
On 09/23/2017 01:26 PM, Tuomas Tynkkynen wrote: Hi, FAT file systems created by GNU mtools have a problem that mtools doesn't initialize the first cluster field of the '.' and '..' directory entries. That is, with the following script: Oh, and unrelated to the mtools problem, '..' entries

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: > On 09/22/2017 04:20 PM, Tom Rini wrote: > > On Fri, Sep 15, 2017 at 01:15:25PM -0400, Tom Rini wrote: > > > >> With support for overlays and calling the -@ flag to dtc we need to have > >> at least 1.4.3 available now. > >> > >> Cc:

[U-Boot] [PULL] u-boot-socfpga/master

2017-09-23 Thread Marek Vasut
The following changes since commit 91ebf300934461e450f5ef8f386ea9e55d2636c5: Travis-CI: Checkout only v1.4.3 of dtc (2017-09-22 07:40:06 -0400) are available in the git repository at: git://git.denx.de/u-boot-socfpga.git master for you to fetch changes up to

Re: [U-Boot] [PATCH 4/6] mx6cuboxi: Avoid calling setup_display() from SPL code

2017-09-23 Thread Stefano Babic
On 23/09/2017 04:45, Fabio Estevam wrote: > From: Fabio Estevam > > There is no need call setup_display() from SPL code, so move it to > board_init(), which executes only in U-Boot proper. > > Reported-by: Stefano Babic > Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH 2/6] cgtqmx6eval: Avoid calling setup_display() from SPL code

2017-09-23 Thread Stefano Babic
On 23/09/2017 04:45, Fabio Estevam wrote: > From: Fabio Estevam > > There is no need call setup_display() from SPL code, so move it to > board_init(), which executes only in U-Boot proper. > > Reported-by: Stefano Babic > Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH 1/6] mx6sabresd: Avoid calling setup_display() from SPL code

2017-09-23 Thread Stefano Babic
On 23/09/2017 04:45, Fabio Estevam wrote: > From: Fabio Estevam > > There is no need call setup_display() from SPL code, so move it to > board_init(), which executes only in U-Boot proper. > > Reported-by: Stefano Babic > Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH 3/6] wandboard: Avoid calling setup_display() from SPL code

2017-09-23 Thread Stefano Babic
On 23/09/2017 04:45, Fabio Estevam wrote: > From: Fabio Estevam > > There is no need call setup_display() from SPL code, so move it to > board_init(), which executes only in U-Boot proper. > > Reported-by: Stefano Babic > Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH 5/6] apalis_imx6: Avoid calling setup_display() from SPL code

2017-09-23 Thread Fabio Estevam
On Sat, Sep 23, 2017 at 10:01 AM, Fabio Estevam wrote: > Hi Stefano, > > On Sat, Sep 23, 2017 at 5:43 AM, Stefano Babic wrote: > >> Max has already fixed apalis / colibri, see for example >> http://patchwork.ozlabs.org/patch/817053/. I will apply Max's patches

Re: [U-Boot] [PULL] u-boot-usb/master

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 03:14:20PM +0200, Marek Vasut wrote: > The following changes since commit 91ebf300934461e450f5ef8f386ea9e55d2636c5: > > Travis-CI: Checkout only v1.4.3 of dtc (2017-09-22 07:40:06 -0400) > > are available in the git repository at: > >

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 08:56:08AM -0400, Tom Rini wrote: > On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: > > On 09/22/2017 04:20 PM, Tom Rini wrote: > > > On Fri, Sep 15, 2017 at 01:15:25PM -0400, Tom Rini wrote: > > > > > >> With support for overlays and calling the -@ flag to

Re: [U-Boot] [PULL] u-boot-usb/master

2017-09-23 Thread Marek Vasut
On 09/23/2017 06:11 PM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 03:14:20PM +0200, Marek Vasut wrote: > >> The following changes since commit 91ebf300934461e450f5ef8f386ea9e55d2636c5: >> >> Travis-CI: Checkout only v1.4.3 of dtc (2017-09-22 07:40:06 -0400) >> >> are available in the git

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 07:33:44PM +0200, Marek Vasut wrote: > On 09/23/2017 07:05 PM, Tom Rini wrote: > > On Sat, Sep 23, 2017 at 08:56:08AM -0400, Tom Rini wrote: > >> On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: > >>> On 09/22/2017 04:20 PM, Tom Rini wrote: > On Fri, Sep

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Marek Vasut
On 09/23/2017 06:10 PM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 03:04:39PM +0200, Marek Vasut wrote: >> On 09/23/2017 02:56 PM, Tom Rini wrote: >>> On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: On 09/22/2017 04:20 PM, Tom Rini wrote: > On Fri, Sep 15, 2017 at 01:15:25PM

Re: [U-Boot] [PULL] u-boot-usb/master

2017-09-23 Thread Marek Vasut
On 09/23/2017 07:39 PM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 07:32:31PM +0200, Marek Vasut wrote: >> On 09/23/2017 06:11 PM, Tom Rini wrote: >>> On Sat, Sep 23, 2017 at 03:14:20PM +0200, Marek Vasut wrote: >>> The following changes since commit

[U-Boot] [PATCH 1/1] ARMv8: fix error in freeing stack frame

2017-09-23 Thread zijun_hu
From: zijun_hu relocate_code() allocates 32 bytes stack frame but only 16 bytes are freed before return. it will cause errors to possible previous frames and doesn't make relocate_code() look like a function. fix by freeing 32 bytes stack space Signed-off-by: zijun_hu

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Marek Vasut
On 09/23/2017 07:05 PM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 08:56:08AM -0400, Tom Rini wrote: >> On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: >>> On 09/22/2017 04:20 PM, Tom Rini wrote: On Fri, Sep 15, 2017 at 01:15:25PM -0400, Tom Rini wrote: > With support for

Re: [U-Boot] FAT filesystems and mtools-created filesystems

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 01:26:38PM +0300, Tuomas Tynkkynen wrote: > Hi, > > FAT file systems created by GNU mtools have a problem that mtools > doesn't initialize the first cluster field of the '.' and '..' > directory entries. That is, with the following script: > > mkdir fattmp > cd fattmp >

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Marek Vasut
On 09/23/2017 07:37 PM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 07:33:44PM +0200, Marek Vasut wrote: >> On 09/23/2017 07:05 PM, Tom Rini wrote: >>> On Sat, Sep 23, 2017 at 08:56:08AM -0400, Tom Rini wrote: On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: > On 09/22/2017

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 07:43:09PM +0200, Marek Vasut wrote: > On 09/23/2017 07:37 PM, Tom Rini wrote: > > On Sat, Sep 23, 2017 at 07:33:44PM +0200, Marek Vasut wrote: > >> On 09/23/2017 07:05 PM, Tom Rini wrote: > >>> On Sat, Sep 23, 2017 at 08:56:08AM -0400, Tom Rini wrote: > On Sat, Sep

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 03:04:39PM +0200, Marek Vasut wrote: > On 09/23/2017 02:56 PM, Tom Rini wrote: > > On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: > >> On 09/22/2017 04:20 PM, Tom Rini wrote: > >>> On Fri, Sep 15, 2017 at 01:15:25PM -0400, Tom Rini wrote: > >>> > With

Re: [U-Boot] [PATCH] imx6: disable clock command and print_cpuinfo code in SPL

2017-09-23 Thread Anatolij Gustschin
Hi Fabio, On Fri, 22 Sep 2017 22:55:04 -0300 Fabio Estevam feste...@gmail.com wrote: ... > > /* Framebuffer */ > > +#if !defined(CONFIG_SPL_BUILD) > > #ifdef CONFIG_VIDEO > > #define CONFIG_VIDEO_IPUV3 > > #define CONFIG_VIDEO_BMP_RLE8 > > @@ -74,6 +75,7 @@ > > #define CONFIG_IMX_HDMI > >

Re: [U-Boot] [PULL] u-boot-usb/master

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 07:32:31PM +0200, Marek Vasut wrote: > On 09/23/2017 06:11 PM, Tom Rini wrote: > > On Sat, Sep 23, 2017 at 03:14:20PM +0200, Marek Vasut wrote: > > > >> The following changes since commit > >> 91ebf300934461e450f5ef8f386ea9e55d2636c5: > >> > >> Travis-CI: Checkout only

[U-Boot] [PATCH v3] sun50i: h5: Add NanoPi Neo Plus2 DT initial support

2017-09-23 Thread Antony Antony
Add initial DT for NanoPi NEO Plus2 by FriendlyARM - Allwinner quad core H5 Cortex A53 with an ARM Mali-450MP GPU - 1 GB DDR3 RAM - 8GB eMMC flash (Samsung KLM8G1WEPD-B031) - micro SD card slot - Gigabit Ethernet (external RTL8211E-VB-CG chip) - 802.11 b/g/n WiFi, Bluetooth 4.0 (Ampak AP6212A

[U-Boot] Please pull u-boot-video/imx

2017-09-23 Thread Anatolij Gustschin
Hi Stefano, Please pull some imx6 patches. Building with these passed now, here is a status report: https://travis-ci.org/vdsao/u-boot-video/builds/278969983 The following changes since commit 031426a7af63d3c939fc963311e6dc8e904a0440: mx6sabresd: Add Serial Download Protocol support

Re: [U-Boot] [PATCH 5/6] apalis_imx6: Avoid calling setup_display() from SPL code

2017-09-23 Thread Anatolij Gustschin
Hi Stefano, On Sat, 23 Sep 2017 10:43:55 +0200 Stefano Babic sba...@denx.de wrote: ... > Max has already fixed apalis / colibri, see for example > http://patchwork.ozlabs.org/patch/817053/. I will apply Max's patches > and drop 5/6 from your series. Anyway, thanks for having thought to > these

Re: [U-Boot] [PATCH] sf: bar: Clean BA24 Bank Address Register bit after read/write/erase operation

2017-09-23 Thread Ɓukasz Majewski
Hi Fabio, Jagan, Hi Lukasz, On Wed, Sep 13, 2017 at 6:39 AM, Lukasz Majewski wrote: #ifdef CONFIG_SPI_FLASH_BAR +/* + * This "cleanup" is necessary in a situation when one was accessing + * spi flash memory > 16 MiB by using Bank Address Register's BA24 bit. + * + * After

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Bin Meng
Hi Tom, On Sun, Sep 24, 2017 at 12:10 AM, Tom Rini wrote: > On Sat, Sep 23, 2017 at 03:04:39PM +0200, Marek Vasut wrote: >> On 09/23/2017 02:56 PM, Tom Rini wrote: >> > On Sat, Sep 23, 2017 at 12:39:44PM +0200, Marek Vasut wrote: >> >> On 09/22/2017 04:20 PM, Tom Rini wrote:

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Robert Nelson
On Sat, Sep 23, 2017 at 8:49 PM, Bin Meng wrote: > Hi Tom, > > On Sun, Sep 24, 2017 at 12:10 AM, Tom Rini wrote: >> On Sat, Sep 23, 2017 at 03:04:39PM +0200, Marek Vasut wrote: >>> On 09/23/2017 02:56 PM, Tom Rini wrote: >>> > On Sat, Sep 23, 2017 at

Re: [U-Boot] Makefile: Update minimum dtc version to 1.4.3

2017-09-23 Thread Tom Rini
On Sat, Sep 23, 2017 at 09:07:02PM -0500, Robert Nelson wrote: > On Sat, Sep 23, 2017 at 8:49 PM, Bin Meng wrote: > > Hi Tom, > > > > On Sun, Sep 24, 2017 at 12:10 AM, Tom Rini wrote: > >> On Sat, Sep 23, 2017 at 03:04:39PM +0200, Marek Vasut wrote: > >>>

Re: [U-Boot] [PATCH 6/6] usb: Drop the EHCI RCar Gen3

2017-09-23 Thread Nobuhiro Iwamatsu
Hi, 2017-09-13 2:07 GMT+09:00 Marek Vasut : > Since we use EHCI generic driver on RCar Gen3 , this driver is useless. > Remove it. > > Signed-off-by: Marek Vasut > Cc: Nobuhiro Iwamatsu Acked-by: Nobuhiro Iwamatsu