Skip to content

Commit 462f701

Browse files
Konrad Dybciorobclark
authored andcommitted
drm/msm/dsi: Fix DSI and DSI PHY regulator config from SDM660
VDDA is not present and the specified load value is wrong. Fix it. Signed-off-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Dmitry Baryshkov <[email protected]> Signed-off-by: Dmitry Baryshkov <[email protected]> Signed-off-by: Rob Clark <[email protected]>
1 parent 2fd653b commit 462f701

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

drivers/gpu/drm/msm/dsi/dsi_cfg.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ static const struct msm_dsi_config sdm660_dsi_cfg = {
150150
.reg_cfg = {
151151
.num = 2,
152152
.regs = {
153-
{"vdd", 73400, 32 }, /* 0.9 V */
154153
{"vdda", 12560, 4 }, /* 1.2 V */
155154
},
156155
},

drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ const struct msm_dsi_phy_cfg dsi_phy_14nm_660_cfgs = {
10501050
.reg_cfg = {
10511051
.num = 1,
10521052
.regs = {
1053-
{"vcca", 17000, 32},
1053+
{"vcca", 73400, 32},
10541054
},
10551055
},
10561056
.ops = {

0 commit comments

Comments
 (0)