]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/xe/multi_queue: Add helpers to access CS QUEUE TIMESTAMP from lrc
authorUmesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Thu, 7 May 2026 16:20:23 +0000 (09:20 -0700)
committerUmesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Fri, 8 May 2026 20:48:44 +0000 (13:48 -0700)
In secondary queue LRCs, the QUEUE TIMESTAMP register is saved and
restored allowing us to view the individual queue run times. Add helpers
to read this value from the LRC.

BSpec: 73988

Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Link: https://patch.msgid.link/20260507162016.3888309-19-umesh.nerlige.ramappa@intel.com
drivers/gpu/drm/xe/regs/xe_lrc_layout.h
drivers/gpu/drm/xe/xe_lrc.c
drivers/gpu/drm/xe/xe_lrc.h
drivers/gpu/drm/xe/xe_lrc_types.h

index b5eff383902c5fb49e29d8b4644d5c991239427e..4ab86fc369fdfa746e721398206143e8fde7f260 100644 (file)
@@ -34,6 +34,9 @@
 #define CTX_CS_INT_VEC_REG             0x5a
 #define CTX_CS_INT_VEC_DATA            (CTX_CS_INT_VEC_REG + 1)
 
+#define CTX_QUEUE_TIMESTAMP            (0xd0 + 1)
+#define CTX_QUEUE_TIMESTAMP_UDW                (0xd2 + 1)
+
 #define INDIRECT_CTX_RING_HEAD         (0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL         (0x04 + 1)
 #define INDIRECT_CTX_RING_START                (0x06 + 1)
index b31525bd2a4ca92bd0fda68c6c8f1f6559aa1e07..0dc50627e1b7393cce7ae7c0cc55f1d638dec61c 100644 (file)
@@ -777,6 +777,16 @@ static u32 __xe_lrc_ctx_timestamp_udw_offset(struct xe_lrc *lrc)
        return __xe_lrc_regs_offset(lrc) + CTX_TIMESTAMP_UDW * sizeof(u32);
 }
 
+static u32 __xe_lrc_queue_timestamp_offset(struct xe_lrc *lrc)
+{
+       return __xe_lrc_regs_offset(lrc) + CTX_QUEUE_TIMESTAMP * sizeof(u32);
+}
+
+static u32 __xe_lrc_queue_timestamp_udw_offset(struct xe_lrc *lrc)
+{
+       return __xe_lrc_regs_offset(lrc) + CTX_QUEUE_TIMESTAMP_UDW * sizeof(u32);
+}
+
 static inline u32 __xe_lrc_indirect_ring_offset(struct xe_lrc *lrc)
 {
        u32 offset = xe_bo_size(lrc->bo) - LRC_WA_BB_SIZE -
@@ -826,6 +836,8 @@ DECL_MAP_ADDR_HELPERS(ctx_timestamp_udw, lrc->bo)
 DECL_MAP_ADDR_HELPERS(parallel, lrc->bo)
 DECL_MAP_ADDR_HELPERS(indirect_ring, lrc->bo)
 DECL_MAP_ADDR_HELPERS(engine_id, lrc->bo)
+DECL_MAP_ADDR_HELPERS(queue_timestamp, lrc->bo)
+DECL_MAP_ADDR_HELPERS(queue_timestamp_udw, lrc->bo)
 
 #undef DECL_MAP_ADDR_HELPERS
 
@@ -874,6 +886,29 @@ static u64 xe_lrc_ctx_timestamp(struct xe_lrc *lrc)
        return (u64)udw << 32 | ldw;
 }
 
