fix: enable CONFIG_BCM2712_MIP as built-in in arm64 kernel config#1566
Open
appkins wants to merge 2 commits into
Open
fix: enable CONFIG_BCM2712_MIP as built-in in arm64 kernel config#1566appkins wants to merge 2 commits into
appkins wants to merge 2 commits into
Conversation
f336cf2 to
1f47ce5
Compare
- Fixes boot error on Raspberry Pi 5 Signed-off-by: appkins <nbatkins@gmail.com>
ecc937a to
cd63d4f
Compare
Member
|
What is the problem with module? Doesn't it get auto-loaded? |
Author
It's the timing. When booting on rpi 5, Linux attempts to probe via rp1_pci before the module is loaded. This fails due to the missing MIP. It then fails to ever load the RP1 south bridge which means no GPIO and no ethernet. This change fixes the boot process and Talos runs as expected on RPI 5. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
IMPORTANT: This change is required for working ethernet on Raspberry Pi 5.
This pull request updates the configuration for the ARM64 kernel build, specifically changing the build setting for the Broadcom BCM2712 MIP driver from a loadable module to being built directly into the kernel.
Kernel configuration update:
CONFIG_BCM2712_MIPfrom module (m) to built-in (y) inkernel/build/config-arm64, ensuring the BCM2712 MIP driver is always included in the kernel image.