All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915:: Disable FBC on SandyBridge
@ 2011-11-08 23:17 Chris Wilson
  2012-01-17 10:57 ` Daniel Vetter
  2012-01-26 18:01 ` Keith Packard
  0 siblings, 2 replies; 8+ messages in thread
From: Chris Wilson @ 2011-11-08 23:17 UTC (permalink / raw)
  To: intel-gfx

Enabling FBC is causing the BLT ring to run between 10-100x slower than
normal and frequently lockup. The interim solution is disable FBC once
more until we know why.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/intel_display.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 9fa342e..f972a09 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -1864,7 +1864,7 @@ static void intel_update_fbc(struct drm_device *dev)
 	if (enable_fbc < 0) {
 		DRM_DEBUG_KMS("fbc set to per-chip default\n");
 		enable_fbc = 1;
-		if (INTEL_INFO(dev)->gen <= 5)
+		if (INTEL_INFO(dev)->gen <= 6)
 			enable_fbc = 0;
 	}
 	if (!enable_fbc) {
-- 
1.7.7.2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-01-26 18:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-08 23:17 [PATCH] drm/i915:: Disable FBC on SandyBridge Chris Wilson
2012-01-17 10:57 ` Daniel Vetter
2012-01-17 11:16   ` Chris Wilson
2012-01-17 15:12     ` Daniel Vetter
2012-01-26 14:31       ` Daniel Vetter
2012-01-26 17:58         ` Keith Packard
2012-01-17 13:21   ` Eugeni Dodonov
2012-01-26 18:01 ` Keith Packard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.