From 291ff6bcf1678192c1cc59728e1f69797962372a Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 22 Jan 2016 19:01:02 +0000 Subject: [PATCH] igt/gem_ringfill: Disable MI_STORE_DATA_IMM on BSD/gen6 It's broken, avoid at all costs. Signed-off-by: Chris Wilson --- tests/gem_ringfill.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/gem_ringfill.c b/tests/gem_ringfill.c index 345e9920..d147c024 100644 --- a/tests/gem_ringfill.c +++ b/tests/gem_ringfill.c @@ -96,6 +96,9 @@ static void run_test(int fd, unsigned ring, unsigned flags) uint32_t *batch, *b; int i; + igt_skip_on_f(gen == 6 && (ring & ~(3<<13)) == I915_EXEC_BSD, + "MI_STORE_DATA broken on gen6 bsd\n"); + memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = (uintptr_t)obj; execbuf.buffer_count = 2;