]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/i915/vrr: Add vrr.vsync_{start, end} in vrr_params_changed
authorAnkit Nautiyal <ankit.k.nautiyal@intel.com>
Fri, 4 Apr 2025 08:05:40 +0000 (13:35 +0530)
committerJani Nikula <jani.nikula@intel.com>
Wed, 9 Apr 2025 07:50:48 +0000 (10:50 +0300)
Add the missing vrr parameters in vrr_params_changed() helper.
This ensures that changes in vrr.vsync_{start,end} trigger a call to
appropriate helpers to update the VRR registers.

Fixes: e8cd188e91bb ("drm/i915/display: Compute vrr_vsync params")
Cc: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
Cc: Arun R Murthy <arun.r.murthy@intel.com>
Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: <stable@vger.kernel.org> # v6.10+
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://lore.kernel.org/r/20250404080540.2059511-1-ankit.k.nautiyal@intel.com
(cherry picked from commit ced5e64f011cb5cd541988442997ceaa7385827e)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_display.c

index 3afb85fe8536dfffd55dbaa07f6727112cc876b7..3b509c70fb581d6aa3192f09e8b700b2cb8fb2ce 100644 (file)
@@ -968,7 +968,9 @@ static bool vrr_params_changed(const struct intel_crtc_state *old_crtc_state,
                old_crtc_state->vrr.vmin != new_crtc_state->vrr.vmin ||
                old_crtc_state->vrr.vmax != new_crtc_state->vrr.vmax ||
                old_crtc_state->vrr.guardband != new_crtc_state->vrr.guardband ||
-               old_crtc_state->vrr.pipeline_full != new_crtc_state->vrr.pipeline_full;
+               old_crtc_state->vrr.pipeline_full != new_crtc_state->vrr.pipeline_full ||
+               old_crtc_state->vrr.vsync_start != new_crtc_state->vrr.vsync_start ||
+               old_crtc_state->vrr.vsync_end != new_crtc_state->vrr.vsync_end;
 }
 
 static bool cmrr_params_changed(const struct intel_crtc_state *old_crtc_state,