[U-Boot] [PATCH] arm64: zynqmp: Add idcodes for new RFSoC silicons ZU48DR and ZU49DR

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu Add zu48dr and zu49dr to the list of zynqmp devices. The zu48dr and zu49dr are the new RFSoC silicons with id values of 0x7b and 0x7e. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- board/xilinx/zynqmp/zynqmp.c | 8 1 file

[U-Boot] [PATCH] arm64: versal: Fix for OCM overwriting issue

2019-09-11 Thread Michal Simek
From: Ashok Reddy Soma This patch reduces the console buffer size from 2048 to 1024, thus fixes OCM overwriting issue. Differences are in bss section as is shown from output: xilinx_versal_mini: all -2056 bss -2048 text -8 u-boot: add: 0/0, grow: 0/-3 bytes: 0/-2056 (-2056) function

[U-Boot] [PATCH] ARM: zynq: Increase input buffer console size to 2k

2019-09-11 Thread Michal Simek
ZynqMP and Versal is using 2k that's why aligned all platform together to be able to use the same scripts. Signed-off-by: Michal Simek --- include/configs/zynq-common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index

Re: [U-Boot] [EXT] [PATCH 2/2] spi-nor: spi-nor-ids: Disable SPI_NOR_4B_OPCODES for n25q512* and n25q256*

2019-09-11 Thread Ashish Kumar
> -Original Message- > From: Vignesh Raghavendra > Sent: Tuesday, September 10, 2019 10:36 PM > To: Jagan Teki > Cc: Vignesh Raghavendra ; u-boot@lists.denx.de; Tom > Rini ; Eugeniy Paltsev > ; alexey.brod...@synopsys.com; Ashish > Kumar > Subject: [EXT] [PATCH 2/2] spi-nor:

[U-Boot] [PATCH] ARM: zynq: Increase init ram size by 4K

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu Increase init ram size by 4K such that more stack space will be available during initialization as the present stackspace is not sufficient if DEBUG option is enabled and causes system hang. Increasing init ram size provides sufficient stack space during init

[U-Boot] [PATCH] ARM: zynq: Do not enable NETBSD support by default

2019-09-11 Thread Michal Simek
This option is disable in Xilinx tree for quite a long time that's why let's disable it in mainline. If there is anybody who requires this options then it should be moved to Kconfig first and should be removed from this config. Signed-off-by: Michal Simek --- include/configs/zynq-common.h | 2

[U-Boot] [PATCH] fpga: zynqmp: Fix second local variable declaration

2019-09-11 Thread Michal Simek
No reason to define new_buf again. Signed-off-by: Michal Simek --- drivers/fpga/zynqmppl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/fpga/zynqmppl.c b/drivers/fpga/zynqmppl.c index 22bfdd8dce61..f6d9d50ef15f 100644 --- a/drivers/fpga/zynqmppl.c +++

[U-Boot] [PATCH] mmc: sdhci: Move ZYNQ_HISPD_BROKEN to Kconfig

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch moves CONFIG_ZYNQ_HISPD_BROKEN to Kconfig Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- That config_whitelist.txt change doesn't need to be the part of commit but DP has done that and it should be ok to keep it there.

[U-Boot] [PATCH] net: zynq_gem: Remove check for Versal

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch removes check for Versal platform in gem driver as it now supports clock setting through clock framework. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- This patch depends on

Re: [U-Boot] Issue in u-boot; TFTP error: trying to overwrite reserved memory...

2019-09-11 Thread Simon Goldschmidt
On Mon, Sep 9, 2019 at 11:29 AM Moses Christopher wrote: > > Hi Simon, > > > Thanks for the prompt reply. > > On Fri, 6 Sep, 2019, 8:13 AM Simon Goldschmidt, > wrote: > > Hi, > > On Thu, Sep 5, 2019 at 4:14 PM Moses Christopher > wrote: > > Hello together, > > > > I was trying to build u-boot

Re: [U-Boot] [PATCH] usb: musb_hcd: fix compilation error

2019-09-11 Thread Marek Vasut
On 9/11/19 9:44 AM, Jean-Jacques Hiblot wrote: > commit 65c1f9820c8f79f "usb: Add nonblock argument to submit_int_msg" > breaks the musb_hcd driver. > Fixing it by adding the missing argument > > Signed-off-by: Jean-Jacques Hiblot > --- > > This patch is intended only for the u-boot-usb tree.

[U-Boot] [PATCH] clk: versal: Add clock driver support

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch adds clock driver support for Versal platform. The clock driver queries and performs clock operations using PLM firmware by communicating with it using SMC calls. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- DT is using

[U-Boot] [PATCH] net: zynq_gem: Add new versal compatible string

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch adds new versal compatible string to GEM driver for Versal platform. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/zynq_gem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/zynq_gem.c

[U-Boot] [PATCH] net: gem: Remove DECLARE_GLOBAL_DATA_PTR from gem driver

2019-09-11 Thread Michal Simek
GD is not used anywhere that's why there is no reason to have this macro in the driver. Signed-off-by: Michal Simek --- drivers/net/zynq_gem.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/net/zynq_gem.c b/drivers/net/zynq_gem.c index 033efb819569..a2ed50fa1e55 100644 ---

[U-Boot] [PATCH] arm64: zynqmp: Add new jtag distro boot command

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch adds new jtag distro boot command to look for bootscript file in DDR and execute it first incase of jtag bootmode. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- board/xilinx/zynqmp/zynqmp.c| 2 +-

[U-Boot] [PATCH] arm64: zynqmp: Update scriptaddr value to 512MB

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch updates scriptaddr value to 512MB as having it at 32MB has high chance of script corruption incase of bigger kernel. Be aware that 512MB is used for SPL malloc area that's why images should be loaded after SPL (the best after u-boot relocation).

Re: [U-Boot] [PATCH 05/10] ufs: Add Initial Support for UFS subsystem

2019-09-11 Thread Faiz Abbas
Hi Vignesh, On 10/09/19 9:18 AM, Vignesh Raghavendra wrote: > > > On 09/09/19 1:49 PM, Faiz Abbas wrote: >> Add Support for UFS Host Controller Interface (UFSHCI) for communicating >> with Universal Flash Storage (UFS) devices. The steps to initialize the >> host controller interface are the

Re: [U-Boot] [PATCH] arm64: versal: Also record versal name to versal fragment

2019-09-11 Thread Michal Simek
On 11. 09. 19 9:46, Heinrich Schuchardt wrote: > On 9/11/19 9:21 AM, Michal Simek wrote: >> Just to make sure that also drivers with versal name are assigned to >> proper >> fragment. >> >> Signed-off-by: Michal Simek >> --- >> >>   MAINTAINERS | 1 + >>   1 file changed, 1 insertion(+) >> >> diff

[U-Boot] [PATCH 4/4] arm64: versal: Change boot script offset address in versal

2019-09-11 Thread Michal Simek
From: T Karthik Reddy With the current boot script offset address in qspi is being overlaped by BOOT.BIN as it is over 90MB with fpga included. So moving the script offset address to end of flash after "bootenv" mtd partition. Here we are considering qspi flash size >= 128Mbytes on versal and

[U-Boot] [PATCH 2/4] arm64: versal: Add new jtag distro boot command

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch adds new jtag distro boot command to look for bootscript file in DDR and execute it first incase of jtag bootmode. This patch also updates scriptaddr to 512MB as there is high of script corruption incase of bigger kernel image. Signed-off-by: Siva

[U-Boot] [PATCH 3/4] arm64: versal: Add new dfu usb distro boot command

2019-09-11 Thread Michal Simek
From: T Karthik Reddy This patch adds new dfu usb distro boot command to look for bootscript from dfu-util and runs it. Signed-off-by: T Karthik Reddy Signed-off-by: Michal Simek --- board/xilinx/versal/board.c | 4 include/configs/xilinx_versal.h | 11 +++ 2 files

[U-Boot] [PATCH 1/4] arm64: versal: Define configs related to USB DFU functionality

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch defines macros required for DFU functionality for Xilinx Versal platform. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- include/configs/xilinx_versal.h | 25 - 1 file changed, 24 insertions(+), 1

[U-Boot] [PATCH 0/4] arm64: versal: Extend distro boot

2019-09-11 Thread Michal Simek
Hi, these patches are extending current distribution boot for Xilinx Versal. USB DFU and jtag with one change for spi boot mode. Thanks, Michal Siva Durga Prasad Paladugu (2): arm64: versal: Define configs related to USB DFU functionality arm64: versal: Add new jtag distro boot command T

Re: [U-Boot] [PATCH 02/10] scsi: Add max_bytes to scsi_platdata

2019-09-11 Thread Faiz Abbas
Vignesh, On 10/09/19 9:16 AM, Vignesh Raghavendra wrote: > > > On 09/09/19 1:49 PM, Faiz Abbas wrote: >> diff --git a/include/scsi.h b/include/scsi.h >> index 81ab43c842..076bdbc6a0 100644 >> --- a/include/scsi.h >> +++ b/include/scsi.h >> @@ -168,6 +168,7 @@ struct scsi_platdata { >>

[U-Boot] [PATCH] arm64: versal: Add platform detection code to versal_virt

2019-09-11 Thread Michal Simek
Detect which platform U-Boot is running at and based on that choose DTS file which U-Boot uses for own configuration. Signed-off-by: Michal Simek --- arch/arm/mach-versal/cpu.c | 18 +--- arch/arm/mach-versal/include/mach/hardware.h | 9 board/xilinx/versal/board.c

[U-Boot] [PATCH] zynqmp: firmware: Add Xilinx ZynqMP firmware driver

2019-09-11 Thread Michal Simek
From: Rajan Vaja Add simple ZynqMP firmware drive to populate child nodes under zynqmp_firmware DT node. Signed-off-by: Rajan Vaja Signed-off-by: Michal Simek --- drivers/clk/Kconfig| 1 + drivers/firmware/Kconfig | 10 ++ drivers/firmware/Makefile

Re: [U-Boot] [PATCH] arm64: versal: Also record versal name to versal fragment

2019-09-11 Thread Heinrich Schuchardt
On 9/11/19 9:21 AM, Michal Simek wrote: Just to make sure that also drivers with versal name are assigned to proper fragment. Signed-off-by: Michal Simek --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 08222fd56948..1e51a98924dd 100644

[U-Boot] [PATCH] usb: musb_hcd: fix compilation error

2019-09-11 Thread Jean-Jacques Hiblot
commit 65c1f9820c8f79f "usb: Add nonblock argument to submit_int_msg" breaks the musb_hcd driver. Fixing it by adding the missing argument Signed-off-by: Jean-Jacques Hiblot --- This patch is intended only for the u-boot-usb tree. drivers/usb/musb/musb_hcd.c | 4 ++-- 1 file changed, 2

Re: [U-Boot] [PATCH] clk: sifive: Fix ethernet regression on HiFive Unleashed

2019-09-11 Thread Bin Meng
+devicetree On Wed, Sep 11, 2019 at 2:25 PM Anup Patel wrote: > > On Wed, Sep 11, 2019 at 7:28 AM Bin Meng wrote: > > > > Hi Marcus, > > > > On Tue, Sep 10, 2019 at 11:53 PM Marcus Comstedt wrote: > > > > > > > > > Hi Bin, > > > > > > Bin Meng writes: > > > > > > > So 4.14 definitely was an

[U-Boot] [PATCH 2/2] arm64: zynqmp: Provide a Kconfig option to disable OCM and TCM MMU mapping

2019-09-11 Thread Michal Simek
This patch provides an option to enable/disable OCM and TCM memory into MMU table with corresponding memory attributes. The same change was done for ZynqMP by commit 189bec47ab1f ("arm64: zynqmp: Provide a Kconfig option to define OCM and TCM in MMU") Signed-off-by: Michal Simek ---

[U-Boot] [PATCH 1/2] arm64: versal: Enable memory mapping via DT

2019-09-11 Thread Michal Simek
Code reads DT and setup MMU table based on memory node. This will ensure that only DT needs to be changed. Signed-off-by: Michal Simek --- arch/arm/mach-versal/cpu.c| 36 +-- arch/arm/mach-versal/include/mach/sys_proto.h | 1 + board/xilinx/versal/board.c

[U-Boot] [PATCH 0/2] arm64: Setting up initrd_hi at run time

2019-09-11 Thread Michal Simek
Hi, we are running one u-boot configurations on various boards with different amount of memory that setting up initrd_high is problematic. There shouldn't be a problem to setup initrd_high at run time based on DDR size detection. The same changes are done for ZynqMP and Versal. Thanks, Michal

[U-Boot] [PATCH 1/2] arm64: versal: Set initrd_high to as high as possible

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch is setting up the initrd_high to as high as possible by leaving max stack size for u-boot so that bigger rootfs can also be loaded by u-boot for booting kernel. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek ---

[U-Boot] [PATCH 2/2] arm64: zynqmp: Set initrd_high to as high as possible

2019-09-11 Thread Michal Simek
From: T Karthik Reddy This patch is setting up the initrd_high to as high as possible by leaving max stack size for u-boot so that bigger rootfs can also be loaded by u-boot for booting kernel. Signed-off-by: T Karthik Reddy Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal

[U-Boot] [PATCH] arm64: versal: fpga: Add PL bit stream load support

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch adds PL bitstream load support for Versal platform. The PL bitstream is loaded by making an SMC to ATF which in turn communicates with platform firmware which configures and loads PL bitstream on to PL. Signed-off-by: Siva Durga Prasad Paladugu

[U-Boot] [PATCH] arm64: versal: Also record versal name to versal fragment

2019-09-11 Thread Michal Simek
Just to make sure that also drivers with versal name are assigned to proper fragment. Signed-off-by: Michal Simek --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 08222fd56948..1e51a98924dd 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -403,6

Re: [U-Boot] [PATCH] configs: rockpro64-rk3399: Enable CONFIG_MISC_INIT_R and ROCKCHIP_EFUSE【请注意,邮件由u-boot-boun...@lists.denx.de代发】 CONFIG_MISC_INIT_R and ROCKCHIP_EFUSE

2019-09-11 Thread Kever Yang
On 2019/9/10 上午4:48, Hugh Cole-Baker wrote: This enables reading the cpuid from e-fuse, and deriving a static MAC address from it. Without this, the ethernet interface on the rockpro64 can't be used to boot. Signed-off-by: Hugh Cole-Baker Cc: Philipp Tomsich Reviewed-by: Kever Yang

[U-Boot] [PATCH] xilinx: Add support for SBC

2019-09-11 Thread Michal Simek
There is a need to differentiate fit images for Zynq and ZynqMP U-Boot. Zynq is going to use u-boot-zynq.img and ZynqMP u-boot-zynqmp.img. Signed-off-by: Michal Simek --- include/configs/topic_miami.h | 1 + include/configs/xilinx_zynqmp.h | 2 +- include/configs/zynq-common.h | 2 +- 3

[U-Boot] [PATCH] arm64: versal: Define board_late_init for versal

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu Define board_late_init which performs bootmode detection and prepares corresponding distro boot commaand sequence. Also disable it for mini platforms because simply there is no need to have it enabled. But also disable it for virtual platform because Qemu is not

[U-Boot] [PATCH] arm64: zynqmp: Enable SPI support in SPL for zcu104

2019-09-11 Thread Michal Simek
It is enabling this mode but full boot is not validated yet. Signed-off-by: Michal Simek --- configs/xilinx_zynqmp_zcu104_revC_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/xilinx_zynqmp_zcu104_revC_defconfig b/configs/xilinx_zynqmp_zcu104_revC_defconfig index

Re: [U-Boot] [PATCH] ARM: dts: at91: sama5d27_wlsom1: add hlcdc node

2019-09-11 Thread Eugen.Hristev
On 26.08.2019 14:45, Eugen Hristev - M18282 wrote: > From: Eugen Hristev > > Add node for hlcld for u-boot logo display at boot. > This is compatible with the Precision Design Associates (PDA) TM5000 screen. > Timings are compatible with simple panel from Linux, panel name is > pda_91_00156_a0

Re: [U-Boot] [PATCH 1/4] ARM: dts: at91: sama5d2: add seq for qspi1

2019-09-11 Thread Eugen.Hristev
On 26.08.2019 09:47, Eugen Hristev - M18282 wrote: > From: Eugen Hristev > > qspi1 does not have an alias/seq number. This is required for > SPL default SF bus booting for the boards that have this SoC > > Signed-off-by: Eugen Hristev > --- Applied series to u-boot-atmel/next

[U-Boot] [PATCH] arm64: zynqmp: Add u-boot, dm-pre-reloc to clk300 node

2019-09-11 Thread Michal Simek
This node is used by qspi driver for supporting qspi boot mode in SPL. Similar changes have beeen done by commit a9022b017a90 ("ARM64: zynqmp: Add u-boot,dm-pre-reloc to clk nodes") Signed-off-by: Michal Simek --- arch/arm/dts/zynqmp-clk.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git

[U-Boot] [PATCH] arm64: zynqmp: Enable gpio hog support for zcu102

2019-09-11 Thread Michal Simek
Gpio hogs are used for GT mux setup after power up. Signed-off-by: Michal Simek --- configs/xilinx_zynqmp_zcu102_rev1_0_defconfig | 1 + configs/xilinx_zynqmp_zcu102_revA_defconfig | 1 + configs/xilinx_zynqmp_zcu102_revB_defconfig | 1 + 3 files changed, 3 insertions(+) diff --git

[U-Boot] [PATCH 2/2] xilinx: Add sd boot command script for reference

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu This patch adds sdboot command script for reference. This can be converetd into uboot script using mkimage and use for booting. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- board/xilinx/bootscripts/sdboot.cmd | 10 ++ 1

[U-Boot] [PATCH 1/2] xilinx: Add qspi boot command script for reference

2019-09-11 Thread Michal Simek
From: Siva Durga Prasad Paladugu Thsi patch adds qspiboot command script for reference. This can be converetd into uboot script using mkimage and use for booting. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- board/xilinx/bootscripts/qspiboot.cmd | 10 ++

[U-Boot] [PATCH 0/2] xilinx: Add some example scripts for bootmodes

2019-09-11 Thread Michal Simek
Hi, mostly yocto guys asked us to provide default scripts for supporting distribution boot mode which is done by these 2 patches. Thanks, Michal Siva Durga Prasad Paladugu (2): xilinx: Add qspi boot command script for reference xilinx: Add sd boot command script for reference

[U-Boot] [PATCH] arm64: versal: Remove SPL_DM_SEQ_ALIAS for platforms which have no SPL

2019-09-11 Thread Michal Simek
It is defconfig synchronization caused by commit a074667d5203 ("Kconfig: Varios: Fix more SPL, TPL dependencies"). These platforms are not enabling SPL that's why SPL symbols shouldn't be the part of defconfig. Signed-off-by: Michal Simek --- configs/xilinx_versal_mini_emmc0_defconfig | 1 -

[U-Boot] [PATCH] arm64: zynqmp: Define default SPL_TEXT_BASE address in Kconfig

2019-09-11 Thread Michal Simek
Define default address via Kconfig. There is no need to change this address for most of the boards but it is also possible. This one line save a lot of lines in defconfigs that's why make sense to do it. The similar change has been done by commit 9340d8fe8beb ("sunxi: move CONFIG_SPL_TEXT_BASE

Re: [U-Boot] Add support for imxrt

2019-09-11 Thread Stefano Babic
Hi Giulio, On 10/09/19 20:32, Giulio Benetti wrote: > Hello everybody, > > I would like to port imxrt to u-boot and I would like to ask you: > - do you have the interest on upstreaming it? > if yes: > I've seen how they've dealt with 'stm32' and 'stm32mp' that is similar > to 'imxrt' and 'imx'.

Re: [U-Boot] [PATCH 2/2] efi_loader: device_path: support Sandbox's "host" devices

2019-09-11 Thread AKASHI Takahiro
Heinrich, Apologies for having not replied. On Fri, Aug 23, 2019 at 08:09:45PM +0200, Heinrich Schuchardt wrote: > On 8/23/19 1:34 AM, AKASHI Takahiro wrote: > >On Thu, Aug 22, 2019 at 08:19:24PM +0200, Heinrich Schuchardt wrote: > >>On 8/22/19 10:54 AM, AKASHI Takahiro wrote: > >>>Sandbox's

Re: [U-Boot] [PATCH] clk: sifive: Fix ethernet regression on HiFive Unleashed

2019-09-11 Thread Anup Patel
On Wed, Sep 11, 2019 at 7:28 AM Bin Meng wrote: > > Hi Marcus, > > On Tue, Sep 10, 2019 at 11:53 PM Marcus Comstedt wrote: > > > > > > Hi Bin, > > > > Bin Meng writes: > > > > > So 4.14 definitely was an out-of-tree kernel > > > > Everything before 5.2 was out-of-tree. > > > > > > > No one can

Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-09-11 Thread AKASHI Takahiro
Heinrich, On Fri, Aug 23, 2019 at 09:04:21AM +0900, AKASHI Takahiro wrote: > On Thu, Aug 22, 2019 at 12:52:41PM +0200, Heinrich Schuchardt wrote: > > On 8/22/19 11:11 AM, Mark Kettenis wrote: > > >>From: AKASHI Takahiro > > >>Date: Thu, 22 Aug 2019 17:06:25 +0900 > > >> > > >>Currently, a whole

Re: [U-Boot] efi_loader: LoadOptions (bootargs)

2019-09-11 Thread AKASHI Takahiro
Heinrich, On Fri, Aug 23, 2019 at 08:42:27AM +0900, AKASHI Takahiro wrote: > On Thu, Aug 22, 2019 at 07:53:46PM +0200, Heinrich Schuchardt wrote: > > On 8/22/19 11:03 AM, AKASHI Takahiro wrote: > > >Heinrich, > > > > > >I'm now wondering whether LoadedImage's LoadOptions, which comes > > >from

Re: [U-Boot] [PATCH 0/3] Support distro boot in pico-imx7d BL33 case

2019-09-11 Thread Peng Fan
> -Original Message- > From: Jun Nie > Sent: 2019年9月9日 21:47 > To: Peng Fan > Cc: Stefano Babic ; Fabio Estevam ; > Otavio Salvador ; Vanessa Maegima > ; Bryan O'Donoghue > ; U-Boot Mailing List > Subject: Re: [PATCH 0/3] Support distro boot in pico-imx7d BL33 case > > Peng Fan

<    1   2