AST 2600 loading issues

2021-06-08 Thread Manu Anand
Hi folks: I'm working on AST 2600 uboot image and need some direction. More specifically, I was trying to load SPI flash image for AST 2600 on qemu and running into an error wherein qemu just hangs while emulating 2600 evb. Here are the cmds I'm running Steps to compile AST 2600 u-boot image 1.

Re: [PATCH] optee/rpmb.c: Fix driver routing memory alignment using a temporary buffer

2021-06-08 Thread litchi.pi
I agree, the most generic way to fix this problem would be to ensure memory alignment inside the general RPMB driver. the drivers/tee/optee/rpmb.c driver uses `mmc_rpmb_route_frames`, which is a parallel API used to drive RPMB frames directly into the MMC driver. I thought that the MMC driver

Re: [PATCH v3] usb: dfu: Migrate CONFIG_SYS_DFU_DATA_BUF_SIZE and CONFIG_SYS_DFU_MAX_FILE_SIZE to Kconfig

2021-06-08 Thread Tom Rini
On Tue, Jun 08, 2021 at 01:34:33PM +0530, Aswath Govindraju wrote: > + Tom Rini > > I saw that this patch is delegated to Tom Rini in patchwork page but I > did not add him in the cc-list. So, I added him now. > > Hi Tom, > > On 01/06/21 4:51 pm, Aswath Govindraju wrote: > > Currently the

[PATCH] optee/rpmb.c: Fix driver routing memory alignment using a temporary buffer

2021-06-08 Thread Timothée Cercueil
From: Timothée Cercueil OP-TEE OS inserts a 6-byte header before a raw RPMB frame which makes RPMB data buffer not 32bit aligned. Many RPMB drivers implicitly expect 32bit alignment of the eMMC frame including arm_pl180_mmci.c, sandbox_mmc.c and stm32_sdmmc2.c To prevent breaking ABI with

[PATCH v1] arm: dts: ls1021a.dtsi: Fix invalid reg on gpio nodes

2021-06-08 Thread Lasse Klok Mikkelsen
Address and size cells on SOC are set to 1. But gpio nodes are specified with 2 cells. This fixes the gpio nodes to correct cells. Signed-off-by: Lasse Klok Mikkelsen --- arch/arm/dts/ls1021a.dtsi | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

Re: [PATCH v3] usb: dfu: Migrate CONFIG_SYS_DFU_DATA_BUF_SIZE and CONFIG_SYS_DFU_MAX_FILE_SIZE to Kconfig

2021-06-08 Thread Aswath Govindraju
+ Tom Rini I saw that this patch is delegated to Tom Rini in patchwork page but I did not add him in the cc-list. So, I added him now. Hi Tom, On 01/06/21 4:51 pm, Aswath Govindraju wrote: > Currently the config options CONFIG_SYS_DFU_DATA_BUF_SIZE and > CONFIG_SYS_DFU_MAX_FILE_SIZE are being

Re: [PATCH v2] Revert "mmc: fsl_esdhc_imx: use VENDORSPEC_FRC_SDCLK_ON to control card clock output"

2021-06-08 Thread Jaehoon Chung
Hi Fabio, On 6/9/21 6:47 AM, Fabio Estevam wrote: > Hi Jaehoon, > > On Mon, Jun 7, 2021 at 11:50 PM Jaehoon Chung wrote: > >> Is your target success to boot finally after 20sec? > > Yes, it boots fine after 20s. > >> I didn't have target to use fsl_esdhc_imx driver. >> >> If booted after

Re: [PATCH v2 00/10] handling all DM watchdogs in watchdog_reset()

2021-06-08 Thread Rasmus Villemoes
On 28/05/2021 00.00, Rasmus Villemoes wrote: > This series is an attempt at expanding the wdt-uclass provided > watchdog_reset() to handle all DM watchdogs, not just the first > one. As a sort of nice side effect, it turns out that doing that makes > wdt-uclass fit better into the uclass model, in

[PATCH 1/1] efi_loader: fix Sphinx warning

2021-06-08 Thread Heinrich Schuchardt
Brackets '[' need to be escaped to avoid a build warning lib/efi_loader/efi_image_loader.c:223: WARNING: Inline strong start-string without end-string. Signed-off-by: Heinrich Schuchardt --- lib/efi_loader/efi_image_loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [PATCH v2 2/2] doc: usage: man-page for ums command

