summaryrefslogtreecommitdiff
path: root/tests/i915/gem_ctx_param.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_ctx_param.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_ctx_param.c')
-rw-r--r--tests/i915/gem_ctx_param.c315
1 files changed, 315 insertions, 0 deletions
diff --git a/tests/i915/gem_ctx_param.c b/tests/i915/gem_ctx_param.c
new file mode 100644
index 00000000..c46fd709
--- /dev/null
+++ b/tests/i915/gem_ctx_param.c
@@ -0,0 +1,315 @@
+/*
+ * Copyright © 2015 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.
+ *
+ * Authors:
+ * Daniel Vetter <daniel.vetter@ffwll.ch>
+ */
+
+#include <fcntl.h>
+#include <limits.h>
+
+#include "igt.h"
+
+IGT_TEST_DESCRIPTION("Basic test for context set/get param input validation.");
+
+#define BIT(x) (1ul << (x))
+
+#define NEW_CTX BIT(0)
+#define USER BIT(1)
+
+static int reopen_driver(int fd)
+{
+ char path[256];
+
+ snprintf(path, sizeof(path), "/proc/self/fd/%d", fd);
+ fd = open(path, O_RDWR);
+ igt_assert_lte(0, fd);
+
+ return fd;
+}
+
+static void set_priority(int i915)
+{
+ static const int64_t test_values[] = {
+ /* Test space too big, pick significant values */
+ INT_MIN,
+
+ I915_CONTEXT_MIN_USER_PRIORITY - 1,
+ I915_CONTEXT_MIN_USER_PRIORITY,
+ I915_CONTEXT_MIN_USER_PRIORITY + 1,
+
+ I915_CONTEXT_DEFAULT_PRIORITY - 1,
+ I915_CONTEXT_DEFAULT_PRIORITY,
+ I915_CONTEXT_DEFAULT_PRIORITY + 1,
+
+ I915_CONTEXT_MAX_USER_PRIORITY - 1,
+ I915_CONTEXT_MAX_USER_PRIORITY,
+ I915_CONTEXT_MAX_USER_PRIORITY + 1,
+
+ INT_MAX
+ };
+ unsigned int size;
+ int64_t *values;
+
+ igt_require(getuid() == 0);
+
+ size = ARRAY_SIZE(test_values);
+ values = malloc(sizeof(test_values) * 8);
+ igt_assert(values);
+
+ for (unsigned i = 0; i < size; i++) {
+ values[i + 0*size] = test_values[i];
+ values[i + 1*size] = test_values[i] | (uint64_t)1 << 32;
+ values[i + 2*size] = test_values[i] | (uint64_t)rand() << 32;
+ values[i + 3*size] = test_values[i] ^ rand();
+ values[i + 4*size] = rand() % (I915_CONTEXT_MAX_USER_PRIORITY - I915_CONTEXT_MIN_USER_PRIORITY) + I915_CONTEXT_MIN_USER_PRIORITY;
+ values[i + 5*size] = rand();
+ values[i + 6*size] = rand() | (uint64_t)rand() << 32;
+ values[i + 7*size] = (uint64_t)test_values[i] << 32;
+ }
+ size *= 8;
+
+ igt_permute_array(values, size, igt_exchange_int64);
+
+ igt_fork(flags, NEW_CTX | USER) {
+ int fd = reopen_driver(i915);
+ struct drm_i915_gem_context_param arg = {
+ .param = I915_CONTEXT_PARAM_PRIORITY,
+ .ctx_id = flags & NEW_CTX ? gem_context_create(fd) : 0,
+ };
+ int64_t old_prio;
+
+ if (flags & USER) {
+ igt_debug("Dropping root privilege\n");
+ igt_drop_root();
+ }
+
+ gem_context_get_param(fd, &arg);
+ old_prio = arg.value;
+
+ for (unsigned i = 0; i < size; i++) {
+ int64_t prio = values[i];
+ int expected = 0;
+ int err;
+
+ arg.value = prio;
+
+ if (flags & USER &&
+ prio > I915_CONTEXT_DEFAULT_PRIORITY)
+ expected = -EPERM;
+
+ if (prio < I915_CONTEXT_MIN_USER_PRIORITY ||
+ prio > I915_CONTEXT_MAX_USER_PRIORITY)
+ expected = -EINVAL;
+
+ err =__gem_context_set_param(fd, &arg);
+ igt_assert_f(err == expected,
+ "Priority requested %" PRId64 " with flags %x, expected result %d, returned %d\n",
+ prio, flags, expected, err);
+
+ gem_context_get_param(fd, &arg);
+ if (!err)
+ old_prio = prio;
+ igt_assert_eq(arg.value, old_prio);
+ }
+
+ arg.value = 0;
+ gem_context_set_param(fd, &arg);
+
+ if (flags & NEW_CTX)
+ gem_context_destroy(fd, arg.ctx_id);
+ }
+
+ igt_waitchildren();
+ free(values);
+}
+
+igt_main
+{
+ struct drm_i915_gem_context_param arg;
+ int fd;
+ uint32_t ctx;
+
+ memset(&arg, 0, sizeof(arg));
+
+ igt_fixture {
+ fd = drm_open_driver_render(DRIVER_INTEL);
+
+ gem_require_contexts(fd);
+ ctx = gem_context_create(fd);
+ }
+
+ arg.param = I915_CONTEXT_PARAM_BAN_PERIOD;
+
+ /* XXX start to enforce ban period returning -EINVAL when
+ * transition has been done */
+ if (__gem_context_get_param(fd, &arg) == -EINVAL)
+ arg.param = I915_CONTEXT_PARAM_BANNABLE;
+
+ igt_subtest("basic") {
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ gem_context_set_param(fd, &arg);
+ }
+
+ igt_subtest("basic-default") {
+ arg.ctx_id = 0;
+ gem_context_get_param(fd, &arg);
+ gem_context_set_param(fd, &arg);
+ }
+
+ igt_subtest("invalid-ctx-get") {
+ arg.ctx_id = 2;
+ igt_assert_eq(__gem_context_get_param(fd, &arg), -ENOENT);
+ }
+
+ igt_subtest("invalid-ctx-set") {
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.ctx_id = 2;
+ igt_assert_eq(__gem_context_set_param(fd, &arg), -ENOENT);
+ }
+
+ igt_subtest("invalid-size-get") {
+ arg.ctx_id = ctx;
+ arg.size = 8;
+ gem_context_get_param(fd, &arg);
+ igt_assert(arg.size == 0);
+ }
+
+ igt_subtest("invalid-size-set") {
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.size = 8;
+ igt_assert_eq(__gem_context_set_param(fd, &arg), -EINVAL);
+ arg.size = 0;
+ }
+
+ igt_subtest("non-root-set") {
+ igt_fork(child, 1) {
+ igt_drop_root();
+
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.value--;
+ igt_assert_eq(__gem_context_set_param(fd, &arg), -EPERM);
+ }
+
+ igt_waitchildren();
+ }
+
+ igt_subtest("root-set") {
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.value--;
+ gem_context_set_param(fd, &arg);
+ }
+
+ arg.param = I915_CONTEXT_PARAM_NO_ZEROMAP;
+
+ igt_subtest("non-root-set-no-zeromap") {
+ igt_fork(child, 1) {
+ igt_drop_root();
+
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.value--;
+ gem_context_set_param(fd, &arg);
+ }
+
+ igt_waitchildren();
+ }
+
+ igt_subtest("root-set-no-zeromap-enabled") {
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.value = 1;
+ gem_context_set_param(fd, &arg);
+ }
+
+ igt_subtest("root-set-no-zeromap-disabled") {
+ arg.ctx_id = ctx;
+ gem_context_get_param(fd, &arg);
+ arg.value = 0;
+ gem_context_set_param(fd, &arg);
+ }
+
+ arg.param = I915_CONTEXT_PARAM_PRIORITY;
+
+ igt_subtest("set-priority-not-supported") {
+ igt_require(!gem_scheduler_has_ctx_priority(fd));
+
+ arg.ctx_id = ctx;
+ arg.size = 0;
+
+ igt_assert_eq(__gem_context_set_param(fd, &arg), -ENODEV);
+ }
+
+ igt_subtest_group {
+ igt_fixture {
+ igt_require(gem_scheduler_has_ctx_priority(fd));
+ }
+
+ igt_subtest("get-priority-new-ctx") {
+ struct drm_i915_gem_context_param local_arg = arg;
+ uint32_t local_ctx = gem_context_create(fd);
+
+ local_arg.ctx_id = local_ctx;
+
+ gem_context_get_param(fd, &local_arg);
+ igt_assert_eq(local_arg.value, I915_CONTEXT_DEFAULT_PRIORITY);
+
+ gem_context_destroy(fd, local_ctx);
+ }
+
+ igt_subtest("set-priority-invalid-size") {
+ struct drm_i915_gem_context_param local_arg = arg;
+ local_arg.ctx_id = ctx;
+ local_arg.value = 0;
+ local_arg.size = ~0;
+
+ igt_assert_eq(__gem_context_set_param(fd, &local_arg), -EINVAL);
+ }
+
+ igt_subtest("set-priority-range")
+ set_priority(fd);
+ }
+
+ /* NOTE: This testcase intentionally tests for the next free parameter
+ * to catch ABI extensions. Don't "fix" this testcase without adding all
+ * the tests for the new param first.
+ */
+ arg.param = I915_CONTEXT_PARAM_PRIORITY + 1;
+
+ igt_subtest("invalid-param-get") {
+ arg.ctx_id = ctx;
+ igt_assert_eq(__gem_context_get_param(fd, &arg), -EINVAL);
+ }
+
+ igt_subtest("invalid-param-set") {
+ arg.ctx_id = ctx;
+ igt_assert_eq(__gem_context_set_param(fd, &arg), -EINVAL);
+ }
+
+ igt_fixture
+ close(fd);
+}