[PATCH v2 08/14] regmap: Add regmap_set/clear_bits shorthands

2025-04-07 Thread Christian Marangi
Port Linux kernel regmap_set/clear_bits shorthands to set and clear bits in a regmap. These are handy if only specific bits needs to be applied or cleared and makes it easier to port regmap based driver from kernel upstream. Signed-off-by: Christian Marangi --- include/regmap.h | 28

Re: [PATCH] mach-k3: common_fdt: Fix Label Issue

2025-04-07 Thread Bryan Brattlof
On April 6, 2025 thus sayeth Daniel Schultz: > Labels are not allowed before declarations. Add a semicolon after the > label to introduce an empty statement. This will fix following error: > > arch/arm/mach-k3/common_fdt.c: In function 'fdt_fixup_reserved': > arch/arm/mach-k3/common_fdt.c:156:2:

Re: [PATCH v5 00/29] pxe: Precursor series for supporting read_all() in extlinux / PXE

2025-04-07 Thread Simon Glass
Hi Tom, On Mon, 7 Apr 2025 at 13:15, Tom Rini wrote: > > On Mon, Apr 07, 2025 at 09:18:12AM -0600, Simon Glass wrote: > > Hi Tom, > > > > On Mon, 7 Apr 2025 at 07:53, Tom Rini wrote: > > > > > > On Mon, Apr 07, 2025 at 01:07:34PM +1200, Simon Glass wrote: > > > > Hi Tom, > > > > > > > > On Mon,

Re: [PATCH v2 3/4] efi_loader: Move device-removal later in exit-boot-services

2025-04-07 Thread Heinrich Schuchardt
On 07.04.25 03:35, Simon Glass wrote: This removal should be the last thing done, so that U-Boot does no more memory allocations afterwards, thus avoiding potentially allocating memory which has been freed by a device that fails to de-activate its DMA. The EFI application that is calling ExitBo

Re: [PATCH 30/34] sunxi: A523: add DRAM initialisation routine

2025-04-07 Thread Andre Przywara
On Sat, 5 Apr 2025 22:01:50 + Yixun Lan wrote: Hi, > Hi Andre: > > On 11:35 Sun 23 Mar , Andre Przywara wrote: > > From: Jernej Skrabec > > > > DRAM init code, as per reverse engineering and matching against > > previous SoCs. > > Supports LPDDR4 for now only. > > --- > > arch/arm/in

Re: [PATCH 6/7] mach-snapdragon: board interface to enforce fdt

2025-04-07 Thread Jorge Ramirez
On 07/04/25 11:04:30, neil.armstr...@linaro.org wrote: > Hi, > > On 07/04/2025 10:19, Jorge Ramirez-Ortiz wrote: > > Some platforms might require the external fdt to boot. > > Why ? we may want to build the fdt in, and discard the external fdt for some > reasons. on the db820c, the device tree

Re: [PATCH 2/7] clk/qcom: apq8096: fix set rate for the uart clock

2025-04-07 Thread neil . armstrong
On 07/04/2025 10:19, Jorge Ramirez-Ortiz wrote: The function should return a valid rate. Signed-off-by: Jorge Ramirez-Ortiz --- drivers/clk/qcom/clock-apq8096.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/clk/qcom/clock-apq8096.c b/drivers/clk/qcom/clock-apq

Re: [PATCH v2 4/4] dm: core: Rename dm_remove_devices_active()

2025-04-07 Thread Simon Glass
Hi Heinrich, On Mon, 7 Apr 2025 at 19:57, Heinrich Schuchardt wrote: > > On 07.04.25 03:35, Simon Glass wrote: > > This function doesn't have a great name, since we talk of devices being > > active once they are probed. > > > > Rename it to dm_remove_dma_devices(). > > > > Signed-off-by: Simon Gl

Re: [PATCH RFC] fdt.c: fdt chosen cmd had off-by-one issue

2025-04-07 Thread Simon Glass
initrd_start = hextoul(argv[2], NULL); > - initrd_end = initrd_start + hextoul(argv[3], NULL) - > 1; > + initrd_end = initrd_start + hextoul(argv[3], NULL); > } > > fdt_chosen(working_fdt); > > --- > base-commit

Re: [PATCH v2 3/4] efi_loader: Move device-removal later in exit-boot-services

2025-04-07 Thread Simon Glass
Hi Heinrich, On Mon, 7 Apr 2025 at 19:55, Heinrich Schuchardt wrote: > > On 07.04.25 03:35, Simon Glass wrote: > > This removal should be the last thing done, so that U-Boot does no more > > memory allocations afterwards, thus avoiding potentially allocating > > memory which has been freed by a d

Re: [PATCH 1/2] spl: riscv: Disable SPL_BINMAN_UBOOT_SYMBOLS by default

2025-04-07 Thread Simon Glass
Hi Yao, On Mon, 7 Apr 2025 at 15:38, Yao Zi wrote: > > The default binman configuration of RISC-V wraps proper U-Boot into a > FIT image instead of shipping a plain image, thus there's no > "u_boot_any" entry by default. Let's disable the option to prevent > binman from looking for a plain proper

[PATCH 1/5] patman: Untangle settings from gitutil

2025-04-07 Thread Simon Glass
The gitutil module is supposed to be independent from patman but one piece was missed in the series which separated them. Move the settings setup out of gitutil Signed-off-by: Simon Glass --- tools/patman/control.py | 4 tools/u_boot_pylib/gitutil.py | 3 --- 2 files changed, 4 inse

[PATCH 0/5] patman: Separate gitutil fully

2025-04-07 Thread Simon Glass
The gitutil module uses Patman's settings module, which is not allowed as it is supposed to be a separate package. This series ties up this dependency. This series depends on these two patches being applied: https://patchwork.ozlabs.org/project/uboot/patch/20250227192735.406389-1-...@chromium.o

Re: [PATCH 3/7] mmc: msm_sdhci: handle bulk clock initialization error

2025-04-07 Thread Jorge Ramirez
On 07/04/25 11:53:06, Neil Armstrong wrote: > On 07/04/2025 11:38, Jorge Ramirez wrote: > > On 07/04/25 11:10:45, Neil Armstrong wrote: > > > On 07/04/2025 11:02, neil.armstr...@linaro.org wrote: > > > > On 07/04/2025 10:19, Jorge Ramirez-Ortiz wrote: > > > > > Some boards do not require all clocks

Re: [PATCH 6/7] mach-snapdragon: board interface to enforce fdt

2025-04-07 Thread Jorge Ramirez
On 07/04/25 12:02:31, Caleb Connolly wrote: > Hi Jorge, > > On 4/7/25 10:19, Jorge Ramirez-Ortiz wrote: > > Some platforms might require the external fdt to boot. > > The better way to do this is to use the u-boot-nodtb.bin to build your boot > image rather than the one which includes the interna

[PATCH 5/5] patman: Update Series.ShowActions() to pass alias

2025-04-07 Thread Simon Glass
Instead of using settings.alias pass this value in. This allows tests to work without using settings.alias Signed-off-by: Simon Glass --- tools/patman/control.py | 2 +- tools/patman/func_test.py | 3 +-- tools/patman/series.py| 17 ++--- 3 files changed, 12 insertions(+), 1

Re: Gitlab runner timeout on evb-ast2600 ?

2025-04-07 Thread Tom Rini
On Mon, Apr 07, 2025 at 04:55:16PM +0300, Eugen Hristev wrote: > Hi everyone, > > I keep getting an error on running the CI loop on -next on my tree : > > https://source.denx.de/u-boot/custodians/u-boot-at91/-/jobs/1090517 > > ! _pytest.outcomes.Exit: Lab timeout: Marking connection bad - no ot

Re: [PATCH v5 00/29] pxe: Precursor series for supporting read_all() in extlinux / PXE

2025-04-07 Thread Svyatoslav Ryhel
07.04.25 4:53 пп, Tom Rini: On Mon, Apr 07, 2025 at 01:07:34PM +1200, Simon Glass wrote: Hi Tom, On Mon, 7 Apr 2025 at 10:48, Tom Rini wrote: On Mon, Apr 07, 2025 at 09:12:32AM +1200, Simon Glass wrote: Hi Tom, On Sun, 6 Apr 2025 at 11:23, Tom Rini wrote: On Sun, Apr 06, 2025 at 08:46:3

<    1   2   3