From: Matthew Brost <matthew.brost@intel.com>
To: Raag Jadav <raag.jadav@intel.com>
Cc: <lucas.demarchi@intel.com>, <rodrigo.vivi@intel.com>,
<intel-xe@lists.freedesktop.org>, <riana.tauro@intel.com>,
<daniele.ceraolospurio@intel.com>, <michal.wajdeczko@intel.com>,
<badal.nilawar@intel.com>
Subject: Re: [PATCH v7 2/4] drm/xe/guc_submit: Introduce pause/unpause() helpers for PF
Date: Mon, 27 Oct 2025 11:44:35 -0700 [thread overview]
Message-ID: <aP+9kzsRKNvGXqiT@lstrano-desk.jf.intel.com> (raw)
In-Reply-To: <20251027123057.3738059-3-raag.jadav@intel.com>
On Mon, Oct 27, 2025 at 06:00:55PM +0530, Raag Jadav wrote:
> Introduce pause/unpause() helpers which stop/start further runs of
> submission tasks on given GuC and can be called from PF context. This
> is in preparation of usecases where we simply need to stop/start the
> scheduler without losing GuC state and don't require dealing with VF
> migration.
>
> v7: Reword commit message (Matthew Brost)
>
> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 30 ++++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_submit.h | 2 ++
> 2 files changed, 32 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 0cb83e5faceb..ebaaa0b6ddfb 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -2161,6 +2161,21 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q)
> }
> }
>
> +/**
> + * xe_guc_submit_pause - Stop further runs of submission tasks on given GuC.
> + * @guc: the &xe_guc struct instance whose scheduler is to be disabled
> + */
> +void xe_guc_submit_pause(struct xe_guc *guc)
> +{
> + struct xe_exec_queue *q;
> + unsigned long index;
> +
> + mutex_lock(&guc->submission_state.lock);
> + xa_for_each(&guc->submission_state.exec_queue_lookup, index, q)
> + xe_sched_submission_stop(&q->guc->sched);
> + mutex_unlock(&guc->submission_state.lock);
> +}
> +
> /**
> * xe_guc_submit_pause_vf - Stop further runs of submission tasks for VF.
> * @guc: the &xe_guc struct instance whose scheduler is to be disabled
> @@ -2335,6 +2350,21 @@ static void guc_exec_queue_unpause(struct xe_guc *guc, struct xe_exec_queue *q)
> xe_sched_submission_resume_tdr(sched);
> }
>
> +/**
> + * xe_guc_submit_unpause - Allow further runs of submission tasks on given GuC.
> + * @guc: the &xe_guc struct instance whose scheduler is to be enabled
> + */
> +void xe_guc_submit_unpause(struct xe_guc *guc)
> +{
> + struct xe_exec_queue *q;
> + unsigned long index;
> +
> + mutex_lock(&guc->submission_state.lock);
> + xa_for_each(&guc->submission_state.exec_queue_lookup, index, q)
> + xe_sched_submission_start(&q->guc->sched);
> + mutex_unlock(&guc->submission_state.lock);
> +}
> +
> /**
> * xe_guc_submit_unpause_vf - Allow further runs of submission tasks for VF.
> * @guc: the &xe_guc struct instance whose scheduler is to be enabled
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.h b/drivers/gpu/drm/xe/xe_guc_submit.h
> index 0e7996836131..100a7891b918 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.h
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.h
> @@ -20,8 +20,10 @@ int xe_guc_submit_reset_prepare(struct xe_guc *guc);
> void xe_guc_submit_reset_wait(struct xe_guc *guc);
> void xe_guc_submit_stop(struct xe_guc *guc);
> int xe_guc_submit_start(struct xe_guc *guc);
> +void xe_guc_submit_pause(struct xe_guc *guc);
> void xe_guc_submit_pause_abort(struct xe_guc *guc);
> void xe_guc_submit_pause_vf(struct xe_guc *guc);
> +void xe_guc_submit_unpause(struct xe_guc *guc);
> void xe_guc_submit_unpause_vf(struct xe_guc *guc);
> void xe_guc_submit_unpause_prepare_vf(struct xe_guc *guc);
> void xe_guc_submit_wedge(struct xe_guc *guc);
> --
> 2.34.1
>
next prev parent reply other threads:[~2025-10-27 18:44 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-27 12:30 [PATCH v7 0/4] Introduce GT runtime suspend/resume Raag Jadav
2025-10-27 12:30 ` [PATCH v7 1/4] drm/xe/vf: Update pause/unpause() helpers with VF naming Raag Jadav
2025-10-27 12:30 ` [PATCH v7 2/4] drm/xe/guc_submit: Introduce pause/unpause() helpers for PF Raag Jadav
2025-10-27 18:44 ` Matthew Brost [this message]
2025-10-27 12:30 ` [PATCH v7 3/4] drm/xe/pm: Assert on runtime suspend if VFs are enabled Raag Jadav
2025-10-27 19:17 ` Matthew Brost
2025-10-27 19:18 ` Matthew Brost
2025-10-27 12:30 ` [PATCH v7 4/4] drm/xe/gt: Introduce runtime suspend/resume Raag Jadav
2025-10-27 20:52 ` Rodrigo Vivi
2025-10-27 12:39 ` ✓ CI.KUnit: success for Introduce GT runtime suspend/resume (rev5) Patchwork
2025-10-27 13:20 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-27 15:07 ` ✗ Xe.CI.Full: failure " 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=aP+9kzsRKNvGXqiT@lstrano-desk.jf.intel.com \
--to=matthew.brost@intel.com \
--cc=badal.nilawar@intel.com \
--cc=daniele.ceraolospurio@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=lucas.demarchi@intel.com \
--cc=michal.wajdeczko@intel.com \
--cc=raag.jadav@intel.com \
--cc=riana.tauro@intel.com \
--cc=rodrigo.vivi@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