2021-06-08 Thread Heinrich Schuchardt
On 6/4/21 6:51 PM, Patrick Delaunay wrote: Provide a man-page for the ums command - USB Mass Storage. Signed-off-by: Patrick Delaunay --- Changes in v2: - clarify description - add reference to and align parameter name - correct information for partition = 0 (expose all partitions) - update

Re: [PATCH v2 1/2] cmd: Add dependency for ums command

2021-06-08 Thread Heinrich Schuchardt
On 6/4/21 6:51 PM, Patrick Delaunay wrote: Add the missing dependency for the command ums: - CONFIG_BLK: call of blk_* functions in usb_mass_storage.c - CONFIG_USB_GADGET: required to select CONFIG_USB_FUNCTION_MASS_STORAGE Signed-off-by: Patrick Delaunay Reviewed-by: Heinrich Schuchardt

Re: [PULL] u-boot-sh/master

2021-06-08 Thread Tom Rini
On Mon, Jun 07, 2021 at 10:26:32PM +0200, Marek Vasut wrote: > I found this one left over in the queue ... > > The following changes since commit e3b64beda5dd1a6b6bedfd1fe0e50be1ddea7044: > > Prepare v2021.07-rc4 (2021-06-07 09:26:39 -0400) > > are available in the Git repository at: > >

Re: [PATCH v2] Revert "mmc: fsl_esdhc_imx: use VENDORSPEC_FRC_SDCLK_ON to control card clock output"

2021-06-08 Thread Fabio Estevam
Hi Jaehoon, On Mon, Jun 7, 2021 at 11:50 PM Jaehoon Chung wrote: > Is your target success to boot finally after 20sec? Yes, it boots fine after 20s. > I didn't have target to use fsl_esdhc_imx driver. > > If booted after 20sec, how about below code? > > #ifdef CONFIG_FSL_ESDHC_IMX_TIMEOUT >

Re: [PATCH v4 0/2] log: Allow multiple lines and conversion to printf()

2021-06-08 Thread Tom Rini
On Sat, May 08, 2021 at 01:46:52PM -0600, Simon Glass wrote: > At present when logging is not enabled, all log() calls become nops. This > does not seem right, since if the log level is high enough then there > should be some sort of message. So in that case, this series updates it to > print the

Re: [PATCH v2 00/12] display_options: Start to unify print_buffer() and hexdump

2021-06-08 Thread Tom Rini
On Sat, May 08, 2021 at 06:59:55AM -0600, Simon Glass wrote: > At present we have two ways of showing a hex dump. Once has been in U-Boot > since the dawn of time and the other was recently added from Linux. > > They both have their own unique features. > > This series makes a few changes to

[PATCH v3 1/5] spi: rockchip_sfc: add support for Rockchip SFC

2021-06-08 Thread Chris Morgan
From: Chris Morgan This patch adds support for the Rockchip serial flash controller found on the PX30 SoC. It should work for versions 3-5 of the SFC IP, however I am only able to test it on v3. This is adapted from the WIP SPI-MEM driver for the SFC on mainline Linux. Note that the main

[PATCH v3 5/5] rockchip: px30: add support for SFC for Odroid Go Advance

2021-06-08 Thread Chris Morgan
From: Chris Morgan The Odroid Go Advance uses a Rockchip Serial Flash Controller with an XT25F128B SPI NOR flash chip. This adds support for both. Note that while both the controller and chip support quad mode, only two lines are connected to the chip. Changing the pinctrl to bus2 and setting tx

[PATCH v3 4/5] mtd: spi-nor-ids: Add XTX XT25F128B

2021-06-08 Thread Chris Morgan
From: Chris Morgan Adds support for XT25F128B used on Odroid Go Advance. Unfortunately this chip uses a continuation code which I cannot seem to parse, so there are possibly going to be collisions with chips that use the same manufacturer/ID. Signed-off-by: Chris Morgan ---

[PATCH v3 3/5] rockchip: px30: add the serial flash controller

2021-06-08 Thread Chris Morgan
From: Chris Morgan Add the serial flash controller to the devicetree for the PX30. Signed-off-by: Chris Morgan --- arch/arm/dts/px30.dtsi | 38 ++ 1 file changed, 38 insertions(+) diff --git a/arch/arm/dts/px30.dtsi b/arch/arm/dts/px30.dtsi index

