From: Matthew Brost <matthew.brost@intel.com>
To: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Cc: <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH v3 09/18] drm/xe/multi_queue: Handle tearing down of a multi queue
Date: Fri, 21 Nov 2025 15:03:36 -0800 [thread overview]
Message-ID: <aSDvyLS/vDfpMGMa@lstrano-desk.jf.intel.com> (raw)
In-Reply-To: <20251121035147.766072-29-niranjana.vishwanathapura@intel.com>
On Thu, Nov 20, 2025 at 07:51:43PM -0800, Niranjana Vishwanathapura wrote:
> As all queues of a multi queue group use the primary queue of the group
> to interface with GuC. Hence there is a dependency between the queues of
> the group. So, when primary queue of a multi queue group is cleaned up,
> also trigger a cleanup of the secondary queues also. During cleanup, stop
> and re-start submission for all queues of a multi queue group to avoid
> any submission happening in parallel when a queue is being cleaned up.
>
> v2: Initialize group->list_lock, add fs_reclaim dependency, remove
> unwanted secondary queues cleanup (Matt Brost)
> v3: Properly handle cleanup of multi-queue group (Matt Brost)
>
> Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
> ---
> drivers/gpu/drm/xe/xe_exec_queue.c | 10 ++
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 6 +
> drivers/gpu/drm/xe/xe_guc_submit.c | 154 ++++++++++++++++++-----
> 3 files changed, 142 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
> index cdc044d3c96c..ab161b74fef0 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.c
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.c
> @@ -87,6 +87,7 @@ static void xe_exec_queue_group_cleanup(struct xe_exec_queue *q)
> xe_lrc_put(lrc);
>
> xa_destroy(&group->xa);
> + mutex_destroy(&group->list_lock);
> xe_bo_unpin_map_no_vm(group->cgp_bo);
> kfree(group);
> }
> @@ -627,9 +628,18 @@ static int xe_exec_queue_group_init(struct xe_device *xe, struct xe_exec_queue *
>
> group->primary = q;
> group->cgp_bo = bo;
> + INIT_LIST_HEAD(&group->list);
> xa_init_flags(&group->xa, XA_FLAGS_ALLOC1);
> + mutex_init(&group->list_lock);
> q->multi_queue.group = group;
>
> + /* group->list_lock is used in submission backend */
> + if (!IS_ENABLED(CONFIG_LOCKDEP)) {
I believe the polarity is inverted above.
Everything else LGTM.
Matt
> + fs_reclaim_acquire(GFP_KERNEL);
> + might_lock(&group->list_lock);
> + fs_reclaim_release(GFP_KERNEL);
> + }
> +
> return 0;
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> index cafb3ba9a123..5721fb4bad1a 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> @@ -58,6 +58,10 @@ struct xe_exec_queue_group {
> struct xe_bo *cgp_bo;
> /** @xa: xarray to store LRCs */
> struct xarray xa;
> + /** @list: List of all secondary queues in the group */
> + struct list_head list;
> + /** @list_lock: Secondary queue list lock */
> + struct mutex list_lock;
> /** @sync_pending: CGP_SYNC_DONE g2h response pending */
> bool sync_pending;
> };
> @@ -145,6 +149,8 @@ struct xe_exec_queue {
> struct {
> /** @multi_queue.group: Queue group information */
> struct xe_exec_queue_group *group;
> + /** @multi_queue.link: Link into group's secondary queues list */
> + struct list_head link;
> /** @multi_queue.priority: Queue priority within the multi-queue group */
> enum xe_multi_queue_priority priority;
> /** @multi_queue.pos: Position of queue within the multi-queue group */
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index ce870a119800..2e5fff7ad69b 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -577,6 +577,45 @@ static bool vf_recovery(struct xe_guc *guc)
> return xe_gt_recovery_pending(guc_to_gt(guc));
> }
>
> +static void xe_guc_exec_queue_trigger_cleanup(struct xe_exec_queue *q)
> +{
> + struct xe_guc *guc = exec_queue_to_guc(q);
> + struct xe_device *xe = guc_to_xe(guc);
> +
> + /** to wakeup xe_wait_user_fence ioctl if exec queue is reset */
> + wake_up_all(&xe->ufence_wq);
> +
> + if (xe_exec_queue_is_lr(q))
> + queue_work(guc_to_gt(guc)->ordered_wq, &q->guc->lr_tdr);
> + else
> + xe_sched_tdr_queue_imm(&q->guc->sched);
> +}
> +
> +static void xe_guc_exec_queue_reset_trigger_cleanup(struct xe_exec_queue *q)
> +{
> + if (xe_exec_queue_is_multi_queue(q)) {
> + struct xe_exec_queue *primary = xe_exec_queue_multi_queue_primary(q);
> + struct xe_exec_queue_group *group = q->multi_queue.group;
> + struct xe_exec_queue *eq;
> +
> + set_exec_queue_reset(primary);
> + if (!exec_queue_banned(primary) && !exec_queue_check_timeout(primary))
> + xe_guc_exec_queue_trigger_cleanup(primary);
> +
> + mutex_lock(&group->list_lock);
> + list_for_each_entry(eq, &group->list, multi_queue.link) {
> + set_exec_queue_reset(eq);
> + if (!exec_queue_banned(eq) && !exec_queue_check_timeout(eq))
> + xe_guc_exec_queue_trigger_cleanup(eq);
> + }
> + mutex_unlock(&group->list_lock);
> + } else {
> + set_exec_queue_reset(q);
> + if (!exec_queue_banned(q) && !exec_queue_check_timeout(q))
> + xe_guc_exec_queue_trigger_cleanup(q);
> + }
> +}
> +
> #define parallel_read(xe_, map_, field_) \
> xe_map_rd_field(xe_, &map_, 0, struct guc_submit_parallel_scratch, \
> field_)
> @@ -939,6 +978,50 @@ static void wq_item_append(struct xe_exec_queue *q)
> parallel_write(xe, map, wq_desc.tail, q->guc->wqi_tail);
> }
>
> +static void xe_guc_exec_queue_submission_start(struct xe_exec_queue *q)
> +{
> + /*
> + * If the exec queue is part of a multi queue group, then start submission
> + * on all queues of the multi queue group.
> + */
> + if (xe_exec_queue_is_multi_queue(q)) {
> + struct xe_exec_queue *primary = xe_exec_queue_multi_queue_primary(q);
> + struct xe_exec_queue_group *group = q->multi_queue.group;
> + struct xe_exec_queue *eq;
> +
> + xe_sched_submission_start(&primary->guc->sched);
> +
> + mutex_lock(&group->list_lock);
> + list_for_each_entry(eq, &group->list, multi_queue.link)
> + xe_sched_submission_start(&eq->guc->sched);
> + mutex_unlock(&group->list_lock);
> + } else {
> + xe_sched_submission_start(&q->guc->sched);
> + }
> +}
> +
> +static void xe_guc_exec_queue_submission_stop(struct xe_exec_queue *q)
> +{
> + /*
> + * If the exec queue is part of a multi queue group, then stop submission
> + * on all queues of the multi queue group.
> + */
> + if (xe_exec_queue_is_multi_queue(q)) {
> + struct xe_exec_queue *primary = xe_exec_queue_multi_queue_primary(q);
> + struct xe_exec_queue_group *group = q->multi_queue.group;
> + struct xe_exec_queue *eq;
> +
> + xe_sched_submission_stop(&primary->guc->sched);
> +
> + mutex_lock(&group->list_lock);
> + list_for_each_entry(eq, &group->list, multi_queue.link)
> + xe_sched_submission_stop(&eq->guc->sched);
> + mutex_unlock(&group->list_lock);
> + } else {
> + xe_sched_submission_stop(&q->guc->sched);
> + }
> +}
> +
> #define RESUME_PENDING ~0x0ull
> static void submit_exec_queue(struct xe_exec_queue *q, struct xe_sched_job *job)
> {
> @@ -1117,20 +1200,6 @@ static void disable_scheduling_deregister(struct xe_guc *guc,
> G2H_LEN_DW_DEREGISTER_CONTEXT, 2);
> }
>
> -static void xe_guc_exec_queue_trigger_cleanup(struct xe_exec_queue *q)
> -{
> - struct xe_guc *guc = exec_queue_to_guc(q);
> - struct xe_device *xe = guc_to_xe(guc);
> -
> - /** to wakeup xe_wait_user_fence ioctl if exec queue is reset */
> - wake_up_all(&xe->ufence_wq);
> -
> - if (xe_exec_queue_is_lr(q))
> - queue_work(guc_to_gt(guc)->ordered_wq, &q->guc->lr_tdr);
> - else
> - xe_sched_tdr_queue_imm(&q->guc->sched);
> -}
> -
> /**
> * xe_guc_submit_wedge() - Wedge GuC submission
> * @guc: the GuC object
> @@ -1204,8 +1273,12 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
> if (!exec_queue_killed(q))
> wedged = guc_submit_hint_wedged(exec_queue_to_guc(q));
>
> - /* Kill the run_job / process_msg entry points */
> - xe_sched_submission_stop(sched);
> + /*
> + * Kill the run_job / process_msg entry points.
> + * As this function is serialized across exec queues, it is safe to
> + * stop and restart submission on all queues of a multi queue group.
> + */
> + xe_guc_exec_queue_submission_stop(q);
>
> /*
> * Engine state now mostly stable, disable scheduling / deregister if
> @@ -1241,7 +1314,7 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
> q->guc->id);
> xe_devcoredump(q, NULL, "Schedule disable failed to respond, guc_id=%d\n",
> q->guc->id);
> - xe_sched_submission_start(sched);
> + xe_guc_exec_queue_submission_start(q);
> xe_gt_reset_async(q->gt);
> return;
> }
> @@ -1252,7 +1325,7 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
>
> xe_hw_fence_irq_stop(q->fence_irq);
>
> - xe_sched_submission_start(sched);
> + xe_guc_exec_queue_submission_start(q);
>
> spin_lock(&sched->base.job_list_lock);
> list_for_each_entry(job, &sched->base.pending_list, drm.list)
> @@ -1410,8 +1483,12 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
> vf_recovery(guc))
> return DRM_GPU_SCHED_STAT_NO_HANG;
>
> - /* Kill the run_job entry point */
> - xe_sched_submission_stop(sched);
> + /*
> + * Kill the run_job entry point.
> + * As this function is serialized across exec queues, it is safe to
> + * stop and restart submission on all queues of a multi queue group.
> + */
> + xe_guc_exec_queue_submission_stop(q);
>
> /* Must check all state after stopping scheduler */
> skip_timeout_check = exec_queue_reset(q) ||
> @@ -1568,7 +1645,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
> * fences that are complete
> */
> xe_sched_add_pending_job(sched, job);
> - xe_sched_submission_start(sched);
> + xe_guc_exec_queue_submission_start(q);
>
> xe_guc_exec_queue_trigger_cleanup(q);
>
> @@ -1592,7 +1669,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
> * but there is not currently an easy way to do in DRM scheduler. With
> * some thought, do this in a follow up.
> */
> - xe_sched_submission_start(sched);
> + xe_guc_exec_queue_submission_start(q);
> handle_vf_resume:
> return DRM_GPU_SCHED_STAT_NO_HANG;
> }
> @@ -1623,6 +1700,14 @@ static void __guc_exec_queue_destroy_async(struct work_struct *w)
> guard(xe_pm_runtime)(guc_to_xe(guc));
> trace_xe_exec_queue_destroy(q);
>
> + if (xe_exec_queue_is_multi_queue_secondary(q)) {
> + struct xe_exec_queue_group *group = q->multi_queue.group;
> +
> + mutex_lock(&group->list_lock);
> + list_del(&q->multi_queue.link);
> + mutex_unlock(&group->list_lock);
> + }
> +
> if (xe_exec_queue_is_lr(q))
> cancel_work_sync(&ge->lr_tdr);
> /* Confirm no work left behind accessing device structures */
> @@ -1913,6 +1998,19 @@ static int guc_exec_queue_init(struct xe_exec_queue *q)
>
> xe_exec_queue_assign_name(q, q->guc->id);
>
> + /*
> + * Maintain secondary queues of the multi queue group in a list
> + * for handling dependencies across the queues in the group.
> + */
> + if (xe_exec_queue_is_multi_queue_secondary(q)) {
> + struct xe_exec_queue_group *group = q->multi_queue.group;
> +
> + INIT_LIST_HEAD(&q->multi_queue.link);
> + mutex_lock(&group->list_lock);
> + list_add_tail(&q->multi_queue.link, &group->list);
> + mutex_unlock(&group->list_lock);
> + }
> +
> trace_xe_exec_queue_create(q);
>
> return 0;
> @@ -2140,6 +2238,10 @@ static void guc_exec_queue_resume(struct xe_exec_queue *q)
>
> static bool guc_exec_queue_reset_status(struct xe_exec_queue *q)
> {
> + if (xe_exec_queue_is_multi_queue_secondary(q) &&
> + guc_exec_queue_reset_status(xe_exec_queue_multi_queue_primary(q)))
> + return true;
> +
> return exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
> }
>
> @@ -2801,9 +2903,7 @@ int xe_guc_exec_queue_reset_handler(struct xe_guc *guc, u32 *msg, u32 len)
> * jobs by setting timeout of the job to the minimum value kicking
> * guc_exec_queue_timedout_job.
> */
> - set_exec_queue_reset(q);
> - if (!exec_queue_banned(q) && !exec_queue_check_timeout(q))
> - xe_guc_exec_queue_trigger_cleanup(q);
> + xe_guc_exec_queue_reset_trigger_cleanup(q);
>
> return 0;
> }
> @@ -2882,9 +2982,7 @@ int xe_guc_exec_queue_memory_cat_error_handler(struct xe_guc *guc, u32 *msg,
> trace_xe_exec_queue_memory_cat_error(q);
>
> /* Treat the same as engine reset */
> - set_exec_queue_reset(q);
> - if (!exec_queue_banned(q) && !exec_queue_check_timeout(q))
> - xe_guc_exec_queue_trigger_cleanup(q);
> + xe_guc_exec_queue_reset_trigger_cleanup(q);
>
> return 0;
> }
> --
> 2.43.0
>
next prev parent reply other threads:[~2025-11-21 23:03 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-21 3:51 [PATCH v3 00/18] drm/xe: Multi Queue feature support Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 01/18] drm/xe/multi_queue: Add multi_queue_enable_mask to gt information Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 02/18] drm/xe/multi_queue: Add user interface for multi queue support Niranjana Vishwanathapura
2025-11-21 22:51 ` Matthew Brost
2025-11-22 4:35 ` Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 03/18] drm/xe/multi_queue: Add GuC " Niranjana Vishwanathapura
2025-11-22 22:16 ` Matthew Brost
2025-12-03 3:40 ` Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 04/18] drm/xe/multi_queue: Add multi queue priority property Niranjana Vishwanathapura
2025-11-21 22:57 ` Matthew Brost
2025-11-21 3:51 ` [PATCH v3 05/18] drm/xe/multi_queue: Handle invalid exec queue property setting Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 06/18] drm/xe/multi_queue: Add exec_queue set_property ioctl support Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 07/18] drm/xe/multi_queue: Add support for multi queue dynamic priority change Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 08/18] drm/xe/multi_queue: Add multi queue information to guc_info dump Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 09/18] drm/xe/multi_queue: Handle tearing down of a multi queue Niranjana Vishwanathapura
2025-11-21 23:03 ` Matthew Brost [this message]
2025-11-22 4:40 ` Niranjana Vishwanathapura
2025-11-22 5:47 ` Matthew Brost
2025-12-09 3:31 ` Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 10/18] drm/xe/multi_queue: Set QUEUE_DRAIN_MODE for Multi Queue batches Niranjana Vishwanathapura
2025-11-24 18:49 ` Matt Roper
2025-12-02 21:28 ` Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 11/18] drm/xe/multi_queue: Handle CGP context error Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 12/18] drm/xe/multi_queue: Reset GT upon CGP_SYNC failure Niranjana Vishwanathapura
2025-11-21 23:08 ` Matthew Brost
2025-11-21 3:51 ` [PATCH v3 13/18] drm/xe/multi_queue: Tracepoint support Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 14/18] drm/xe/multi_queue: Support active group after primary is destroyed Niranjana Vishwanathapura
2025-11-22 5:57 ` Matthew Brost
2025-11-22 6:08 ` Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 15/18] drm/xe/xe3p: Disable GuC Dynamic ICS for Xe3p Niranjana Vishwanathapura
2025-11-21 3:51 ` [PATCH v3 16/18] drm/xe/doc: Add documentation for Multi Queue Group Niranjana Vishwanathapura
2025-11-22 6:02 ` Matthew Brost
2025-11-21 3:51 ` [PATCH v3 17/18] drm/xe/doc: Add documentation for Multi Queue Group GuC interface Niranjana Vishwanathapura
2025-11-22 6:10 ` Matthew Brost
2025-11-21 3:51 ` [PATCH v3 18/18] drm/xe/multi_queue: Enable multi_queue on xe3p_xpc Niranjana Vishwanathapura
2025-11-21 4:01 ` ✗ CI.checkpatch: warning for drm/xe: Multi Queue feature support (rev3) Patchwork
2025-11-21 4:02 ` ✓ CI.KUnit: success " Patchwork
2025-11-21 4:51 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-11-21 8:10 ` ✗ Xe.CI.Full: " Patchwork
2025-11-24 14:04 ` Patchwork
2025-11-27 9:38 ` [PATCH v3 00/18] drm/xe: Multi Queue feature support Hoppe, Mateusz
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=aSDvyLS/vDfpMGMa@lstrano-desk.jf.intel.com \
--to=matthew.brost@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=niranjana.vishwanathapura@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