Re: [U-Boot] [PATCH] fit: Do not automatically decompress ramdisk images

2019-08-04 Thread Simon Goldschmidt
On Sat, Aug 3, 2019 at 12:52 AM Julius Werner wrote: > > The Linux ramdisk should always be decompressed by the kernel itself, > not by U-Boot. Therefore, the 'compression' node in the FIT image should > always be set to "none" for ramdisk images, since the only point of > using that node is if

Re: [U-Boot] [PATCH] fit: Do not automatically decompress ramdisk images

2019-08-04 Thread Heiko Schocher
Hello Julius, Am 03.08.2019 um 00:52 schrieb Julius Werner: The Linux ramdisk should always be decompressed by the kernel itself, not by U-Boot. Therefore, the 'compression' node in the FIT image should always be set to "none" for ramdisk images, since the only point of using that node is if

Re: [U-Boot] [PATCH 2/2] imx: mx6ul_14x14_evk: convert to DM_VIDEO

2019-08-04 Thread Peng Fan
> Subject: Re: [U-Boot] [PATCH 2/2] imx: mx6ul_14x14_evk: convert to > DM_VIDEO > > Hi Peng, > > On Thu, Aug 1, 2019 at 9:03 AM Peng Fan wrote: > > > > To support DM_VIDEO, > > Add display node for lcdif > > Drop board iomuxc settings. > > Enable DM_VIDEO > > > > Signed-off-by: Peng Fan > >

Re: [U-Boot] [PATCH] clk: correct spelling of bound

2019-08-04 Thread Peng Fan
> Subject: [PATCH] clk: correct spelling of bound > > bound is the correct past tense of bind. > > Signed-off-by: Anatolij Gustschin > --- > drivers/clk/clk-composite.c | 12 ++-- > drivers/clk/clk-divider.c | 4 ++-- > drivers/clk/clk-gate.c | 4 ++-- > drivers/clk/clk-mux.c

Re: [U-Boot] [PATCH 1/1] Dockerfile: build QEMU target for RISC-V 64bit

2019-08-04 Thread Tom Rini
On Sun, Aug 04, 2019 at 02:10:49PM +0200, Heinrich Schuchardt wrote: > Build riscv64-softmmu. > > Reviewed-by: Bin Meng > Signed-off-by: Heinrich Schuchardt Applied to u-boot-gitlab-ci-runner/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] [PATCH v2 0/6] U-boot: add PCIe, its PHY and AHCI support

2019-08-04 Thread Frank Wunderlich
a link the v1, because subject differs: https://patchwork.ozlabs.org/project/uboot/list/?series=122451 regards Frank ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH v2 2/6] phy: mediatek: add MediaTek T-PHY support for PCIe

2019-08-04 Thread Frank Wunderlich
From: Ryder Lee The driver provides PHY for USB2, USB3.0, PCIe and SATA, and now we just enable PCIe. As for the other functionalities will be added gradually in upcoming days. Tested-by: Frank Wunderlich Signed-off-by: Frank Wunderlich Signed-off-by: Ryder Lee --- drivers/phy/Kconfig

[U-Boot] [PATCH v2 4/6] arm: dts: split mtk-reset.h into per-chip header

2019-08-04 Thread Frank Wunderlich
From: Ryder Lee This follows the linux header rules to avoid conflict bitfields. Tested-by: Frank Wunderlich Signed-off-by: Frank Wunderlich Signed-off-by: Ryder Lee --- arch/arm/dts/mt7623.dtsi | 2 +- arch/arm/dts/mt7629.dtsi | 2 +-

[U-Boot] [PATCH v2 3/6] arm: dts: add PCIe controller for MT7623 SoC

2019-08-04 Thread Frank Wunderlich
From: Ryder Lee This adds PCIe and its PHY nodes for MT7623. Tested-by: Frank Wunderlich Signed-off-by: Frank Wunderlich Signed-off-by: Ryder Lee --- arch/arm/dts/mt7623.dtsi | 128 +++ arch/arm/dts/mt7623n-bananapi-bpi-r2.dts | 29 + 2 files

[U-Boot] [PATCH v2 5/6] ahci-pci: ASM1061 report wrong class, but support AHCI.

2019-08-04 Thread Frank Wunderlich
From: Oleksandr Rybalko Tested-by: Frank Wunderlich Signed-off-by: Frank Wunderlich Signed-off-by: Oleksandr Rybalko --- drivers/ata/ahci-pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ata/ahci-pci.c b/drivers/ata/ahci-pci.c index 1ca439d3fa..11ec98b56f 100644 ---

[U-Boot] [PATCH v2 1/6] pci: mediatek: add PCIe controller support for MT7623

2019-08-04 Thread Frank Wunderlich
From: Ryder Lee This adds PCIe controller support for MT7623. Tested-by: Frank Wunderlich Signed-off-by: Frank Wunderlich Signed-off-by: Ryder Lee --- drivers/pci/Kconfig | 8 + drivers/pci/Makefile| 1 + drivers/pci/pcie_mediatek.c | 292