[PATCH v3 0/5] rockchip_sfc: add support for Rockchip SFC

2021-06-08 Thread Chris Morgan
From: Chris Morgan Changes from v2: - Resending due to glitch with patch file truncating final two lines on patch 1/5 and incorrect patch version number on patch 5/5. Changes from v1: - Reworked code to utilize spi-mem framework, and based it closely off of work in progress code for

[PATCH v3 2/5] rockchip: px30: Add support for using SFC

2021-06-08 Thread Chris Morgan
From: Chris Morgan This patch adds support for setting the correct pin configuration for the Rockchip Serial Flash Controller found on the PX30. Signed-off-by: Chris Morgan --- arch/arm/mach-rockchip/px30/px30.c | 64 ++ 1 file changed, 64 insertions(+) diff --git

[PATCH v5 5/5] rockchip: px30: add support for SFC for Odroid Go Advance

2021-06-08 Thread Chris Morgan
From: Chris Morgan The Odroid Go Advance uses a Rockchip Serial Flash Controller with an XT25F128B SPI NOR flash chip. This adds support for both. Note that while both the controller and chip support quad mode, only two lines are connected to the chip. Changing the pinctrl to bus2 and setting tx

[PATCH v4 4/5] mtd: spi-nor-ids: Add XTX XT25F128B

2021-06-08 Thread Chris Morgan
From: Chris Morgan Adds support for XT25F128B used on Odroid Go Advance. Unfortunately this chip uses a continuation code which I cannot seem to parse, so there are possibly going to be collisions with chips that use the same manufacturer/ID. Signed-off-by: Chris Morgan ---

[PATCH v2 3/5] rockchip: px30: add the serial flash controller

2021-06-08 Thread Chris Morgan
From: Chris Morgan Add the serial flash controller to the devicetree for the PX30. Signed-off-by: Chris Morgan --- arch/arm/dts/px30.dtsi | 38 ++ 1 file changed, 38 insertions(+) diff --git a/arch/arm/dts/px30.dtsi b/arch/arm/dts/px30.dtsi index

[PATCH v2 2/5] rockchip: px30: Add support for using SFC

2021-06-08 Thread Chris Morgan
From: Chris Morgan This patch adds support for setting the correct pin configuration for the Rockchip Serial Flash Controller found on the PX30. Signed-off-by: Chris Morgan --- arch/arm/mach-rockchip/px30/px30.c | 64 ++ 1 file changed, 64 insertions(+) diff --git

[PATCH v2 1/5] spi: rockchip_sfc: add support for Rockchip SFC

2021-06-08 Thread Chris Morgan
From: Chris Morgan This patch adds support for the Rockchip serial flash controller found on the PX30 SoC. It should work for versions 3-5 of the SFC IP, however I am only able to test it on v3. This is adapted from the WIP SPI-MEM driver for the SFC on mainline Linux. Note that the main

[PATCH v2 0/5] rockchip_sfc: add support for Rockchip SFC

2021-06-08 Thread Chris Morgan
From: Chris Morgan Changes from v1: - Reworked code to utilize spi-mem framework, and based it closely off of work in progress code for mainline Linux. - Removed DMA, as it didn't offer much performance benefit for booting (in my test cases), added complexity to the code, and

[PATCH 8/8] pg-wcom-ls102xa: fix sys counter frequency

2021-06-08 Thread Aleksandar Gerasimovski
A system clock of 66MHz was chosen for the pg-wcom-ls102xa. Compared to the Evalboard, this corresponds to a reduction of 1/3. The system counter clock should have been reduced accordingly, but that was not the case, so we had a system time that was 1/3 behind the real time. This patch corrects

[PATCH 7/8] pg-wcom-ls102x: initialize front led and app buf

2021-06-08 Thread Aleksandar Gerasimovski
This patch adds the front led initialization and the application buffer enable to the eraly board inititlaization. Signed-off-by: Rainer Boschung Signed-off-by: Aleksandar Gerasimovski --- board/keymile/pg-wcom-ls102xa/pg-wcom-ls102xa.c | 6 ++ 1 file changed, 6 insertions(+) diff --git

[PATCH 6/8] km: ls102x: update device disable configuration acc hw design desc

2021-06-08 Thread Aleksandar Gerasimovski
In order to improve power consumption ls102x allows to disable peripherals that are not in use. This patch follows SELI8 HW design description and disables peripherals that are not in use in our designs, the same configuration is applicable and for EXPU1. This patch uses available hwconfig option

[PATCH 5/8] km: ls102x: set ethrotate envvar to no

2021-06-08 Thread Aleksandar Gerasimovski
The default behavior in the latest u-boot revisions is to rotate the active net device to the next available if the requested link is not established. For our ls102x based devices this would mean that if active debug net device is not available, u-boot will rotate and set the next net device that

[PATCH 4/8] km/scripts: fix saveenv command syntax

2021-06-08 Thread Aleksandar Gerasimovski
This is most probably a typo, and in older u-uboot versions is same as 'saveenv', in the newer uboot versions there is a separate 'save' command that is different from 'saveenv'. Signed-off-by: Aleksandar Gerasimovski --- board/keymile/scripts/ramfs-common.txt | 2 +- 1 file changed, 1

[PATCH 3/8] km: ls102xa: add missing define for PRAM regions

2021-06-08 Thread Aleksandar Gerasimovski
In our designs we reserve PRAM area at the end of the RAM, and in order this area to be visible and taken into account by the u-boot memory mgmt CONFIG_PRAM has to be defined. Signed-off-by: Aleksandar Gerasimovski --- include/configs/km/pg-wcom-ls102xa.h | 4 1 file changed, 4

[PATCH 2/8] km/ls102xa: add support for u-boot POST memory test

2021-06-08 Thread Aleksandar Gerasimovski
>From production view this is standard test executed during production on all linux based foxmc cards. On CENT2 HW defined memory region is zero means that some DDR accesses are done by memory_post_dataline and memory_post_addrline but pattern tests are skipped that's why mem_regions is fast

[PATCH 1/8] board/km: add support for expu1 design based on nxp

2021-06-08 Thread Aleksandar Gerasimovski
The EXPU1 design is a new 40G capable ethernet service unit card for Hitachi-Powergrids wired-com product lines. The base SoC is same as for already added SELI8 card, consequently the already added u-boot support for SELI8 is reused. Signed-off-by: Rainer Boschung Signed-off-by: Aleksandar

Contributor call today

2021-06-08 Thread Simon Glass
Hi, This is in 90 minutes. If you plan to join tomorrow and want to add a topic, please do so at [1]. Regards, Simon [1] https://bit.ly/3bFvwA1 or https://docs.google.com/document/d/1YBOMsbM19uSFyoJWnt7-PsOLBaevzQUgV-hiR88a5-o/edit#heading=h.flytinyefvov

Re: Zynq UltraScale MPSoC, DMA driver

2021-06-08 Thread Jorge Ramirez-Ortiz, Foundries
On 08/06/21, Jorge Ramirez-Ortiz, Foundries wrote: > On 08/06/21, Michal Simek wrote: > > Hi, > > > > On 6/7/21 8:41 PM, Jorge Ramirez-Ortiz, Foundries wrote: > > > On 07/06/21, Jorge Ramirez-Ortiz, Foundries wrote: > > >> hi Michal > > >> > > >> um, when we exchanged emails about enabling ECC

Re: Zynq UltraScale MPSoC, DMA driver

2021-06-08 Thread Jorge Ramirez-Ortiz, Foundries
On 08/06/21, Michal Simek wrote: > Hi, > > On 6/7/21 8:41 PM, Jorge Ramirez-Ortiz, Foundries wrote: > > On 07/06/21, Jorge Ramirez-Ortiz, Foundries wrote: > >> hi Michal > >> > >> um, when we exchanged emails about enabling ECC support for MPSoC, I > >> left with the understanding that there

Re: [PATCH] optee/rpmb.c: Fix driver routing memory alignment using a temporary buffer

2021-06-08 Thread Heinrich Schuchardt
On 08.06.21 12:07, Timothée Cercueil wrote: > From: Timothée Cercueil > > OP-TEE OS inserts a 6-byte header before a raw RPMB frame which makes > RPMB data buffer not 32bit aligned. Many RPMB drivers implicitly expect > 32bit alignment of the eMMC frame including arm_pl180_mmci.c, sandbox_mmc.c >

Re: [PATCH 25/27] ppc: Remove T4160RDB board

