Don't use hardware acceleration on Sandybridge rev 07 hardware or earlier.

This is known to lock up the GPU even with the workaround in place.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=31773
Signed-off-by: Matthias Hopf <mhopf@suse.de>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Matthias Hopf 2010-11-19 04:29:57 +01:00 committed by Chris Wilson
parent 8abade8a21
commit c2fac6ca10
1 changed files with 11 additions and 0 deletions

View File

@ -496,6 +496,17 @@ static Bool can_accelerate_blt(struct intel_screen_private *intel)
return FALSE;
}
if (INTEL_INFO(intel)->gen == 60) {
struct pci_device *const device = intel->PciInfo;
/* Sandybridge rev07 locks up easily, even with the
* BLT ring workaround in place.
* Thus use shadowfb by default.
*/
if (device->revision < 8)
return FALSE;
}
return TRUE;
}