Skip to content

Commit ca844ea

Browse files
animesh-mannamattrope
authored andcommitted
drm/i915/bigjoiner: Mode validation with uncompressed pipe joiner
No need for checking dsc flag for uncompressed pipe joiner mode validation. Cc: Manasi Navare <[email protected]> Signed-off-by: Animesh Manna <[email protected]> Signed-off-by: Clinton Taylor <[email protected]> Signed-off-by: Matt Roper <[email protected]> Reviewed-by: Anusha Srivatsa <[email protected]> Reviewed-by: Manasi Navare <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 03bca4a commit ca844ea

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

drivers/gpu/drm/i915/display/intel_dp.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -818,8 +818,11 @@ intel_dp_mode_valid(struct drm_connector *connector,
818818
dsc = dsc_max_output_bpp && dsc_slice_count;
819819
}
820820

821-
/* big joiner configuration needs DSC */
822-
if (bigjoiner && !dsc)
821+
/*
822+
* Big joiner configuration needs DSC for TGL which is not true for
823+
* XE_LPD where uncompressed joiner is supported.
824+
*/
825+
if (DISPLAY_VER(dev_priv) < 13 && bigjoiner && !dsc)
823826
return MODE_CLOCK_HIGH;
824827

825828
if (mode_rate > max_rate && !dsc)

0 commit comments

Comments
 (0)