[PATCH] buildman: Correct some warnings about regex strings

2024-09-21 Thread Simon Glass
With Python 3.12 some warnings have cropped up. Fix them. Signed-off-by: Simon Glass --- tools/buildman/builder.py | 6 +++--- tools/buildman/toolchain.py | 8 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index 4

Re: [PATCH v6] mmc: Poll CD in case cyclic framework is enabled

2024-09-21 Thread Tom Rini
On Tue, Sep 10, 2024 at 11:34:11AM +0200, Rasmus Villemoes wrote: > Tom Rini writes: > > > On Mon, Sep 09, 2024 at 10:46:21AM +0200, Rasmus Villemoes wrote: > >> > >> > >> Again, just do cyclic_unregister() unconditionally. > > > > The challenge here is that Simon asked for all of this as part

Re: [MASTER] Pull request doc-2024-10-rc6

2024-09-21 Thread Tom Rini
On Sat, Sep 21, 2024 at 11:35:19AM +0200, Heinrich Schuchardt wrote: > Dear Tom, > > The following changes since commit 91a7927aa6679d1a3ea30ed9dfe17002d11bcac4: > > dts: beagleboneai64: Add boothph in chipid node (2024-09-20 18:08:34 > -0600) > > are available in the Git repository at: > >

[PATCH v3 00/18] vbe: Series part E

2024-09-21 Thread Simon Glass
This includes various patches towards implementing the VBE abrec bootmeth in U-Boot. It mostly focuses on SPL tweaks and adjusting what fatures are available in VPL. Changes in v3: - Add the missing word 'not' into the commit message Changes in v2: - Add field names into the message - Fix 'depe

Re: [PATCH v1 15/20] arm: socfpga: smc: Add memory coherency support to mailbox command

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee As cache is enabled in U-Boot and disabled in ATF(BL31). We need to perform cache flush of buffers that are shared between U-Boot and ATF using secure monitor calls. Signed-off-by: Mahesh Rao Signed-off-by: Tien Fong Che

Re: [PATCH v1 13/20] arm: socfpga: Export board ID as U-Boot environment variable

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Board ID is exported as environment variable for use to boot Linux with FIT configuration. Signed-off-by: Tien Fong Chee --- arch/arm/mach-socfpga/include/mach/misc.h | 1 + arch/arm/mach-socfpga/misc_soc64.c|

Re: [PATCH v1 12/20] arm: socfpga: agilex5: Update CPU info

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Update the print info per Agilex 5. Signed-off-by: Tien Fong Chee --- arch/arm/mach-socfpga/misc_soc64.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-socfpga/misc_soc64.c b/

Re: [PATCH v1 09/20] sysreset: Add reset support to SoCFPGA Agilex5 device

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: [...] + if (reset && !strcmp(reset, "warm")) { + /* Ensure content in dcache is flushed to system memory */ + flush_dcache_all(); + + /* request a warm reset */ + puts("Do warm rese

Re: [PATCH v1 08/20] arm: dts: agilex5: Enable XGMAC

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Enable XGMAC for SoCFPGA Agilex5 devkit. Signed-off-by: Tien Fong Chee --- .../arm/dts/socfpga_agilex5_socdk-u-boot.dtsi | 33 +++ 1 file changed, 33 insertions(+) diff --git a/arch/arm/dts/socfpga_ag

Re: [PATCH v1 04/20] arm: socfpga: agilex5: Add low level initialization

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Create new low level initialization for Agile5 due to the new ARM core composition and warm reset behavior. Signed-off-by: Tien Fong Chee --- arch/arm/mach-socfpga/Makefile| 1 + .../include/mach/rese

Re: [PATCH v1 03/20] linker: Add SPL linker script for SoC64 devices

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Add a new .data section for preserving the original state of the .data section of SoC64 SPL. This new .data section is required to make SPL reentrant after warm reset. Where is the linker script copied from ? What is the o

Re: [PATCH v1 02/20] arm: socfpga: Add support for agilex5 clock manager

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Adding mechanism to retrieve base address for Agilex5 Clock Mananger. Signed-off-by: Tien Fong Chee Can this be turned into clock driver and probe from DT ?

Re: [PATCH v1 01/20] arm: socfpga: agilex5: Add new system manager base addresses

2024-09-21 Thread Marek Vasut
On 9/20/24 9:02 AM, tien.fong.c...@intel.com wrote: From: Tien Fong Chee Initial creation of new system manager base addresses for Agilex5. How much of this can be converted to DT probing ?

Re: [PATCH 06/19] malloc: Show amount of used space when memory runs out

2024-09-21 Thread Simon Glass
Hi Tom, On Fri, 20 Sept 2024 at 18:35, Tom Rini wrote: > > On Fri, Sep 20, 2024 at 06:04:01PM +0200, Simon Glass wrote: > > Hi Tom, > > > > On Fri, 20 Sept 2024 at 16:59, Tom Rini wrote: > > > > > > On Fri, Sep 20, 2024 at 09:25:44AM +0200, Simon Glass wrote: > > > > Hi Tom, > > > > > > > > On T

[PATCH v3 05/18] malloc: Show amount of used space when memory runs out

2024-09-21 Thread Simon Glass
Show a bit more information when malloc() space is exhausted and debugging is not enabled. Signed-off-by: Simon Glass --- Changes in v3: - Add the missing word 'not' into the commit message Changes in v2: - Add field names into the message common/malloc_simple.c | 3 ++- 1 file changed, 2 ins

Re: [PATCH v4 01/11] led: toggle LED on initial SW blink

2024-09-21 Thread Michael Nazzareno Trimarchi
Hi On Sat, Sep 21, 2024 at 12:51 AM Christian Marangi wrote: > > We currently init the LED OFF when SW blink is triggered when > on_state_change() is called. This can be problematic for very short > period as the ON/OFF blink might never trigger. > > Toggle the LED (ON if OFF, OFF if ON) on initi

Re: [PATCH v4 07/11] mtd: implement support for LED activity

2024-09-21 Thread Christian Marangi
On Sat, Sep 21, 2024 at 12:13:34PM +0200, Miquel Raynal wrote: > Hi Christian, > > ansuels...@gmail.com wrote on Sat, 21 Sep 2024 00:50:00 +0200: > > > Implement support for LED activity. If the feature is enabled, > > make the defined ACTIVITY LED to signal mtd write or erase operations. > > I'

Re: [PATCH v4 07/11] mtd: implement support for LED activity

2024-09-21 Thread Miquel Raynal
Hi Christian, ansuels...@gmail.com wrote on Sat, 21 Sep 2024 00:50:00 +0200: > Implement support for LED activity. If the feature is enabled, > make the defined ACTIVITY LED to signal mtd write or erase operations. I'm curious, why did you not consider reads in your proposal? I think in general

[MASTER] Pull request doc-2024-10-rc6

2024-09-21 Thread Heinrich Schuchardt
Dear Tom, The following changes since commit 91a7927aa6679d1a3ea30ed9dfe17002d11bcac4: dts: beagleboneai64: Add boothph in chipid node (2024-09-20 18:08:34 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/doc-2024-10-rc6 for you t

[PATCH 1/1] cmd: simplify CONFIG_CMD_USB_MASS_STORAGE dependencies

2024-09-21 Thread Heinrich Schuchardt
CONFIG_USB_GADGET_DOWNLOAD depends on CONFIG_USB_GADGET. It is sufficient to depend on the prior. Signed-off-by: Heinrich Schuchardt --- cmd/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index 4ccb0cef390..02b2569e713 100644 --- a/cmd/Kco