Skip to content

Commit 9cdef4f

Browse files
Wayne Linalexdeucher
authored andcommitted
drm/amd/display: pbn_div need be updated for hotplug event
link_rate sometime will be changed when DP MST connector hotplug, so pbn_div also need be updated; otherwise, it will mismatch with link_rate, causes no output in external monitor. This is a backport to 6.7 and older. Cc: stable@vger.kernel.org Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Reviewed-by: Jerry Zuo <jerry.zuo@amd.com> Acked-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com> Signed-off-by: Wade Wang <wade.wang@hp.com> Signed-off-by: Wayne Lin <wayne.lin@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent bc2fdea commit 9cdef4f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6914,8 +6914,7 @@ static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder,
69146914
if (IS_ERR(mst_state))
69156915
return PTR_ERR(mst_state);
69166916

6917-
if (!mst_state->pbn_div)
6918-
mst_state->pbn_div = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link);
6917+
mst_state->pbn_div = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link);
69196918

69206919
if (!state->duplicated) {
69216920
int max_bpc = conn_state->max_requested_bpc;

0 commit comments

Comments
 (0)