public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Matthew Brost <matthew.brost@intel.com>
To: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <niranjana.vishwanathapura@intel.com>
Subject: Re: [PATCH 3/5] drm/xe/multi_queue: Capture queue run times for active queues
Date: Thu, 9 Apr 2026 15:00:51 -0700	[thread overview]
Message-ID: <adghk+3e1ZpvWhKX@gsse-cloud1.jf.intel.com> (raw)
In-Reply-To: <20260409203714.1887402-10-umesh.nerlige.ramappa@intel.com>

On Thu, Apr 09, 2026 at 01:37:18PM -0700, Umesh Nerlige Ramappa wrote:
> If a queue is currently active on the CS, query the QUEUE TIMESTAMP
> register to get an up to date value of the runtime. To do so, ensure
> that the primary queue is active and then check if the secondary queue
> is executing on the CS.
> 
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
>  drivers/gpu/drm/xe/regs/xe_engine_regs.h |   4 +
>  drivers/gpu/drm/xe/xe_lrc.c              | 122 +++++++++++++++++++----
>  drivers/gpu/drm/xe/xe_trace_lrc.h        |  27 +++++
>  3 files changed, 133 insertions(+), 20 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> index 1b4a7e9a703d..af6af6f3f5e8 100644
> --- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> @@ -170,6 +170,10 @@
>  #define   GFX_MSIX_INTERRUPT_ENABLE		REG_BIT(13)
>  
>  #define RING_CSMQDEBUG(base)			XE_REG((base) + 0x2b0)
> +#define   CURRENT_ACTIVE_QUEUE_ID_MASK		REG_GENMASK(7, 0)
> +
> +#define RING_QUEUE_TIMESTAMP(base)		XE_REG((base) + 0x4c0)
> +#define RING_QUEUE_TIMESTAMP_UDW(base)		XE_REG((base) + 0x4c0 + 4)
>  
>  #define RING_TIMESTAMP(base)			XE_REG((base) + 0x358)
>  
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
> index be1030c74e21..1e407a761076 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.c
> +++ b/drivers/gpu/drm/xe/xe_lrc.c
> @@ -21,6 +21,7 @@
>  #include "xe_configfs.h"
>  #include "xe_device.h"
>  #include "xe_drm_client.h"
> +#include "xe_exec_queue.h"
>  #include "xe_exec_queue_types.h"
>  #include "xe_gt.h"
>  #include "xe_gt_printk.h"
> @@ -2638,17 +2639,72 @@ static int get_ctx_timestamp(struct xe_lrc *lrc, u32 engine_id, u64 *reg_ctx_ts)
>  	return 0;
>  }
>  
> -/**
> - * xe_lrc_timestamp() - Current ctx timestamp
> - * @lrc: Pointer to the lrc.
> - *
> - * Return latest ctx timestamp. With support for active contexts, the
> - * calculation may be slightly racy, so follow a read-again logic to ensure that
> - * the context is still active before returning the right timestamp.
> - *
> - * Returns: New ctx timestamp value
> - */
> -u64 xe_lrc_timestamp(struct xe_lrc *lrc)
> +static struct xe_hw_engine *get_hwe(struct xe_gt *gt, u32 engine_id)
> +{
> +	u16 class = REG_FIELD_GET(ENGINE_CLASS_ID, engine_id);
> +	u16 instance = REG_FIELD_GET(ENGINE_INSTANCE_ID, engine_id);
> +	struct xe_hw_engine *hwe = xe_gt_hw_engine(gt, class, instance, false);
> +
> +	if (xe_gt_WARN_ONCE(gt, !hwe || xe_hw_engine_is_reserved(hwe),
> +			    "Unexpected engine class:instance %d:%d for context utilization\n",
> +			    class, instance))
> +		return NULL;
> +
> +	return hwe;
> +}
> +
> +static u64 xe_lrc_multi_queue_timestamp(struct xe_lrc *lrc)

This function looks correct but it is little hard to follow.

Any change you can refactor this function so it more or less looks like
the original xe_lrc_timestamp, now xe_lrc_single_queue_timestamp?

e.g., A helper like get_ctx_timestamp -> get_queue_timestamp might this
easier to follow.

Matt

