summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-12-03arm: dts: rockchip: px30-ringneck: remove u-boot,boot-ledQuentin Schulz
There's no code to make use of it. Further more, the HW default state of that LED is on and migrating this to the LED_BOOT implem brings no benefit as it'll stay on if U-Boot reaches its main-loop. Blinking the LED_BOOT also doesn't help because it doesn't blink for long enough to be noticeable before it's kept on. This is by design, c.f. https://source.denx.de/u-boot/u-boot/-/blob/v2025.10/include/led.h#L32-34 If we want this LED to be doing something different, it'll need to be handled by a board file anyway. Considering it hasn't worked in many years (if ever), let's just remove it. Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03arm: dts: rockchip: rk3399-puma: remove u-boot,boot-ledQuentin Schulz
There's no code to make use of it. Further more, the HW default state of that LED is on and migrating this to the LED_BOOT implem brings no benefit as it'll stay on if U-Boot reaches its main-loop. Blinking the LED_BOOT also doesn't help because it doesn't blink for long enough to be noticeable before it's kept on. This is by design, c.f. https://source.denx.de/u-boot/u-boot/-/blob/v2025.10/include/led.h#L32-34 If we want this LED to be doing something different, it'll need to be handled by a board file anyway. Considering it hasn't worked in many years, let's just remove it. Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03rockchip: rk3188: remove setup_led from xPLQuentin Schulz
There's not a single device making use of that code and it anyway shouldn't be using the old deprecated u-boot,boot-led /config property anymore but rather boot-led from /options/u-boot[1] Device Tree node. Because spl_board_init() is only present to call this now removed function, we can remove it as well as SPL_BOARD_INIT which is the symbol guarding calls to spl_board_init() (which is now also removed). [1] https://github.com/devicetree-org/dt-schema/blob/v2025.08/dtschema/schemas/options/u-boot.yaml#L113-L116 Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03arm: dts: rockchip: rk3188-radxarock: remove unused u-boot,boot-ledQuentin Schulz
This property is only read in arch/arm/mach-rockchip/rk3188/rk3188.c when CONFIG_SPL_LED is enabled, which isn't the case for this board, so let's remove dead code. Additionally, if we ever want to enable this LED as Boot LED, we should instead be using boot-led phandle property in /options/u-boot[1] Device Tree node with the "new" LED UCLASS devices. [1] https://github.com/devicetree-org/dt-schema/blob/v2025.08/dtschema/schemas/options/u-boot.yaml#L113-L116 Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03doc: dt-bindings: remove duplicates with dts/upstreamQuentin Schulz
doc/device-tree-bindings/leds/leds-bcm6328.txt can be found at dts/upstream/Bindings/leds/leds-bcm6328.yaml. doc/device-tree-bindings/leds/leds-bcm6358.txt can be found at dts/upstream/Bindings/leds/leds-bcm6358.txt. doc/device-tree-bindings/leds/leds-gpio.txt can be found at dts/upstream/Bindings/leds/leds-gpio.yaml. doc/device-tree-bindings/leds/leds-lp5562.txt can be found at dts/upstream/Bindings/leds/leds-lp55xx.yaml. Only two LED dt-bindings are left in U-Boot: leds-bcm6858.txt and leds-pwm.txt. The former is partially supported by dts/upstream/Bindings/leds/leds-bcm63138.yaml but is lacking all optional properties we have listed in "downstream" dt-binding in U-Boot. However, there doesn't seem to exist any user of that compatible. The latter is partially supported by dts/upstream/Bindings/leds/leds-pwm.yaml but is missing the u-boot,default-brightness property, which is used by arch/arm/dts/rk3326-odroid-go2-u-boot.dtsi at the moment. The default-brightness property is probably not what we want here as it defaults to max-brightness if missing. I'm assuming we want a different value for U-Boot (127) and the kernel (255 via max-brightness as a default), which would prevent us from upstreaming this property, which doesn't change the status quo, so let it be for now. Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03doc: cmd: document the led shell commandQuentin Schulz
This adds documentation on how to use the led shell command. Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03doc: move legacy API documented in README.LED to doc/api/led.rstQuentin Schulz
This moves the content of the legacy LED API from doc/READ.LED to doc/api/led.rst, applying minimal cosmetic changes to "nicely" integrate it with the current docs and adding a small introduction to the legacy API section. Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03cmd: led: fix help text for blink subcommandQuentin Schulz
The blink subcommand actually requires an additional parameter (blink-freq) but not the others. In order to simplify the help text, split the blink subcommand help text from the off|on|toggle subcommands. Then, fix the help text so that it is clear that the frequency is required. While at it, specify the duty cycle. Fixes: ffe2052d6e8a ("dm: led: Add a new 'led' command") Signed-off-by: Quentin Schulz <[email protected]>
2025-12-03Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-shTom Rini
This is R-Car X5H support. It was originally posted before rc1 and the changes are well isolated. This is the final patchset which enables the Gen5 drivers that are already in tree. I waited with this a bit until the SCMI ID discussion stabilized and TFA X5H support landed. So now, I can add the final piece into U-Boot too. Note that this is still very much experimental, the X5H upstreaming is in very early stages. The OF_UPSTREAM conversion will happen likely in 2026.04 or 2026.07 window, depending on when the Linux DTs land. The compound-clock.c is surely going to go away once SCP gets updated and the MFIS mailbox will be reworked once upstream bindings get developed. This also includes SH DT alignment fix.
2025-12-03arm64: renesas: Extend stub PSCI implementation to R-Car Gen5Hai Pham
Extend the stub PSCI implementation with support for R-Car Gen5. R-Car Gen5 uses different register to perform reset, therefore add a compile-time conditional. This is __secure code, therefore the runtime SoC detection parts are not available to it, hence the compile time conditional. Signed-off-by: Hai Pham <[email protected]> Signed-off-by: Marek Vasut <[email protected]> # Tweak commit message
2025-12-03arm64: dts: renesas: Add Renesas R-Car X5H R8A78000 Ironhide board codeHai Pham
Add initial support for Renesas R-Car X5H R8A78000 Ironhide board. This consists mainly of DTs, Makefile and Kconfig entries and board specific configuration files. The DTs will be gradually switched over to Linux DTs via OF_UPSTREAM once Linux DTs become available upstream, as upstreaming progresses. Signed-off-by: Hai Pham <[email protected]> Signed-off-by: Marek Vasut <[email protected]>
2025-12-03arm64: dts: renesas: Add Renesas R-Car X5H R8A78000 SoC DTsHai Pham
Add initial device trees for Renesas R-Car X5H R8A78000 SoC. Include very basic clock, reset, power domain headers which are used to control supported peripherals via SCMI / SCP. The headers are currently kept limited to avoid possible ABI break. A lot of clock are still stubbed via fixed-clock, this is going to be gradually removed over time, as more of the platform is upstreamed. Signed-off-by: Hai Pham <[email protected]> Signed-off-by: Khanh Le <[email protected]> Signed-off-by: Marek Vasut <[email protected]>
2025-12-03arm64: renesas: Add Renesas R-Car Gen5 infrastructureHai Pham
Add initial changes to support Renesas R-Car Gen5 SoC. Introduce Kconfig entries, architecture headers and PRR IDs for Renesas R-Car Gen5 and R-Car X5H R8A78000 SoC. Add Makefile change to produce u-boot-elf.srec with correct offset for installation tooling. Update MAINTAINERS entry to cover both r8a77nnn and r8a78nnn . Signed-off-by: Hai Pham <[email protected]> Signed-off-by: Marek Vasut <[email protected]>
2025-12-03mailbox: renesas: Add Renesas MFIS Multifunctional Interface mailbox driverTuyen Dang
Add support for the Renesas MFIS mailbox, which provides an interface between the different CPU Cores, such as AP System Core domain and the Realtime Core domain, SCP Core domain and AP System Core domain or Realtime Core domain and AP System Core domain or Realtime Core domain. Signed-off-by: Tuyen Dang <[email protected]> Signed-off-by: Marek Vasut <[email protected]> # Update the driver [Marek: Rename the driver to renesas-mfis, simplify the driver. Always use only one TX channel and no RX channel, drop all unnecessary code. Perform 1ms delay in send callback which is perfectly fine to do in U-Boot which does RX polling]
2025-12-03clk: renesas: Introduce temporary compound clock for SCP compatibilityMarek Vasut
The current state of SCP on Renesas R-Car Gen5 is not yet final and is still missing full clock control, the clock control is exposed as separate enable/disable and rate controls. Temporarily introduce custom local compound clock, which are used as an adaptation layer between U-Boot clock tree and current state of SCP, and which bind two SCP clock into a single compound clock, which provides both enable/disable and rate controls. This is mainly meant to be used by SD/eMMC controller, to allow the driver to both turn its clock on and off, and also obtain the current clock rate. This is going to be removed once the SCP clock protocol solidifies. Signed-off-by: Marek Vasut <[email protected]>
2025-12-03sh: Assure end of U-Boot is at 8-byte aligned offsetMarek Vasut
Make sure the end of U-Boot is at 8-byte aligned offset, not 4-byte aligned offset. This allows safely appending DT at the end of U-Boot with the guarantee that the DT will be at 8-byte aligned offset. This 8-byte alignment is now checked by newer libfdt 1.7.2 . Signed-off-by: Marek Vasut <[email protected]>
2025-12-02boot/bootfdt: Add smbios3-entrypoint to FDT for non-EFI bootsAdriana Nicolae
The Linux kernel can discover SMBIOS tables through two primary methods: 1. Via EFI tables, when using EFI boot; 2. Via the 'smbios3-entrypoint' property in the /chosen node of the device tree. When U-Boot boots a Linux kernel using a non-EFI command ("bootm", "bootz", or "booti"), the kernel relies on the device tree to detect the hardware. If SMBIOS tables are available in U-Boot, they should be passed to the kernel via this device tree property. This patch modifies boot_fdt_prepare(), to inject the SMBIOSv3 table address into the device tree if there is a table generated by U-boot. The "board_fdt_chosen_smbios" is weak in order to leave the possibilty for specific boards to select custom SMBIOS addresses. The changes in this patch are added in the context of supporting this device tree property in linux kernel: https://lkml.org/lkml/2025/10/24/1393 Device tree schema was updated to include the "smbios3-entrypoint" node in pull request: https://github.com/devicetree-org/dt-schema/pull/177 Signed-off-by: Adriana Nicolae <[email protected]>
2025-12-02Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-shTom Rini
Two fixes for R-Car Gen4 and CONFIG_ENV_OVERWRITE=n to always expect "setenv -f" to be used when overwriting ethernet MAC on all R-Car.
2025-12-02Merge tag 'u-boot-ufs-20251202' of ↵Tom Rini
https://source.denx.de/u-boot/custodians/u-boot-ufs into next - Second batch of UFS config renames for Cadence/Qcom/Rockchip/TI
2025-12-02Merge tag 'net-next-20251201' of ↵Tom Rini
https://source.denx.de/u-boot/custodians/u-boot-net into next Pull request net-next-20251201 net: - phy: Add the Airoha EN8811H PHY driver - airoha: bind MDIO controller on Ethernet load - phy: Disallow PHY_MSCC and PHY_VITESSE under COMPILE_TEST - phy: aquantia: refactor firmware upload helpers - phy: aquantia: use generic firmware loader net-legacy: - tftp: Remove tftp_init_load_addr error path
2025-12-02Merge tag 'u-boot-at91-fixes-2026.01-a' of ↵Tom Rini
https://source.denx.de/u-boot/custodians/u-boot-at91 First set of u-boot-at91 fixes for the 2026.01 cycle: This small fixes set includes a fix on the mtd pmecc driver.
2025-12-02Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-samsungTom Rini
- Assorted updates
2025-12-02arm64: renesas: r8a779g3: Use redundant env on Retronix R-Car V4H Sparrow ↵Marek Vasut
Hawk board The redundant environment offset is already set in board configuration, but the redundant environment itself is not explicitly enabled. Make sure the redundant environment is enabled, as we most certainly do want to have two copies of the environment. Signed-off-by: Marek Vasut <[email protected]>
2025-12-02ARM: renesas: Disable CONFIG_ENV_OVERWRITE on all boardsMarek Vasut
The CONFIG_ENV_OVERWRITE allows easy rewrite of environment variables like 'ethaddr' and 'serial#' without any protection against accidental removal of those variables. Remove this setting to add extra layer of protection to those variables. The variables can still be overridden using 'env set -f' (force set) if really needed. Signed-off-by: Marek Vasut <[email protected]>
2025-12-02ARM: dts: renesas: Enable R8A779G0 V4H White Hawk RPC SPI DT nodeMarek Vasut
Disabling RPC breaks SPL boot on R-Car V4H White Hawk board, re-enable RPC. Fixes: 1d94364c7f17 ("ARM: dts: renesas: Disable R8A779G0 V4H White Hawk RPC SPI DT node again") Signed-off-by: Marek Vasut <[email protected]>
2025-12-02doc: samsung: exynos-mobile: add documentation for exynos7870Kaustabh Chakraborty
Document the image preparation and flashing techniques for Exynos7870-based boards. This is done in a separate file in a sub-directory, which is linked back to the main documentation. Signed-off-by: Kaustabh Chakraborty <[email protected]> Signed-off-by: Minkyu Kang <[email protected]>
2025-12-02board: samsung: exynos-mobile: add exynos7870 support and three devicesKaustabh Chakraborty
Add basic support for the Exynos7870 SoC, this includes device tree match logic using multiple boards, where devices use a stub dtb in Samsung's QCDT format. S-BOOT, the previous stage bootloader, places its cmdline arguments there, which has identifying information. This is added with support for three devices: * Samsung Galaxy A2 Core (codename: a2corelte) * Samsung Galaxy J6 (codename: j6lte) * Samsung Galaxy J7 Prime (codename: on7xelte) Add their device trees in the defconfig, and also enable the clock and pin controller drivers. Signed-off-by: Kaustabh Chakraborty <[email protected]> Signed-off-by: Minkyu Kang <[email protected]>
2025-12-02board: samsung: add support for Samsung Exynos mobile device boardsKaustabh Chakraborty
Add support for a generic platform which intends to support multiple boards powered by ARMv8 Samsung Exynos SoCs. Some important features include: * Fastboot: This is present to provide an open alternative to Samsung's proprietary Odin protocol. The board file configures certain features for fastboot, such as a dynamically allocated fastboot buffer, and standardized (lowercase) partition aliases. * EFI: Kernel image can be loaded from an EFI partition. This adopts a standard booting process, which multiple OS distributions can rely on. Signed-off-by: Kaustabh Chakraborty <[email protected]> Signed-off-by: Minkyu Kang <[email protected]>
2025-12-01Azure: Rework jobs for disk space and 29 jobsTom Rini
The problem we face currently with Azure jobs is that we're running out of disk space on the runners as we build. There's not a good way to split approximately 1500 configurations across 10 jobs and not be close to or exceeding that limit. Split this in to 29 jobs instead with a goal of averaging an hour per job. This split gets us close, but there are still some challenging jobs to try and break up further. The list is mostly alphabetized but with some intentional changes (catch-all are last, mx/imx are together, SoC family splits are just grouped together). The average build time should be close to the same, but outliers can and will happen. Signed-off-by: Tom Rini <[email protected]>
2025-12-01Merge tag 'u-boot-socfpga-next-20251201' of ↵Tom Rini
https://source.denx.de/u-boot/custodians/u-boot-socfpga This pull request delivers a broad set of improvements across the SoCFPGA family, including Agilex5, Cyclone V, SoC64, and common code. Key updates include refined boot flows, new driver enablement, handoff tooling enhancements, and several stability fixes. Highlights: * Agilex5: - Enable FAT-based environment storage - MMC driver restores legacy clkmgr-based clock lookup - Cleanup of MMC raw mode enablement logic * Cyclone V: - SPL FAT boot support and updated bootcmd sequence - Disable SPL SPI to prevent contention with FAT-based boot - New board handoff script and BSP generator tooling - Optimized Makefile support for SoCFPGA handoff workflows* New drivers: - Cadence xSPI driver with full protocol and command support - SPL enablement for DW APB GPIO controller * Networking: - xgmac MDIO now supports Clause 45 read/write operations * NAND / SoC64: - Enable ONFI detection in Denali NAND controller for SoC64 devices * DTS and board updates: - Sync common SoCFPGA U-Boot DTS with kernel sources - Fixes for FPGA2SDRAM configuration and SoCFPGA boot stall behavior - Vining_FPGA migrated to the modern LED framework - Device tree relocation no longer forced off for Vining FPGA * Tooling: - Introduces a new Python-based Cyclone V BSP generator covering EMIF, IOCSR, HPS, XML parsing, rendering, and documentation to simplify board enablement and handoff regeneration workflows Overall, this series improves boot robustness, enhances xSPI and MDIO capabilities, modernizes board support, and introduces new tooling to streamline SoCFPGA handoff generation. Pipelines test passing https://source.denx.de/u-boot/custodians/u-boot-socfpga/-/pipelines/28569
2025-12-01Merge tag 'net-20251201' of https://source.denx.de/u-boot/custodians/u-boot-netTom Rini
Pull request net-20251201 net: - phy: broadcom: fix RGMII delays for BCM54210E - phy: dp83869: fix STRAP_OPMODE bitmask
2025-12-01Azure: Rework jobs for disk space and 29 jobsTom Rini
The problem we face currently with Azure jobs is that we're running out of disk space on the runners as we build. There's not a good way to split approximately 1500 configurations across 10 jobs and not be close to or exceeding that limit. Split this in to 29 jobs instead with a goal of averaging an hour per job. This split gets us close, but there are still some challenging jobs to try and break up further. The list is mostly alphabetized but with some intentional changes (catch-all are last, mx/imx are together, SoC family splits are just grouped together). The average build time should be close to the same, but outliers can and will happen. Signed-off-by: Tom Rini <[email protected]>
2025-12-01CI: Update to latest container imagesTom Rini
- Bump to noble-20251013 - Include tools for sage lab, build TF-A for platforms there. - Switch to distro provided trace-cmd, add libengine-pkcs11-openssl - Use mirrors for GNU projects - Switch to QEMU 10.1.x Signed-off-by: Tom Rini <[email protected]>
2025-12-01Merge patch series "CI: use mirrors for GNU tools"Tom Rini
Quentin Schulz <[email protected]> says: I have to add one (1) package to the Dockerfile as a new dependency and wanted to build the image to verify it works. I wasn't able to because GNU servers are just not reliable at all. The git server URL we're using doesn't seem to be a mirrored one, and switching to mirror URLs seem to make fetching possible again. Unfortunately, we don't have the option to do that for coreboot's dependencies, though we can ask coreboot to download the dependencies through its own mirror, which we do in this series. Link: https://lore.kernel.org/r/[email protected]
2025-12-01CI: add libengine-pkcs11-openssl package for pkcs11Quentin Schulz
In the future, we'll need proper pkcs11 support so that we can validate mkimage/binman works well with pkcs11 OpenSSL engine/provider via softhsm2-util (already installed). Signed-off-by: Quentin Schulz <[email protected]> Reviewed-by: Tom Rini <[email protected]>
2025-12-01Dockerfile: Switch to distro-provided trace-cmdTom Rini
Now that we have moved to Ubuntu 24.04 the distribution provided trace-cmd is new enough for our needs. Switch to installing that and stop building it from source. Signed-off-by: Tom Rini <[email protected]>
2025-12-01Docker: Update QEMU to 10.1.xTom Rini
The current release of QEMU is 10.1.2 and we should be tracking at least that new currently, to help find and fix emulation problems. This will make it smaller of a change when we move to 10.1.3 which will re-enable sifive_unleashed_sdcard testing again. Signed-off-by: Tom Rini <[email protected]>
2025-12-01Merge patch series "Gitlab: Add a "sage-lab" stage to access a board farm"Tom Rini
This series adds support for Gitlab pipelines to run our pytest suite on a limited number of hardware platforms. While better documentation and some further enhancements will be coming soon, this can be triggered by passing '-o ci.variable="SAGE_LAB=1"' to git push, or adding 'pushOption = ci.variable="SAGE_LAB=1"' to the .git/config file for the project. It can also be invoked manually from the pipeline webpage on a an existing pipeline. Link: https://lore.kernel.org/r/[email protected]
2025-12-01Gitlab sage, Docker: Add snmp and rsyncTom Rini
Add snmp and rsync to the normal docker image. While these tools are only required for the lab on sage, I think it's a small enough addition to be worth always including at this point. A higher level TODO I think may be to see if we can / should split the resulting container up, or if there's host tooling we can remove at a later step, after building all the software we require. Signed-off-by: Tom Rini <[email protected]>
2025-12-01Gitlab: sage: Add Pine64+ platformTom Rini
This adds the Pine64+ platform to the sage lab, for both legacy and lwIP networking stacks. In order to build this platform we need to copy certain files that were built in the container to /tmp and then set BINMAN_INDIRS to /tmp in order to find them when building. For now, we disable the test_net_pxe_boot_config test on lwIP as it leads to a crash that needs to be investigated. Signed-off-by: Tom Rini <[email protected]>
2025-12-01Docker: Add building TF-A for pine64_plusTom Rini
In order to add pine64_plus to the sage lab we will need to have a build of TF-A available for it as bl31.bin. Add this to the existing build loop of TF-A targets. Signed-off-by: Tom Rini <[email protected]>
2025-12-01Gitlab: Add a "sage-lab" stage to access a board farmTom Rini
This is the Gitlab side of adding support for the board lab connected to the "konsulko-sage" runner. On the software side, this lab uses only upstream labgrid. On the hardware side, each device under test is connected to its own exporter (typically a Raspberry Pi 4) that must be turned on (and cleanly turned off) as part of a given test cycle. Add support for testing on a SolidRun Hummingboard 2 (imx6), Raspberry Pi 3 and Raspberry Pi 4. In all cases, we enable additional options to run more tests on the board. As we have some networking tests, we test both the legacy network stack and lwIP. In the case of Pi platforms, we test all of 32bit configuration, plain configuration and rpi_arm64, and again with and without lwIP. Signed-off-by: Tom Rini <[email protected]>
2025-12-01net: tftp: Remove tftp_init_load_addr error pathLeonard Anderweit
tftp_init_load_addr() always returns 0 since commit af45c84871e4 ("tftp: rework the logic to validate the load address"), so we don't need to check if it failed and can remove the error handling. Also change tftp_init_load_addr() to static void since the return value is now unused. Signed-off-by: Leonard Anderweit <[email protected]> Reviewed-by: Yannic Moog <[email protected]>
2025-12-01net: phy: aquantia: use generic firmware loaderBeiyan Yun
Aquantia PHYs are being used w/o SPI flash in some routers recently. Current firmware loader only attempts to load from FS on top of MMC, limiting the use on many devices. Removed the old firmware loader, migrate to generic script based firmware loader to allow a wider range and runtime override of firmware source. (e.g., MMC, USB, UBIFS). Tested on Buffalo WXR18000BE10P with UBIFS. Signed-off-by: Beiyan Yun <[email protected]>
2025-12-01net: phy: aquantia: refactor firmware upload helpersBeiyan Yun
Split `aquantia_upload_firmware` into `aquantia_upload_firmware` and `aquantia_do_upload_firmware` to prepare for fwloader change. Signed-off-by: Beiyan Yun <[email protected]>
2025-12-01net: phy: Disallow PHY_MSCC and PHY_VITESSE under COMPILE_TESTTom Rini
These two PHY drivers have some overlap of supported PHYs. A longer term effort is needed to both remove duplication and enhance support by dealing with some issues that downstream vendor drivers address. For now, make both of these depend on !COMPILE_TEST so that we can enable "allyesconfig". Signed-off-by: Tom Rini <[email protected]>
2025-12-01net: airoha: bind MDIO controller on Ethernet loadChristian Marangi
Bind MDIO controller on Ethernet Controller load. The Airoha AN7581 SoC have an integrated Switch based on MT7531 (or more saying MT7988). Attach it to the mdio node in the switch node to support scanning for MDIO devices on the BUS with DM API. Signed-off-by: Christian Marangi <[email protected]>
2025-12-01Add optimized Makefile support for SoCFPGA handoffBrian Sune
- Introduce socfpga_g5_handoff_prepare target in U-Boot arch/arm/mach-socfpga/config.mk - Users can convert the handoff via make prepare. - Detects Altera/Intel SoCFPGA boards from .config - Combines vendor/board extraction into a single shell call - Checks for hps_isw_handoff folder and .hiof files - Uses ls -d instead of find for faster folder detection - Runs BSP generator script only if files exist - Non-blocking: continues if handoff folder or files are missing - HANDOFF_PATH user define allows overriding auto-detected folder - Minimizes subshells and other slow constructs for faster CI Signed-off-by: Brian Sune <[email protected]>
2025-12-01net: phy: Add the Airoha EN8811H PHY driverLucien.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 path will trigger its automatic loading and writing to the PHY via MDIO. If need board specific loading override, please override the en8811h_read_fw function on board or architecture level. Based on the Linux upstream AIROHA EN8811H driver code(air_en8811h.c), I have modified the relevant process to align with the U-Boot boot sequence. and have validated this on Banana Pi BPI-R3 Mini. Signed-off-by: Lucien.Jheng <[email protected]> Reviewed-by: Marek Vasut <[email protected]>
2025-12-01net: phy: broadcom: fix RGMII delays for BCM54210EMichael Walle
bcm54210e_config() configures the RGMII delays and then calls bcm5461_config(). But the latter will do a PHY soft reset and thus resets the delay settings again. Call bcm5461_config() first to fix it. Fixes: cba79a1b2e11 ("net: phy: broadcom: add support for BCM54210E") Signed-off-by: Michael Walle <[email protected]> Reviewed-by: Rafał Miłecki <[email protected]>