[PATCH 2/2] sunxi: H616: add LPDDR3 DRAM support

2023-06-03 Thread Mikhail Kalashnikov
From: iuncuim The H616 SoC has support for several types of DRAM: DDR3, LPDDR3, DDR4 and LPDDR4. At the moment, the driver only supports DDR3 memory. Let's extend the driver to support the LPDDR3 memory. All "magic" values obtained from the boot0. ---

[PATCH 1/2] sunxi: H616: add DRAM type selection

2023-06-03 Thread Mikhail Kalashnikov
From: iuncuim Allwinner H616 SoC supports several types of DRAM memory. To further integrate other types of memory, we need to add this delimitation. --- arch/arm/mach-sunxi/Kconfig | 12 ++-- arch/arm/mach-sunxi/dram_timings/Makefile | 3 +--

[PATCH 0/2] sunxi: H616: Add LPDDR3 DRAM type

2023-06-03 Thread Mikhail Kalashnikov
From: iuncuim At the moment, the driver only supports DDR3 memory. Add support for a new type DRAM. These changes have been successfully tested by me with tvbox tra###eed t98-h2b-lp3. iuncuim (2): sunxi: H616: add DRAM type selection sunxi: H616: add LPDDR3 DRAM support

Re: [PATCH 21/30] imx: bootaux: change names of MACROs used to boot MCU on iMX devices

2023-06-03 Thread Marek Vasut
On 6/3/23 09:32, Peng Fan wrote: On 6/2/2023 2:34 PM, Marek Vasut wrote: Caution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, report the message using the 'Report this email' button On 6/2/23 08:45, Peng Fan (OSS) wrote: From:

Re: [RFC PATCH 08/17] sunxi: introduce NCAT2 generation model

2023-06-03 Thread Sam Edwards
Hi again Andre, On 12/5/22 17:45, Andre Przywara wrote: diff --git a/arch/arm/mach-sunxi/board.c b/arch/arm/mach-sunxi/board.c index b6ffbff883c..3763ec3d2e4 100644 --- a/arch/arm/mach-sunxi/board.c +++ b/arch/arm/mach-sunxi/board.c @@ -177,7 +177,7 @@ static int gpio_init(void) #error

[PATCH v4 4/4] common: spl: Add spl NVMe boot support

2023-06-03 Thread Mayuresh Chitale
Add support to load the next stage image from an NVMe disk which may be formatted as an EXT or FAT filesystem. Also protect the call to env_get in blk_get_device_part_str with CONFIG_SPL_ENV_SUPPORT macro to avoid link error when SPL_ENV_SUPPORT is not enabled. Signed-off-by: Mayuresh Chitale

[PATCH v4 3/4] nvme: pci: Enable for SPL

2023-06-03 Thread Mayuresh Chitale
Enable NVME and PCI NVMe drivers for SPL builds. Also enable PCI_PNP for SPL which is required to auto configure the PCIe devices. Signed-off-by: Mayuresh Chitale --- drivers/Makefile | 1 + drivers/nvme/Makefile | 2 +- drivers/pci/Kconfig | 6 ++ 3 files changed, 8 insertions(+), 1

[PATCH v4 2/4] spl: blk: Support loading images from fs

2023-06-03 Thread Mayuresh Chitale
Add a generic API to support loading of SPL payload from any supported filesystem on a given partition of a block device. Signed-off-by: Mayuresh Chitale --- common/spl/Kconfig | 1 + common/spl/Makefile | 1 + common/spl/spl_blk_fs.c | 134

[PATCH v4 1/4] spl: Add Kconfig options for NVME

2023-06-03 Thread Mayuresh Chitale
Add kconfig options to enable NVME and PCI NVMe support in SPL Signed-off-by: Mayuresh Chitale Reviewed-by: Simon Glass --- common/spl/Kconfig | 26 ++ 1 file changed, 26 insertions(+) diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 2c042ad306..94b13f7a7f

[PATCH v4 0/4] SPL NVMe support

2023-06-03 Thread Mayuresh Chitale
This patchset adds support to load images of the SPL's next booting stage from a NVMe device. Changes in v4: - Drop patch 4 - Modify patch 2 to use generic fs.h APIs Changes in v3: - Add generic API to fetch payload from Ext or FAT filesystems - Remove reduntant SPL_PCI_PNP config check Changes

