diff mbox series

drm/msm/dsi: Correct io_start for MSM8994 (20nm PHY)

Message ID 20210118161600.104877-1-konrad.dybcio@somainline.org (mailing list archive)
State Accepted
Commit 33a7808ce1aea6e2edc1af25db25928137940c02
Headers show
Series drm/msm/dsi: Correct io_start for MSM8994 (20nm PHY) | expand

Commit Message

Konrad Dybcio Jan. 18, 2021, 4:15 p.m. UTC
The previous registers were *almost* correct, but instead of
PHYs, they were pointing at DSI PLLs, resulting in the PHY id
autodetection failing miserably.

Fixes: dcefc117cc19 ("drm/msm/dsi: Add support for msm8x94")
Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
---
 drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

patchwork-bot+linux-arm-msm@kernel.org March 1, 2021, 7:59 p.m. UTC | #1
Hello:

This patch was applied to qcom/linux.git (refs/heads/for-next):

On Mon, 18 Jan 2021 17:15:58 +0100 you wrote:
> The previous registers were *almost* correct, but instead of
> PHYs, they were pointing at DSI PLLs, resulting in the PHY id
> autodetection failing miserably.
> 
> Fixes: dcefc117cc19 ("drm/msm/dsi: Add support for msm8x94")
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> 
> [...]

Here is the summary with links:
  - drm/msm/dsi: Correct io_start for MSM8994 (20nm PHY)
    https://git.kernel.org/qcom/c/33a7808ce1ae

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c
index 1afb7c579dbb..eca86bf448f7 100644
--- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c
+++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c
@@ -139,7 +139,7 @@  const struct msm_dsi_phy_cfg dsi_phy_20nm_cfgs = {
 		.disable = dsi_20nm_phy_disable,
 		.init = msm_dsi_phy_init_common,
 	},
-	.io_start = { 0xfd998300, 0xfd9a0300 },
+	.io_start = { 0xfd998500, 0xfd9a0500 },
 	.num_dsi_phy = 2,
 };