Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped
@ 2024-06-03 21:05 Jonathan Cavitt
  2024-06-03 22:39 ` Matthew Brost
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Jonathan Cavitt @ 2024-06-03 21:05 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, jonathan.cavitt, matthew.brost, john.c.harrison,
	stuart.summers

An exec queue should be considered reset if the guc it was running on
has had its submission state disabled, as this normally only occurs on
a reset.  So, add the condition to the reset_status guc_exec_queue_op.

Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: John Harrison <john.c.harrison@intel.com>
CC: Matthew Brost <matthew.brost@intel.com>
CC: Stuart Summers <stuart.summers@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_submit.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index d9c159e3c5320..8c0b0c70fa5ea 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1414,7 +1414,8 @@ static void guc_exec_queue_resume(struct xe_exec_queue *q)
 
 static bool guc_exec_queue_reset_status(struct xe_exec_queue *q)
 {
-	return exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
+	return guc_read_stopped(exec_queue_to_guc(q)) ||
+	       exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
 }
 
 /*
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-06-05  5:43 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
2024-06-03 22:39 ` Matthew Brost
2024-06-04 15:00   ` Cavitt, Jonathan
2024-06-04 22:00 ` ✓ CI.Patch_applied: success for " Patchwork
2024-06-04 22:00 ` ✓ CI.checkpatch: " Patchwork
2024-06-04 22:01 ` ✓ CI.KUnit: " Patchwork
2024-06-04 22:12 ` ✓ CI.Build: " Patchwork
2024-06-04 22:13 ` ✗ CI.Hooks: failure " Patchwork
2024-06-04 22:14 ` ✓ CI.checksparse: success " Patchwork
2024-06-04 22:42 ` ✓ CI.BAT: " Patchwork
2024-06-05  5:43 ` ✗ CI.FULL: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox