Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d109283a authored by Konrad Dybcio's avatar Konrad Dybcio Committed by Greg Kroah-Hartman
Browse files

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



[ Upstream commit 33a7808ce1aea6e2edc1af25db25928137940c02 ]

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: dcefc117 ("drm/msm/dsi: Add support for msm8x94")
Signed-off-by: default avatarKonrad Dybcio <konrad.dybcio@somainline.org>
Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 68e1f776
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -147,7 +147,7 @@ const struct msm_dsi_phy_cfg dsi_phy_20nm_cfgs = {
		.disable = dsi_20nm_phy_disable,
		.disable = dsi_20nm_phy_disable,
		.init = msm_dsi_phy_init_common,
		.init = msm_dsi_phy_init_common,
	},
	},
	.io_start = { 0xfd998300, 0xfd9a0300 },
	.io_start = { 0xfd998500, 0xfd9a0500 },
	.num_dsi_phy = 2,
	.num_dsi_phy = 2,
};
};