Skip to content

Commit eee1893

Browse files
icklejnikula
authored andcommitted
drm/i915/gtt: Downgrade gen7 (ivb, byt, hsw) back to aliasing-ppgtt
Full-ppgtt on gen7 is proving to be highly unstable and not robust. Closes: https://gitlab.freedesktop.org/drm/intel/issues/694 Fixes: 3cd6e88 ("drm/i915/gen7: Re-enable full-ppgtt for ivb & hsw") Signed-off-by: Chris Wilson <[email protected]> Cc: Joonas Lahtinen <[email protected]> Cc: Rodrigo Vivi <[email protected]> Cc: Jani Nikula <[email protected]> Cc: Dave Airlie <[email protected]> Acked-by: Rodrigo Vivi <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] (cherry picked from commit 4fbe112) Signed-off-by: Jani Nikula <[email protected]>
1 parent b5dacc8 commit eee1893

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/i915/i915_pci.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ static const struct intel_device_info snb_m_gt2_info = {
437437
.has_rc6 = 1, \
438438
.has_rc6p = 1, \
439439
.has_rps = true, \
440-
.ppgtt_type = INTEL_PPGTT_FULL, \
440+
.ppgtt_type = INTEL_PPGTT_ALIASING, \
441441
.ppgtt_size = 31, \
442442
IVB_PIPE_OFFSETS, \
443443
IVB_CURSOR_OFFSETS, \
@@ -494,7 +494,7 @@ static const struct intel_device_info vlv_info = {
494494
.has_rps = true,
495495
.display.has_gmch = 1,
496496
.display.has_hotplug = 1,
497-
.ppgtt_type = INTEL_PPGTT_FULL,
497+
.ppgtt_type = INTEL_PPGTT_ALIASING,
498498
.ppgtt_size = 31,
499499
.has_snoop = true,
500500
.has_coherent_ggtt = false,

0 commit comments

Comments
 (0)