> +{
> +	struct xe_exec_queue *primary_q = lrc->multi_queue.primary;
> +	struct xe_lrc *primary_lrc;
> +	struct xe_hw_engine *hwe;
> +	struct xe_mmio *mmio;
> +	u32 engine_id, queue_id;
> +	u64 reg_ts = lrc->queue_timestamp;
> +
> +	/* Ensure we are PF, primary context is active */
> +	if (IS_SRIOV_VF(lrc_to_xe(lrc)) ||
> +	    !primary_q || !primary_q->lrc[0] ||
> +	    xe_lrc_ctx_timestamp(primary_q->lrc[0]) != CONTEXT_ACTIVE)
> +		return xe_lrc_queue_timestamp(lrc);
> +
> +	/* if primary queue is active, we have a valid engine id */
> +	primary_lrc = primary_q->lrc[0];
> +	engine_id = xe_lrc_engine_id(primary_lrc);
> +	hwe = get_hwe(primary_lrc->gt, engine_id);
> +	if (!hwe)
> +		return xe_lrc_queue_timestamp(lrc);
> +
> +	mmio = &hwe->gt->mmio;
> +	/* check if the queue is currently active and then read timestamp */
> +	queue_id = REG_FIELD_GET(CURRENT_ACTIVE_QUEUE_ID_MASK,
> +				 xe_mmio_read32(mmio, RING_CSMQDEBUG(hwe->mmio_base)));
> +	if (queue_id != lrc->multi_queue.pos)
> +		return xe_lrc_queue_timestamp(lrc);
> +
> +	reg_ts = xe_mmio_read64_2x32(mmio, RING_QUEUE_TIMESTAMP(hwe->mmio_base));
> +
> +	/* double check queue and primary queue are still active */
> +	queue_id = REG_FIELD_GET(CURRENT_ACTIVE_QUEUE_ID_MASK,
> +				 xe_mmio_read32(mmio, RING_CSMQDEBUG(hwe->mmio_base)));
> +	if (queue_id != lrc->multi_queue.pos ||
> +	    xe_lrc_ctx_timestamp(primary_q->lrc[0]) != CONTEXT_ACTIVE)
> +		return xe_lrc_queue_timestamp(lrc);
> +
> +	return reg_ts;
> +}
> +
> +static u64 xe_lrc_update_multi_queue_timestamp(struct xe_lrc *lrc, u64 *old_ts)
> +{
> +	*old_ts = lrc->queue_timestamp;
> +	lrc->queue_timestamp = xe_lrc_multi_queue_timestamp(lrc);
> +
> +	trace_xe_lrc_update_queue_timestamp(lrc, *old_ts);
> +
> +	return lrc->queue_timestamp;
> +}
> +
> +static u64 xe_lrc_single_queue_timestamp(struct xe_lrc *lrc)
>  {
>  	u64 lrc_ts, reg_ts, new_ts = lrc->ctx_timestamp;
>  	u32 engine_id;
> @@ -2680,24 +2736,50 @@ u64 xe_lrc_timestamp(struct xe_lrc *lrc)
>  	return new_ts;
>  }
>  
> +static u64 xe_lrc_update_ctx_timestamp(struct xe_lrc *lrc, u64 *old_ts)
> +{
> +	*old_ts = lrc->ctx_timestamp;
> +	lrc->ctx_timestamp = xe_lrc_single_queue_timestamp(lrc);
> +
> +	trace_xe_lrc_update_timestamp(lrc, *old_ts);
> +
> +	return lrc->ctx_timestamp;
> +}
> +
> +/**
> + * xe_lrc_timestamp() - Current lrc timestamp
> + * @lrc: Pointer to the lrc.
> + *
> + * Return latest lrc timestamp. With support for active contexts/queues, the
> + * calculation may be slightly racy, so follow a read-again logic to ensure that
> + * the context/queue is still active before returning the right timestamp.
> + *
> + * Returns: New lrc timestamp value
> + */
> +u64 xe_lrc_timestamp(struct xe_lrc *lrc)
> +{
> +	if (xe_lrc_is_multi_queue(lrc))
> +		return xe_lrc_multi_queue_timestamp(lrc);
> +	else
> +		return xe_lrc_single_queue_timestamp(lrc);
> +}
> +
>  /**
> - * xe_lrc_update_timestamp() - Update ctx timestamp
> + * xe_lrc_update_timestamp() - Update lrc timestamp
>   * @lrc: Pointer to the lrc.
>   * @old_ts: Old timestamp value
>   *
> - * Populate @old_ts current saved ctx timestamp, read new ctx timestamp and
> + * Populate @old_ts with current saved lrc timestamp, read new lrc timestamp and
>   * update saved value.
>   *
> - * Returns: New ctx timestamp value
> + * Returns: New lrc timestamp value
>   */
>  u64 xe_lrc_update_timestamp(struct xe_lrc *lrc, u64 *old_ts)
>  {
> -	*old_ts = lrc->ctx_timestamp;
> -	lrc->ctx_timestamp = xe_lrc_timestamp(lrc);
> -
> -	trace_xe_lrc_update_timestamp(lrc, *old_ts);
> -
> -	return lrc->ctx_timestamp;
> +	if (xe_lrc_is_multi_queue(lrc))
> +		return xe_lrc_update_multi_queue_timestamp(lrc, old_ts);
> +	else
> +		return xe_lrc_update_ctx_timestamp(lrc, old_ts);
>  }
>  
>  /**
> diff --git a/drivers/gpu/drm/xe/xe_trace_lrc.h b/drivers/gpu/drm/xe/xe_trace_lrc.h
> index d525cbee1e34..988d360143dc 100644
> --- a/drivers/gpu/drm/xe/xe_trace_lrc.h
> +++ b/drivers/gpu/drm/xe/xe_trace_lrc.h
> @@ -12,6 +12,7 @@
>  #include <linux/tracepoint.h>
>  #include <linux/types.h>
>  
> +#include "xe_exec_queue_types.h"
>  #include "xe_gt_types.h"
>  #include "xe_lrc.h"
>  #include "xe_lrc_types.h"
> @@ -42,6 +43,32 @@ TRACE_EVENT(xe_lrc_update_timestamp,
>  		      __get_str(device_id))
>  );
>  
> +TRACE_EVENT(xe_lrc_update_queue_timestamp,
> +	    TP_PROTO(struct xe_lrc *lrc, uint64_t old),
> +	    TP_ARGS(lrc, old),
> +	    TP_STRUCT__entry(
> +		     __field(struct xe_lrc *, lrc)
> +		     __field(u8, pos)
> +		     __field(u64, old)
> +		     __field(u64, new)
> +		     __string(name, lrc->fence_ctx.name)
> +		     __string(device_id, __dev_name_lrc(lrc))
> +	    ),
> +
> +	    TP_fast_assign(
> +		   __entry->lrc	= lrc;
> +		   __entry->pos = lrc->multi_queue.pos;
> +		   __entry->old = old;
> +		   __entry->new = lrc->queue_timestamp;
> +		   __assign_str(name);
> +		   __assign_str(device_id);
> +		   ),
> +	    TP_printk("lrc=:%p pos=%d lrc->name=%s old=%llu new=%llu device_id:%s",
> +		      __entry->lrc, __entry->pos, __get_str(name),
> +		      __entry->old, __entry->new,
> +		      __get_str(device_id))
> +);
> +
>  #endif
>  
>  /* This part must be outside protection */
> -- 
> 2.43.0
> 

  reply	other threads:[~2026-04-09 22:01 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-09 20:37 [PATCH 0/5] Support run ticks for multi-queue use case Umesh Nerlige Ramappa
2026-04-09 20:37 ` [PATCH 1/5] drm/xe/multi_queue: Store primary queue and position info in LRC Umesh Nerlige Ramappa
2026-04-09 20:59   ` Matthew Brost
2026-04-09 23:30     ` Umesh Nerlige Ramappa
2026-04-13 21:33   ` Niranjana Vishwanathapura
2026-04-09 20:37 ` [PATCH 2/5] drm/xe/multi_queue: Add helpers to access CS QUEUE TIMESTAMP from lrc Umesh Nerlige Ramappa
2026-04-09 21:10   ` Matthew Brost
2026-04-09 21:16   ` Matthew Brost
2026-04-13 21:44   ` Niranjana Vishwanathapura
2026-04-09 20:37 ` [PATCH 3/5] drm/xe/multi_queue: Capture queue run times for active queues Umesh Nerlige Ramappa
2026-04-09 22:00   ` Matthew Brost [this message]
2026-04-09 22:23   ` Summers, Stuart
2026-04-09 23:54     ` Umesh Nerlige Ramappa
2026-04-09 23:03   ` Summers, Stuart
2026-04-13 22:09   ` Niranjana Vishwanathapura
2026-04-13 22:19     ` Umesh Nerlige Ramappa
2026-04-13 22:40       ` Niranjana Vishwanathapura
2026-04-09 20:37 ` [PATCH 4/5] drm/xe/multi_queue: Use QUEUE_TIMESTAMP as job timestamp for multi-queue Umesh Nerlige Ramappa
2026-04-09 21:20   ` Matthew Brost
2026-04-13 19:08   ` Niranjana Vishwanathapura
2026-04-09 20:37 ` [PATCH 5/5] drm/xe/multi_queue: Whitelist QUEUE_TIMESTAMP register Umesh Nerlige Ramappa
2026-04-13 18:17   ` Niranjana Vishwanathapura
2026-04-14 18:56     ` Umesh Nerlige Ramappa
2026-04-09 20:42 ` ✗ CI.checkpatch: warning for Support run ticks for multi-queue use case Patchwork
2026-04-09 20:44 ` ✗ CI.KUnit: 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=adghk+3e1ZpvWhKX@gsse-cloud1.jf.intel.com \
    --to=matthew.brost@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=niranjana.vishwanathapura@intel.com \
    --cc=umesh.nerlige.ramappa@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