[PATCH 1/1] bootstage: Fix typo

2025-06-01 Thread Aristo Chen
Fix typo from heder to header Signed-off-by: Aristo Chen --- include/bootstage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bootstage.h b/include/bootstage.h index 3300ca0248a..528d0ca0614 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -73,7 +73,7

Re: [PATCH 6/6] net: sun8i-emac: Add support for active-low leds with internal PHY

2025-06-01 Thread Andre Przywara
On Sun, 1 Jun 2025 17:39:43 +0200 Paul Kocialkowski wrote: Hi, > A device-tree property is already defined to indicate that the internal > PHY should be used with active-low leds, which corresponds to a > specific bit in the dedicated syscon register. > > Add support for setting this bit when

Re: [PATCH 4/6] sunxi: pinecube: Enable EMAC and network support

2025-06-01 Thread Andre Przywara
On Sun, 1 Jun 2025 17:39:41 +0200 Paul Kocialkowski wrote: Hi, > The pinecube has an ethernet connector which uses the EMAC and internal > PHY of the chip. Enable it in the config. > > Signed-off-by: Paul Kocialkowski Reviewed-by: Andre Przywara Cheers, Andre > --- > configs/pinecube_def

Re: [PATCH 2/6] sunxi: Add support for the Lichee Pi Zero with Dock

2025-06-01 Thread Andre Przywara
On Sun, 1 Jun 2025 17:39:39 +0200 Paul Kocialkowski wrote: Hi Paul, > This adds a U-Boot config and device-tree build for the Lichee Pi Zero > with Dock. Compared to the Lichee Pi Zero, it has an ethernet port > (with internal PHY) so the EMAC driver and network support are enabled. I just rea

Re: [PATCH 1/6] sunxi: Kconfig: Fix default order for V3s DRAM clock

2025-06-01 Thread Andre Przywara
On Sun, 1 Jun 2025 17:39:38 +0200 Paul Kocialkowski wrote: Hi Paul, > The V3s (using co-packaged DRAM) runs at 360 MHz, which is specified in > the common platform Kconfig file. However the value for MACH_SUN8I will > be picked up instead due to ordering. > > Re-order the defaults to have MACH

Re: [PATCH v4 1/5] disk: part: implement generic function part_get_info_by_uuid()

2025-06-01 Thread Heinrich Schuchardt
On 5/13/25 11:17, Varadarajan Narayanan wrote: Add function to search for a partition by UUID as partition names may not be unique. Signed-off-by: Varadarajan Narayanan --- v4: Use if (!CONFIG_IS_ENABLED(PARTITION_UUIDS)) instead of '#if' Not breaking from the for loop if '->get_info()' r

Re: [PATCH 1/2] doc: efi_loader: Tidy up the bootefi-command docs

2025-06-01 Thread Heinrich Schuchardt
On 6/1/25 14:04, Simon Glass wrote: There are backslashes in some of the tags which seems to be unnecessary. Remove then. Change the word 'either' to 'any' since there are three options. Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt --- doc/usage/cmd/bootefi.rst | 20

Re: [PATCH v2 2/5] net: lwip: enable IP_FRAG and IP_REASSEMBLY

2025-06-01 Thread Heinrich Schuchardt
On 5/30/25 17:38, Tim Harvey wrote: Enable IP_FRAG and IP_REASSEMBLY to allow packets larger than MTU. Signed-off-by: Tim Harvey Reviewed-by: Jerome Forissier In future, please, address your patches to the email address xypron.g...@gmx.de as indicated by get_maintainers.pl. Acked-by: Hein

Re: [PATCH v2 1/5] net: lwip: call sys_check_timeouts and schedule on rx

2025-06-01 Thread Heinrich Schuchardt
On 5/30/25 17:38, Tim Harvey wrote: Call schedule() in net_lwip_rx() to service U-Boot tasks and actions during packet rx. As a cleanup also move sys_check_timeouts() here and remove it from the functions that call net_lwip_rx(). This resolves the issue of an active watchdog resetting the board

[PATCH 4/6] sunxi: pinecube: Enable EMAC and network support

2025-06-01 Thread Paul Kocialkowski
The pinecube has an ethernet connector which uses the EMAC and internal PHY of the chip. Enable it in the config. Signed-off-by: Paul Kocialkowski --- configs/pinecube_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/pinecube_defconfig b/configs/pinecube_defc

[PATCH 6/6] net: sun8i-emac: Add support for active-low leds with internal PHY

2025-06-01 Thread Paul Kocialkowski
A device-tree property is already defined to indicate that the internal PHY should be used with active-low leds, which corresponds to a specific bit in the dedicated syscon register. Add support for setting this bit when the property is present. Signed-off-by: Paul Kocialkowski --- drivers/net/

[PATCH 5/6] power: axp: Fixup default voltages for V3/S3

2025-06-01 Thread Paul Kocialkowski
The default voltages used by V3/S3 boards differs from the usual AXP209 default that are used on older chips. Correct the default voltages based on the Allwinner reference design schematics, which match boards found in the wild such as the Pinecube. Signed-off-by: Paul Kocialkowski --- configs/

[PATCH 3/6] sunxi: Split V3/S3 support from V3s

