summaryrefslogtreecommitdiff
path: root/tests/i915/gem_exec_suspend.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_suspend.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_suspend.c')
-rw-r--r--tests/i915/gem_exec_suspend.c292
1 files changed, 292 insertions, 0 deletions
diff --git a/tests/i915/gem_exec_suspend.c b/tests/i915/gem_exec_suspend.c
new file mode 100644
index 00000000..43c52d10
--- /dev/null
+++ b/tests/i915/gem_exec_suspend.c
@@ -0,0 +1,292 @@
+/*
+ * Copyright © 2016 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_suspend.c
+ *
+ * Exercise executing batches across suspend before checking the results.
+ */
+
+#include "igt.h"
+#include "igt_gt.h"
+#include "igt_dummyload.h"
+
+#define NOSLEEP 0
+#define SUSPEND_DEVICES 1
+#define SUSPEND 2
+#define HIBERNATE_DEVICES 3
+#define HIBERNATE 4
+#define mode(x) ((x) & 0xff)
+
+#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 UNCACHED (0<<8)
+#define CACHED (1<<8)
+#define HANG (2<<8)
+
+static void run_test(int fd, unsigned ring, unsigned flags);
+
+static void check_bo(int fd, uint32_t handle)
+{
+ uint32_t *map;
+ int i;
+
+ igt_debug("Verifying result\n");
+ 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);
+}
+
+static void test_all(int fd, unsigned flags)
+{
+ unsigned engine;
+
+ for_each_physical_engine(fd, engine)
+ if (gem_can_store_dword(fd, engine))
+ run_test(fd, engine, flags & ~0xff);
+}
+
+static bool has_semaphores(int fd)
+{
+ struct drm_i915_getparam gp;
+ int val = -1;
+
+ memset(&gp, 0, sizeof(gp));
+ gp.param = I915_PARAM_HAS_SEMAPHORES;
+ gp.value = &val;
+
+ drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
+ errno = 0;
+
+ return val > 0;
+}
+
+static void run_test(int fd, unsigned engine, unsigned flags)
+{
+ const int gen = intel_gen(intel_get_drm_devid(fd));
+ const uint32_t bbe = MI_BATCH_BUFFER_END;
+ struct drm_i915_gem_exec_object2 obj[2];
+ struct drm_i915_gem_relocation_entry reloc;
+ struct drm_i915_gem_execbuffer2 execbuf;
+ unsigned engines[16];
+ unsigned nengine;
+ igt_spin_t *spin = NULL;
+
+ nengine = 0;
+ if (engine == ALL_ENGINES) {
+ /* If we don't have semaphores, then every ring switch
+ * will result in a CPU stall until the previous write
+ * has finished. This is likely to hide any issue with
+ * the GPU being active across the suspend (because the
+ * GPU is then unlikely to be active!)
+ */
+ if (has_semaphores(fd)) {
+ for_each_physical_engine(fd, engine) {
+ if (gem_can_store_dword(fd, engine))
+ engines[nengine++] = engine;
+ }
+ } else {
+ igt_require(gem_has_ring(fd, 0));
+ igt_require(gem_can_store_dword(fd, 0));
+ engines[nengine++] = 0;
+ }
+ } else {
+ igt_require(gem_has_ring(fd, engine));
+ igt_require(gem_can_store_dword(fd, engine));
+ engines[nengine++] = engine;
+ }
+ igt_require(nengine);
+
+ /* Before suspending, check normal operation */
+ if (mode(flags) != NOSLEEP)
+ test_all(fd, flags);
+
+ gem_quiescent_gpu(fd);
+
+ memset(&execbuf, 0, sizeof(execbuf));
+ execbuf.buffers_ptr = to_user_pointer(obj);
+ execbuf.buffer_count = 2;
+ execbuf.flags = 1 << 11;
+ if (gen < 6)
+ execbuf.flags |= I915_EXEC_SECURE;
+
+ memset(obj, 0, sizeof(obj));
+ obj[0].handle = gem_create(fd, 4096);
+ gem_set_caching(fd, obj[0].handle, !!(flags & CACHED));
+ obj[0].flags |= EXEC_OBJECT_WRITE;
+ obj[1].handle = gem_create(fd, 4096);
+ gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));
+ igt_require(__gem_execbuf(fd, &execbuf) == 0);
+ gem_close(fd, obj[1].handle);
+
+ memset(&reloc, 0, sizeof(reloc));
+ reloc.target_handle = obj[0].handle;
+ reloc.presumed_offset = obj[0].offset;
+ reloc.offset = sizeof(uint32_t);
+ if (gen >= 4 && gen < 8)
+ reloc.offset += sizeof(uint32_t);
+ reloc.read_domains = I915_GEM_DOMAIN_INSTRUCTION;
+ reloc.write_domain = I915_GEM_DOMAIN_INSTRUCTION;
+
+ obj[1].relocs_ptr = to_user_pointer(&reloc);
+ obj[1].relocation_count = 1;
+
+ for (int i = 0; i < 1024; i++) {
+ uint64_t offset;
+ uint32_t buf[16];
+ int b;
+
+ obj[1].handle = gem_create(fd, 4096);
+
+ reloc.delta = i * sizeof(uint32_t);
+ offset = reloc.presumed_offset + reloc.delta;
+
+ b = 0;
+ buf[b] = MI_STORE_DWORD_IMM | (gen < 6 ? 1 << 22 : 0);
+ if (gen >= 8) {
+ buf[++b] = offset;
+ buf[++b] = offset >> 32;
+ } else if (gen >= 4) {
+ buf[++b] = 0;
+ buf[++b] = offset;
+ } else {
+ buf[b] -= 1;
+ buf[++b] = offset;
+ }
+ buf[++b] = i;
+ buf[++b] = MI_BATCH_BUFFER_END;
+ gem_write(fd, obj[1].handle,
+ 4096-sizeof(buf), buf, sizeof(buf));
+ execbuf.flags &= ~ENGINE_MASK;
+ execbuf.flags |= engines[rand() % nengine];
+ gem_execbuf(fd, &execbuf);
+ gem_close(fd, obj[1].handle);
+ }
+
+ if (flags & HANG)
+ spin = igt_spin_batch_new(fd, .engine = engine);
+
+ switch (mode(flags)) {
+ case NOSLEEP:
+ break;
+
+ case SUSPEND_DEVICES:
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+ SUSPEND_TEST_DEVICES);
+ break;
+
+ case SUSPEND:
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+ SUSPEND_TEST_NONE);
+ break;
+
+ case HIBERNATE_DEVICES:
+ igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
+ SUSPEND_TEST_DEVICES);
+ break;
+
+ case HIBERNATE:
+ igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
+ SUSPEND_TEST_NONE);
+ break;
+ }
+
+ igt_spin_batch_free(fd, spin);
+
+ check_bo(fd, obj[0].handle);
+ gem_close(fd, obj[0].handle);
+
+ gem_quiescent_gpu(fd);
+
+ /* After resume, make sure it still works */
+ if (mode(flags) != NOSLEEP)
+ test_all(fd, flags);
+}
+
+igt_main
+{
+ const struct {
+ const char *suffix;
+ unsigned mode;
+ } modes[] = {
+ { "", NOSLEEP },
+ { "-S3", SUSPEND },
+ { "-S4", HIBERNATE },
+ { NULL, 0 }
+ }, *m;
+ const struct intel_execution_engine *e;
+ igt_hang_t hang;
+ int fd;
+
+ igt_skip_on_simulation();
+
+ igt_fixture {
+ fd = drm_open_driver_master(DRIVER_INTEL);
+ igt_require_gem(fd);
+ igt_require(gem_can_store_dword(fd, 0));
+
+ igt_fork_hang_detector(fd);
+ }
+
+ igt_subtest("basic")
+ run_test(fd, ALL_ENGINES, NOSLEEP);
+ igt_subtest("basic-S3-devices")
+ run_test(fd, ALL_ENGINES, SUSPEND_DEVICES);
+ igt_subtest("basic-S3")
+ run_test(fd, ALL_ENGINES, SUSPEND);
+ igt_subtest("basic-S4-devices")
+ run_test(fd, ALL_ENGINES, HIBERNATE_DEVICES);
+ igt_subtest("basic-S4")
+ run_test(fd, ALL_ENGINES, HIBERNATE);
+
+ for (e = intel_execution_engines; e->name; e++) {
+ for (m = modes; m->suffix; m++) {
+ igt_subtest_f("%s-uncached%s", e->name, m->suffix)
+ run_test(fd, e->exec_id | e->flags,
+ m->mode | UNCACHED);
+ igt_subtest_f("%s-cached%s", e->name, m->suffix)
+ run_test(fd, e->exec_id | e->flags,
+ m->mode | CACHED);
+ }
+ }
+
+ igt_fixture {
+ igt_stop_hang_detector();
+ hang = igt_allow_hang(fd, 0, 0);
+ }
+
+ igt_subtest("hang-S3")
+ run_test(fd, 0, SUSPEND | HANG);
+ igt_subtest("hang-S4")
+ run_test(fd, 0, HIBERNATE | HANG);
+
+ igt_fixture {
+ igt_disallow_hang(fd, hang);
+ close(fd);
+ }
+}