Skip to content

Commit c7c4122

Browse files
Abhinav Kumarlumag
authored andcommitted
drm/msm/dp: enable widebus on all relevant chipsets
Hardware document indicates that widebus is recommended on DP on all MDSS chipsets starting version 5.x.x and above. Follow the guideline and mark widebus support on all relevant chipsets for DP. Fixes: 766f705 ("drm/msm/dp: Remove now unused connector_type from desc") Fixes: 1b2d98b ("drm/msm/dp: Add DisplayPort controller for SM8650") Signed-off-by: Abhinav Kumar <[email protected]> Reviewed-by: Dmitry Baryshkov <[email protected]> Fixes: 757a2f3 ("drm/msm/dp: enable widebus feature for display port") Fixes: 1b2d98b ("drm/msm/dp: Add DisplayPort controller for SM8650") Patchwork: https://patchwork.freedesktop.org/patch/606556/ Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Dmitry Baryshkov <[email protected]>
1 parent caedbf1 commit c7c4122

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

drivers/gpu/drm/msm/dp/dp_display.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ struct msm_dp_desc {
119119
};
120120

121121
static const struct msm_dp_desc sc7180_dp_descs[] = {
122-
{ .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0 },
122+
{ .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .wide_bus_supported = true },
123123
{}
124124
};
125125

@@ -130,9 +130,9 @@ static const struct msm_dp_desc sc7280_dp_descs[] = {
130130
};
131131

132132
static const struct msm_dp_desc sc8180x_dp_descs[] = {
133-
{ .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0 },
134-
{ .io_start = 0x0ae98000, .id = MSM_DP_CONTROLLER_1 },
135-
{ .io_start = 0x0ae9a000, .id = MSM_DP_CONTROLLER_2 },
133+
{ .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .wide_bus_supported = true },
134+
{ .io_start = 0x0ae98000, .id = MSM_DP_CONTROLLER_1, .wide_bus_supported = true },
135+
{ .io_start = 0x0ae9a000, .id = MSM_DP_CONTROLLER_2, .wide_bus_supported = true },
136136
{}
137137
};
138138

@@ -149,7 +149,7 @@ static const struct msm_dp_desc sc8280xp_dp_descs[] = {
149149
};
150150

151151
static const struct msm_dp_desc sm8650_dp_descs[] = {
152-
{ .io_start = 0x0af54000, .id = MSM_DP_CONTROLLER_0 },
152+
{ .io_start = 0x0af54000, .id = MSM_DP_CONTROLLER_0, .wide_bus_supported = true },
153153
{}
154154
};
155155

0 commit comments

Comments
 (0)