Re: [PATCH] kbuild: Don't mandate gcc as the host compiler

2025-07-20 Thread Ilias Apalodimas
I was on PTO but fwiw this looks ok to me Cheers /Ilias On Fri, 18 Jul 2025 at 22:43, Tom Rini wrote: > > On Sat, 12 Jul 2025 12:45:58 +0200, Mark Kettenis wrote: > > > Systems that use clang may not have gcc installed. Set > > HOSTCC to cc and HOSTCXX to c++ like we did before to make those >

RE: [PATCH] treewide: Remove empty board_init() function from all boards

2025-07-20 Thread Peng Fan
> Subject: [PATCH] treewide: Remove empty board_init() function from > all boards > > Commit 86acdce2ba88 ("common: add config for board_init() call") > introduced CONFIG_BOARD_INIT option. This option can be disabled > for the > boards where board_init() function is not needed. Remove empty > boa

[PATCH] MAINTAINERS: Update email of Anatolij Gustschin

2025-07-20 Thread Anatolij Gustschin
Use new email for community work. Also remove my capricorn SoM maintainer entry since I do not have access to this hardware anymore. Signed-off-by: Anatolij Gustschin --- MAINTAINERS | 2 +- board/siemens/capricorn/MAINTAINERS | 1 - board/terasic/de1-soc/MAINTAINERS |

Re: [PATCH] RZ/A1 Genmai SDRAM setup prototype

2025-07-20 Thread Marek Vasut
On 7/11/25 9:35 AM, Magnus Damm wrote: Hello Magnus, sorry for the late reply. Here's a hack that adds SDRAM setup code to the r7s72100 Genmai board. Might be useful in case someone wants to boot Linux on the Genmai board. Before merge a few unclear points remain: - How to make best use of

Re: [PATCH] net: sh_eth: Cleanup the driver to remove most

2025-07-20 Thread Marek Vasut
On 7/11/25 2:39 PM, Magnus Damm wrote: Hello Magnus, sorry for the late reply. Would it be possible to split this change into multiple easier-to-review patches ? --- 0004/drivers/net/sh_eth.c +++ work/drivers/net/sh_eth.c 2025-07-11 20:31:22.438699670 +0900 @@ -29,6 +29,8 @@ #include

Re: [PATCH v2] configs: Remove redundant CONFIG_TEXT_BASE assignments for Renesas defconfigs

2025-07-20 Thread Marek Vasut
On 7/17/25 12:52 PM, Prabhakar wrote: From: Lad Prabhakar The Renesas board defconfigs explicitly set CONFIG_TEXT_BASE=0x5000, however U-Boot's POSITION_INDEPENDENT=y build default already places text at 0x0. These hardcoded overrides are therefore unnecessary and will be pruned automatical

Re: [U-Boot, v1, 1/1] misc: fs_loader: Add request_firmware_into_buf_via_env API for environment-based firmware loading

2025-07-20 Thread Marek Vasut
On 7/20/25 5:04 PM, Lucien.Jheng wrote: This commit adds request_firmware_into_buf_via_env() to the fs_loader driver, enabling firmware loading into a buffer using environment variables for path and size. It supports multiple entries via indexed variable names (e.g., "fw_dir0", "fw_size0"). This

Re: [PATCH v3 7/9] net: sh_eth: Adjust RZ/A1, add RZ/A2 support

2025-07-20 Thread Marek Vasut
On 7/7/25 7:03 PM, Magnus Damm wrote: Hello Magnus, I'm sorry for the late reply. +++ work/drivers/net/sh_eth.c 2025-07-05 17:45:07.333754799 +0900 @@ -144,10 +144,10 @@ static int sh_eth_reset(struct sh_eth_in { #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ) int ret =

[PATCH 1/2] arm64: dts: renesas: r8a779g3: Describe generic SPI NOR support on Retronix R-Car V4H Sparrow Hawk board

2025-07-20 Thread Marek Vasut
Retronix R-Car V4H Sparrow Hawk EVTA1 is populated with Spansion S25FS512S, EVTB1 is populated with Winbond W77Q51NW. Describe the SPI NOR using generic "spi-flash" compatible, because both flashes can be auto-detected based on their built-in IDs. Signed-off-by: Marek Vasut --- Cc: Nobuhiro Iwama

[PATCH 2/2] arm64: renesas: r8a779g3: Enable Winbond SPI NOR support on Retronix R-Car V4H Sparrow Hawk board

2025-07-20 Thread Marek Vasut
Enable support for Winbond SPI NOR on Retronix R-Car V4H Sparrow Hawk board, this is required to support W77Q51NW on new board revision EVTB1 operational. Signed-off-by: Marek Vasut --- Cc: Nobuhiro Iwamatsu Cc: Tom Rini Cc: u-boot@lists.denx.de --- configs/r8a779g3_sparrowhawk_defconfig | 1 +

[PATCH] mtd: spi-nor-ids: Add support for Winbond W77Q51NW

2025-07-20 Thread Marek Vasut
Add IDs for Winbond W77Q51NW, 512M-bit Secure Serial Flash Memory with Post-Quantum Cryptography, Dual/Quad SPI, QPI and DTR . The flash part is similar to W25Q512NWM . Signed-off-by: Marek Vasut --- Cc: Jagan Teki Cc: Nobuhiro Iwamatsu Cc: Takahiro Kuwano Cc: Tom Rini Cc: Tudor Ambarus Cc:

Re: [PATCH 1/9] phy: samsung: Add Exynos USB DRD PHY driver