2021-06-08 Thread Tom Rini
On Tue, Jun 08, 2021 at 07:36:31AM +, Priyanka Jain wrote: > > > >-Original Message- > >From: Tom Rini > >Sent: Friday, May 21, 2021 11:09 PM > >To: Camelia Alexandra Groza (OSS) > >Cc: u-boot@lists.denx.de; Priyanka Jain > >Subject: Re: [PATCH 25/27] ppc: Remove T4160RDB board >

Re: [PATCH v1] [ZynqMP] Writing correct value to ANALOG_BUS.

2021-06-08 Thread Michal Simek
On 6/8/21 12:37 PM, Adrian Fiergolski wrote: > The default register configuration after powerup for PSSYSMON_ANALOG_BUS > register is incorrect. Hence, fix this in SPL by writing correct fixed > value. It follows UG1085 chapter 'PS SYSMON Analog_Bus' and reflects commit > sw_apps:zynq

Re: Zynq UltraScale MPSoC, DMA driver

2021-06-08 Thread Michal Simek
Hi, On 6/7/21 8:41 PM, Jorge Ramirez-Ortiz, Foundries wrote: > On 07/06/21, Jorge Ramirez-Ortiz, Foundries wrote: >> hi Michal >> >> um, when we exchanged emails about enabling ECC support for MPSoC, I >> left with the understanding that there already was a DMA driver >> available in u-boot that

[PATCH v1] [ZynqMP] Writing correct value to ANALOG_BUS.

2021-06-08 Thread Adrian Fiergolski
The default register configuration after powerup for PSSYSMON_ANALOG_BUS register is incorrect. Hence, fix this in SPL by writing correct fixed value. It follows UG1085 chapter 'PS SYSMON Analog_Bus' and reflects commit sw_apps:zynq ("056ca65d44549ce27f716d423e8dfdefeee7440c") in

Re: [PATCH 1/2] reset: Do not return NULL on error for devm_reset_control_get_optional()

2021-06-08 Thread Pratyush Yadav
Hi, On 14/05/21 10:48AM, Kishon Vijay Abraham I wrote: > Hi Simon, > > On 14/05/21 5:26 am, Simon Glass wrote: > > Hi Kishon, > > > > On Thu, 13 May 2021 at 00:15, Kishon Vijay Abraham I wrote: > >> > >> Hi Simon, > >> > >> On 11/05/21 10:09 pm, Simon Glass wrote: > >>> Hi Kishon, > >>> > >>>

[PATCH 1/1] arm64: mvebu: correct Armada 8K addresses

2021-06-08 Thread Heinrich Schuchardt
0x0400- 0x0600 is reserved memory. We cannot load to anything here. Signed-off-by: Heinrich Schuchardt --- include/configs/mvebu_armada-8k.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/configs/mvebu_armada-8k.h

Re: [PATCH u-boot-marvell v2 6/6] arm: mvebu: turris_mox: enable options for Turris network boot

2021-06-08 Thread Pali Rohár
On Monday 07 June 2021 16:34:51 Marek Behún wrote: > Enable configuration options to support Turris network boot. This > includes FIT support and some crypto commands. > > Signed-off-by: Marek Behún Reviewed-by: Pali Rohár > --- > configs/turris_mox_defconfig | 8 > 1 file changed,

Re: [PATCH u-boot-marvell v2 5/6] arm: mvebu: dts: turris_mox: add nodes for SPI NOR partitions

2021-06-08 Thread Pali Rohár
On Monday 07 June 2021 16:34:50 Marek Behún wrote: > Add nodes for SPI NOR partitions to the device tree of Turris MOX, as > are in Linux' device tree. This patch is not needed (for now) as U-Boot cannot parse SPI NOR partitions from DT yet. U-Boot for SPI NOR currently supports specifying

Re: [PATCH u-boot-marvell v2 4/6] arm: mvebu: configs: turris_mox: add fdtfile default env variable

2021-06-08 Thread Pali Rohár
On Monday 07 June 2021 16:34:49 Marek Behún wrote: > Add default fdtfile environment variable with value > marvell/armada-3720-turris-mox.dtb. > > This can be useful for some boot scenarios. > > Signed-off-by: Marek Behún Reviewed-by: Pali Rohár > --- > include/configs/turris_mox.h | 1 + >

