[PATCH v1] regulator: qcom-rpmh-regulator: add support for pmm8654 regulators

2025-03-24 Thread Varadarajan Narayanan
Add the PMC8380 regulator data found on the Qualcomm SA8775P platform. The tables are imported from the Linux driver. Signed-off-by: Varadarajan Narayanan --- drivers/power/regulator/qcom-rpmh-regulator.c | 45 +++ 1 file changed, 45 insertions(+) diff --git a/drivers/power/regu

[PATCH] ata: ahci: remove bad free

2025-03-24 Thread Vincent Stehlé
In the case of a memory allocation error, the ahci_port_start() function tries to free the `pp' pointer. This pointer was not dynamically allocated but does in fact point to an element of the port[] array member of the struct ahci_uc_priv. Remove the erroneous call to free() to fix this. Fixes: 47

Re: [PATCH] usb: dwc3: gadget: Fix match_ep callback for NXP UUU tool

2025-03-24 Thread Mattijs Korpershoek
Hi Francesco, On lun., mars 24, 2025 at 09:03, Francesco Dolcini wrote: > Hello Mattijs, Marek > > On Thu, Mar 20, 2025 at 10:47:02AM +0100, Mattijs Korpershoek wrote: >> On mer., mars 19, 2025 at 23:07, Marek Vasut wrote: >> >> > The UUU tool excepts the interrupt-in endpoint to be ep1in, oth

[PATCH] efi_loader: fix ipv4 device path node conversion

2025-03-24 Thread Vincent Stehlé
When converting an IPv4 device path node to text, the EFI_DEVICE_PATH_TO_TEXT_PROTOCOL will produce the following string: IPv4(5.6.7.8,TCP,UDP,0x6,DHCP,1.2.3.4,9.10.11.12,255.255.255.0) This string erroneously contains multiple protocols: TCP, UDP and 0x6. Add the missing `break' statements in

Re: [PATCH 19/34] watchdog: sunxi: add A523 support

2025-03-24 Thread Stefan Roese
On 23.03.25 12:35, Andre Przywara wrote: The Allwinner A523 SoC moved the watchdog into a separate MMIO frame, and also shifted the registers a bit: the control, config, and mode register are located four bytes earlier. Add the new compatible string, and connect it to the new struct describing t

Re: [PATCH 2/8] env: Rename SYS_REDUNDAND_ENVIRONMENT to ENV_REDUNDAND_ENVIRONMENT

2025-03-24 Thread Quentin Schulz
Hi Marek, On 3/22/25 10:55 PM, Marek Vasut wrote: Rename the variable and add ENV_ prefix, so that all configuration options which are related to environment would have an CONFIG_ENV_ prefix. No functional change. Signed-off-by: Marek Vasut --- [...] diff --git a/env/Kconfig b/env/Kconfig in

Re: [PATCH 1/8] env: Rename OVERWRITE_ETHADDR_ONCE to ENV_OVERWRITE_ETHADDR_ONCE

2025-03-24 Thread Quentin Schulz
Hi Marek, On 3/22/25 10:55 PM, Marek Vasut wrote: Rename the variable and add ENV_ prefix, so that all configuration options which are related to environment would have an CONFIG_ENV_ prefix. No functional change. Signed-off-by: Marek Vasut Reviewed-by: Quentin Schulz Thanks! Quentin

Re: [PATCH] usb: dwc3: gadget: Fix match_ep callback for NXP UUU tool

2025-03-24 Thread Francesco Dolcini
On Mon, Mar 24, 2025 at 09:26:03AM +0100, Mattijs Korpershoek wrote: > Hi Francesco, > > On lun., mars 24, 2025 at 09:03, Francesco Dolcini > wrote: > > > Hello Mattijs, Marek > > > > On Thu, Mar 20, 2025 at 10:47:02AM +0100, Mattijs Korpershoek wrote: > >> On mer., mars 19, 2025 at 23:07, Mare

Re: [PATCH] ata: ahci: remove bad free

2025-03-24 Thread Andre Przywara
On Mon, 24 Mar 2025 09:34:06 +0100 Vincent Stehlé wrote: > In the case of a memory allocation error, the ahci_port_start() function > tries to free the `pp' pointer. > This pointer was not dynamically allocated but does in fact point to an > element of the port[] array member of the struct ahci_u

Re: [PATCH] efi_loader: fix ipv4 device path node conversion

2025-03-24 Thread Andre Przywara
On Mon, 24 Mar 2025 09:34:43 +0100 Vincent Stehlé wrote: Hi, Tom: I think this is v2025.04 material, as this code was introduced in this cycle. > When converting an IPv4 device path node to text, the > EFI_DEVICE_PATH_TO_TEXT_PROTOCOL will produce the following string: > > IPv4(5.6.7.8,TCP,U

[PATCH v1 1/2] dm: blk: Add 'erase' generic block device commands

2025-03-24 Thread Varadarajan Narayanan
Add support for doing 'erase' using the generic block commands framework. Signed-off-by: Varadarajan Narayanan --- cmd/blk_common.c | 17 + 1 file changed, 17 insertions(+) diff --git a/cmd/blk_common.c b/cmd/blk_common.c index 4c05a4e0610..56529702a47 100644 --- a/cmd/blk_commo

Re: [PATCH v2 3/4] net: ravb: Add RZ/G2L Support

2025-03-24 Thread Paul Barker
On 24/03/2025 01:11, Marek Vasut wrote: > On 3/19/25 1:03 PM, Paul Barker wrote: > > [...] > >> +++ b/drivers/net/Kconfig >> @@ -864,7 +864,7 @@ config RENESAS_RAVB >> select PHY_ETHERNET_ID >> help >>This driver implements support for the Ethernet AVB block in >> - Renesas

Re: [PATCH v2 2/4] net: ravb: Add optional reset deassertion

2025-03-24 Thread Paul Barker
On 24/03/2025 01:08, Marek Vasut wrote: > On 3/19/25 1:03 PM, Paul Barker wrote: > > [...] > >> static int ravb_probe(struct udevice *dev) >> { >> +struct ravb_device_ops *device_ops = >> +(struct ravb_device_ops *)dev_get_driver_data(dev); >> struct eth_pdata *pdata = de

Re: [PATCH v2] mmc: mmc_boot: support sandisk and micron emmc boot/rpmb partition resizing

2025-03-24 Thread Peng Fan
On Mon, Mar 17, 2025 at 04:46:49PM +0800, ziniu.wan...@nxp.com wrote: >From: Luke Wang > >Current mmc bootpart-resize cmd only support samsung emmc boot/rpmb >partition resizing. Add sandisk and micron emmc boot/rpmb partition >resizing support. The commands and parameters for resizing partitions

Re: [PATCH] common: spl: Enable Instruction cache after relocation in board_init_r

2025-03-24 Thread Prasanth Mantena
On 09:13, Tom Rini wrote: > On Mon, Mar 17, 2025 at 12:15:07PM +0530, Prasanth Babu Mantena wrote: > > > ICACHE is enabled in board_init_f which executes only before relocation. > > Instruction cache invalidation is needed after relocation as well in the > > common spl, which is taken care in the

<    1   2