Skip to content

Commit

Permalink
drm/i915: disable rc6 on haswell for now
Browse files Browse the repository at this point in the history
This needs proper enablement to avoid machine hangs, so let's just avoid
it for now.

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@gmail.com>
Signed-off-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Eugeni Dodonov authored and Daniel Vetter committed Apr 17, 2012
1 parent 0cd83aa commit 83de97c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -8585,6 +8585,10 @@ int intel_enable_rc6(const struct drm_device *dev)
if (INTEL_INFO(dev)->gen == 5)
return 0;

/* Sorry Haswell, no RC6 for you for now. */
if (IS_HASWELL(dev))
return 0;

/*
* Disable rc6 on Sandybridge
*/
Expand Down

0 comments on commit 83de97c

Please sign in to comment.