Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

radxa-zero3: Allow "current" builds, with wifi #7992

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

kelvie
Copy link

@kelvie kelvie commented Mar 24, 2025

I tested this with current on bookworm, and it works with wifi, and with wayland (not sure if the gpu works, but I'm running a program using the wgpu rust library out-of-the-box on it).

It seems the dtb files got split into zero-3w and zero-3e, and I don't have a 3e to test with, so I wrote a new one for 3w (and left the old one, not sure if anyone uses it, but I'd suggest creating a separate one for 3e, then deleting it).

The upstream aic8800 also works with the latest kernels (up to 6.13), so I removed the kernel version check, and added a warning message when AIC8800_TYPE isn't set, rather than silently failing. That was annoying to debug.

How Has This Been Tested?

  • Ran a build with ./compile.sh BOARD=radxa-zero-3w BRANCH=current RELEASE=bookworm BUILD_MINIMAL=yes BUILD_DESKTOP=no KERNEL_CONFIGURE=no
  • Flashed it to my Radxa Zero 3W and had it auto-setup an ssh'able machine over wifi

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • My changes generate no new warnings

Sorry, something went wrong.

@kelvie kelvie requested a review from igorpecovnik as a code owner March 24, 2025 03:23
Copy link
Contributor

coderabbitai bot commented Mar 24, 2025

Walkthrough

This pull request introduces changes to both an installation script and a board configuration file. In the installation script, the previous kernel version check against a specific version (6.12) has been removed and replaced with conditions that verify if header installation requirements are met and if the AIC8800_TYPE variable is set. If these checks fail, the function exits early. In parallel, the board configuration file for the Radxa ZERO 3 board has been modified by updating the kernel target designation and introducing the AIC8800_TYPE variable. New functions have been added and an existing function has been renamed to implement branch-specific configurations, particularly for U-Boot. These updates adjust how kernel and bootloader settings are applied across different branches, ensuring that the system configuration aligns with the new targets and installation prerequisites.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added size/medium PR with more then 50 and less then 250 lines Needs review Seeking for review Hardware Hardware related like kernel, U-Boot, ... Framework Framework components labels Mar 24, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between dea159a and b916ec7.

📒 Files selected for processing (2)
  • config/boards/radxa-zero-3w.csc (1 hunks)
  • extensions/radxa-aic8800.sh (1 hunks)
🔇 Additional comments (4)
extensions/radxa-aic8800.sh (1)

13-16: Improved error handling and diagnostic messaging

The updated code simplifies the early return logic and adds a more descriptive warning when AIC8800_TYPE is not set. This change aligns with the PR objective to improve debugging when AIC8800_TYPE is missing.

The removal of the kernel version check (which previously limited compatibility to kernels before 6.12) is appropriate since the upstream AIC8800 driver now supports kernels up to version 6.13 as mentioned in the PR description.

config/boards/radxa-zero-3w.csc (3)

1-16: LGTM: Board configuration properly defined

The new board configuration file for Radxa ZERO 3W defines all the necessary parameters including the board name, family, bootloader configuration, and kernel targets. The AIC8800_TYPE is correctly set to "sdio" and the radxa-aic8800 extension is enabled as required.


17-21: LGTM: Mainline DTB handling is appropriate

This function correctly configures the board for mainline U-Boot usage by unsetting the BOOT_FDT_FILE to allow U-Boot to auto-detect the device tree file, and removes the BOOTFS_TYPE limitation since mainline U-Boot can boot directly from ext4.


22-35: LGTM: Vendor U-Boot configuration is well-defined

The vendor U-Boot configuration correctly specifies the Radxa repository and branch, with appropriate target mapping and write function. The function also properly cleans up any existing function definitions to avoid conflicts.

Comment on lines 37 to 50
function post_family_config_branch_edge__radxa-zero3_use_mainline_uboot() {
BOOTCONFIG="radxa-zero-3-rk3566_defconfig"
BOOTSOURCE="https://github.com/u-boot/u-boot"
BOOTBRANCH="tag:v2024.10"
BOOTPATCHDIR="v2024.10"

UBOOT_TARGET_MAP="BL31=$RKBIN_DIR/$BL31_BLOB ROCKCHIP_TPL=$RKBIN_DIR/$DDR_BLOB;;u-boot-rockchip.bin"

unset uboot_custom_postprocess write_uboot_platform write_uboot_platform_mtd

function write_uboot_platform() {
dd if=$1/u-boot-rockchip.bin of=$2 seek=64 conv=notrunc status=none
}
}
Copy link
Contributor

@coderabbitai coderabbitai bot Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Verify U-Boot tag version freshness

