Skip to content

Commit 67b0b4e

Browse files
sdragicrodrigovivi
authored andcommitted
drm/i915: re-disable RC6p on Sandy Bridge
RC6p on Sandy Bridge got re-enabled over time, causing visual glitches and GPU hangs. Disabled originally in commit 1c8ecf8 ("drm/i915: do not enable RC6p on Sandy Bridge"). Signed-off-by: Sasa Dragic <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Fixes: fb6db0f ("drm/i915: Remove unsafe i915.enable_rc6") Fixes: 13c5a57 ("drm/i915/gt: Select the deepest available parking mode for rc6") Cc: [email protected] Reviewed-by: Rodrigo Vivi <[email protected]> (cherry picked from commit 0c8a6e9) Signed-off-by: Rodrigo Vivi <[email protected]>
1 parent 8565c50 commit 67b0b4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/gpu/drm/i915/i915_pci.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ static const struct intel_device_info ilk_m_info = {
423423
.has_coherent_ggtt = true, \
424424
.has_llc = 1, \
425425
.has_rc6 = 1, \
426-
.has_rc6p = 1, \
426+
/* snb does support rc6p, but enabling it causes various issues */ \
427+
.has_rc6p = 0, \
427428
.has_rps = true, \
428429
.dma_mask_size = 40, \
429430
.__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \

0 commit comments

Comments
 (0)