All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
To: intel-xe@lists.freedesktop.org
Subject: [Intel-xe] [PATCH 3/6] drm/xe/tests: Support CPU page-table updates in the migrate test
Date: Mon, 13 Mar 2023 21:45:16 +0100	[thread overview]
Message-ID: <20230313204519.158888-4-thomas.hellstrom@linux.intel.com> (raw)
In-Reply-To: <20230313204519.158888-1-thomas.hellstrom@linux.intel.com>

The migrate test currently supports only GPU pagetable updates and
will thus break if we fix the CPU pagetable update selection.

Fix the migrate test first.

Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 drivers/gpu/drm/xe/tests/xe_migrate.c | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/xe/tests/xe_migrate.c b/drivers/gpu/drm/xe/tests/xe_migrate.c
index ac659b94e7f5..a3bace16282e 100644
--- a/drivers/gpu/drm/xe/tests/xe_migrate.c
+++ b/drivers/gpu/drm/xe/tests/xe_migrate.c
@@ -66,9 +66,16 @@ sanity_populate_cb(struct xe_migrate_pt_update *pt_update,
 {
 	int i;
 	u64 *ptr = dst;
-
-	for (i = 0; i < num_qwords; i++)
-		ptr[i] = (qword_ofs + i - update->ofs) * 0x1111111111111111ULL;
+	u64 value;
+
+	for (i = 0; i < num_qwords; i++) {
+		value = (qword_ofs + i - update->ofs) * 0x1111111111111111ULL;
+		if (map)
+			xe_map_wr(gt_to_xe(gt), map, (qword_ofs + i) *
+				  sizeof(u64), u64, value);
+		else
+			ptr[i] = value;
+	}
 }
 
 static const struct xe_migrate_pt_update_ops sanity_ops = {
-- 
2.39.2


  parent reply	other threads:[~2023-03-13 20:46 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-13 20:45 [Intel-xe] [PATCH 0/6] Cpu page-table updates and fixes Thomas Hellström
2023-03-13 20:45 ` [Intel-xe] [PATCH 1/6] drm/xe: Use a define to set initial seqno for fences Thomas Hellström
2023-03-14 11:54   ` Matthew Auld
2023-03-14 13:03     ` Thomas Hellström
2023-03-14 16:02       ` Matthew Auld
2023-03-15 15:26     ` Matthew Brost
2023-03-15 15:32       ` Thomas Hellström
2023-03-13 20:45 ` [Intel-xe] [PATCH 2/6] drm/xe/migrate: Update cpu page-table updates Thomas Hellström
2023-03-14 12:15   ` Matthew Auld
2023-03-14 13:11     ` Thomas Hellström
2023-03-15 15:19     ` Thomas Hellström
2023-03-15 15:23       ` Matthew Brost
2023-03-13 20:45 ` Thomas Hellström [this message]
2023-03-14 12:25   ` [Intel-xe] [PATCH 3/6] drm/xe/tests: Support CPU page-table updates in the migrate test Matthew Auld
2023-03-13 20:45 ` [Intel-xe] [PATCH 4/6] drm/xe: Introduce xe_engine_is_idle() Thomas Hellström
2023-03-14 15:32   ` Matthew Auld
2023-03-13 20:45 ` [Intel-xe] [PATCH 5/6] drm/xe: Use a small negative initial seqno Thomas Hellström
2023-03-14 15:46   ` Matthew Auld
2023-03-15 15:44   ` Matthew Brost
2023-03-13 20:45 ` [Intel-xe] [PATCH 6/6] drm/xe/tests: Test both CPU- and GPU page-table updates with the migrate test Thomas Hellström
2023-03-14 15:53   ` Matthew Auld
2023-03-13 21:03 ` [Intel-xe] ✓ CI.Patch_applied: success for Cpu page-table updates and fixes Patchwork
2023-03-13 21:05 ` [Intel-xe] ✓ CI.KUnit: " Patchwork
2023-03-13 21:08 ` [Intel-xe] ✓ CI.Build: " 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=20230313204519.158888-4-thomas.hellstrom@linux.intel.com \
    --to=thomas.hellstrom@linux.intel.com \
    --cc=intel-xe@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.