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: stable@vger.kernel.org Tested-by: Vidya Srinivas <vidya.srinivas@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240404213441.17637-5-ville.syrjala@linux.intel.com Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> (cherry picked from commit ef79820) Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
1 parent 0653d50 commit 4a36e46

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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)