summaryrefslogtreecommitdiff
path: root/tests/i915/gem_exec_parallel.c
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2018-10-18 14:06:42 +0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2018-10-23 10:55:51 +0300
commit741bf7064c467df725c14cc0b3b8b50436f9ee09 (patch)
tree0ad6fb217dca79a8f1175fb289979b574222fefa /tests/i915/gem_exec_parallel.c
parent78619fde4008424c472906041edb1d204e014f7c (diff)
tests: Introduce i915 directory
We can already move all the tests with distinct prefixes: gem_, gen3_ and i915_. pm_ and drv_ tests will follow in batches, so we can do the adjustments in the reporting/filtering layer of the CI system. v2: Fix test-list.txt generation with meson v3: Fix docs build (Petri) Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Petri Latvala <petri.latvala@intel.com> Cc: Martin Peres <martin.peres@linux.intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> Tested-by: Petri Latvala <petri.latvala@intel.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/i915/gem_exec_parallel.c')
-rw-r--r--tests/i915/gem_exec_parallel.c266
1 files changed, 266 insertions, 0 deletions
diff --git a/tests/i915/gem_exec_parallel.c b/tests/i915/gem_exec_parallel.c
new file mode 100644
index 00000000..a6fa698e
--- /dev/null
+++ b/tests/i915/gem_exec_parallel.c
@@ -0,0 +1,266 @@
+/*
+ * Copyright © 2009 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ */
+
+/** @file gem_exec_parallel.c
+ *
+ * Exercise using many, many writers into a buffer.
+ */
+
+#include <pthread.h>
+
+#include "igt.h"
+#include "igt_gt.h"
+
+#define LOCAL_I915_EXEC_NO_RELOC (1<<11)
+#define LOCAL_I915_EXEC_HANDLE_LUT (1<<12)
+
+#define LOCAL_I915_EXEC_BSD_SHIFT (13)
+#define LOCAL_I915_EXEC_BSD_MASK (3 << LOCAL_I915_EXEC_BSD_SHIFT)
+
+#define ENGINE_MASK (I915_EXEC_RING_MASK | LOCAL_I915_EXEC_BSD_MASK)
+
+#define VERIFY 0
+
+static void check_bo(int fd, uint32_t handle, int pass)
+{
+ uint32_t *map;
+ int i;
+
+ igt_debug("Verifying result (pass=%d, handle=%d)\n", pass, handle);
+ map = gem_mmap__cpu(fd, handle, 0, 4096, PROT_READ);
+ gem_set_domain(fd, handle, I915_GEM_DOMAIN_CPU, 0);
+ for (i = 0; i < 1024; i++)
+ igt_assert_eq(map[i], i);
+ munmap(map, 4096);
+}
+
+#define CONTEXTS 0x1
+#define FDS 0x2
+
+struct thread {
+ pthread_t thread;
+ pthread_mutex_t *mutex;
+ pthread_cond_t *cond;
+ unsigned flags;
+ uint32_t *scratch;
+ unsigned id;
+ unsigned engine;
+ int fd, gen, *go;
+};
+
+static void *thread(void *data)
+{
+ struct thread *t = data;
+ struct drm_i915_gem_exec_object2 obj[2];
+ struct drm_i915_gem_relocation_entry reloc;
+ struct drm_i915_gem_execbuffer2 execbuf;
+ uint32_t batch[16];
+ int fd, i;
+
+ pthread_mutex_lock(t->mutex);
+ while (*t->go == 0)
+ pthread_cond_wait(t->cond, t->mutex);
+ pthread_mutex_unlock(t->mutex);
+
+ if (t->flags & FDS)
+ fd = drm_open_driver(DRIVER_INTEL);
+ else
+ fd = t->fd;
+
+ i = 0;
+ batch[i] = MI_STORE_DWORD_IMM | (t->gen < 6 ? 1 << 22 : 0);
+ if (t->gen >= 8) {
+ batch[++i] = 4*t->id;
+ batch[++i] = 0;
+ } else if (t->gen >= 4) {
+ batch[++i] = 0;
+ batch[++i] = 4*t->id;
+ } else {
+ batch[i]--;
+ batch[++i] = 4*t->id;
+ }
+ batch[++i] = t->id;
+ batch[++i] = MI_BATCH_BUFFER_END;
+
+ memset(obj, 0, sizeof(obj));
+ obj[0].flags = EXEC_OBJECT_WRITE;
+
+ memset(&reloc, 0, sizeof(reloc));
+ reloc.offset = sizeof(uint32_t);
+ if (t->gen < 8 && t->gen >= 4)
+ reloc.offset += sizeof(uint32_t);
+ reloc.read_domains = I915_GEM_DOMAIN_INSTRUCTION;
+ reloc.write_domain = I915_GEM_DOMAIN_INSTRUCTION;
+ reloc.delta = 4*t->id;
+ obj[1].handle = gem_create(fd, 4096);
+ obj[1].relocs_ptr = to_user_pointer(&reloc);
+ obj[1].relocation_count = 1;
+ gem_write(fd, obj[1].handle, 0, batch, sizeof(batch));
+
+ memset(&execbuf, 0, sizeof(execbuf));
+ execbuf.buffers_ptr = to_user_pointer(obj);
+ execbuf.buffer_count = 2;
+ execbuf.flags = t->engine;
+ execbuf.flags |= LOCAL_I915_EXEC_HANDLE_LUT;
+ execbuf.flags |= LOCAL_I915_EXEC_NO_RELOC;
+ if (t->gen < 6)
+ execbuf.flags |= I915_EXEC_SECURE;
+ if (t->flags & CONTEXTS)
+ execbuf.rsvd1 = gem_context_create(fd);
+
+ for (i = 0; i < 16; i++) {
+ obj[0].handle = t->scratch[i];
+ if (t->flags & FDS)
+ obj[0].handle = gem_open(fd, obj[0].handle);
+
+ gem_execbuf(fd, &execbuf);
+
+ if (t->flags & FDS)
+ gem_close(fd, obj[0].handle);
+ }
+
+ if (t->flags & CONTEXTS)
+ gem_context_destroy(fd, execbuf.rsvd1);
+ gem_close(fd, obj[1].handle);
+ if (t->flags & FDS)
+ close(fd);
+
+ return NULL;
+}
+
+static void all(int fd, unsigned engine, unsigned flags)
+{
+ const int gen = intel_gen(intel_get_drm_devid(fd));
+ pthread_mutex_t mutex;
+ pthread_cond_t cond;
+ struct thread *threads;
+ unsigned engines[16];
+ unsigned nengine;
+ uint32_t scratch[16], handle[16];
+ int go;
+ int i;
+
+ if (flags & CONTEXTS)
+ gem_require_contexts(fd);
+
+ if (flags & FDS)
+ igt_require(gen > 5);
+
+ nengine = 0;
+ if (engine == ALL_ENGINES) {
+ for_each_physical_engine(fd, engine) {
+ if (gem_can_store_dword(fd, engine))
+ engines[nengine++] = engine;
+ }
+ } else {
+ igt_require(gem_has_ring(fd, engine));
+ igt_require(gem_can_store_dword(fd, engine));
+ engines[nengine++] = engine;
+ }
+ igt_require(nengine);
+
+ for (i = 0; i < 16; i++) {
+ scratch[i] = handle[i] = gem_create(fd, 4096);
+ if (flags & FDS)
+ scratch[i] = gem_flink(fd, handle[i]);
+ }
+
+ threads = calloc(1024, sizeof(struct thread));
+ igt_assert(threads);
+
+ intel_detect_and_clear_missed_interrupts(fd);
+ pthread_mutex_init(&mutex, 0);
+ pthread_cond_init(&cond, 0);
+ go = 0;
+
+ for (i = 0; i < 1024; i++) {
+ threads[i].id = i;
+ threads[i].fd = fd;
+ threads[i].gen = gen;
+ threads[i].engine = engines[i % nengine];
+ threads[i].flags = flags;
+ threads[i].scratch = scratch;
+ threads[i].mutex = &mutex;
+ threads[i].cond = &cond;
+ threads[i].go = &go;
+
+ pthread_create(&threads[i].thread, 0, thread, &threads[i]);
+ }
+
+ pthread_mutex_lock(&mutex);
+ go = 1024;
+ pthread_cond_broadcast(&cond);
+ pthread_mutex_unlock(&mutex);
+
+ for (i = 0; i < 1024; i++)
+ pthread_join(threads[i].thread, NULL);
+
+ for (i = 0; i < 16; i++) {
+ check_bo(fd, handle[i], i);
+ gem_close(fd, handle[i]);
+ }
+
+ igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
+ free(threads);
+}
+
+igt_main
+{
+ const struct mode {
+ const char *name;
+ unsigned flags;
+ } modes[] = {
+ { "", 0 },
+ { "contexts", CONTEXTS },
+ { "fds", FDS },
+ { NULL }
+ };
+ int fd;
+
+ igt_fixture {
+ fd = drm_open_driver_master(DRIVER_INTEL);
+ igt_require_gem(fd);
+
+ igt_fork_hang_detector(fd);
+ }
+
+ for (const struct mode *m = modes; m->name; m++)
+ igt_subtest_f("%s", *m->name ? m->name : "basic")
+ all(fd, ALL_ENGINES, m->flags);
+
+ for (const struct intel_execution_engine *e = intel_execution_engines;
+ e->name; e++) {
+ for (const struct mode *m = modes; m->name; m++)
+ igt_subtest_f("%s%s%s",
+ e->name,
+ *m->name ? "-" : "",
+ m->name)
+ all(fd, e->exec_id | e->flags, m->flags);
+ }
+
+ igt_fixture {
+ igt_stop_hang_detector();
+ close(fd);
+ }
+}