Skip to content

Commit 4a36e46

Browse files
vsyrjalarodrigovivi
authored andcommitted
drm/i915: Disable live M/N updates when using bigjoiner
All joined pipes share the same transcoder/timing generator. Currently we just do the commits per-pipe, which doesn't really work if we need to change the timings at the same time. For now just disable live M/N updates when bigjoiner is needed. Cc: [email protected] Tested-by: Vidya Srinivas <[email protected]> Reviewed-by: Arun R Murthy <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Signed-off-by: Ville Syrjälä <[email protected]> (cherry picked from commit ef79820) Signed-off-by: Rodrigo Vivi <[email protected]>
1 parent 0653d50 commit 4a36e46

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2725,7 +2725,11 @@ intel_dp_drrs_compute_config(struct intel_connector *connector,
27252725
intel_panel_downclock_mode(connector, &pipe_config->hw.adjusted_mode);
27262726
int pixel_clock;
27272727

2728-
if (has_seamless_m_n(connector))
2728+
/*
2729+
* FIXME all joined pipes share the same transcoder.
2730+
* Need to account for that when updating M/N live.
2731+
*/
2732+
if (has_seamless_m_n(connector) && !pipe_config->bigjoiner_pipes)
27292733
pipe_config->update_m_n = true;
27302734

27312735
if (!can_enable_drrs(connector, pipe_config, downclock_mode)) {

0 commit comments

Comments
 (0)