Commit 0ddfd203 authored by Ramalingam C's avatar Ramalingam C Committed by Daniel Vetter

drm/i915: Restarting the Idleness DRRS in drrs_flush

Corrected the documentation on the intel_edp_drrs_flush and
intel_edp_drrs_invalidate.

And accordingly edp_drrs_flush function is modified to restart the idleness
detection after upclocking.

v2: Update kerneldoc

Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> (v1)
Signed-off-by: default avatarRamalingam C <ramalingam.c@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent a80c69fc
...@@ -5456,13 +5456,12 @@ static void intel_edp_drrs_downclock_work(struct work_struct *work) ...@@ -5456,13 +5456,12 @@ static void intel_edp_drrs_downclock_work(struct work_struct *work)
} }
/** /**
* intel_edp_drrs_invalidate - Invalidate DRRS * intel_edp_drrs_invalidate - Disable Idleness DRRS
* @dev: DRM device * @dev: DRM device
* @frontbuffer_bits: frontbuffer plane tracking bits * @frontbuffer_bits: frontbuffer plane tracking bits
* *
* When there is a disturbance on screen (due to cursor movement/time * This function gets called everytime rendering on the given planes start.
* update etc), DRRS needs to be invalidated, i.e. need to switch to * Hence DRRS needs to be Upclocked, i.e. (LOW_RR -> HIGH_RR).
* high RR.
* *
* Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits. * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
*/ */
...@@ -5487,6 +5486,7 @@ void intel_edp_drrs_invalidate(struct drm_device *dev, ...@@ -5487,6 +5486,7 @@ void intel_edp_drrs_invalidate(struct drm_device *dev,
crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc; crtc = dp_to_dig_port(dev_priv->drrs.dp)->base.base.crtc;
pipe = to_intel_crtc(crtc)->pipe; pipe = to_intel_crtc(crtc)->pipe;
/* invalidate means busy screen hence upclock */
if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR) { if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR) {
intel_dp_set_drrs_state(dev_priv->dev, intel_dp_set_drrs_state(dev_priv->dev,
dev_priv->drrs.dp->attached_connector->panel. dev_priv->drrs.dp->attached_connector->panel.
...@@ -5500,13 +5500,14 @@ void intel_edp_drrs_invalidate(struct drm_device *dev, ...@@ -5500,13 +5500,14 @@ void intel_edp_drrs_invalidate(struct drm_device *dev,
} }
/** /**
* intel_edp_drrs_flush - Flush DRRS * intel_edp_drrs_flush - Restart Idleness DRRS
* @dev: DRM device * @dev: DRM device
* @frontbuffer_bits: frontbuffer plane tracking bits * @frontbuffer_bits: frontbuffer plane tracking bits
* *
* When there is no movement on screen, DRRS work can be scheduled. * This function gets called every time rendering on the given planes has
* This DRRS work is responsible for setting relevant registers after a * completed or flip on a crtc is completed. So DRRS should be upclocked
* timeout of 1 second. * (LOW_RR -> HIGH_RR). And also Idleness detection should be started again,
* if no other planes are dirty.
* *
* Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits. * Dirty frontbuffers relevant to DRRS are tracked in busy_frontbuffer_bits.
*/ */
...@@ -5532,8 +5533,17 @@ void intel_edp_drrs_flush(struct drm_device *dev, ...@@ -5532,8 +5533,17 @@ void intel_edp_drrs_flush(struct drm_device *dev,
pipe = to_intel_crtc(crtc)->pipe; pipe = to_intel_crtc(crtc)->pipe;
dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits; dev_priv->drrs.busy_frontbuffer_bits &= ~frontbuffer_bits;
if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR && /* flush means busy screen hence upclock */
!dev_priv->drrs.busy_frontbuffer_bits) if (dev_priv->drrs.refresh_rate_type == DRRS_LOW_RR)
intel_dp_set_drrs_state(dev_priv->dev,
dev_priv->drrs.dp->attached_connector->panel.
fixed_mode->vrefresh);
/*
* flush also means no more activity hence schedule downclock, if all
* other fbs are quiescent too
*/
if (!dev_priv->drrs.busy_frontbuffer_bits)
schedule_delayed_work(&dev_priv->drrs.work, schedule_delayed_work(&dev_priv->drrs.work,
msecs_to_jiffies(1000)); msecs_to_jiffies(1000));
mutex_unlock(&dev_priv->drrs.mutex); mutex_unlock(&dev_priv->drrs.mutex);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment