From: Imre Deak <imre.deak@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t] tests/i915: Add test for unaligned detiler fences
Date: Mon, 13 Jan 2020 19:21:20 +0200 [thread overview]
Message-ID: <20200113172120.32553-1-imre.deak@intel.com> (raw)
Add a test to check the detiling on a buffer with a size that isn't
aligned to the detiler fence stride we add for the buffer. While writes
beyond the last full tile row may target an address beyond the buffer's
size, we still expect that such writes will not lead to a corruption
on memory pages that are not owned by the process performing the write.
The reason for this test: on TGL such writes lead to random memory
corruption in memory not belonging to the process. This should be
prevented ensuring that we keep pages that user space can access
(padding the object size to be tile-row size aligned) reserved in the
GTT address space until userspace can write through the fenced region.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
tests/Makefile.sources | 3 +
tests/i915/gem_unaligned_fence.c | 108 ++++++++++++++++++++++++++
tests/intel-ci/fast-feedback.testlist | 1 +
tests/meson.build | 1 +
4 files changed, 113 insertions(+)
create mode 100644 tests/i915/gem_unaligned_fence.c
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 806eb02d..dce1d197 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -460,6 +460,9 @@ gem_tiled_wc_SOURCES = i915/gem_tiled_wc.c
TESTS_progs += gem_tiling_max_stride
gem_tiling_max_stride_SOURCES = i915/gem_tiling_max_stride.c
+TESTS_progs += gem_unaligned_fence
+gem_unaligned_fence_SOURCES = i915/gem_unaligned_fence.c
+
TESTS_progs += gem_unfence_active_buffers
gem_unfence_active_buffers_SOURCES = i915/gem_unfence_active_buffers.c
diff --git a/tests/i915/gem_unaligned_fence.c b/tests/i915/gem_unaligned_fence.c
new file mode 100644
index 00000000..ac49fd80
--- /dev/null
+++ b/tests/i915/gem_unaligned_fence.c
@@ -0,0 +1,108 @@
+/*
+ * Copyright © 2020 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.
+ */
+#include "igt.h"
+
+#define FILL_PAT64 0xeeeeeeeeeeeeeeee
+
+static bool check_buf(int fd, uint32_t handle, uint32_t size)
+{
+ uint64_t *ptr;
+ size_t i;
+
+ gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, 0);
+
+ ptr = gem_mmap__gtt(fd, handle, size, PROT_READ);
+
+ for (i = 0; i < size / sizeof(*ptr); i++)
+ if (ptr[i] != FILL_PAT64)
+ break;
+ munmap(ptr, size);
+
+ return i * sizeof(*ptr) == size;
+}
+
+static void memset64(uint64_t *s, uint64_t c, size_t n)
+{
+ for (int i = 0; i < n; i++)
+ s[i] = c;
+}
+
+static void fill_buf(int fd, uint32_t handle, size_t size)
+{
+ void *ptr;
+
+ gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+
+ ptr = gem_mmap__gtt(fd, handle, size, PROT_WRITE);
+ igt_assert(ptr);
+
+ memset64(ptr, FILL_PAT64, size / sizeof(uint64_t));
+
+ munmap(ptr, size);
+}
+
+static void test_stride(int fd, int stride, int tile_rows)
+{
+ uint32_t handle;
+ int tile_height;
+ int tile_row_size;
+ size_t size;
+
+ igt_info("Testing stride %d rows %d\n", stride, tile_rows);
+
+ tile_height = 32;
+ tile_row_size = stride * tile_height;
+ size = tile_row_size * tile_rows + tile_row_size / 2;
+
+ handle = gem_create(fd, size);
+
+ if (__gem_set_tiling(fd, handle, I915_TILING_Y, stride) != 0)
+ return;
+
+ fill_buf(fd, handle, size);
+
+ igt_assert(check_buf(fd, handle, size));
+
+ gem_close(fd, handle);
+}
+
+static void do_test_all_strides(int fd)
+{
+ int tile_rows;
+ int stride;
+
+ for (tile_rows = 1; tile_rows < 10; tile_rows++)
+ for (stride = 512; stride < 8196; stride += 512)
+ test_stride(fd, stride, tile_rows);
+}
+
+igt_main
+{
+ int fd;
+
+ igt_fixture
+ fd = drm_open_driver_render(DRIVER_INTEL);
+
+ igt_subtest("basic")
+ do_test_all_strides(fd);
+}
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 8081446e..44460cd2 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -70,6 +70,7 @@ igt@gem_sync@basic-store-each
igt@gem_tiled_blits@basic
igt@gem_tiled_fence_blits@basic
igt@gem_tiled_pread_basic
+igt@gem_unaligned_fence@basic
igt@gem_wait@basic-busy-all
igt@gem_wait@basic-wait-all
igt@gem_wait@basic-await-all
diff --git a/tests/meson.build b/tests/meson.build
index 570de545..19cdce53 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -219,6 +219,7 @@ i915_progs = [
'gem_tiled_wb',
'gem_tiled_wc',
'gem_tiling_max_stride',
+ 'gem_unaligned_fence',
'gem_unfence_active_buffers',
'gem_unref_active_buffers',
'gem_userptr_blits',
--
2.23.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next reply other threads:[~2020-01-13 17:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-13 17:21 Imre Deak [this message]
2020-01-13 17:50 ` [igt-dev] [PATCH i-g-t] tests/i915: Add test for unaligned detiler fences Chris Wilson
2020-01-13 18:11 ` Imre Deak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200113172120.32553-1-imre.deak@intel.com \
--to=imre.deak@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox