Re: [U-Boot] [PATCH 08/12] rockchip: misc: read cpuid either from efuse or otp

2019-10-24 Thread Kever Yang
On 2019/10/25 上午7:27, Heiko Stuebner wrote: From: Heiko Stuebner Newer Rockchip socs use a different ip block to handle one-time- programmable memory, so depending on what got enabled get the cpuid from either source. Signed-off-by: Heiko Stuebner Reviewed-by: Kever Yang Thanks, - Kever -

Re: [U-Boot] [PATCH 10/12] rockchip: add px30 devicetrees

2019-10-24 Thread Kever Yang
On 2019/10/25 上午7:28, Heiko Stuebner wrote: From: Heiko Stuebner Add px30 related devicetrees synced from the Linux kernel. The kernel dts should have been on kernel mainline, could you provide which commit do you sync from? Thanks, - Kever Signed-off-by: Heiko Stuebner --- arch/

Re: [U-Boot] [PATCH] configs: spi: Miss the SPI_FLASH_BAR for ESPI

2019-10-24 Thread Xiaowei Bao
> -Original Message- > From: Jagan Teki > Sent: 2019年10月24日 3:40 > To: Xiaowei Bao > Cc: Priyanka Jain ; Jagdish Gediya > ; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH] configs: spi: Miss the SPI_FLASH_BAR for ESPI > > On Tue, Oct 22, 2019 at 3:21 PM Xiaowei Bao > wrote: > > >

Re: [U-Boot] [PATCH 11/12] rockchip: add px30 architecture core

2019-10-24 Thread Kever Yang
Heiko, On 2019/10/25 上午7:28, Heiko Stuebner wrote: From: Kever Yang Add core architecture code to support the px30 soc. This includes a separate tpl board file due to very limited sram size as well as a non-dm sdram driver, as this also has to fit into the tiny sram. Could you leave the sra

Re: [U-Boot] [PATCH 12/12] rockchip: add px30-evb board

2019-10-24 Thread Kever Yang
On 2019/10/25 上午7:28, Heiko Stuebner wrote: From: Heiko Stuebner The px30 evb is an evaluation board for the px30 together with a dsi- connected display. This adds board and config files for it. Signed-off-by: Heiko Stuebner Reviewed-by: Kever Yang Thanks, - Kever --- board/rockchip/

Re: [U-Boot] python3 support for pylibfdt

2019-10-24 Thread Simon Glass
Hi, On Wed, 4 Sep 2019 at 08:36, Simon Glass wrote: > > Hi Tom, > > Ah OK. I was worried about doing it in one step. It might be too late > now but will take a look when I get time and we can see if it is safe. Just to close this thread, I have now sent a v2 series which I think covers this, as

Re: [U-Boot] [PATCH 1/1] efi_driver: set block size for EFI block device

2019-10-24 Thread AKASHI Takahiro
On Thu, Oct 24, 2019 at 08:49:00PM +, Heinrich Schuchardt wrote: > Copy the block size from the block IO protocol to the U-Boot block device > descriptor. This information is used by the ext4 file system driver. > > Signed-off-by: Heinrich Schuchardt > --- > lib/efi_driver/efi_block_device.c

Re: [U-Boot] [PATCH] usb: composite: add BOS descriptor support to composite framework

2019-10-24 Thread Vignesh Raghavendra
Hi Michal, On 14/10/19 6:22 PM, Michal Simek wrote: > From: T Karthik Reddy > > To add usb-3.0 support to peripheral device add BOS & SS capability > descriptors to gadget composite framework. > How was this patch tested? With what gadget function driver was this tested? I don't see *any* func

Re: [U-Boot] Regression in fastboot on X15 due to CDCE913 enabling

2019-10-24 Thread Vignesh Raghavendra
Hi Andrew, On 24/10/19 11:49 PM, Andrew F. Davis wrote: > On 10/24/19 11:25 AM, Vignesh Raghavendra wrote: >> Hi Sam, >> >> On 24-Oct-19 7:16 PM, Sam Protsenko wrote: >>> Putting Vignesh to "To:". >>> >>> Hi Vignesh, >>> >>> Please address Tero's comments below (I've marked with ^^^). Thanks. >>>

Re: [U-Boot] [PATCH v2 8/8] Add Micirosoft Azure pipelines configuration

2019-10-24 Thread Bin Meng
Hi Tom, On Thu, Oct 24, 2019 at 11:38 PM Tom Rini wrote: > > On Thu, Oct 24, 2019 at 11:31:30PM +0800, Bin Meng wrote: > > On Thu, Oct 24, 2019 at 11:10 PM Bin Meng wrote: > > > > > > Hi Tom, > > > > > > On Thu, Oct 24, 2019 at 11:01 PM Tom Rini wrote: > > > > > > > > On Wed, Oct 23, 2019 at 08

Re: [U-Boot] [PATCH] usb: composite: add BOS descriptor support to composite framework

2019-10-24 Thread Michal Simek
Hi, On 25. 10. 19 6:42, Vignesh Raghavendra wrote: > Hi Michal, > > On 14/10/19 6:22 PM, Michal Simek wrote: >> From: T Karthik Reddy >> >> To add usb-3.0 support to peripheral device add BOS & SS capability >> descriptors to gadget composite framework. >> > > How was this patch tested? With wh

Re: [U-Boot] [PATCH] microblaze: defconfig: Enable devtmps and tmpfs

2019-10-24 Thread Michal Simek
út 8. 10. 2019 v 12:03 odesílatel Michal Simek napsal: > > From: Manjukumar Matha > > Currently dropbear does not run in background because devtmps and tmpfs > is not enabled by default. Enable devtmps and tmpfs to fix this issue. > > Signed-off-by: Manjukumar Matha > Signed-off-by: Michal Simek