2025-07-20 Thread Sam Protsenko
On Thu, Jul 17, 2025 at 1:58 AM Mattijs Korpershoek wrote: > > Hi Sam, > > Thank you for the patch. > [snip] > > + > > +#define EXYNOS850_DRD_UTMI 0x50 > > +#define UTMI_FORCE_SLEEP BIT(0) > > +#define UTMI_FORCE_SUSPEND BIT(1) > > +#define

Re: [U-Boot, v1, 1/1] misc: fs_loader: Add request_firmware_into_buf_via_env API for environment-based firmware loading

2025-07-20 Thread Marek Vasut
On 7/20/25 5:31 PM, Heinrich Schuchardt wrote: Am 20. Juli 2025 17:04:04 MESZ schrieb "Lucien.Jheng" : This commit adds request_firmware_into_buf_via_env() to the fs_loader driver, enabling firmware loading into a buffer using environment variables for path and size. It supports multiple entries

[U-Boot, v1, 1/1] misc: fs_loader: Add request_firmware_into_buf_via_env API for environment-based firmware loading

2025-07-20 Thread Lucien.Jheng
This commit adds request_firmware_into_buf_via_env() to the fs_loader driver, enabling firmware loading into a buffer using environment variables for path and size. It supports multiple entries via indexed variable names (e.g., "fw_dir0", "fw_size0"). This provides flexible, scriptable firmware loa

[PATCH 3/3] mmc: exynos_dw_mmc: add exynos5420 compatibles

2025-07-20 Thread Henrik Grimler
From: Jaehoon Chung The exynos5420 DTSes in linux kernel uses the compatibles samsung,exynos5420-dw-mshc{,-smu} instead of just samsung,exynos-dwmmc. Match the additional compatibles in the driver to make it possible to use it with DTSes from Linux kernel. Signed-off-by: Jaehoon Chung [ grimler

[PATCH 2/3] mmc: s5p_sdhci: add samsung,exynos4210-sdhci compatible

2025-07-20 Thread Henrik Grimler
the Exynos4210 devices in u-boot uses samsung,exynos4412-sdhci as sdhci compatible in their DTSes, while the upstream DTSes uses samsung,exynos4210-sdhci. Add samsung,exynos4210-sdhci compatible string for s5p_sdhci driver as well so that it can be used with upstream DTSes. Signed-off-by: Henrik

[PATCH 0/3] mmc: add more exynos compatibles and fix cd-gpio handling in s5p_sdhci

2025-07-20 Thread Henrik Grimler
Hi, This series does some preparatory work to s5p_sdhci and exynos_dw_mmc drivers to make it possible to move some exynos devices over to OF_UPSTREAM. I am planning to send additional patches for other subsystems as well, with the end goal of moving over exynos4412-odroid-u2 and exynos5422-odroid-

[PATCH 1/3] mmc: s5p_sdhci: remove duplicated card detect code

2025-07-20 Thread Henrik Grimler
The common sdhci infrastructure is already parsing the cd-gpios property, since commit 451931ea7002 ("mmc: sdhci: Read cd-gpio from devicetree"). The s5p code is therefore duplicated, and also broken since it assumes that the GPIO value is inverted, while the sdhci code correctly follows the ACTIVE

Re: [U-Boot, v1, 1/1] misc: fs_loader: Add request_firmware_into_buf_via_env API for environment-based firmware loading

2025-07-20 Thread Heinrich Schuchardt
Am 20. Juli 2025 17:04:04 MESZ schrieb "Lucien.Jheng" : >This commit adds request_firmware_into_buf_via_env() to the fs_loader driver, >enabling firmware loading into a buffer >using environment variables for path and size. >It supports multiple entries via indexed variable names >(e.g., "fw_dir0",

Re: [PATCH 3/7] drivers/reset/reset-airoha: add support for airoha en7523 SoC family

2025-07-20 Thread Tom Rini
On Sun, Jul 20, 2025 at 02:57:34AM +0300, Mikhail Kshevetskiy wrote: > > On 19.07.2025 17:57, Tom Rini wrote: > > On Sat, Jul 19, 2025 at 03:57:13AM +0300, Mikhail Kshevetskiy wrote: > > > >> This adds reset controller support for airoha en7523/en7529/en7562 SoCs. > >> > >> Signed-off-by: Mikhail

Re: [PATCH 2/7] airoha/an7581: add CONFIG_TARGET_AN7581=y to the defconfig

2025-07-20 Thread Tom Rini
On Sun, Jul 20, 2025 at 02:50:00AM +0300, Mikhail Kshevetskiy wrote: > > On 19.07.2025 17:58, Tom Rini wrote: > > On Sat, Jul 19, 2025 at 03:57:12AM +0300, Mikhail Kshevetskiy wrote: > > > >> This is required because airoha/en7523 will be added with the following > >> patches. Without this line co

[U-Boot, v3, 1/1]net: phy: Add the Airoha EN8811H PHY driver

2025-07-20 Thread Lucien.Jheng
Add the driver for the Airoha EN8811H 2.5 Gigabit PHY. The PHY supports 100/1000/2500 Mbps with auto negotiation only. The driver uses two firmware files, for which updated versions are added to linux-firmware already. Locating the AIROHA FW within the filesystem at the designated partition and p

Re: [PATCH] arm: atmel_qspi: fix race condition in transfer completion check

2025-07-20 Thread Ramin Moussavi
Hello Eugen here is the updated patch Am Mo., 14. Juli 2025 um 22:33 Uhr schrieb Eugen Hristev < eugen.hris...@linaro.org>: > Hello Ramin, > > Thank you for your patch. > > Can you please change the subject to have "spi: atmel_qspi: ..." > > On 7/13/25 19:08, Ramin Moussavi wrote: > > In atmel_q