From: Arvind Yadav <arvind.yadav@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: matthew.brost@intel.com, himal.prasad.ghimiray@intel.com,
thomas.hellstrom@linux.intel.com, nishit.sharma@intel.com,
pravalika.gurram@intel.com
Subject: [i-g-t 2/3] tests/intel/xe_madvise: Add single-vma-full-unmap-no-gpu subtest
Date: Mon, 6 Apr 2026 15:24:07 +0530 [thread overview]
Message-ID: <20260406095410.1274177-3-arvind.yadav@intel.com> (raw)
In-Reply-To: <20260406095410.1274177-1-arvind.yadav@intel.com>
Verify PAT reset after full unmap without GPU access.
Set PAT=UC on a 1MB VMA, fully unmap it, and verify the attribute
resets to default.
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Cc: Nishit Sharma <nishit.sharma@intel.com>
Cc: Pravalika Gurram <pravalika.gurram@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
tests/intel/xe_madvise.c | 112 +++++++++++++++++++++++++++++++++++++++
1 file changed, 112 insertions(+)
diff --git a/tests/intel/xe_madvise.c b/tests/intel/xe_madvise.c
index 37411f342..2c8c00f79 100644
--- a/tests/intel/xe_madvise.c
+++ b/tests/intel/xe_madvise.c
@@ -910,6 +910,115 @@ test_multi_region_partial_unmap_no_gpu(int fd)
xe_vm_destroy(fd, vm);
}
+/**
+ * SUBTEST: single-vma-full-unmap-no-gpu
+ * Description: Verify PAT resets on full unmap without GPU access.
+ * Test category: functionality test
+ */
+static void
+test_single_vma_full_unmap_no_gpu(int fd)
+{
+ const size_t total_size = SZ_1M;
+ struct drm_xe_sync sync[1] = {
+ { .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE },
+ };
+ struct drm_xe_mem_range_attr *attrs;
+ struct drm_xe_madvise madvise;
+ uint32_t num_ranges;
+ uint64_t vm_sync = 0;
+ uint8_t pat_uc, pat_wb;
+ uint32_t va_bits;
+ void *base_addr;
+ bool reset_done;
+ uint32_t vm;
+ int i;
+
+ pat_uc = intel_get_pat_idx_uc(fd);
+ pat_wb = intel_get_pat_idx_wb(fd);
+ va_bits = xe_va_bits(fd);
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+
+ base_addr = mmap(NULL, total_size, PROT_READ | PROT_WRITE,
+ MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+ igt_assert(base_addr != MAP_FAILED);
+
+ /* Bind address space with CPU_ADDR_MIRROR and MADVISE_AUTORESET */
+ sync[0].addr = to_user_pointer(&vm_sync);
+ __xe_vm_bind_assert(fd, vm, 0,
+ 0, 0, 0, 0x1ull << va_bits,
+ DRM_XE_VM_BIND_OP_MAP,
+ DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR |
+ DRM_XE_VM_BIND_FLAG_MADVISE_AUTORESET,
+ sync, 1, 0, 0);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, FIVE_SEC);
+
+ /* Set PAT=UC on the entire 1MB region */
+ memset(&madvise, 0, sizeof(madvise));
+ madvise.vm_id = vm;
+ madvise.start = to_user_pointer(base_addr);
+ madvise.range = total_size;
+ madvise.type = DRM_XE_MEM_RANGE_ATTR_PAT;
+ madvise.pat_index.val = pat_uc;
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_MADVISE, &madvise), 0);
+
+ /* Verify PAT=UC is applied before unmap */
+ attrs = xe_vm_get_mem_attr_values_in_range(fd, vm,
+ to_user_pointer(base_addr),
+ total_size, &num_ranges);
+ igt_assert_f(attrs && num_ranges > 0,
+ "Expected at least 1 range after setting PAT\n");
+ for (i = 0; i < num_ranges; i++) {
+ uint8_t got = attrs[i].pat_index.val;
+
+ if (got != pat_uc) {
+ free(attrs);
+ igt_assert_f(false, "range[%d]: expected UC=%u got %u\n",
+ i, pat_uc, got);
+ }
+ }
+ free(attrs);
+
+ /* Full unmap — MADVISE_AUTORESET must reset the attribute */
+ igt_assert_eq(munmap(base_addr, total_size), 0);
+
+ /* Reset is asynchronous; poll for up to 5 seconds. */
+ reset_done = false;
+
+ for (i = 0; i < 5; i++) {
+ int j;
+
+ sleep(1);
+ attrs = xe_vm_get_mem_attr_values_in_range(fd, vm,
+ to_user_pointer(base_addr),
+ total_size, &num_ranges);
+ if (!attrs) {
+ reset_done = true; /* no ranges — reset complete */
+ break;
+ }
+
+ reset_done = true;
+ for (j = 0; j < num_ranges; j++) {
+ if (attrs[j].pat_index.val != pat_wb) {
+ reset_done = false;
+ break;
+ }
+ }
+ free(attrs);
+
+ if (reset_done)
+ break;
+ }
+
+ igt_assert_f(reset_done,
+ "PAT not reset to WB=%u within 5s after full unmap\n", pat_wb);
+
+ xe_vm_destroy(fd, vm);
+}
+
int igt_main()
{
struct drm_xe_engine_class_instance *hwe;
@@ -967,6 +1076,9 @@ int igt_main()
igt_subtest("multi-region-partial-unmap-no-gpu")
test_multi_region_partial_unmap_no_gpu(fd);
+ igt_subtest("single-vma-full-unmap-no-gpu")
+ test_single_vma_full_unmap_no_gpu(fd);
+
igt_fixture() {
xe_device_put(fd);
drm_close_driver(fd);
--
2.43.0
next prev parent reply other threads:[~2026-04-06 9:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-06 9:54 [i-g-t 0/3] tests/xe: Add IGT coverage for SVM madvise autoreset on unmap Arvind Yadav
2026-04-06 9:54 ` [i-g-t 1/3] tests/intel/xe_madvise: Add multi-region-partial-unmap-no-gpu subtest Arvind Yadav
2026-04-06 9:54 ` Arvind Yadav [this message]
2026-04-06 9:54 ` [i-g-t 3/3] tests/intel/xe_madvise: Add multi-region-partial-unmap subtest Arvind Yadav
2026-04-06 10:04 ` ✗ Fi.CI.BUILD: failure for tests/xe: Add IGT coverage for SVM madvise autoreset on unmap 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=20260406095410.1274177-3-arvind.yadav@intel.com \
--to=arvind.yadav@intel.com \
--cc=himal.prasad.ghimiray@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=matthew.brost@intel.com \
--cc=nishit.sharma@intel.com \
--cc=pravalika.gurram@intel.com \
--cc=thomas.hellstrom@linux.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