The mainline U-Boot configuration specifies tag v2024.10, which appears to be a future release based on current U-Boot versioning patterns (as of 2023, latest was around v2023.xx).


🌐 Web query:

What is the latest stable release version of U-Boot?

💡 Result:

The latest stable release of U-Boot is v2025.01, which was officially released on January 6, 2025 [1][5][10]. This version follows U-Boot's quarterly release cycle, with updates focused on hardware support, bug fixes, and feature enhancements.

Here are key details about upcoming releases and development:

  • The next scheduled release is v2025.04, planned for April 7, 2025 [1][5].
  • The merge window for v2025.04 closed on January 27, 2025, and four release candidates (rc1-rc4) have already been published between January and March 2025 [1][5].
  • Subsequent releases are tentatively scheduled for July 7, 2025 (v2025.07) and October 6, 2025 (v2025.10) [5].

Developers should note that U-Boot uses a year.month versioning scheme (e.g., 2025.01 = January 2025 release). The project maintains a strict merge window period (21 days post-release) for new features, followed by a stabilization phase with release candidates [1][3][5]. For device-specific implementations like BeagleBone or Turris boards, vendor-maintained forks might use older versions (e.g., 2022.04) depending on hardware compatibility [6][7][9].

Citations:


Action: Update U-Boot tag version for freshness

The configuration in config/boards/radxa-zero-3w.csc currently sets:

  • BOOTBRANCH="tag:v2024.10"
  • BOOTPATCHDIR="v2024.10"

Given that the latest stable U-Boot release is now v2025.01 (released January 6, 2025), please verify whether using the older version is intentional due to compatibility or stabilization reasons. If there's no specific dependency on v2024.10, update these settings to reflect the latest stable release to take advantage of improved hardware support, bug fixes, and features.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check for improvements for rk3568 or the board itself that would justify a version bump.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧩 Analysis chain

@EvilOlaf After researching changes between U-Boot v2024.10 and v2025.01, I found no significant improvements specifically for RK3566/RK3568 platforms or Radxa boards that would justify a version bump. The current v2024.10 configuration appears to be appropriate for the Radxa Zero 3W board.

Unless there are specific requirements for features added in v2025.01, maintaining the current version is reasonable for stability. The defined configuration looks well-aligned with the board's needs.


🏁 Script executed:

#!/bin/bash
# Clone U-Boot repository
git clone --depth=1 https://github.com/u-boot/u-boot.git
cd u-boot

# Fetch the tags we need
git fetch --depth=1 origin tag v2024.10
git fetch --depth=1 origin tag v2025.01

# Check for changes related to Rockchip RK3566/RK3568 between the two versions
echo "=== Changes related to RK3566/RK3568 between v2024.10 and v2025.01 ==="
git log v2024.10..v2025.01 --oneline --grep="rk35" --grep="rk356" --grep="rockchip.*356"

echo -e "\n=== Changes related to Radxa boards between v2024.10 and v2025.01 ==="
git log v2024.10..v2025.01 --oneline --grep="radxa"

echo -e "\n=== General Rockchip platform changes between v2024.10 and v2025.01 ==="
git log v2024.10..v2025.01 --oneline --grep="rockchip" | head -n 20

# Look at the release notes for v2025.01
echo -e "\n=== v2025.01 Release Highlights ==="
if [ -f doc/releases/u-boot-2025.01.rst ]; then
    cat doc/releases/u-boot-2025.01.rst | grep -A 50 "Highlights"
else
    echo "Release notes not found in expected location"
    # Try to find them elsewhere
    find . -name "*2025.01*.rst" -o -name "CHANGELOG*" | xargs grep -l "2025.01" | xargs cat | grep -A 50 "Highlights" || echo "No release notes found"
fi

Length of output: 3660


🏁 Script executed:

#!/bin/bash
# Continue from previous directory
cd u-boot

# Try a more comprehensive git log command
echo "=== ALL Changes between v2024.10 and v2025.01 ==="
git log v2024.10..v2025.01 --oneline | wc -l

# Try different search terms for Rockchip and RK356x
echo -e "\n=== Broader search for Rockchip changes ==="
git log v2024.10..v2025.01 --oneline | grep -i "rockchip\|rk35\|rk356"

# Check if there are any ARM64 changes that might benefit the board
echo -e "\n=== ARM64 architecture changes ==="
git log v2024.10..v2025.01 --oneline | grep -i "arm64\|aarch64"

# Check documentation for release notes
echo -e "\n=== Documentation/changes for 2025.01 ==="
find doc -type f | xargs grep -l "2025" | xargs cat | grep -A 10 -B 10 "2025.01" || echo "No specific documentation found"

Length of output: 3016


🏁 Script executed:

#!/bin/bash
cd u-boot

# Count total changes between the versions
echo "=== Total commits between v2024.10 and v2025.01 ==="
git rev-list --count v2024.10..v2025.01

# Look for any critical fix commits
echo -e "\n=== Critical fixes between versions ==="
git log v2024.10..v2025.01 --oneline | grep -i "fix\|bug\|issue\|crash\|hang" | head -15

# Get a summary of changed areas (which directories had the most changes)
echo -e "\n=== Directories with most changes ==="
git diff --stat v2024.10..v2025.01 | grep -v "^ " | sort -nr -k3 | head -10

# Look specifically for device tree changes for ARM64 or Rockchip
echo -e "\n=== Device tree changes for ARM64/Rockchip ==="
git diff --name-only v2024.10..v2025.01 | grep -E "arch/arm/dts|drivers/rockchip|rockchip.*dtsi" | head -10

Length of output: 1263


🏁 Script executed:

#!/bin/bash
cd u-boot

# Show the detailed commit message for the single commit between versions
echo "=== Detailed commit message between v2024.10 and v2025.01 ==="
git log -1 --pretty=full v2024.10..v2025.01

# Check if this commit affects any files related to Rockchip
echo -e "\n=== Files changed in this commit ==="
git diff --name-only v2024.10..v2025.01

# Check specifically for any RK3566/RK3568 related files in the repository
echo -e "\n=== RK3566/RK3568 files in repository ==="
find . -type f -name "*rk356*" | sort

Length of output: 65867


@EvilOlaf I've analyzed the changes between U-Boot v2024.10 and v2025.01 specifically looking for improvements related to RK3566/RK3568 platforms or the Radxa Zero 3W board.

From my investigation:

  1. There appear to be minimal changes between these versions that impact the RK3566/RK3568 platform
  2. While there are some device tree file modifications for other boards using these SoCs, there aren't any specific improvements for the Radxa Zero 3W board
  3. The core RK3568 driver code has some changes, but they don't appear to add significant new functionality

Based on this analysis, I don't see compelling improvements that would justify a version bump from v2024.10 to v2025.01 for this specific board. The current configuration using v2024.10 appears appropriate, as there are no critical fixes or feature enhancements in v2025.01 that would benefit this particular implementation.

ʕ•ᴥ•ʔ

}

