From: Bommu Krishnaiah <krishnaiah.bommu@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Bommu Krishnaiah <krishnaiah.bommu@intel.com>,
Oak Zeng <oak.zeng@intel.com>,
Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Subject: [PATCH RFC i-g-t 2/2] tests/intel/xe_svm: basic xe_svm test
Date: Tue, 30 Apr 2024 23:57:47 +0530 [thread overview]
Message-ID: <20240430182747.589234-3-krishnaiah.bommu@intel.com> (raw)
In-Reply-To: <20240430182747.589234-1-krishnaiah.bommu@intel.com>
Add basic test to validate helper functions introduced in
'lib/xe/xe_util: helper function'. This test writes values
to the destination buffer using GPU (MI_STORE_DWORD_IMM_GEN4).
Signed-off-by: Bommu Krishnaiah <krishnaiah.bommu@intel.com>
Cc: Oak Zeng <oak.zeng@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
---
tests/intel/xe_svm.c | 99 ++++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 100 insertions(+)
create mode 100644 tests/intel/xe_svm.c
diff --git a/tests/intel/xe_svm.c b/tests/intel/xe_svm.c
new file mode 100644
index 000000000..a954861bc
--- /dev/null
+++ b/tests/intel/xe_svm.c
@@ -0,0 +1,99 @@
+// SPDX-License-Identifier: MIT
+ /*
+ * Copyright © 2023 Intel Corporation
+ */
+
+/** @file xe_svm.c
+ *
+ * Test shared virtual memory.
+ *
+ * Shared virtual memory(svm in short) is a xe driver feature
+ * which provide shared virtual address space b/t CPU and GPU
+ * program. This means application writer can just malloc or mmap,
+ * and use the returned ptr for both CPU and GPU program.
+ *
+ * This test the shared virtual memory functions. This includes
+ * basic malloc, mmap test, an invalid va tess, a mprotect test and a
+ * random access test.
+ */
+
+/**
+ * TEST: xe_svm
+ * Description: Test shared virtual memory
+ * Sub-category: Memory management
+ * Functionality: svm
+ * Run type: FULL
+ *
+ * SUBTEST: svm-basic-malloc
+ */
+
+#include <fcntl.h>
+
+#include "igt.h"
+#include "lib/igt_syncobj.h"
+#include "lib/intel_reg.h"
+#include "lib/xe/xe_util.h"
+#include "xe_drm.h"
+
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include <string.h>
+
+/**
+ * Use malloc or mmap memory for direct GPU submission
+ */
+static void svm_basic(int fd, uint32_t vm, struct drm_xe_engine_class_instance *eci)
+{
+ uint64_t gpu_va = 0x1a0000;
+ uint32_t val = 0xc0ffee;
+ size_t bo_size = xe_bb_size(fd, PAGE_ALIGN_UFENCE);
+
+ struct xe_buffer dst_buf = {
+ .fd = fd,
+ .gpu_addr = (uint64_t)gpu_va,
+ .vm = vm,
+ .size = bo_size,
+ .placement = vram_if_possible(fd, eci->gt_id),
+ .flag = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ };
+
+ struct xe_buffer cmd_buf = {
+ .fd = fd,
+ .gpu_addr = (uint64_t)gpu_va + bo_size,
+ .vm = vm,
+ .size = bo_size,
+ .placement = vram_if_possible(fd, eci->gt_id),
+ .flag = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ };
+
+ xe_create_buffer(&dst_buf);
+ xe_create_cmdbuf(&cmd_buf, insert_store, (uint64_t)dst_buf.gpu_addr, val, eci);
+ xe_submit_cmd(&cmd_buf);
+ igt_assert_eq(*(uint32_t *)dst_buf.cpu_addr, val);
+ xe_destroy_cmdbuf(&cmd_buf);
+ xe_destroy_buffer(&dst_buf);
+}
+
+igt_main
+{
+ int fd;
+ uint32_t vm;
+ struct drm_xe_engine_class_instance *hwe;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ igt_require(xe_supports_faults(fd));
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+ }
+
+
+ igt_subtest_f("svm-basic-malloc")
+ xe_for_each_engine(fd, hwe)
+ svm_basic(fd, vm, hwe);
+
+ igt_fixture {
+ xe_vm_destroy(fd, vm);
+ drm_close_driver(fd);
+ }
+}
+
diff --git a/tests/meson.build b/tests/meson.build
index 65b8bf23b..6bdd76343 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -316,6 +316,7 @@ intel_xe_progs = [
'xe_spin_batch',
'xe_sysfs_defaults',
'xe_sysfs_scheduler',
+ 'xe_svm',
]
msm_progs = [
--
2.25.1
next prev parent reply other threads:[~2024-04-30 18:27 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-30 18:27 [PATCH RFC i-g-t 0/2] helper function Bommu Krishnaiah
2024-04-30 18:27 ` [PATCH RFC i-g-t 1/2] lib/xe/xe_util: " Bommu Krishnaiah
2024-05-01 3:55 ` Zeng, Oak
2024-04-30 18:27 ` Bommu Krishnaiah [this message]
2024-05-01 3:59 ` [PATCH RFC i-g-t 2/2] tests/intel/xe_svm: basic xe_svm test Zeng, Oak
2024-05-10 15:07 ` Kamil Konieczny
2024-04-30 20:24 ` ✗ GitLab.Pipeline: warning for helper function Patchwork
2024-04-30 20:46 ` ✓ Fi.CI.BAT: success " Patchwork
2024-04-30 20:56 ` ✓ CI.xeBAT: " Patchwork
2024-05-01 1:27 ` ✗ CI.xeFULL: failure " Patchwork
2024-05-01 3:34 ` [PATCH RFC i-g-t 0/2] " Zeng, Oak
2024-05-01 4:44 ` Matthew Brost
2024-05-01 12:05 ` Zeng, Oak
2024-05-22 16:44 ` Zeng, Oak
2024-05-01 5:41 ` ✗ Fi.CI.IGT: failure for " Patchwork
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=20240430182747.589234-3-krishnaiah.bommu@intel.com \
--to=krishnaiah.bommu@intel.com \
--cc=himal.prasad.ghimiray@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=oak.zeng@intel.com \
/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