Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10d8d366 authored by Daniel Vetter's avatar Daniel Vetter
Browse files

drm/i915: Unifiy GT powersave suspend logic



Jesse's patch to only quiescent our rps work and Imre's fix to address
a race with runtime pm and the forcewake reference held by the used
diverging means to address the same bug: Jesse's patch uses
flush_delayed_work while (since we want to make sure rps is set up)
while Imre's used a cancel+manuel refcount adjustment.

Unify them again by simply reusing intel_suspend_gt_powersave in
intel_disable_gt_powersave.

Cc: Imre Deak <imre.deak@intel.com>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Reviewed-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 156c7ca0
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -4706,10 +4706,8 @@ void intel_disable_gt_powersave(struct drm_device *dev)
		ironlake_disable_drps(dev);
		ironlake_disable_drps(dev);
		ironlake_disable_rc6(dev);
		ironlake_disable_rc6(dev);
	} else if (IS_GEN6(dev) || IS_GEN7(dev) || IS_BROADWELL(dev)) {
	} else if (IS_GEN6(dev) || IS_GEN7(dev) || IS_BROADWELL(dev)) {
		if (cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work))
		intel_suspend_gt_powersave(dev);
			intel_runtime_pm_put(dev_priv);


		cancel_work_sync(&dev_priv->rps.work);
		mutex_lock(&dev_priv->rps.hw_lock);
		mutex_lock(&dev_priv->rps.hw_lock);
		if (IS_VALLEYVIEW(dev))
		if (IS_VALLEYVIEW(dev))
			valleyview_disable_rps(dev);
			valleyview_disable_rps(dev);