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
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
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:
>
>
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
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
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|
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/
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
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
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
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
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 ?
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 ?
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
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
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
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'
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
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
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
20 matches
Mail list logo