Re: [PATCH u-boot-marvell v2 3/6] arm: mvebu: turris_mox: start blinking PHY LEDs when entering rescue

2021-06-08 Thread Pali Rohár
On Monday 07 June 2021 16:34:48 Marek Behún wrote: > Configure blinking on ethernet PHY LEDs on the MOX A board when entering > rescue mode via reset button. > > Signed-off-by: Marek Behún Reviewed-by: Pali Rohár > --- > board/CZ.NIC/turris_mox/turris_mox.c | 35

Re: [PATCH u-boot-marvell v2 2/6] arm: mvebu: turris_mox: add support for board rescue mode

2021-06-08 Thread Pali Rohár
On Monday 07 June 2021 16:34:47 Marek Behún wrote: > Add necessary config options and board code to support board factory > reset / rescue mode on Turris MOX. > > In order to also support invoking rescue mode from U-Boot console, > without having to press the factory reset button, put the rescue

Re: [PATCH u-boot-marvell v2 1/6] arm: mvebu: dts: turris_mox: add button and LED nodes

2021-06-08 Thread Pali Rohár
On Monday 07 June 2021 16:34:46 Marek Behún wrote: > Add nodes for indicator LED and reset button so that board code can > implement board factory reset mechanism. > > Signed-off-by: Marek Behún Reviewed-by: Pali Rohár > --- > arch/arm/dts/armada-3720-turris-mox.dts | 24

Re: [PATCH 3/6] clk: imx8mm: Add SPI clocks

2021-06-08 Thread Lukasz Majewski
On Mon, 7 Jun 2021 14:05:10 +0200 Frieder Schrempf wrote: > From: Frieder Schrempf > > Add the clocks for the ECSPI controllers. This is ported from > Linux v5.13-rc4. > > Signed-off-by: Frieder Schrempf > --- > drivers/clk/imx/clk-imx8mm.c | 23 ++- > 1 file changed,

Re: [PATCH 1/5] riscv: ae350: dts: Add SPDX license header

2021-06-08 Thread Bin Meng
On Fri, Jun 4, 2021 at 1:51 PM Bin Meng wrote: > > The SPDX license header is currently missing. Add one. > > Signed-off-by: Bin Meng > --- > > arch/riscv/dts/ae350_32.dts | 2 ++ > arch/riscv/dts/ae350_64.dts | 2 ++ > 2 files changed, 4 insertions(+) > Ping for this series?

[PATCH 4/4] board: freescale: t102xrdb: Add MAINTAINER

2021-06-08 Thread Priyanka Jain
Add "Priyanka Jain " as MAINTAINER for t102xrdb board. Signed-off-by: Priyanka Jain --- board/freescale/t102xrdb/MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/freescale/t102xrdb/MAINTAINERS b/board/freescale/t102xrdb/MAINTAINERS index

[PATCH 3/4] board: freescale: p2041rdb: Add MAINTAINER

2021-06-08 Thread Priyanka Jain
Add "Priyanka Jain " as MAINTAINER for p2041rdb board. Signed-off-by: Priyanka Jain --- board/freescale/p2041rdb/MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/p2041rdb/MAINTAINERS b/board/freescale/p2041rdb/MAINTAINERS index

[PATCH 2/4] board: freescale: p1_p2_rdb_pc: Add MAINTAINER

2021-06-08 Thread Priyanka Jain
Add "Priyanka Jain " as MAINTAINER for p1_p2_rdb_pc board. Signed-off-by: Priyanka Jain --- board/freescale/p1_p2_rdb_pc/MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/p1_p2_rdb_pc/MAINTAINERS b/board/freescale/p1_p2_rdb_pc/MAINTAINERS index

[PATCH 1/4] board: freescale: t4rdb: Add MAINTAINER

2021-06-08 Thread Priyanka Jain
Add "Priyanka Jain " as MAINTAINER for t4rdb board. Signed-off-by: Priyanka Jain --- board/freescale/t4rdb/MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/freescale/t4rdb/MAINTAINERS b/board/freescale/t4rdb/MAINTAINERS index 4ba5c3a546..7380408aae

Re: [PATCH] env: Leave invalid env for nowhere location

2021-06-08 Thread Kunihiko Hayashi
Hi Marek, On 2021/06/08 2:33, Marek Vasut wrote: On 6/7/21 9:54 AM, Kunihiko Hayashi wrote: Hi, [...] I would expect that after relocation, if all you have is env_nowhere driver, the env_nowhere_init() is called again from the first for() loop of env_init() [1], which would set

