Skip to content

Commit

Permalink
drm/i915: Force RC6 restore after system resume and reset
Browse files Browse the repository at this point in the history
In order for the RC6 autoenable worker to take any action, RC6 first
must be disabled. Upon resume or reset, the sw state may be stale and so
we require a forced restore.

Fixes: b7137e0 ("drm/i915: Defer enabling rc6 til after we submit...")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@intel.com>
Cc: Sagar Arun Kamble <sagar.a.kamble@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160824092701.19178-1-chris@chris-wilson.co.uk
Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
  • Loading branch information
Chris Wilson committed Aug 24, 2016
1 parent 79cf219 commit abc80ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/gpu/drm/i915/i915_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1560,6 +1560,7 @@ static int i915_drm_resume(struct drm_device *dev)
int ret;

disable_rpm_wakeref_asserts(dev_priv);
intel_sanitize_gt_powersave(dev_priv);

ret = i915_ggtt_enable_hw(dev_priv);
if (ret)
Expand Down Expand Up @@ -1809,6 +1810,7 @@ int i915_reset(struct drm_i915_private *dev_priv)
* previous concerns that it doesn't respond well to some forms
* of re-init after reset.
*/
intel_sanitize_gt_powersave(dev_priv);
intel_autoenable_gt_powersave(dev_priv);

return 0;
Expand Down

0 comments on commit abc80ab

Please sign in to comment.