2025-06-01 Thread Paul Kocialkowski
There are significant differences between the V3 and V3s that are relevant for U-Boot support: a different DRAM driver, AXP209 support and extra UART1 pins. To avoid overwriting V3s defaults that do not apply to V3 in board configs, split off V3/S3 support as a separate MACH and pick-up all releva

[PATCH 2/6] sunxi: Add support for the Lichee Pi Zero with Dock

2025-06-01 Thread Paul Kocialkowski
This adds a U-Boot config and device-tree build for the Lichee Pi Zero with Dock. Compared to the Lichee Pi Zero, it has an ethernet port (with internal PHY) so the EMAC driver and network support are enabled. Signed-off-by: Paul Kocialkowski --- arch/arm/dts/Makefile| 3 ++- con

[PATCH 1/6] sunxi: Kconfig: Fix default order for V3s DRAM clock

2025-06-01 Thread Paul Kocialkowski
The V3s (using co-packaged DRAM) runs at 360 MHz, which is specified in the common platform Kconfig file. However the value for MACH_SUN8I will be picked up instead due to ordering. Re-order the defaults to have MACH_SUN8I_V3S before MACH_SUN8I and let it select the correct default. Also update th

[PATCH 0/6] Various V3/S3/V3s fixes and improvements

2025-06-01 Thread Paul Kocialkowski
Paul Kocialkowski (6): sunxi: Kconfig: Fix default order for V3s DRAM clock sunxi: Add support for the Lichee Pi Zero with Dock sunxi: Split V3/S3 support from V3s sunxi: pinecube: Enable EMAC and network support power: axp: Fixup default voltages for V3/S3 net: sun8i-emac: Add support

Re: Determining Simon Glass's future in the U-Boot project

2025-06-01 Thread Tom Rini
On Wed, May 28, 2025 at 11:59:01AM -0600, Tom Rini wrote: > Hey all, > > First, I am not happy to be writing this email. But at this point, I > feel I have no other choice, for the good of the overall project and > community. > > Back in January[0] of this year I made a post with almost this sam

Re: Please pull u-boot-dm into -next

2025-06-01 Thread Tom Rini
On Fri, 30 May 2025 12:54:41 +0100, Simon Glass wrote: > This is for -next > > https://source.denx.de/u-boot/custodians/u-boot-dm/-/pipelines/26422 > https://dev.azure.com/simon0972/u-boot/_build/results?buildId=80&view=results > > The following changes since commit a619c4410956f446510749b6dc398

Re: [PATCH v3] bsh: imx6ulz_smm_m2: Add imx6ulz BSH SMM M2B board

2025-06-01 Thread Fabio Estevam
On Sat, May 31, 2025 at 11:54 AM Michael Trimarchi wrote: > > Introduce the BSH SystemMaster (SMM) M2B board. Notably, the M2B is > designed to leverage the existing device tree of its predecessor, the M2. > The primary distinction arises from memory incompatibilities with the M2. > To address thi

Re: [PATCH v4 1/4] clk: imx: add i.MX6UL clk driver

2025-06-01 Thread Fabio Estevam
On Fri, May 30, 2025 at 12:54 PM Michael Trimarchi wrote: > > Add i.MX6UL clk driver for i.MX6UL CLK driver model usage > > Reviewed-by: Peng Fan > Reviewed-by: Christoph Niedermaier > Tested-by: Christoph Niedermaier > Signed-off-by: Michael Trimarchi > > --- > > Changes in v4: > - Fix Kconfi

Re: [PATCH 01/13] configs: imx8m*_venice: enable several commands useful for scripting

2025-06-01 Thread Fabio Estevam
On Fri, May 23, 2025 at 2:20 PM Tim Harvey wrote: > > enable cat, xxd, and the ability for setexpr to return values in > variables which are all useful for scripting. > > Signed-off-by: Tim Harvey Applied the series to u-boot-imx/next, thanks.

[GIT PULL] Please pull u-boot-imx-next-20250601

2025-06-01 Thread Fabio Estevam
stodians/u-boot-imx.git tags/u-boot-imx-next-20250601 for you to fetch changes up to c7b82b4aabc6ef9af953b779490eb2385d299f51: bsh: imx6ulz_smm_m2: Add imx6ulz BSH SMM M2B board (2025-05-31 16:59:28 -0300) u-boot-imx-next-20250601 CI: https://source.denx.de/u-boot/cu

[PATCH 1/2] doc: efi_loader: Tidy up the bootefi-command docs

2025-06-01 Thread Simon Glass
There are backslashes in some of the tags which seems to be unnecessary. Remove then. Change the word 'either' to 'any' since there are three options. Signed-off-by: Simon Glass --- doc/usage/cmd/bootefi.rst | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --g

Re: [PATCH 1/2] doc: efi_loader: Tidy up the bootefi-command docs

2025-06-01 Thread Simon Glass
Hi, On Sun, 1 Jun 2025 at 13:04, Simon Glass wrote: > > There are backslashes in some of the tags which seems to be unnecessary. > Remove then. > > Change the word 'either' to 'any' since there are three options. > > Signed-off-by: Simon Glass > --- > > doc/usage/cmd/bootefi.rst | 20 ++