[U-Boot] [PATCH 0/8] RISC-V AX25-AE350 support SPL

2019-10-24 Thread Andes
From: Rick Chen This series add support for SPL to AX25-AE350. U-Boot SPL can boots from RAM or ROM and jump to OPenSbi(FW_DYNAMIC firmware) and U-Boot proper from RAM or MMC devices. Also fix some bugs for andes plic driver and improve cache configurations for SPL. Following are the booting m

[U-Boot] [PATCH 1/8] riscv: ax25: add SPL support

2019-10-24 Thread Andes
From: Rick Chen The U-Boot SPL will boot in M mode and load the FIT image which include OpenSbi and U-Boot proper images. After loading progress, it will jump to OpenSbi first and then U-Boot proper which will run in S mode. Signed-off-by: Rick Chen Cc: KC Lin Cc: Alan Kao --- arch/riscv/cpu

[U-Boot] [PATCH 2/8] riscv: ax25-ae350: add SPL configuration

2019-10-24 Thread Andes
From: Rick Chen This patch provides four configurations which can support U-Boot SPL to boot from RAM or FLASH and then boot FIT image including OpenSBI FW_DYNAMIC firmware and U-Boot proper images from RAM or MMC boot devices. With ae350_rv[32|64]_spl_defconfigs: U-Boot SPL will be loaded by g

[U-Boot] [PATCH 4/8] riscv: andes_plic: Fix some wrong configurations

2019-10-24 Thread Andes
From: Rick Chen It will work fine due to hart 0 always will be main hart coincidentally. When develop SPL flow, I try to force other harts to be main hart. And it will go wrong in sending IPI flow. So fix it. Having this fix, any hart can be main hart in U-Boot SPL theoretically, but it still fa

[U-Boot] [PATCH 3/8] riscv: ax25-ae350: Use generic memory size setup

2019-10-24 Thread Andes
From: Rick Chen To get memory size from device tree instead of get_ram_size(). This can avoid memory access fault in U-Boot proper after PMP configurations in OpenSbi. Signed-off-by: Rick Chen Cc: KC Lin Cc: Alan Kao --- board/AndesTech/ax25-ae350/ax25-ae350.c | 21 ++--- 1 f

[U-Boot] [PATCH 6/8] spl: cache: Allow cache drivers in SPL

2019-10-24 Thread Andes
From: Rick Chen When ax25-ae350 try to enable v5l2 cache driver in SPL configuration, it need this option for cache support in SPL. Signed-off-by: Rick Chen Cc: KC Lin Cc: Alan Kao --- common/spl/Kconfig | 7 +++ drivers/Makefile | 1 + 2 files changed, 8 insertions(+) diff --git a/co

[U-Boot] [PATCH 5/8] riscv: ax25: cache: Add SPL_RISCV_MMODE for SPL

2019-10-24 Thread Andes
From: Rick Chen The mcache_ctl csr only can be manipulated in M mode. Add SPL_RISCV_MMODE for U-Boot SPL to control cache operation. Signed-off-by: Rick Chen Cc: KC Lin Cc: Alan Kao --- arch/riscv/cpu/ax25/cache.c | 60 ++--- 1 file changed, 46 inserti

[U-Boot] [PATCH 8/8] riscv: dts: Support four cores SMP

2019-10-24 Thread Andes
From: Rick Chen Add CPU2 and CPU3 informations in cpus node to support four cores SMP booting. Signed-off-by: Rick Chen Cc: KC Lin Cc: Alan Kao --- arch/riscv/dts/ae350_32.dts | 51 ++--- arch/riscv/dts/ae350_64.dts | 51 +++

[U-Boot] [PATCH 7/8] riscv: Fix clear bss loop in the start-up code

2019-10-24 Thread Andes
From: Rick Chen For RV64, it will use sd instruction to clear t0 register, and the increament will be 8 bytes. So if the difference between__bss_strat and __bss_end was not 8 bytes aligned, the clear bss loop will overflow and acks like system hang. Signed-off-by: Rick Chen Cc: KC Lin Cc: Alan

Re: [U-Boot] [PATCH 1/1] efi_driver: set block size for EFI block device

2019-10-24 Thread Heinrich Schuchardt
On 10/25/19 6:34 AM, AKASHI Takahiro wrote: On Thu, Oct 24, 2019 at 08:49:00PM +, Heinrich Schuchardt wrote: Copy the block size from the block IO protocol to the U-Boot block device descriptor. This information is used by the ext4 file system driver. Signed-off-by: Heinrich Schuchardt ---

Re: [U-Boot] [PATCH 1/1] efi_driver: set block size for EFI block device

2019-10-24 Thread AKASHI Takahiro
On Fri, Oct 25, 2019 at 08:37:11AM +0200, Heinrich Schuchardt wrote: > On 10/25/19 6:34 AM, AKASHI Takahiro wrote: > >On Thu, Oct 24, 2019 at 08:49:00PM +, Heinrich Schuchardt wrote: > >>Copy the block size from the block IO protocol to the U-Boot block device > >>descriptor. This information i

[U-Boot] [GIT PULL] Xilinx patches for v2020.01 part 2

2019-10-24 Thread Michal Simek
Hi Tom, this is the second pull request because I found a lot of stuff missing in mainline. I have also included one minor dtbo clean up because I have started to use it to support different modules. And also very important fix for manual relocation for repeatable commands which was broken for qui

<    1   2   3