summaryrefslogtreecommitdiff
path: root/tests/i915/gem_ctx_create.c
diff options
context:
space:
mode:
authorArjun Melkaveri <arjun.melkaveri@intel.com>2020-02-07 18:29:41 +0530
committerKatarzyna Dec <katarzyna.dec@intel.com>2020-02-12 13:06:04 +0100
commit00a64098aaae2ac3154841d76c7b034165380282 (patch)
tree372f025ad13b1621b50a4bf22c2d8b83678dda32 /tests/i915/gem_ctx_create.c
parented7c8cfb67e3c7fe91958135611c0973efcf1010 (diff)
tests/i915/gem_ctx_create: Use __for_each_physical_engine to utilize all available engines
Replaced the legacy for_each_engine* defines with the ones implemented in the gem_engine_topology library. Used gem_context_clone_with_engines to make sure that engine index was potentially created based on a default context with engine map configured Added gem_reopen_driver and gem_context_copy_engines to transfer the engine map from parent fd default context. Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Ursulin Tvrtko <tvrtko.ursulin@intel.com> Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com> Reviewed-by: Katarzyna Dec <katarzyna.dec@intel.com>
Diffstat (limited to 'tests/i915/gem_ctx_create.c')
-rw-r--r--tests/i915/gem_ctx_create.c102
1 files changed, 75 insertions, 27 deletions
diff --git a/tests/i915/gem_ctx_create.c b/tests/i915/gem_ctx_create.c
index d9a820e2..2c44a3e3 100644
--- a/tests/i915/gem_ctx_create.c
+++ b/tests/i915/gem_ctx_create.c
@@ -100,11 +100,18 @@ static void files(int core, int timeout, const int ncpus)
igt_fork(child, ncpus) {
struct timespec start, end;
unsigned count = 0;
+ int fd;
clock_gettime(CLOCK_MONOTONIC, &start);
do {
do {
- int fd = drm_open_driver(DRIVER_INTEL);
+ fd = gem_reopen_driver(core);
+ /*
+ * Ensure the gpu is idle by launching
+ * a nop execbuf and stalling for it.
+ */
+ gem_quiescent_gpu(fd);
+ gem_context_copy_engines(core, 0, fd, 0);
obj.handle = gem_open(fd, name);
execbuf.flags &= ~ENGINE_FLAGS;
execbuf.flags |= ppgtt_engines[count % ppgtt_nengine];
@@ -124,22 +131,22 @@ static void files(int core, int timeout, const int ncpus)
gem_close(core, batch);
}
-static void active(int fd, unsigned engine, int timeout, int ncpus)
+static void active(int fd, const struct intel_execution_engine2 *e,
+ int timeout, int ncpus)
{
const uint32_t bbe = MI_BATCH_BUFFER_END;
struct drm_i915_gem_execbuffer2 execbuf;
struct drm_i915_gem_exec_object2 obj;
unsigned int nengine, engines[16];
unsigned *shared;
-
- if (engine == ALL_ENGINES) {
+ /* When e is NULL, test would run for all engines */
+ if (!e) {
igt_require(all_nengine);
nengine = all_nengine;
memcpy(engines, all_engines, sizeof(engines[0])*nengine);
} else {
- gem_require_ring(fd, engine);
nengine = 1;
- engines[0] = engine;
+ engines[0] = e->flags;
}
shared = mmap(NULL, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
@@ -156,8 +163,17 @@ static void active(int fd, unsigned engine, int timeout, int ncpus)
if (ncpus < 0) {
igt_fork(child, ppgtt_nengine) {
unsigned long count = 0;
+ int i915;
+
+ i915 = gem_reopen_driver(fd);
+ /*
+ * Ensure the gpu is idle by launching
+ * a nop execbuf and stalling for it
+ */
+ gem_quiescent_gpu(i915);
+ gem_context_copy_engines(fd, 0, i915, 0);
- if (ppgtt_engines[child] == engine)
+ if (ppgtt_engines[child] == e->flags)
continue;
execbuf.flags = ppgtt_engines[child];
@@ -179,11 +195,22 @@ static void active(int fd, unsigned engine, int timeout, int ncpus)
igt_fork(child, ncpus) {
struct timespec start, end;
unsigned count = 0;
+ int i915;
+ uint32_t ctx;
+
+ i915 = gem_reopen_driver(fd);
+ /*
+ * Ensure the gpu is idle by launching
+ * a nop execbuf and stalling for it.
+ */
+ gem_quiescent_gpu(i915);
+ ctx = gem_context_create(i915);
+ gem_context_copy_engines(fd, 0, i915, ctx);
clock_gettime(CLOCK_MONOTONIC, &start);
do {
do {
- execbuf.rsvd1 = gem_context_create(fd);
+ execbuf.rsvd1 = ctx;
for (unsigned n = 0; n < nengine; n++) {
execbuf.flags = engines[n];
gem_execbuf(fd, &execbuf);
@@ -276,7 +303,9 @@ static void maximum(int fd, int ncpus, unsigned mode)
err = -ENOMEM;
if (avail_mem > (count + 1) * ctx_size)
- err = __gem_context_create(fd, &ctx_id);
+ err = __gem_context_clone(fd, 0,
+ I915_CONTEXT_CLONE_ENGINES,
+ 0, &ctx_id);
if (err) {
igt_info("Created %lu contexts, before failing with '%s' [%d]\n",
count, strerror(-err), -err);
@@ -297,9 +326,18 @@ static void maximum(int fd, int ncpus, unsigned mode)
igt_fork(child, ncpus) {
struct timespec start, end;
+ int i915;
+
+ i915 = gem_reopen_driver(fd);
+ /*
+ * Ensure the gpu is idle by launching
+ * a nop execbuf and stalling for it.
+ */
+ gem_quiescent_gpu(i915);
+ gem_context_copy_engines(fd, 0, i915, 0);
hars_petruska_f54_1_random_perturb(child);
- obj[0].handle = gem_create(fd, 4096);
+ obj[0].handle = gem_create(i915, 4096);
clock_gettime(CLOCK_MONOTONIC, &start);
for (int repeat = 0; repeat < 3; repeat++) {
@@ -310,13 +348,13 @@ static void maximum(int fd, int ncpus, unsigned mode)
execbuf.rsvd1 = contexts[i];
for (unsigned long j = 0; j < all_nengine; j++) {
execbuf.flags = all_engines[j];
- gem_execbuf(fd, &execbuf);
+ gem_execbuf(i915, &execbuf);
}
}
}
- gem_sync(fd, obj[0].handle);
+ gem_sync(i915, obj[0].handle);
clock_gettime(CLOCK_MONOTONIC, &end);
- gem_close(fd, obj[0].handle);
+ gem_close(i915, obj[0].handle);
igt_info("[%d] Context execution: %.3f us\n", child,
elapsed(&start, &end) / (3 * count * all_nengine) * 1e6);
@@ -370,6 +408,7 @@ static void basic_ext_param(int i915)
gem_context_destroy(i915, create.ctx_id);
+
/* Having demonstrated a valid setup, check a few invalids */
ext.param.ctx_id = 1;
igt_assert_eq(create_ext_ioctl(i915, &create), -EINVAL);
@@ -524,6 +563,7 @@ igt_main
{
const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
struct drm_i915_gem_context_create create;
+ const struct intel_execution_engine2 *e;
int fd = -1;
igt_fixture {
@@ -531,8 +571,8 @@ igt_main
igt_require_gem(fd);
gem_require_contexts(fd);
- for_each_physical_engine(e, fd)
- all_engines[all_nengine++] = eb_ring(e);
+ __for_each_physical_engine(fd, e)
+ all_engines[all_nengine++] = e->flags;
igt_require(all_nengine);
if (gem_uses_full_ppgtt(fd)) {
@@ -572,20 +612,28 @@ igt_main
igt_subtest("forked-files")
files(fd, 20, ncpus);
+ /* NULL value means all engines */
igt_subtest("active-all")
- active(fd, ALL_ENGINES, 20, 1);
+ active(fd, NULL, 20, 1);
igt_subtest("forked-active-all")
- active(fd, ALL_ENGINES, 20, ncpus);
-
- for (const struct intel_execution_engine *e = intel_execution_engines;
- e->name; e++) {
- igt_subtest_f("active-%s", e->name)
- active(fd, eb_ring(e), 20, 1);
- igt_subtest_f("forked-active-%s", e->name)
- active(fd, eb_ring(e), 20, ncpus);
- if (e->exec_id) {
- igt_subtest_f("hog-%s", e->name)
- active(fd, eb_ring(e), 20, -1);
+ active(fd, NULL, 20, ncpus);
+
+ igt_subtest_with_dynamic("active") {
+ __for_each_physical_engine(fd, e) {
+ igt_dynamic_f("%s", e->name)
+ active(fd, e, 20, 1);
+ }
+ }
+ igt_subtest_with_dynamic("forked-active") {
+ __for_each_physical_engine(fd, e) {
+ igt_dynamic_f("%s", e->name)
+ active(fd, e, 20, ncpus);
+ }
+ }
+ igt_subtest_with_dynamic("hog") {
+ __for_each_physical_engine(fd, e) {
+ igt_dynamic_f("%s", e->name)
+ active(fd, e, 20, -1);
}
}