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:
parent
8abade8a21
commit
c2fac6ca10
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue