summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_engine.c
diff options
context:
space:
mode:
authorThomas Hellström <thomas.hellstrom@linux.intel.com>2023-03-10 12:03:47 +0100
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-19 18:30:13 -0500
commit155c9165542863c97b5284afa37e3d8e385a8815 (patch)
tree4036dd40cff666f9f440d6a4bc47e7a64b8f5857 /drivers/gpu/drm/xe/xe_engine.c
parent17a28ea23c4087cf4580744a70105ccc83efc769 (diff)
drm/xe: Introduce xe_engine_is_idle()
Introduce xe_engine_is_idle, and replace the static function in xe_migrate.c. The latter had two flaws. First the seqno == 1 test might return a false true value each time the seqno counter wrapped, Second, the cur_seqno == next_seqno test would never return true. Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_engine.c')
-rw-r--r--drivers/gpu/drm/xe/xe_engine.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/xe_engine.c b/drivers/gpu/drm/xe/xe_engine.c
index edd1192f6ec5..8011f5827cbe 100644
--- a/drivers/gpu/drm/xe/xe_engine.c
+++ b/drivers/gpu/drm/xe/xe_engine.c
@@ -683,6 +683,29 @@ static void engine_kill_compute(struct xe_engine *e)
up_write(&e->vm->lock);
}
+/**
+ * xe_engine_is_idle() - Whether an engine is idle.
+ * @engine: The engine
+ *
+ * FIXME: Need to determine what to use as the short-lived
+ * timeline lock for the engines, so that the return value
+ * of this function becomes more than just an advisory
+ * snapshot in time. The timeline lock must protect the
+ * seqno from racing submissions on the same engine.
+ * Typically vm->resv, but user-created timeline locks use the migrate vm
+ * and never grabs the migrate vm->resv so we have a race there.
+ *
+ * Return: True if the engine is idle, false otherwise.
+ */
+bool xe_engine_is_idle(struct xe_engine *engine)
+{
+ if (XE_WARN_ON(xe_engine_is_parallel(engine)))
+ return false;
+
+ return xe_lrc_seqno(&engine->lrc[0]) ==
+ engine->lrc[0].fence_ctx.next_seqno - 1;
+}
+
void xe_engine_kill(struct xe_engine *e)
{
struct xe_engine *engine = e, *next;