Skip to content

Commit

Permalink
drm/i915: Initialize DRRS delayed work
Browse files Browse the repository at this point in the history
Add DRRS work function to trigger a switch to low refresh rate,
when no activity is detected on screen till 1 sec duration.

v2: [By Ram]: drrs.dp also protected with drrs.mutex and worker function
is renamed to intel_edp_drrs_downclock_work [Chris]

Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Vandana Kannan authored and danvet committed Jan 27, 2015
1 parent b2c5c18 commit 4e9ac94
Showing 1 changed file with 30 additions and 8 deletions.
38 changes: 30 additions & 8 deletions drivers/gpu/drm/i915/intel_dp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4817,20 +4817,40 @@ static void intel_dp_set_drrs_state(struct drm_device *dev, int refresh_rate)
I915_WRITE(reg, val);
}

dev_priv->drrs.refresh_rate_type = index;

DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
}

static void intel_edp_drrs_downclock_work(struct work_struct *work)
{
struct drm_i915_private *dev_priv =
container_of(work, typeof(*dev_priv), drrs.work.work);
struct intel_dp *intel_dp;

mutex_lock(&dev_priv->drrs.mutex);

intel_dp = dev_priv->drrs.dp;

if (!intel_dp)
goto unlock;

/*
* mutex taken to ensure that there is no race between differnt
* drrs calls trying to update refresh rate. This scenario may occur
* in future when idleness detection based DRRS in kernel and
* possible calls from user space to set differnt RR are made.
* The delayed work can race with an invalidate hence we need to
* recheck.
*/

mutex_lock(&dev_priv->drrs.mutex);
if (dev_priv->drrs.busy_frontbuffer_bits)
goto unlock;

dev_priv->drrs.refresh_rate_type = index;
if (dev_priv->drrs.refresh_rate_type != DRRS_LOW_RR)
intel_dp_set_drrs_state(dev_priv->dev,
intel_dp->attached_connector->panel.
downclock_mode->vrefresh);

mutex_unlock(&dev_priv->drrs.mutex);
unlock:

DRM_DEBUG_KMS("eDP Refresh Rate set to : %dHz\n", refresh_rate);
mutex_unlock(&dev_priv->drrs.mutex);
}

static struct drm_display_mode *
Expand Down Expand Up @@ -4860,6 +4880,8 @@ intel_dp_drrs_init(struct intel_connector *intel_connector,
return NULL;
}

INIT_DELAYED_WORK(&dev_priv->drrs.work, intel_edp_drrs_downclock_work);

mutex_init(&dev_priv->drrs.mutex);

dev_priv->drrs.type = dev_priv->vbt.drrs_type;
Expand Down

0 comments on commit 4e9ac94

Please sign in to comment.