RE: [PATCH 25/27] ppc: Remove T4160RDB board

2021-06-08 Thread Priyanka Jain
>-Original Message- >From: Tom Rini >Sent: Friday, May 21, 2021 11:09 PM >To: Camelia Alexandra Groza (OSS) >Cc: u-boot@lists.denx.de; Priyanka Jain >Subject: Re: [PATCH 25/27] ppc: Remove T4160RDB board > >On Fri, May 21, 2021 at 04:10:12PM +, Camelia Alexandra Groza (OSS)

Re: [PATCH v2 0/7] J72xx: R5 SPL DMA support post HSM Rearch

2021-06-08 Thread Vignesh Raghavendra
On 6/8/21 12:35 PM, Lokesh Vutla wrote: > > > On 07/06/21 7:47 pm, Vignesh Raghavendra wrote: >> This series add DMA support for R5 SPL on J721e/J7200 SoCs post HSM >> Rearch. >> >> Depends on Tero's base HSM rearch support series. >> >> v2: >> Use IS_ENABLED() consistentially instead of

Re: [PATCH] arm64: rk3399: Add support NanoPi R4s 1gb

2021-06-08 Thread alex tian
The only difference between the 1G and 4G models is the required bootloader. 4G R4S version: LPDDR4 4GiB 1G R4S version: DDR3-1866 1GB Kever Yang 于2021年6月8日周二 下午2:51写道: > Hi xiaobo, > > There is already a nonopi-r4s board, why we need a 1GB? This should > be already support. > >

Re: [PATCH] [ZynqMP] Writing correct value to ANALOG_BUS.

2021-06-08 Thread Michal Simek
On 6/7/21 7:53 PM, Adrian Fiergolski wrote: > The default register configuration after powerup for PSSYSMON_ANALOG_BUS > register is incorrect. Hence, fix this in SPL by writing correct fixed > value. It follows UG1085 chapter 'PS SYSMON Analog_Bus' and reflects commit > sw_apps:zynq

Re: [PATCH v2 2/2] rockchip: rk3568: add clock driver

2021-06-08 Thread Kever Yang
On 2021/5/26 下午4:46, Elaine Zhang wrote: From: Elaine Zhang Add rk3568 clock driver and cru structure definition. Signed-off-by: Elaine Zhang Reviewed-by: Kever Yang Thanks, - Kever --- .../include/asm/arch-rockchip/cru_rk3568.h| 504 +++ drivers/clk/rockchip/Makefile

Re: [RESEND PATCH v2 2/2] rockchip: rk3568: add clock driver

2021-06-08 Thread Kever Yang
On 2021/6/2 上午11:39, Elaine Zhang wrote: Add rk3568 clock driver and cru structure definition. Signed-off-by: Elaine Zhang Reviewed-by: Kever Yang Thanks, - Kever --- .../include/asm/arch-rockchip/cru_rk3568.h| 504 +++ drivers/clk/rockchip/Makefile |1 +

Re: [PATCH v2 1/2] rockchip: rk3568: add device tree file

2021-06-08 Thread Kever Yang
On 2021/5/26 下午4:46, Elaine Zhang wrote: From: Elaine Zhang Add dts binding header for rk3568, files origin from kernel. Signed-off-by: Elaine Zhang Reviewed-by: Kever Yang Thanks, - Kever --- include/dt-bindings/clock/rk3568-cru.h | 925 + 1 file changed,

Re: [PATCHv3 3/3] pci: pcie_dw_rockchip: Replace msleep occurences by udelay

2021-06-08 Thread Kever Yang
On 2021/6/4 下午12:56, Anand Moon wrote: Replace msleep occurences by udelay. drivers/pci/pcie_dw_rockchip.c:254:3: warning: implicit declaration of function 'msleep' [-Wimplicit-function-declaration] Cc: Patrick Wildt Cc: Neil Armstrong Cc: Kever Yang Signed-off-by: Anand Moon

Re: [PATCH v2 0/7] J72xx: R5 SPL DMA support post HSM Rearch

2021-06-08 Thread Lokesh Vutla
On 07/06/21 7:47 pm, Vignesh Raghavendra wrote: > This series add DMA support for R5 SPL on J721e/J7200 SoCs post HSM > Rearch. > > Depends on Tero's base HSM rearch support series. > > v2: > Use IS_ENABLED() consistentially instead of #ifdef > Reword commit msg for 5/7 as suggested by Lokesh

Re: [PATCHv3 2/3] pci: pcie_dw_rockchip: Drop the unused variable warning

2021-06-08 Thread Kever Yang
On 2021/6/4 下午12:56, Anand Moon wrote: Drop the unused variable warning below. drivers/pci/pcie_dw_rockchip.c:161:6: warning: unused variable 'val' [-Wunused-variable] 161 | u32 val; | ^~~ Cc: Patrick Wildt Cc: Neil Armstrong Cc: Kever Yang Reviewed-by: Neil Armstrong

Re: [PATCHv3 1/3] pci: pcie_dw_rockchip: Fixed the below compilation error

2021-06-08 Thread Kever Yang
On 2021/6/4 下午12:56, Anand Moon wrote: Use the generic error number instead of specific error number. Changes fix the below error. drivers/pci/pcie_dw_rockchip.c: In function 'rk_pcie_read': drivers/pci/pcie_dw_rockchip.c:70:10: error: 'PCIBIOS_UNSUPPORTED' undeclared

Re: [PATCH 2/2] configs: rockchip: rk3399: Khadas Edge add USB OHCI

2021-06-08 Thread Kever Yang
On 2021/6/7 上午11:45, Artem Lapkin wrote: Problem: USB2.0 port can recognize any USB1.1 devices (like usb keyboard) Add missed USB OHCI configuration USB device tree: 1 Hub (480 Mb/s, 0mA) u-boot EHCI Host Controller 1 Hub (12 Mb/s, 0mA) | U-Boot Root Hub | +-2 Human

Re: [PATCH 1/2] ARM64: rockchip: evb_rk3399: add usb ohci definations

2021-06-08 Thread Kever Yang
On 2021/6/7 上午11:45, Artem Lapkin wrote: Problem: USB2.0 port can recognize any USB1.1 devices (like usb keyboard) Add missed USB OHCI configuration USB device tree: 1 Hub (480 Mb/s, 0mA) u-boot EHCI Host Controller 1 Hub (12 Mb/s, 0mA) | U-Boot Root Hub | +-2 Human

Re: [PATCH] arm64: rk3399: Add support NanoPi R4s 1gb

2021-06-08 Thread Kever Yang
Hi xiaobo,     There is already a nonopi-r4s board, why we need a 1GB? This should be already support. Thanks, - Kever On 2021/6/8 上午9:28, xiaobo wrote: NanoPi R4s is SBC base on Rockchip RK3399 hexa-core processor with dual-Core Cortex-A72 and Mali-T864 GPU with 1GiB(DDR3-1866) of RAM

Re: [PATCHv5 00/26] Re-base / re-post of TI-K3 HSM rearch series

2021-06-08 Thread Tero Kristo
On 08/06/2021 09:32, Lokesh Vutla wrote: On 08/06/21 11:57 am, Tero Kristo wrote: On 07/06/2021 14:22, Lokesh Vutla wrote: On 03/06/21 12:02 pm, Tero Kristo wrote: Hi, As requested, this is just a rebase to the latest u-boot tip. Boot tested on j721e to make sure nothing got broken.

Re: [PATCHv5 00/26] Re-base / re-post of TI-K3 HSM rearch series

2021-06-08 Thread Lokesh Vutla
On 08/06/21 11:57 am, Tero Kristo wrote: > On 07/06/2021 14:22, Lokesh Vutla wrote: >> >> >> On 03/06/21 12:02 pm, Tero Kristo wrote: >>> Hi, >>> >>> As requested, this is just a rebase to the latest u-boot tip. >>> >>> Boot tested on j721e to make sure nothing got broken. >> >> There are some

Re: [PATCHv5 00/26] Re-base / re-post of TI-K3 HSM rearch series

2021-06-08 Thread Tero Kristo
On 07/06/2021 14:22, Lokesh Vutla wrote: On 03/06/21 12:02 pm, Tero Kristo wrote: Hi, As requested, this is just a rebase to the latest u-boot tip. Boot tested on j721e to make sure nothing got broken. There are some build errors. Can you take a look?