[igt-dev] [PATCH i-g-t] tests/dmabuf: Add tests for sync_file export
Jason Ekstrand
jason at jlekstrand.net
Tue Mar 16 00:14:29 UTC 2021
---
tests/Makefile.sources | 1 +
tests/dmabuf_sync_file.c | 231 +++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
3 files changed, 233 insertions(+)
create mode 100644 tests/dmabuf_sync_file.c
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 4f24fb3a..ec52ee3b 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -25,6 +25,7 @@ TESTS_progs = \
debugfs_test \
device_reset \
dmabuf \
+ dmabuf_sync_file \
drm_import_export \
drm_mm \
drm_read \
diff --git a/tests/dmabuf_sync_file.c b/tests/dmabuf_sync_file.c
new file mode 100644
index 00000000..f14dba63
--- /dev/null
+++ b/tests/dmabuf_sync_file.c
@@ -0,0 +1,231 @@
+/*
+ * Copyright © 2021 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"
+#include "igt_vgem.h"
+
+#include <linux/dma-buf.h>
+#include <sys/poll.h>
+
+IGT_TEST_DESCRIPTION("Tests for sync_file export from dma-buf");
+
+struct igt_dma_buf_sync_file {
+ __u32 flags;
+ __s32 fd;
+};
+
+#define IGT_DMA_BUF_IOCTL_EXPORT_SYNC_FILE _IOWR(DMA_BUF_BASE, 2, struct igt_dma_buf_sync_file)
+
+static bool has_dmabuf_export_sync_file(int fd)
+{
+ struct vgem_bo bo;
+ int dmabuf, ret;
+ struct igt_dma_buf_sync_file arg;
+
+ bo.width = 1;
+ bo.height = 1;
+ bo.bpp = 32;
+ vgem_create(fd, &bo);
+
+ dmabuf = prime_handle_to_fd(fd, bo.handle);
+ gem_close(fd, bo.handle);
+
+ arg.flags = DMA_BUF_SYNC_WRITE;
+ arg.fd = -1;
+
+ ret = igt_ioctl(dmabuf, IGT_DMA_BUF_IOCTL_EXPORT_SYNC_FILE, &arg);
+ close(dmabuf);
+ igt_assert(ret == 0 || errno == ENOTTY);
+
+ return ret == 0;
+}
+
+static int dmabuf_export_sync_file(int dmabuf, uint32_t flags)
+{
+ struct igt_dma_buf_sync_file arg;
+
+ arg.flags = flags;
+ arg.fd = -1;
+ do_ioctl(dmabuf, IGT_DMA_BUF_IOCTL_EXPORT_SYNC_FILE, &arg);
+
+ return arg.fd;
+}
+
+static bool sync_file_busy(int sync_file)
+{
+ struct pollfd pfd = { .fd = sync_file, .events = POLLIN };
+ return poll(&pfd, 1, 0) == 0;
+}
+
+static bool dmabuf_sync_file_busy(int dmabuf, uint32_t flags)
+{
+ int sync_file;
+ bool busy;
+
+ sync_file = dmabuf_export_sync_file(dmabuf, flags);
+ busy = sync_file_busy(sync_file);
+ close(sync_file);
+
+ return busy;
+}
+
+static void test_basic(int fd)
+{
+ struct vgem_bo bo;
+ int dmabuf;
+ uint32_t fence;
+
+ bo.width = 1;
+ bo.height = 1;
+ bo.bpp = 32;
+ vgem_create(fd, &bo);
+
+ dmabuf = prime_handle_to_fd(fd, bo.handle);
+
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_READ));
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_WRITE));
+
+ fence = vgem_fence_attach(fd, &bo, 0);
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_READ));
+ igt_assert(dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_WRITE));
+
+ vgem_fence_signal(fd, fence);
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_READ));
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_WRITE));
+
+ fence = vgem_fence_attach(fd, &bo, VGEM_FENCE_WRITE);
+ igt_assert(dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_READ));
+ igt_assert(dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_WRITE));
+
+ vgem_fence_signal(fd, fence);
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_READ));
+ igt_assert(!dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_WRITE));
+
+ close(dmabuf);
+ gem_close(fd, bo.handle);
+}
+
+static void test_multiwait(int fd)
+{
+ struct vgem_bo bo;
+ int dmabuf, sync_file;
+ uint32_t fence1, fence2, fence3;
+
+ bo.width = 1;
+ bo.height = 1;
+ bo.bpp = 32;
+ vgem_create(fd, &bo);
+
+ dmabuf = prime_handle_to_fd(fd, bo.handle);
+
+ fence1 = vgem_fence_attach(fd, &bo, 0);
+ fence2 = vgem_fence_attach(fd, &bo, 0);
+
+ sync_file = dmabuf_export_sync_file(dmabuf, DMA_BUF_SYNC_WRITE);
+
+ fence3 = vgem_fence_attach(fd, &bo, 0);
+
+ igt_assert(sync_file_busy(sync_file));
+
+ vgem_fence_signal(fd, fence1);
+
+ igt_assert(sync_file_busy(sync_file));
+
+ vgem_fence_signal(fd, fence2);
+
+ igt_assert(!sync_file_busy(sync_file));
+
+ vgem_fence_signal(fd, fence3);
+
+ close(sync_file);
+ close(dmabuf);
+ gem_close(fd, bo.handle);
+}
+
+static void test_wait_after_attach(int fd)
+{
+ struct vgem_bo bo;
+ int dmabuf, read_sync_file, write_sync_file;
+ uint32_t fence1, fence2;
+
+ bo.width = 1;
+ bo.height = 1;
+ bo.bpp = 32;
+ vgem_create(fd, &bo);
+
+ dmabuf = prime_handle_to_fd(fd, bo.handle);
+
+ read_sync_file = dmabuf_export_sync_file(dmabuf, DMA_BUF_SYNC_READ);
+ write_sync_file = dmabuf_export_sync_file(dmabuf, DMA_BUF_SYNC_WRITE);
+
+ fence1 = vgem_fence_attach(fd, &bo, VGEM_FENCE_WRITE);
+
+ igt_assert(!sync_file_busy(read_sync_file));
+ igt_assert(!sync_file_busy(write_sync_file));
+ close(read_sync_file);
+ close(write_sync_file);
+
+ /* These wait on fence1 */
+ read_sync_file = dmabuf_export_sync_file(dmabuf, DMA_BUF_SYNC_READ);
+ write_sync_file = dmabuf_export_sync_file(dmabuf, DMA_BUF_SYNC_WRITE);
+
+ igt_assert(sync_file_busy(read_sync_file));
+ igt_assert(sync_file_busy(write_sync_file));
+
+ vgem_fence_signal(fd, fence1);
+ fence2 = vgem_fence_attach(fd, &bo, VGEM_FENCE_WRITE);
+
+ /* fence1 has signaled */
+ igt_assert(!sync_file_busy(read_sync_file));
+ igt_assert(!sync_file_busy(write_sync_file));
+
+ /* fence2 has not */
+ igt_assert(dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_READ));
+ igt_assert(dmabuf_sync_file_busy(dmabuf, DMA_BUF_SYNC_WRITE));
+
+ vgem_fence_signal(fd, fence2);
+ close(read_sync_file);
+ close(write_sync_file);
+
+ close(dmabuf);
+ gem_close(fd, bo.handle);
+}
+
+igt_main
+{
+ int fd;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_VGEM);
+ igt_require(has_dmabuf_export_sync_file(fd));
+ }
+
+ igt_subtest_f("basic")
+ test_basic(fd);
+
+ igt_subtest_f("wait-after-attach")
+ test_wait_after_attach(fd);
+
+ igt_subtest_f("multiwait")
+ test_multiwait(fd);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 825e0183..0abda2c3 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -8,6 +8,7 @@ test_progs = [
'core_setmaster_vs_auth',
'debugfs_test',
'dmabuf',
+ 'dmabuf_sync_file',
'device_reset',
'drm_import_export',
'drm_mm',
--
2.29.2
More information about the igt-dev
mailing list