summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Volkin <bradley.d.volkin@intel.com>2014-11-04 14:00:43 -0800
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-11-05 13:35:29 +0100
commite34240d4c18bfef1895fad6e8ce9cc80c844ac14 (patch)
treedd50efb2b9206d4967a20ecd493e416bf36e16f8
parenta973aabed04bb00686b9fd4ce4c1d83ad9b8b0e7 (diff)
tests/drv_hangman: skip a few asserts when using the cmd parser
This test has a few checks that batch buffer addresses in the error state match the expected address for the userspace supplied batch. But the batch buffer copy piece of the command parser means that the logged addresses are actually _supposed_ to be different. So skip just those checks. Signed-off-by: Brad Volkin <bradley.d.volkin@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--tests/drv_hangman.c43
1 files changed, 37 insertions, 6 deletions
diff --git a/tests/drv_hangman.c b/tests/drv_hangman.c
index 3d6b98b4..8fbc2d3d 100644
--- a/tests/drv_hangman.c
+++ b/tests/drv_hangman.c
@@ -36,6 +36,10 @@
#include "igt_debugfs.h"
#include "ioctl_wrappers.h"
+#ifndef I915_PARAM_CMD_PARSER_VERSION
+#define I915_PARAM_CMD_PARSER_VERSION 28
+#endif
+
static int _read_sysfs(void *dst, int maxlen,
const char* path,
const char *fname)
@@ -262,6 +266,7 @@ static void test_error_state_basic(void)
}
static void check_error_state(const int gen,
+ const bool uses_cmd_parser,
const char *expected_ring_name,
uint64_t expected_offset)
{
@@ -300,7 +305,8 @@ static void check_error_state(const int gen,
char expected_line[32];
igt_assert(strstr(ring_name, expected_ring_name));
- igt_assert(gtt_offset == expected_offset);
+ if (!uses_cmd_parser)
+ igt_assert(gtt_offset == expected_offset);
for (i = 0; i < sizeof(batch) / 4; i++) {
igt_assert(getline(&line, &line_size, file) > 0);
@@ -352,10 +358,12 @@ static void check_error_state(const int gen,
i++;
}
}
- if (gen >= 4)
- igt_assert(expected_addr == expected_offset);
- else
- igt_assert((expected_addr & ~0x1) == expected_offset);
+ if (!uses_cmd_parser) {
+ if (gen >= 4)
+ igt_assert(expected_addr == expected_offset);
+ else
+ igt_assert((expected_addr & ~0x1) == expected_offset);
+ }
ringbuf_ok = true;
continue;
}
@@ -370,22 +378,45 @@ static void check_error_state(const int gen,
close(debug_fd);
}
+static bool uses_cmd_parser(int fd, int gen)
+{
+ int parser_version = 0;
+ drm_i915_getparam_t gp;
+ int rc;
+
+ gp.param = I915_PARAM_CMD_PARSER_VERSION;
+ gp.value = &parser_version;
+ rc = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
+ if (rc || parser_version == 0)
+ return false;
+
+ if (!gem_uses_aliasing_ppgtt(fd))
+ return false;
+
+ if (gen != 7)
+ return false;
+
+ return true;
+}
+
static void test_error_state_capture(unsigned ring_id,
const char *ring_name)
{
int fd, gen;
uint64_t offset;
+ bool cmd_parser;
check_other_clients();
clear_error_state();
fd = drm_open_any();
gen = intel_gen(intel_get_drm_devid(fd));
+ cmd_parser = uses_cmd_parser(fd, gen);
offset = submit_batch(fd, ring_id, true);
close(fd);
- check_error_state(gen, ring_name, offset);
+ check_error_state(gen, cmd_parser, ring_name, offset);
}
static const struct target_ring {