mirror of
https://codeberg.org/canoeboot/cbmk.git
synced 2025-04-19 23:05:07 +01:00

Set default U-Boot revision to v2024.10 and rebase patches on top of that. The video subsystem now has switched to using the 'cyclic' mechanism, so the code around one of the video patches changed a bit. x86 boards were already switched to v2024.10. Update U-Boot for the remaining ARM64 boards as usual: - Turn old configs into defconfigs (./update trees -s u-boot) - Save the diff from old upstream defconfig (diffconfig $theirs $ours) - Update U-Boot revision, rebase patches, and clean old trees - Prepare new U-Boot tree (./update trees -f u-boot) - Review the diffconfigs to see if any options were renamed upstream - Copy over the new upstream defconfigs and apply earlier diff - Turn new defconfigs into configs (./update trees -l u-boot) Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 9685041c19bcc61ca847a59e93c716d23df51898 Mon Sep 17 00:00:00 2001
|
|
From: Alper Nebi Yasak <alpernebiyasak@gmail.com>
|
|
Date: Wed, 10 Jul 2024 14:32:19 +0300
|
|
Subject: [PATCH] HACK: rk3399: gru: Remove assigned clock dt properties for
|
|
EDP node
|
|
|
|
Having the PCLK_EDP clock in the assigned-clocks property of the `edp`
|
|
node means that U-Boot tries to set its rate automatically. This clock
|
|
isn't implemented for the RK3399 clock driver, so it fails and prevents
|
|
display from being initialized.
|
|
|
|
The display happens to work fine without it, remove the property until
|
|
the clock driver can handle the clock.
|
|
|
|
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
|
|
---
|
|
arch/arm/dts/rk3399-gru-u-boot.dtsi | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/arch/arm/dts/rk3399-gru-u-boot.dtsi b/arch/arm/dts/rk3399-gru-u-boot.dtsi
|
|
index 6bdc892bd913..f4457c1b9b48 100644
|
|
--- a/arch/arm/dts/rk3399-gru-u-boot.dtsi
|
|
+++ b/arch/arm/dts/rk3399-gru-u-boot.dtsi
|
|
@@ -27,6 +27,9 @@ &cros_ec {
|
|
|
|
&edp {
|
|
rockchip,panel = <&edp_panel>;
|
|
+
|
|
+ /delete-property/ assigned-clocks;
|
|
+ /delete-property/ assigned-clock-rates;
|
|
};
|
|
|
|
&pp1800_audio {
|
|
--
|
|
2.45.2
|
|
|