Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 3d21dabd055ca064880e775892a10c5e69fdf5e9 Mon Sep 17 00:00:00 2001
|
|
From: Dom Cobley <popcornmix@gmail.com>
|
|
Date: Tue, 13 Aug 2024 17:18:51 +0100
|
|
Subject: [PATCH 1227/1350] drm/vc4: Also power down the PLL core when
|
|
resetting PHY
|
|
|
|
The current reset code doesn't actually stop the hdmi output.
|
|
That makes it difficult for displays to handle a mode set.
|
|
|
|
Powering down the PLL does actually remove the hdmi signal
|
|
and makes mode sets more reliable
|
|
|
|
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_hdmi_phy.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hdmi_phy.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hdmi_phy.c
|
|
@@ -137,6 +137,7 @@
|
|
#define VC6_HDMI_TX_PHY_PLL_REFCLK_REFCLK_SEL_CMOS BIT(13)
|
|
#define VC6_HDMI_TX_PHY_PLL_REFCLK_REFFRQ_MASK VC4_MASK(9, 0)
|
|
|
|
+#define VC6_HDMI_TX_PHY_PLL_POST_KDIV_BYPASS_EN BIT(4)
|
|
#define VC6_HDMI_TX_PHY_PLL_POST_KDIV_CLK0_SEL_MASK VC4_MASK(3, 2)
|
|
#define VC6_HDMI_TX_PHY_PLL_POST_KDIV_KDIV_MASK VC4_MASK(1, 0)
|
|
|
|
@@ -947,6 +948,7 @@ static void vc6_hdmi_reset_phy(struct vc
|
|
|
|
HDMI_WRITE(HDMI_TX_PHY_RESET_CTL, 0);
|
|
HDMI_WRITE(HDMI_TX_PHY_POWERUP_CTL, 0);
|
|
+ HDMI_WRITE(HDMI_TX_PHY_PLL_POST_KDIV, VC6_HDMI_TX_PHY_PLL_POST_KDIV_BYPASS_EN);
|
|
}
|
|
|
|
void vc6_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi,
|