[PATCH] configs: am64x_evm_*_defconfig: Enable High Secure device support

2023-06-03 Thread Vignesh Raghavendra
Enable CONFIG_TI_SECURE_DEVICE to support booting High Secure(HS) variants of AM64x SoC. Signed-off-by: Vignesh Raghavendra --- configs/am64x_evm_a53_defconfig | 1 + configs/am64x_evm_r5_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/am64x_evm_a53_defconfig

Re: [PATCH v3 4/5] spl: Support loading a FIT from ext FS

2023-06-03 Thread Mayuresh Chitale
On Wed, May 17, 2023 at 8:11 PM Tom Rini wrote: > > On Thu, May 04, 2023 at 03:23:26PM +0530, Mayuresh Chitale wrote: > > > Detect a FIT when loading from an ext File system and handle it using > > the FIT SPL support. > > > > Signed-off-by: Mayuresh Chitale > > --- > > common/spl/spl_ext.c |

Re: [PATCH v3 4/5] spl: Support loading a FIT from ext FS

2023-06-03 Thread Mayuresh Chitale
On Fri, May 5, 2023 at 6:11 AM Simon Glass wrote: > > Hi Mayuresh, > > On Thu, 4 May 2023 at 03:53, Mayuresh Chitale > wrote: > > > > Detect a FIT when loading from an ext File system and handle it using > > the FIT SPL support. > > > > Signed-off-by: Mayuresh Chitale > > --- > >

Re: [PATCH v3 3/5] nvme: pci: Enable for SPL

2023-06-03 Thread Mayuresh Chitale
On Fri, May 5, 2023 at 6:11 AM Simon Glass wrote: > > On Thu, 4 May 2023 at 03:53, Mayuresh Chitale > wrote: > > > > Enable NVME and PCI NVMe drivers for SPL builds. Also enable PCI_PNP > > for SPL which is required to auto configure the PCIe devices. > > > > Signed-off-by: Mayuresh Chitale >

Re: [PATCH v3 2/5] spl: blk: Support loading images from fs

2023-06-03 Thread Mayuresh Chitale
Hi Simon, On Fri, May 5, 2023 at 6:11 AM Simon Glass wrote: > > Hi Mayuresh, > > On Thu, 4 May 2023 at 03:53, Mayuresh Chitale > wrote: > > > > Add a generic API to support loading of SPL payload from EXT or FAT > > filesystem on a given partition of a block device. > > > > Signed-off-by:

Re: [PATCH 2/2] board: fsl: lx2160ardb: add dts fixup function for RevC and newer

2023-06-03 Thread Peng Fan
On 5/31/2023 11:02 PM, Ioana Ciornei wrote: From: Florin Chiculita Since the new RevC LX2160A-RDB board has its 10G Aquantia PHYs at different MDIO bus addresses, we must update both the kernel DTS and u-boot's DTS (in case of DM_ETH) in case the board is indeed RevC or newer. Use the newly

Re: [PATCH 1/2] board: fsl: lx2160ardb: add api for obtaining board revision

2023-06-03 Thread Peng Fan
On 5/31/2023 11:02 PM, Ioana Ciornei wrote: From: Florin Chiculita Add new API for obtaining board revision and trigger the i2c node fixup with this new API. Signed-off-by: Florin Chiculita Signed-off-by: Ioana Ciornei Reviewed-by: Peng Fan

Re: [PATCH 21/30] imx: bootaux: change names of MACROs used to boot MCU on iMX devices

2023-06-03 Thread Peng Fan
On 6/2/2023 2:34 PM, Marek Vasut wrote: Caution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, report the message using the 'Report this email' button On 6/2/23 08:45, Peng Fan (OSS) wrote: From: Peng Fan i.MX8MN/P has Cortex-M7,

Re: [SPAM] Re: [PATCH v5 0/2] arm: dts: rockchip: rk3399: usb: ehci: Fix EHCI probe in rk3399 to access peripherals by USB 2.

2023-06-03 Thread Xavier Drudis Ferran
El Fri, Jun 02, 2023 at 03:34:37PM +0530, Jagan Teki deia: > On Fri, Jun 2, 2023 at 2:54 PM Xavier Drudis Ferran wrote: > > > > Should I try again with the current next branch and send v6 ? > > Please send. > > Thanks, > Jagan. I will try asap, thanks.