[Bug 55500] [sna gen4 w/a] corrupt rendering (including wrong rendering of characters and flickering on redraw)

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Sun Feb 2 05:29:14 PST 2014


https://bugs.freedesktop.org/show_bug.cgi?id=55500

--- Comment #177 from Edward Sheldrake <ejsheldrake at gmail.com> ---
Running with all workarounds disabled, this change doesn't fix anything nor
seem to make any difference, but anyway:
Shouldn't the cache flush bits be in dword 0 for gen4 GEN4_PIPE_CONTROL? Maybe
gen5 also?

diff --git a/src/sna/gen4_render.c b/src/sna/gen4_render.c
index 1d164b6..894418b 100644
--- a/src/sna/gen4_render.c
+++ b/src/sna/gen4_render.c
@@ -575,8 +575,10 @@ inline static void
 gen4_emit_pipe_flush(struct sna *sna)
 {
 #if 1
-    OUT_BATCH(GEN4_PIPE_CONTROL | (4 - 2));
-    OUT_BATCH(GEN4_PIPE_CONTROL_WC_FLUSH);
+    OUT_BATCH(GEN4_PIPE_CONTROL |
+          GEN4_PIPE_CONTROL_WC_FLUSH |
+          (4 - 2));
+    OUT_BATCH(0);
     OUT_BATCH(0);
     OUT_BATCH(0);
 #else
@@ -601,8 +603,10 @@ inline static void
 gen4_emit_pipe_invalidate(struct sna *sna)
 {
 #if 0
-    OUT_BATCH(GEN4_PIPE_CONTROL | (4 - 2));
-    OUT_BATCH(GEN4_PIPE_CONTROL_WC_FLUSH | GEN4_PIPE_CONTROL_TC_FLUSH);
+    OUT_BATCH(GEN4_PIPE_CONTROL |
+          GEN4_PIPE_CONTROL_WC_FLUSH | GEN4_PIPE_CONTROL_TC_FLUSH |
+          (4 - 2));
+    OUT_BATCH(0);
     OUT_BATCH(0);
     OUT_BATCH(0);
 #else

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/intel-gfx-bugs/attachments/20140202/ddc5eb5f/attachment.html>


More information about the intel-gfx-bugs mailing list