[Bug 75502] [SNB, IVB] Page flips hang indefinitely, apparently waiting for mmio writes that never happen
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Tue Mar 4 05:07:32 PST 2014
https://bugs.freedesktop.org/show_bug.cgi?id=75502
--- Comment #18 from Chris Wilson <chris at chris-wilson.co.uk> ---
Does
diff --git a/drivers/gpu/drm/i915/intel_display.c
b/drivers/gpu/drm/i915/intel_display.c
index 25c486d5fb6a..97827bf9396a 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -2359,6 +2359,11 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
struct drm_framebuffer *old_fb;
int ret;
+ if (intel_crtc_has_pending_flip(crtc)) {
+ DRM_ERROR("pipe is still busy with an old pageflip\n");
+ return -EBUSY;
+ }
+
/* no fb bound */
if (!fb) {
DRM_ERROR("No FB bound\n");
register anything after the freeze?
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/intel-gfx-bugs/attachments/20140304/9247a607/attachment.html>
More information about the intel-gfx-bugs
mailing list