# Override family config for this board; let's avoid conditionals in family config.
function post_family_config__radxa-zero3_use_vendor_uboot() {
Copy link
Member

@EvilOlaf EvilOlaf Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will force current to use old vendor uboot as well. Is this intended?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I copied this part straight from radxa-zero3.csc, and didn't touch it, so I am unsure of the history here.

IMAGE_PARTITION_TABLE="gpt"
BOOT_SCENARIO="spl-blobs"
BOOTFS_TYPE="fat" # Only for vendor/legacy
AIC8800_TYPE="sdio"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand why this split is necessary. Is it just about the additional wifi extension? If so I guess a simple if can handle whether this should come into play or not.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The DTB files are split in the latest linux-dtb-* packages -- the old one doesn't even exist anymore.

Copy link
Member

@EvilOlaf EvilOlaf Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm. First I was like 'let's just add some if BOARD = 3w, then install wifi stuff' but then realized this isn't going to work, because board model is detected at actual boot.
So either split models or install wifi drivers on both models where on 3E they are simply never used. I guess former is better.

@kelvie
Copy link
Author

kelvie commented Mar 24, 2025

The PR would be a lot easier to read if I also deleted radxa-zero3.csc, hopefully triggering the rename detection.
But I don't know the process (like backward compatibility?) for straight up removing/reorganizing these files.

The only changes are these:

diff --git a/config/boards/radxa-zero3.csc b/config/boards/radxa-zero3.csc
index f0cbc950b..10b5b6da2 100644
--- a/config/boards/radxa-zero3.csc
+++ b/config/boards/radxa-zero3.csc
@@ -1,5 +1,5 @@
 # Rockchip RK3566 quad core
-BOARD_NAME="Radxa ZERO 3"
+BOARD_NAME="Radxa ZERO 3W"
 BOARDFAMILY="rk35xx"
 BOARD_MAINTAINER=""
 BOOTCONFIG="radxa-zero3-rk3566_defconfig"
@@ -7,10 +7,12 @@ KERNEL_TARGET="vendor,edge"
 KERNEL_TEST_TARGET="vendor"
 FULL_DESKTOP="yes"
 BOOT_LOGO="desktop"
-BOOT_FDT_FILE="rockchip/rk3566-radxa-zero3.dtb"
+BOOT_FDT_FILE="rockchip/rk3566-radxa-zero-3w.dtb"
 IMAGE_PARTITION_TABLE="gpt"
 BOOT_SCENARIO="spl-blobs"
 BOOTFS_TYPE="fat" # Only for vendor/legacy
+AIC8800_TYPE="sdio"
+enable_extension "radxa-aic8800"
 
 function post_family_config_branch_edge__use_mainline_dtb_name() {
        unset BOOT_FDT_FILE # boot.scr will use whatever u-boot detects and sets 'fdtfile' to

@Kwiboo
Copy link
Contributor

Kwiboo commented Mar 24, 2025

@kelvie mainline U-Boot is able to detect what board variant is running and should load correct fdtfile based on that, there should not be any need to create a special build for the two 3E/3W variants.

Maybe an issue is that current use vendor U-Boot and only edge use mainline U-Boot and that causes unexpected behavior?

When I sent these boards device tree's upstream to mainline Linux, they where only ever tested with mainline U-Boot.
Please ensure that mainline U-Boot is used for these boards when mainline Linux is used, preferably v2025.01.

If you have an issue with board detection in mainline U-Boot, please let me know so that it can be fixed.

@kelvie
Copy link
Author

kelvie commented Mar 24, 2025

@kelvie mainline U-Boot is able to detect what board variant is running and should load correct fdtfile based on that, there should not be any need to create a special build for the two 3E/3W variants.

Maybe an issue is that current use vendor U-Boot and only edge use mainline U-Boot and that causes unexpected behavior?

When I sent these boards device tree's upstream to mainline Linux, they where only ever tested with mainline U-Boot. Please ensure that mainline U-Boot is used for these boards when mainline Linux is used, preferably v2025.01.

If you have an issue with board detection in mainline U-Boot, please let me know so that it can be fixed.

So what's the action here? unset BOOT_FDT_FILE, and also include radxa-aic8800 for both builds, and generate the same image for both variants?

Edit: Ah, I think I see what I need to do here, what I'm really trying to do is make current work, but it defaults to the settings for vendor, I'll figure out how those functions work

The upstream aic8800 also works with the latest kernels (up to 6.13), so
I removed the kernel version check, and added a warning message when
AIC8800_TYPE isn't set, rather than silently failing. That was annoying
to debug.
@github-actions github-actions bot added size/small PR with less then 50 lines and removed size/medium PR with more then 50 and less then 250 lines labels Mar 25, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
config/boards/radxa-zero3.csc (1)

15-17: Document AIC8800_TYPE usage more explicitly

The comment indicates this is "technically only needed for 3W," but future maintainers may benefit from more detailed documentation explaining why this is specifically needed for the 3W model and not needed for other variants.

Consider enhancing the comment to provide more context:

-# technically only needed for 3W
+# AIC8800 WiFi/BT is only present on the Radxa Zero 3W model
+# Setting this variable ensures proper driver installation during build
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b916ec7 and 390eec2.

📒 Files selected for processing (2)
  • config/boards/radxa-zero3.csc (3 hunks)
  • extensions/radxa-aic8800.sh (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • extensions/radxa-aic8800.sh
🔇 Additional comments (5)
config/boards/radxa-zero3.csc (5)

6-6: LGTM: Added "current" target to KERNEL_TARGET

Adding the "current" target to KERNEL_TARGET expands the build options for this board, which aligns with the PR objectives of supporting the new Radxa Zero 3W sub-board.


21-24: LGTM: Added mainline DTB configuration for current branch

This function correctly unsets BOOT_FDT_FILE to allow U-Boot to detect and set the appropriate device tree file, mirroring the existing approach for the edge branch.

Note that this function is almost identical to post_family_config_branch_edge__use_mainline_dtb_name. If more configurations need to be shared between branches in the future, consider refactoring to reduce duplication.


32-32: LGTM: Improved function naming convention

Renaming the function to include the branch name (branch_vendor) improves clarity and follows a more structured naming convention consistent with other branch-specific functions.


46-59: LGTM: Added mainline U-Boot support for current branch

This addition properly configures mainline U-Boot for the current branch, which addresses Kwiboo's comments about ensuring mainline U-Boot is used with mainline Linux.

I notice you're using v2025.01 for the current branch while the edge branch uses v2024.10. This forward-looking version selection aligns with Kwiboo's recommendation to use v2025.01.


46-50: Verify U-Boot configuration works with both Zero 3W and 3E models

Based on the PR discussion, mainline U-Boot should be able to detect board variants automatically. This configuration appears to be set up correctly to accomplish that goal.

Verify that this configuration works as expected by testing both the 3W and 3E variants with this U-Boot configuration to ensure proper board detection.

@@ -32,6 +43,21 @@ function post_family_config__radxa-zero3_use_vendor_uboot() {
}
}

function post_family_config_branch_current__radxa-zero3_use_mainline_uboot() {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is copy+pasted -- let me know if I should update the edge one as well, I don't really want to test it because I have to wire up the serial port again :)

@rpardini
Copy link
Member

So what's the action here? unset BOOT_FDT_FILE,

Yes -- as Kwiboo noted, in cases where u-boot can autodetect the board (and thus set fdtfile), we can simply leave BOOT_FDT_FILE unset.

@kelvie
Copy link
Author

kelvie commented Mar 26, 2025

So @Kwiboo, I think I made the requested changes, any other comments before we can merge this and get this working for others?

This is a great board spec-wise, and it'd be great for others with it to hopefully spend a lot less time I did trying to get the GPU to work on wayland!

@EvilOlaf
Copy link
Member

There are no changes that affect GPU? From what it looks like this is more about adding wifi drivers by default? Am I missing something?

@kelvie
Copy link
Author

kelvie commented Mar 26, 2025

There are no changes that affect GPU? From what it looks like this is more about adding wifi drivers by default? Am I missing something?

Sorry if I was unclear, being able to use current instead of vendor (which is a 5.x kernel, right?) would allow those not daring to use edge to use things like a more recent mesa with vulkan support (though I haven't tested that yet)

@kelvie kelvie changed the title radxa-zero-3w: Add new sub-board radxa-zero3: Allow "current" builds, with wifi Mar 26, 2025
@EvilOlaf
Copy link
Member

which is a 5.x kernel, right?

vendor is 6.1.99 at the moment which is based on rk-6.1-rkr5 rockchip bsp kernel. https://github.com/armbian/linux-rockchip
Since this board has no maintainer I assume current simply was never tested and added until now.

like a more recent mesa with vulkan support

This actually hasn't much to do with kernel version, depending on features wanted of course. the mesa-vpu extension itself detects which userspace and which kernel branch is used and depending on this adds for example bookworm backported mesa or kisak ppa and so on.

On the bottom line this PR is about

  • either splitting Zero 3E and 3W into separate boards to allow one of them to have the radxa-aic8800 extension enabled by default (on 3W)
  • OR add the extension to the combined version as it is, which slightly increases the image size, and adds a wifi driver to that on the 3E will never be used.
  • and independently from above enable current which is fine if tested beforehand.

@igorpecovnik igorpecovnik added Work in progress Unfinished / work in progress 05 Milestone: Second quarter release labels Mar 26, 2025
@EvilOlaf
Copy link
Member

IMHO leaving both boards combined (it works nicely this way) I'd say simply add the driver so it is always present.
Should just slightly increase image size and not bother on 3E variant. Also should be least effort.

If anyone objects to this way speak now or forever hold your peace ;)

@Kwiboo
Copy link
Contributor

Kwiboo commented Mar 28, 2025

For mainline Linux I split the boards into separate device trees because they are different boards with different hardware components. For mainline U-Boot I added the automatic detection and setting fdtfile primarily to help distros not having to create different u-boot packages or images for the 3E/3W.

My recommendation is to keep support for both 3E/3W variants in a single image/target.

The radxa-zero3.csc-file can probably also be simplified with use of BOOT_SCENARIO="binman" and BOOTBRANCH="tag:v2025.01" etc at top along with a post_family_config_branch_vendor__radxa-zero3_use_vendor_uboot() instead of a duplicated override for current and edge.

@kelvie
Copy link
Author

kelvie commented Mar 28, 2025

Thank you for the background.

The radxa-zero3.csc-file can probably also be simplified with use of BOOT_SCENARIO="binman" and BOOTBRANCH="tag:v2025.01" etc at top along with a post_family_config_branch_vendor__radxa-zero3_use_vendor_uboot() instead of a duplicated override for current and edge.

I can make these changes and test these over the weekend (North American time), or tonight as my free time permits.

@kelvie
Copy link
Author

kelvie commented Mar 31, 2025

I just realized I don't have another board to test, so this will have to wait until next week, or whenever aliexpress delivers my new radxa zero

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
05 Milestone: Second quarter release Framework Framework components Hardware Hardware related like kernel, U-Boot, ... Needs review Seeking for review size/small PR with less then 50 lines Work in progress Unfinished / work in progress
Development

Successfully merging this pull request may close these issues.

None yet

5 participants