+/**
+ * xe_lrc_queue_timestamp() - Read queue timestamp value
+ * @lrc: Pointer to the lrc.
+ *
+ * Returns: queue timestamp value
+ */
+static u64 xe_lrc_queue_timestamp(struct xe_lrc *lrc)
+{
+       struct xe_device *xe = lrc_to_xe(lrc);
+       struct iosys_map map;
+       u32 ldw, udw = 0;
+
+       xe_assert(xe, xe_lrc_is_multi_queue(lrc));
+
+       map = __xe_lrc_queue_timestamp_map(lrc);
+       ldw = xe_map_read32(xe, &map);
+
+       map = __xe_lrc_queue_timestamp_udw_map(lrc);
+       udw = xe_map_read32(xe, &map);
+
+       return (u64)udw << 32 | ldw;
+}
+
 /**
  * xe_lrc_ctx_job_timestamp_ggtt_addr() - Get ctx job timestamp GGTT address
  * @lrc: Pointer to the lrc.
@@ -1538,6 +1573,18 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
        if (lrc_to_xe(lrc)->info.has_64bit_timestamp)
                xe_lrc_write_ctx_reg(lrc, CTX_TIMESTAMP_UDW, 0);
 
+       /*
+        * Note: It's possible that this LRC may belong to an exec_queue that is
+        * not part of a multi-queue group. That said, it doesn't hurt to set
+        * this field anyways since any class that supports multi-queue will
+        * have these LRC fields defined.
+        */
+       if (xe_gt_supports_multi_queue(gt, hwe->class)) {
+               lrc->queue_timestamp = 0;
+               xe_lrc_write_ctx_reg(lrc, CTX_QUEUE_TIMESTAMP, 0);
+               xe_lrc_write_ctx_reg(lrc, CTX_QUEUE_TIMESTAMP_UDW, 0);
+       }
+
        if (xe->info.has_asid && vm)
                xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
@@ -2466,6 +2513,14 @@ struct xe_lrc_snapshot *xe_lrc_snapshot_capture(struct xe_lrc *lrc)
        snapshot->ctx_timestamp = xe_lrc_ctx_timestamp(lrc);
        snapshot->ctx_timestamp_ms =
                xe_gt_clock_interval_to_ms(lrc->gt, xe_lrc_ctx_timestamp(lrc));
+       if (xe_lrc_is_multi_queue(lrc)) {
+               snapshot->queue_timestamp = xe_lrc_queue_timestamp(lrc);
+               snapshot->queue_timestamp_ms =
+                       xe_gt_clock_interval_to_ms(lrc->gt, snapshot->queue_timestamp);
+       } else {
+               snapshot->queue_timestamp = 0;
+               snapshot->queue_timestamp_ms = 0;
+       }
        snapshot->ctx_job_timestamp = xe_lrc_ctx_job_timestamp(lrc);
        return snapshot;
 }
@@ -2520,6 +2575,8 @@ void xe_lrc_snapshot_print(struct xe_lrc_snapshot *snapshot, struct drm_printer
        drm_printf(p, "\tSeqno: (memory) %d\n", snapshot->seqno);
        drm_printf(p, "\tTimestamp: 0x%016llx\n", snapshot->ctx_timestamp);
        drm_printf(p, "\tTimestamp ms: %llu\n", snapshot->ctx_timestamp_ms);
+       drm_printf(p, "\tQueue Timestamp: 0x%016llx\n", snapshot->queue_timestamp);
+       drm_printf(p, "\tQueue Timestamp ms: %llu\n", snapshot->queue_timestamp_ms);
        drm_printf(p, "\tJob Timestamp: 0x%08x\n", snapshot->ctx_job_timestamp);
 
        if (!snapshot->lrc_snapshot)
index 557dce004d48918239e14428b3934fb01ae91989..0a3a611391ee0b562392ebc24f2925a66f90053e 100644 (file)
@@ -39,6 +39,8 @@ struct xe_lrc_snapshot {
        u32 seqno;
        u64 ctx_timestamp;
        u64 ctx_timestamp_ms;
+       u64 queue_timestamp;
+       u64 queue_timestamp_ms;
        u32 ctx_job_timestamp;
 };
 
index 0a5c13ec2ad7a9b22b37ac62c86de3085e20cc9c..53ef48feebfc9041b80bb696f5f7c4f489688446 100644 (file)
@@ -64,6 +64,9 @@ struct xe_lrc {
        /** @ctx_timestamp: readout value of CTX_TIMESTAMP on last update */
        u64 ctx_timestamp;
 
+       /** @queue_timestamp: value of QUEUE_TIMESTAMP on last update */
+       u64 queue_timestamp;
+
        /** @multi_queue: Multi queue LRC related information */
        struct {
                /** @multi_queue.primary_lrc: Primary lrc of this multi-queue group*/