[U-Boot] [PATCH v2 6/6] ata: ahci: Don't forget to clear upper address regs.

2019-08-04 Thread Frank Wunderlich
From: Oleksandr Rybalko In 32bits mode upper bits need to be set to 0, otherwise controller will try to DMA into not existing memory and stops with error. Tested-by: Frank Wunderlich Signed-off-by: Frank Wunderlich Signed-off-by: Oleksandr Rybalko --- drivers/ata/ahci.c | 9 +++-- 1

[U-Boot] [PATCH v2 0/6] U-boot: add PCIe, its PHY and AHCI support

2019-08-04 Thread Frank Wunderlich
This series adds PCIe/PHY drivers which were adapted from Linux version. The related drivers were tested on bpi-r2. To get AHCI (SATA) working on R2 (ASM1061 PCIe2SATA-Controller) 2 addional changes are needed (see Parts 5+6 from Oleksandr Rybalko) changes since v1: - replaced mt2701 PCIe

Re: [U-Boot] [PATCH 0/4] add pcie/ahci for mt7623/bpi-r2

2019-08-04 Thread Frank Wunderlich
Part 3 + 4 of this series will be replaced by driver from Ryder Lee (post his series in next hours). i have tested it the last days. Part 1 + 2 will still be needed to get ahci on bananapi r2 working. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 3/4] pci: mediatek: Add pci-driver for mt2701

2019-08-04 Thread Frank Wunderlich
Part 3 + 4 of this series will be replaced by driver from Ryder Lee (post his series in next hours). i have tested it the last days. Part 1 + 2 will still be needed to get ahci on bananapi r2 working. Am 31. Juli 2019 13:51:44 MESZ schrieb Frank Wunderlich : >From: Oleksandr Rybalko > >this

Re: [U-Boot] [PATCH 1/1] Dockerfile: build QEMU target for RISC-V 64bit

2019-08-04 Thread Bin Meng
On Sun, Aug 4, 2019 at 8:11 PM Heinrich Schuchardt wrote: > > Build riscv64-softmmu. > > Signed-off-by: Heinrich Schuchardt > --- > This patch applies to > https://gitlab.denx.de/u-boot/gitlab-ci-runner > --- > Dockerfile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by:

Re: [U-Boot] [PATCH 1/1] Dockerfile: build GRUB UEFI target for RISC-V 64bit

2019-08-04 Thread Bin Meng
On Sun, Aug 4, 2019 at 8:10 PM Heinrich Schuchardt wrote: > > Build GRUB UEFI target grubriscv64.efi. It is needed for running > test_efi_grub_net(). > > Signed-off-by: Heinrich Schuchardt > --- > This patch applies to > https://gitlab.denx.de/u-boot/gitlab-ci-runner > --- > Dockerfile | 14

[U-Boot] [RFC DO-NOT-APPLY 1/1] .travis.yml: use GRUB from Docker image

2019-08-04 Thread Heinrich Schuchardt
For GitLab we create our own GRUB binaries. Use them for Travis CI too. Signed-off-by: Heinrich Schuchardt --- Hello Tom, with this patch every single of the 78 sub-job will pull our Docker image resulting in 78 times 2GB traffic and 78 times 3 min for pulling the image. This cannot be the

[U-Boot] [PATCH 1/1] Dockerfile: build QEMU target for RISC-V 64bit

2019-08-04 Thread Heinrich Schuchardt
Build riscv64-softmmu. Signed-off-by: Heinrich Schuchardt --- This patch applies to https://gitlab.denx.de/u-boot/gitlab-ci-runner --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c669241..1d7a3da 100644 --- a/Dockerfile +++

[U-Boot] [PATCH 1/1] Dockerfile: build GRUB UEFI target for RISC-V 64bit

2019-08-04 Thread Heinrich Schuchardt
Build GRUB UEFI target grubriscv64.efi. It is needed for running test_efi_grub_net(). Signed-off-by: Heinrich Schuchardt --- This patch applies to https://gitlab.denx.de/u-boot/gitlab-ci-runner --- Dockerfile | 14 ++ 1 file changed, 14 insertions(+) diff --git a/Dockerfile

Re: [U-Boot] [PATCH 2/2] efi_loader: set the dhcp ack received flag

2019-08-04 Thread Heinrich Schuchardt
On 8/2/19 9:26 PM, Patrick Wildt wrote: On Wed, Apr 10, 2019 at 11:24:53AM +0200, Patrick Wildt wrote: On Wed, Apr 10, 2019 at 11:20:35AM +0200, Patrick Wildt wrote: On Thu, Jan 31, 2019 at 07:29:04PM +0100, Heinrich Schuchardt wrote: Do we really need multiple functions to update the DHCP

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

2019-08-04 Thread Heinrich Schuchardt
The following changes since commit d0d07ba86afc8074d79e436b1ba4478fa0f0c1b5: Prepare v2019.10-rc1 (2019-07-29 21:16:16 -0400) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2019-10-rc2 for you to fetch changes up to