Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/6] Tracing cleanup and add mmio tracing
@ 2024-05-30 15:13 Radhakrishna Sripada
  2024-05-30 15:13 ` [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces Radhakrishna Sripada
                   ` (15 more replies)
  0 siblings, 16 replies; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada

xe_trace.h is getting bloated. Group related events to their own
files. All bo, vm and vma related events have been moved to 
xe_trace_bo.h. GuC related trace events have been moved to
xe_trace_guc.h. Patches 1 and 2 splits the trace events into
seperate files.

In multi gpu environments, it is important to know the device from
which the event was triggered. Print the device id information along
with the trace information being printed. Patches 3, 4 and 5 make
changes to print the device id's if not already captured.

Mmio reg read writes are important tracing information that needs to be
captured and will be helpful in display debug. Patch 6 adds the reg
read/write tracing support.

Earlier versions of patch 6 can be found here:
v1: https://patchwork.freedesktop.org/series/119312/
v2: https://patchwork.freedesktop.org/series/132626/

Radhakrishna Sripada (6):
  drm/xe/trace: Extract bo, vm, vma traces
  drm/xe/trace: Extract guc related traces
  drm/xe/trace: Print device_id in xe_trace_bo events
  drm/xe/trace: Print device_id in xe_trace_guc events
  drm/xe/trace: Print device_id in xe_trace events
  drm/xe: Add reg read/write trace

 drivers/gpu/drm/xe/Makefile                 |   2 +
 drivers/gpu/drm/xe/xe_bo.c                  |   2 +-
 drivers/gpu/drm/xe/xe_gt_pagefault.c        |   2 +-
 drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c |  27 +-
 drivers/gpu/drm/xe/xe_guc_ct.c              |  15 +-
 drivers/gpu/drm/xe/xe_migrate.c             |   2 +-
 drivers/gpu/drm/xe/xe_mmio.c                |  22 +-
 drivers/gpu/drm/xe/xe_pt.c                  |   8 +-
 drivers/gpu/drm/xe/xe_trace.h               | 368 +++-----------------
 drivers/gpu/drm/xe/xe_trace_bo.c            |   9 +
 drivers/gpu/drm/xe/xe_trace_bo.h            | 244 +++++++++++++
 drivers/gpu/drm/xe/xe_trace_guc.c           |   9 +
 drivers/gpu/drm/xe/xe_trace_guc.h           | 107 ++++++
 drivers/gpu/drm/xe/xe_vm.c                  |   2 +-
 14 files changed, 480 insertions(+), 339 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.c
 create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.h
 create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.c
 create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.h

-- 
2.34.1


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

* [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
@ 2024-05-30 15:13 ` Radhakrishna Sripada
  2024-05-31 14:33   ` Gustavo Sousa
  2024-05-30 15:13 ` [PATCH v3 2/6] drm/xe/trace: Extract guc related traces Radhakrishna Sripada
                   ` (14 subsequent siblings)
  15 siblings, 1 reply; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada, Jani Nikula

xe_trace.h is starting to get over crowded. Move the traces
related to bo, vm, vma's to its own file.

Suggested-by: Jani Nikula <jani.nikula@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/xe/Makefile          |   1 +
 drivers/gpu/drm/xe/xe_bo.c           |   2 +-
 drivers/gpu/drm/xe/xe_gt_pagefault.c |   2 +-
 drivers/gpu/drm/xe/xe_migrate.c      |   2 +-
 drivers/gpu/drm/xe/xe_trace.h        | 212 ------------------------
 drivers/gpu/drm/xe/xe_trace_bo.c     |   9 +
 drivers/gpu/drm/xe/xe_trace_bo.h     | 236 +++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_vm.c           |   2 +-
 8 files changed, 250 insertions(+), 216 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.c
 create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.h

diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index ae07f3d6a068..fa9960acfe53 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -135,6 +135,7 @@ xe-y += xe_bb.o \
 	xe_tile.o \
 	xe_tile_sysfs.o \
 	xe_trace.o \
+	xe_trace_bo.o \
 	xe_ttm_sys_mgr.o \
 	xe_ttm_stolen_mgr.o \
 	xe_ttm_vram_mgr.o \
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 2bae01ce4e5b..74294f1b05bc 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -25,7 +25,7 @@
 #include "xe_pm.h"
 #include "xe_preempt_fence.h"
 #include "xe_res_cursor.h"
-#include "xe_trace.h"
+#include "xe_trace_bo.h"
 #include "xe_ttm_stolen_mgr.h"
 #include "xe_vm.h"
 
diff --git a/drivers/gpu/drm/xe/xe_gt_pagefault.c b/drivers/gpu/drm/xe/xe_gt_pagefault.c
index 040dd142c49c..dead920de5f1 100644
--- a/drivers/gpu/drm/xe/xe_gt_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_gt_pagefault.c
@@ -19,7 +19,7 @@
 #include "xe_guc.h"
 #include "xe_guc_ct.h"
 #include "xe_migrate.h"
-#include "xe_trace.h"
+#include "xe_trace_bo.h"
 #include "xe_vm.h"
 
 struct pagefault {
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index cccffaf3db06..da3305834448 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -32,7 +32,7 @@
 #include "xe_res_cursor.h"
 #include "xe_sched_job.h"
 #include "xe_sync.h"
-#include "xe_trace.h"
+#include "xe_trace_bo.h"
 #include "xe_vm.h"
 
 /**
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 450f407c66e8..9493cc3d6d82 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -12,8 +12,6 @@
 #include <linux/tracepoint.h>
 #include <linux/types.h>
 
-#include "xe_bo.h"
-#include "xe_bo_types.h"
 #include "xe_exec_queue_types.h"
 #include "xe_gpu_scheduler_types.h"
 #include "xe_gt_tlb_invalidation_types.h"
@@ -76,58 +74,6 @@ DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_timeout,
 	     TP_ARGS(fence)
 );
 
-DECLARE_EVENT_CLASS(xe_bo,
-		    TP_PROTO(struct xe_bo *bo),
-		    TP_ARGS(bo),
-
-		    TP_STRUCT__entry(
-			     __field(size_t, size)
-			     __field(u32, flags)
-			     __field(struct xe_vm *, vm)
-			     ),
-
-		    TP_fast_assign(
-			   __entry->size = bo->size;
-			   __entry->flags = bo->flags;
-			   __entry->vm = bo->vm;
-			   ),
-
-		    TP_printk("size=%zu, flags=0x%02x, vm=%p",
-			      __entry->size, __entry->flags, __entry->vm)
-);
-
-DEFINE_EVENT(xe_bo, xe_bo_cpu_fault,
-	     TP_PROTO(struct xe_bo *bo),
-	     TP_ARGS(bo)
-);
-
-TRACE_EVENT(xe_bo_move,
-	    TP_PROTO(struct xe_bo *bo, uint32_t new_placement, uint32_t old_placement,
-		     bool move_lacks_source),
-	    TP_ARGS(bo, new_placement, old_placement, move_lacks_source),
-	    TP_STRUCT__entry(
-		     __field(struct xe_bo *, bo)
-		     __field(size_t, size)
-		     __field(u32, new_placement)
-		     __field(u32, old_placement)
-		     __array(char, device_id, 12)
-		     __field(bool, move_lacks_source)
-			),
-
-	    TP_fast_assign(
-		   __entry->bo      = bo;
-		   __entry->size = bo->size;
-		   __entry->new_placement = new_placement;
-		   __entry->old_placement = old_placement;
-		   strscpy(__entry->device_id, dev_name(xe_bo_device(__entry->bo)->drm.dev), 12);
-		   __entry->move_lacks_source = move_lacks_source;
-		   ),
-	    TP_printk("move_lacks_source:%s, migrate object %p [size %zu] from %s to %s device_id:%s",
-		      __entry->move_lacks_source ? "yes" : "no", __entry->bo, __entry->size,
-		      xe_mem_type_to_name[__entry->old_placement],
-		      xe_mem_type_to_name[__entry->new_placement], __entry->device_id)
-);
-
 DECLARE_EVENT_CLASS(xe_exec_queue,
 		    TP_PROTO(struct xe_exec_queue *q),
 		    TP_ARGS(q),
@@ -386,164 +332,6 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
 	     TP_ARGS(fence)
 );
 
-DECLARE_EVENT_CLASS(xe_vma,
-		    TP_PROTO(struct xe_vma *vma),
-		    TP_ARGS(vma),
-
-		    TP_STRUCT__entry(
-			     __field(struct xe_vma *, vma)
-			     __field(u32, asid)
-			     __field(u64, start)
-			     __field(u64, end)
-			     __field(u64, ptr)
-			     ),
-
-		    TP_fast_assign(
-			   __entry->vma = vma;
-			   __entry->asid = xe_vma_vm(vma)->usm.asid;
-			   __entry->start = xe_vma_start(vma);
-			   __entry->end = xe_vma_end(vma) - 1;
-			   __entry->ptr = xe_vma_userptr(vma);
-			   ),
-
-		    TP_printk("vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
-			      __entry->vma, __entry->asid, __entry->start,
-			      __entry->end, __entry->ptr)
-)
-
-DEFINE_EVENT(xe_vma, xe_vma_flush,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_pagefault,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_acc,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_fail,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_bind,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_pf_bind,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_unbind,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_worker,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_exec,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_rebind_worker,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_rebind_exec,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_invalidate,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_evict,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate_complete,
-	     TP_PROTO(struct xe_vma *vma),
-	     TP_ARGS(vma)
-);
-
-DECLARE_EVENT_CLASS(xe_vm,
-		    TP_PROTO(struct xe_vm *vm),
-		    TP_ARGS(vm),
-
-		    TP_STRUCT__entry(
-			     __field(struct xe_vm *, vm)
-			     __field(u32, asid)
-			     ),
-
-		    TP_fast_assign(
-			   __entry->vm = vm;
-			   __entry->asid = vm->usm.asid;
-			   ),
-
-		    TP_printk("vm=%p, asid=0x%05x",  __entry->vm,
-			      __entry->asid)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_kill,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_create,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_free,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_cpu_bind,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_restart,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_enter,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_retry,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
-DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_exit,
-	     TP_PROTO(struct xe_vm *vm),
-	     TP_ARGS(vm)
-);
-
 /* GuC */
 DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
 		    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
diff --git a/drivers/gpu/drm/xe/xe_trace_bo.c b/drivers/gpu/drm/xe/xe_trace_bo.c
new file mode 100644
index 000000000000..6320168677e8
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_trace_bo.c
@@ -0,0 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef __CHECKER__
+#define CREATE_TRACE_POINTS
+#include "xe_trace_bo.h"
+#endif
diff --git a/drivers/gpu/drm/xe/xe_trace_bo.h b/drivers/gpu/drm/xe/xe_trace_bo.h
new file mode 100644
index 000000000000..6d90f3f42d54
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_trace_bo.h
@@ -0,0 +1,236 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#undef TRACE_SYSTEM
+#define TRACE_SYSTEM xe
+
+#if !defined(_XE_TRACE_BO_H_) || defined(TRACE_HEADER_MULTI_READ)
+#define _XE_TRACE_BO_H_
+
+#include <linux/tracepoint.h>
+#include <linux/types.h>
+
+#include "xe_bo.h"
+#include "xe_bo_types.h"
+#include "xe_vm.h"
+
+DECLARE_EVENT_CLASS(xe_bo,
+		    TP_PROTO(struct xe_bo *bo),
+		    TP_ARGS(bo),
+
+		    TP_STRUCT__entry(
+			     __field(size_t, size)
+			     __field(u32, flags)
+			     __field(struct xe_vm *, vm)
+			     ),
+
+		    TP_fast_assign(
+			   __entry->size = bo->size;
+			   __entry->flags = bo->flags;
+			   __entry->vm = bo->vm;
+			   ),
+
+		    TP_printk("size=%zu, flags=0x%02x, vm=%p",
+			      __entry->size, __entry->flags, __entry->vm)
+);
+
+DEFINE_EVENT(xe_bo, xe_bo_cpu_fault,
+	     TP_PROTO(struct xe_bo *bo),
+	     TP_ARGS(bo)
+);
+
+TRACE_EVENT(xe_bo_move,
+	    TP_PROTO(struct xe_bo *bo, uint32_t new_placement, uint32_t old_placement,
+		     bool move_lacks_source),
+	    TP_ARGS(bo, new_placement, old_placement, move_lacks_source),
+	    TP_STRUCT__entry(
+		     __field(struct xe_bo *, bo)
+		     __field(size_t, size)
+		     __field(u32, new_placement)
+		     __field(u32, old_placement)
+		     __array(char, device_id, 12)
+		     __field(bool, move_lacks_source)
+			),
+
+	    TP_fast_assign(
+		   __entry->bo      = bo;
+		   __entry->size = bo->size;
+		   __entry->new_placement = new_placement;
+		   __entry->old_placement = old_placement;
+		   strscpy(__entry->device_id, dev_name(xe_bo_device(__entry->bo)->drm.dev), 12);
+		   __entry->move_lacks_source = move_lacks_source;
+		   ),
+	    TP_printk("move_lacks_source:%s, migrate object %p [size %zu] from %s to %s device_id:%s",
+		      __entry->move_lacks_source ? "yes" : "no", __entry->bo, __entry->size,
+		      xe_mem_type_to_name[__entry->old_placement],
+		      xe_mem_type_to_name[__entry->new_placement], __entry->device_id)
+);
+
+DECLARE_EVENT_CLASS(xe_vma,
+		    TP_PROTO(struct xe_vma *vma),
+		    TP_ARGS(vma),
+
+		    TP_STRUCT__entry(
+			     __field(struct xe_vma *, vma)
+			     __field(u32, asid)
+			     __field(u64, start)
+			     __field(u64, end)
+			     __field(u64, ptr)
+			     ),
+
+		    TP_fast_assign(
+			   __entry->vma = vma;
+			   __entry->asid = xe_vma_vm(vma)->usm.asid;
+			   __entry->start = xe_vma_start(vma);
+			   __entry->end = xe_vma_end(vma) - 1;
+			   __entry->ptr = xe_vma_userptr(vma);
+			   ),
+
+		    TP_printk("vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
+			      __entry->vma, __entry->asid, __entry->start,
+			      __entry->end, __entry->ptr)
+)
+
+DEFINE_EVENT(xe_vma, xe_vma_flush,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_pagefault,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_acc,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_fail,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_bind,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_pf_bind,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_unbind,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_worker,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_exec,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_rebind_worker,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_rebind_exec,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_invalidate,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_evict,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate_complete,
+	     TP_PROTO(struct xe_vma *vma),
+	     TP_ARGS(vma)
+);
+
+DECLARE_EVENT_CLASS(xe_vm,
+		    TP_PROTO(struct xe_vm *vm),
+		    TP_ARGS(vm),
+
+		    TP_STRUCT__entry(
+			     __field(struct xe_vm *, vm)
+			     __field(u32, asid)
+			     ),
+
+		    TP_fast_assign(
+			   __entry->vm = vm;
+			   __entry->asid = vm->usm.asid;
+			   ),
+
+		    TP_printk("vm=%p, asid=0x%05x",  __entry->vm,
+			      __entry->asid)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_kill,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_create,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_free,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_cpu_bind,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_restart,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_enter,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_retry,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_exit,
+	     TP_PROTO(struct xe_vm *vm),
+	     TP_ARGS(vm)
+);
+
+#endif
+
+/* This part must be outside protection */
+#undef TRACE_INCLUDE_PATH
+#undef TRACE_INCLUDE_FILE
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
+#define TRACE_INCLUDE_FILE xe_trace_bo
+#include <trace/define_trace.h>
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 26b409e1b0f0..c2100d26b4e3 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -36,7 +36,7 @@
 #include "xe_pt.h"
 #include "xe_res_cursor.h"
 #include "xe_sync.h"
-#include "xe_trace.h"
+#include "xe_trace_bo.h"
 #include "xe_wa.h"
 #include "xe_hmm.h"
 
-- 
2.34.1


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

* [PATCH v3 2/6] drm/xe/trace: Extract guc related traces
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
  2024-05-30 15:13 ` [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces Radhakrishna Sripada
@ 2024-05-30 15:13 ` Radhakrishna Sripada
  2024-05-31 14:34   ` Gustavo Sousa
  2024-05-30 15:13 ` [PATCH v3 3/6] drm/xe/trace: Print device_id in xe_trace_bo events Radhakrishna Sripada
                   ` (13 subsequent siblings)
  15 siblings, 1 reply; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada, Jani Nikula

xe_trace.h is starting to get over crowded. Move the traces
related to guc to its own file.

Suggested-by: Jani Nikula <jani.nikula@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/xe/Makefile       |   1 +
 drivers/gpu/drm/xe/xe_guc_ct.c    |   2 +-
 drivers/gpu/drm/xe/xe_trace.h     |  80 -----------------------
 drivers/gpu/drm/xe/xe_trace_guc.c |   9 +++
 drivers/gpu/drm/xe/xe_trace_guc.h | 103 ++++++++++++++++++++++++++++++
 5 files changed, 114 insertions(+), 81 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.c
 create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.h

diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index fa9960acfe53..db77b9823f7c 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -136,6 +136,7 @@ xe-y += xe_bb.o \
 	xe_tile_sysfs.o \
 	xe_trace.o \
 	xe_trace_bo.o \
+	xe_trace_guc.o \
 	xe_ttm_sys_mgr.o \
 	xe_ttm_stolen_mgr.o \
 	xe_ttm_vram_mgr.o \
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index c1f258348f5c..78f79df638d5 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -29,7 +29,7 @@
 #include "xe_guc_submit.h"
 #include "xe_map.h"
 #include "xe_pm.h"
-#include "xe_trace.h"
+#include "xe_trace_guc.h"
 
 /* Used when a CT send wants to block and / or receive data */
 struct g2h_fence {
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 9493cc3d6d82..8e00f0cdeb75 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -332,86 +332,6 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
 	     TP_ARGS(fence)
 );
 
-/* GuC */
-DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
-		    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
-		    TP_ARGS(_head, _tail, size, space, len),
-
-		    TP_STRUCT__entry(
-			     __field(u32, _head)
-			     __field(u32, _tail)
-			     __field(u32, size)
-			     __field(u32, space)
-			     __field(u32, len)
-			     ),
-
-		    TP_fast_assign(
-			   __entry->_head = _head;
-			   __entry->_tail = _tail;
-			   __entry->size = size;
-			   __entry->space = space;
-			   __entry->len = len;
-			   ),
-
-		    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
-			      __entry->_head, __entry->_tail, __entry->size,
-			      __entry->space, __entry->len)
-);
-
-DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
-	     TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
-	     TP_ARGS(_head, _tail, size, space, len)
-);
-
-DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
-		   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
-		   TP_ARGS(_head, _tail, size, space, len),
-
-		   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
-			     __entry->_head, __entry->_tail, __entry->size,
-			     __entry->space, __entry->len)
-);
-
-DECLARE_EVENT_CLASS(xe_guc_ctb,
-		    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
-		    TP_ARGS(gt_id, action, len, _head, tail),
-
-		    TP_STRUCT__entry(
-				__field(u8, gt_id)
-				__field(u32, action)
-				__field(u32, len)
-				__field(u32, tail)
-				__field(u32, _head)
-		    ),
-
-		    TP_fast_assign(
-			    __entry->gt_id = gt_id;
-			    __entry->action = action;
-			    __entry->len = len;
-			    __entry->tail = tail;
-			    __entry->_head = _head;
-		    ),
-
-		    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
-			      __entry->gt_id, __entry->action, __entry->len,
-			      __entry->tail, __entry->_head)
-);
-
-DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
-	     TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
-	     TP_ARGS(gt_id, action, len, _head, tail)
-);
-
-DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
-		   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
-		   TP_ARGS(gt_id, action, len, _head, tail),
-
-		   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
-			     __entry->gt_id, __entry->action, __entry->len,
-			     __entry->tail, __entry->_head)
-
-);
-
 #endif
 
 /* This part must be outside protection */
diff --git a/drivers/gpu/drm/xe/xe_trace_guc.c b/drivers/gpu/drm/xe/xe_trace_guc.c
new file mode 100644
index 000000000000..f2e2b6bd165d
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_trace_guc.c
@@ -0,0 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef __CHECKER__
+#define CREATE_TRACE_POINTS
+#include "xe_trace_guc.h"
+#endif
diff --git a/drivers/gpu/drm/xe/xe_trace_guc.h b/drivers/gpu/drm/xe/xe_trace_guc.h
new file mode 100644
index 000000000000..fb4976499812
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_trace_guc.h
@@ -0,0 +1,103 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#undef TRACE_SYSTEM
+#define TRACE_SYSTEM xe
+
+#if !defined(_XE_TRACE_GUC_H_) || defined(TRACE_HEADER_MULTI_READ)
+#define _XE_TRACE_GUC_H_
+
+#include <linux/tracepoint.h>
+#include <linux/types.h>
+
+#include "xe_guc_exec_queue_types.h"
+
+DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
+		    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
+		    TP_ARGS(_head, _tail, size, space, len),
+
+		    TP_STRUCT__entry(
+			     __field(u32, _head)
+			     __field(u32, _tail)
+			     __field(u32, size)
+			     __field(u32, space)
+			     __field(u32, len)
+			     ),
+
+		    TP_fast_assign(
+			   __entry->_head = _head;
+			   __entry->_tail = _tail;
+			   __entry->size = size;
+			   __entry->space = space;
+			   __entry->len = len;
+			   ),
+
+		    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
+			      __entry->_head, __entry->_tail, __entry->size,
+			      __entry->space, __entry->len)
+);
+
+DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
+	     TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
+	     TP_ARGS(_head, _tail, size, space, len)
+);
+
+DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
+		   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
+		   TP_ARGS(_head, _tail, size, space, len),
+
+		   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
+			     __entry->_head, __entry->_tail, __entry->size,
+			     __entry->space, __entry->len)
+);
+
+DECLARE_EVENT_CLASS(xe_guc_ctb,
+		    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
+		    TP_ARGS(gt_id, action, len, _head, tail),
+
+		    TP_STRUCT__entry(
+				__field(u8, gt_id)
+				__field(u32, action)
+				__field(u32, len)
+				__field(u32, tail)
+				__field(u32, _head)
+		    ),
+
+		    TP_fast_assign(
+			    __entry->gt_id = gt_id;
+			    __entry->action = action;
+			    __entry->len = len;
+			    __entry->tail = tail;
+			    __entry->_head = _head;
+		    ),
+
+		    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
+			      __entry->gt_id, __entry->action, __entry->len,
+			      __entry->tail, __entry->_head)
+);
+
+DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
+	     TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
+	     TP_ARGS(gt_id, action, len, _head, tail)
+);
+
+DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
+		   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
+		   TP_ARGS(gt_id, action, len, _head, tail),
+
+		   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
+			     __entry->gt_id, __entry->action, __entry->len,
+			     __entry->tail, __entry->_head)
+
+);
+
+#endif
+
+/* This part must be outside protection */
+#undef TRACE_INCLUDE_PATH
+#undef TRACE_INCLUDE_FILE
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
+#define TRACE_INCLUDE_FILE xe_trace_guc
+#include <trace/define_trace.h>
-- 
2.34.1


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

* [PATCH v3 3/6] drm/xe/trace: Print device_id in xe_trace_bo events
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
  2024-05-30 15:13 ` [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces Radhakrishna Sripada
  2024-05-30 15:13 ` [PATCH v3 2/6] drm/xe/trace: Extract guc related traces Radhakrishna Sripada
@ 2024-05-30 15:13 ` Radhakrishna Sripada
  2024-05-31 20:07   ` Gustavo Sousa
  2024-05-30 15:13 ` [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events Radhakrishna Sripada
                   ` (12 subsequent siblings)
  15 siblings, 1 reply; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada, Ville Syrjälä

In multi-gpu environments it is important to know the device
bo/vm belongs to. The tracing information includes the device_id
to indicate the device the event is associated with.

Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/xe/xe_trace_bo.h | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_trace_bo.h b/drivers/gpu/drm/xe/xe_trace_bo.h
index 6d90f3f42d54..88204d4988fd 100644
--- a/drivers/gpu/drm/xe/xe_trace_bo.h
+++ b/drivers/gpu/drm/xe/xe_trace_bo.h
@@ -24,16 +24,20 @@ DECLARE_EVENT_CLASS(xe_bo,
 			     __field(size_t, size)
 			     __field(u32, flags)
 			     __field(struct xe_vm *, vm)
+			     __array(char, device_id, 12)
 			     ),
 
 		    TP_fast_assign(
 			   __entry->size = bo->size;
 			   __entry->flags = bo->flags;
 			   __entry->vm = bo->vm;
+			   strscpy(__entry->device_id,
+				   dev_name(xe_bo_device(bo)->drm.dev), 12);
 			   ),
 
-		    TP_printk("size=%zu, flags=0x%02x, vm=%p",
-			      __entry->size, __entry->flags, __entry->vm)
+		    TP_printk("dev: %s: size=%zu, flags=0x%02x, vm=%p",
+			      __entry->device_id, __entry->size,
+			      __entry->flags, __entry->vm)
 );
 
 DEFINE_EVENT(xe_bo, xe_bo_cpu_fault,
@@ -78,6 +82,7 @@ DECLARE_EVENT_CLASS(xe_vma,
 			     __field(u64, start)
 			     __field(u64, end)
 			     __field(u64, ptr)
+			     __array(char, device_id, 12)
 			     ),
 
 		    TP_fast_assign(
@@ -86,10 +91,11 @@ DECLARE_EVENT_CLASS(xe_vma,
 			   __entry->start = xe_vma_start(vma);
 			   __entry->end = xe_vma_end(vma) - 1;
 			   __entry->ptr = xe_vma_userptr(vma);
+			   strscpy(__entry->device_id, dev_name(xe_vma_vm(vma)->xe->drm.dev), 12);
 			   ),
 
-		    TP_printk("vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
-			      __entry->vma, __entry->asid, __entry->start,
+		    TP_printk("dev: %s: vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
+			      __entry->device_id, __entry->vma, __entry->asid, __entry->start,
 			      __entry->end, __entry->ptr)
 )
 
@@ -175,15 +181,17 @@ DECLARE_EVENT_CLASS(xe_vm,
 		    TP_STRUCT__entry(
 			     __field(struct xe_vm *, vm)
 			     __field(u32, asid)
+			     __array(char, device_id, 12)
 			     ),
 
 		    TP_fast_assign(
 			   __entry->vm = vm;
 			   __entry->asid = vm->usm.asid;
+			   strscpy(__entry->device_id, dev_name(vm->xe->drm.dev), 12);
 			   ),
 
-		    TP_printk("vm=%p, asid=0x%05x",  __entry->vm,
-			      __entry->asid)
+		    TP_printk("dev: %s: vm=%p, asid=0x%05x", __entry->device_id,
+			      __entry->vm,  __entry->asid)
 );
 
 DEFINE_EVENT(xe_vm, xe_vm_kill,
-- 
2.34.1


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

* [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (2 preceding siblings ...)
  2024-05-30 15:13 ` [PATCH v3 3/6] drm/xe/trace: Print device_id in xe_trace_bo events Radhakrishna Sripada
@ 2024-05-30 15:13 ` Radhakrishna Sripada
  2024-06-03 14:16   ` Gustavo Sousa
  2024-05-30 15:13 ` [PATCH v3 5/6] drm/xe/trace: Print device_id in xe_trace events Radhakrishna Sripada
                   ` (11 subsequent siblings)
  15 siblings, 1 reply; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada, Ville Syrjälä

In multi-gpu environments it is important to know the device
guc txn belongs to. The tracing information includes the device_id
to indicate the device the event is associated with.

Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_ct.c    | 13 +++++----
 drivers/gpu/drm/xe/xe_trace_guc.h | 44 +++++++++++++++++--------------
 2 files changed, 32 insertions(+), 25 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 78f79df638d5..5b08cceb994a 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -528,7 +528,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len,
 	/* Update descriptor */
 	desc_write(xe, h2g, tail, h2g->info.tail);
 
-	trace_xe_guc_ctb_h2g(gt->info.id, *(action - 1), full_len,
+	trace_xe_guc_ctb_h2g(dev_name(xe->drm.dev), gt->info.id, *(action - 1), full_len,
 			     desc_read(xe, h2g, head), h2g->info.tail);
 
 	return 0;
@@ -641,6 +641,7 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len,
 			      u32 g2h_len, u32 num_g2h,
 			      struct g2h_fence *g2h_fence)
 {
+	struct xe_device *xe = ct_to_xe(ct);
 	struct xe_gt *gt = ct_to_gt(ct);
 	struct drm_printer p = xe_gt_info_printer(gt);
 	unsigned int sleep_period_ms = 1;
@@ -668,7 +669,8 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len,
 		if (sleep_period_ms == 1024)
 			goto broken;
 
-		trace_xe_guc_ct_h2g_flow_control(h2g->info.head, h2g->info.tail,
+		trace_xe_guc_ct_h2g_flow_control(dev_name(xe->drm.dev),
+						 h2g->info.head, h2g->info.tail,
 						 h2g->info.size,
 						 h2g->info.space,
 						 len + GUC_CTB_HDR_LEN);
@@ -680,7 +682,8 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len,
 		struct xe_device *xe = ct_to_xe(ct);
 		struct guc_ctb *g2h = &ct->ctbs.g2h;
 
-		trace_xe_guc_ct_g2h_flow_control(g2h->info.head,
+		trace_xe_guc_ct_g2h_flow_control(dev_name(xe->drm.dev),
+						 g2h->info.head,
 						 desc_read(xe, g2h, tail),
 						 g2h->info.size,
 						 g2h->info.space,
@@ -1170,8 +1173,8 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path)
 	g2h->info.head = (head + avail) % g2h->info.size;
 	desc_write(xe, g2h, head, g2h->info.head);
 
-	trace_xe_guc_ctb_g2h(ct_to_gt(ct)->info.id, action, len,
-			     g2h->info.head, tail);
+	trace_xe_guc_ctb_g2h(dev_name(xe->drm.dev), ct_to_gt(ct)->info.id,
+			     action, len, g2h->info.head, tail);
 
 	return len;
 }
diff --git a/drivers/gpu/drm/xe/xe_trace_guc.h b/drivers/gpu/drm/xe/xe_trace_guc.h
index fb4976499812..8a7953803696 100644
--- a/drivers/gpu/drm/xe/xe_trace_guc.h
+++ b/drivers/gpu/drm/xe/xe_trace_guc.h
@@ -15,10 +15,11 @@
 #include "xe_guc_exec_queue_types.h"
 
 DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
-		    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
-		    TP_ARGS(_head, _tail, size, space, len),
+		    TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space, u32 len),
+		    TP_ARGS(devid, _head, _tail, size, space, len),
 
 		    TP_STRUCT__entry(
+			     __array(char, devid, 12)
 			     __field(u32, _head)
 			     __field(u32, _tail)
 			     __field(u32, size)
@@ -27,6 +28,7 @@ DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
 			     ),
 
 		    TP_fast_assign(
+			   memcpy(__entry->devid, devid, 12);
 			   __entry->_head = _head;
 			   __entry->_tail = _tail;
 			   __entry->size = size;
@@ -34,30 +36,31 @@ DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
 			   __entry->len = len;
 			   ),
 
-		    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
-			      __entry->_head, __entry->_tail, __entry->size,
+		    TP_printk("dev: %s: h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
+			      __entry->devid, __entry->_head, __entry->_tail, __entry->size,
 			      __entry->space, __entry->len)
 );
 
 DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
-	     TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
-	     TP_ARGS(_head, _tail, size, space, len)
+	     TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space, u32 len),
+	     TP_ARGS(devid, _head, _tail, size, space, len)
 );
 
 DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
-		   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
-		   TP_ARGS(_head, _tail, size, space, len),
+		   TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space, u32 len),
+		   TP_ARGS(devid, _head, _tail, size, space, len),
 
-		   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
-			     __entry->_head, __entry->_tail, __entry->size,
+		   TP_printk("dev: %s: g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
+			     __entry->devid, __entry->_head, __entry->_tail, __entry->size,
 			     __entry->space, __entry->len)
 );
 
 DECLARE_EVENT_CLASS(xe_guc_ctb,
-		    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
-		    TP_ARGS(gt_id, action, len, _head, tail),
+		    TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
+		    TP_ARGS(devid, gt_id, action, len, _head, tail),
 
 		    TP_STRUCT__entry(
+				__array(char, devid, 12)
 				__field(u8, gt_id)
 				__field(u32, action)
 				__field(u32, len)
@@ -66,6 +69,7 @@ DECLARE_EVENT_CLASS(xe_guc_ctb,
 		    ),
 
 		    TP_fast_assign(
+			    memcpy(__entry->devid, devid, 12);
 			    __entry->gt_id = gt_id;
 			    __entry->action = action;
 			    __entry->len = len;
@@ -73,22 +77,22 @@ DECLARE_EVENT_CLASS(xe_guc_ctb,
 			    __entry->_head = _head;
 		    ),
 
-		    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
-			      __entry->gt_id, __entry->action, __entry->len,
+		    TP_printk("dev: %s: gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
+			      __entry->devid, __entry->gt_id, __entry->action, __entry->len,
 			      __entry->tail, __entry->_head)
 );
 
 DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
-	     TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
-	     TP_ARGS(gt_id, action, len, _head, tail)
+	     TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
+	     TP_ARGS(devid, gt_id, action, len, _head, tail)
 );
 
 DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
-		   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
-		   TP_ARGS(gt_id, action, len, _head, tail),
+		   TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
+		   TP_ARGS(devid, gt_id, action, len, _head, tail),
 
-		   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
-			     __entry->gt_id, __entry->action, __entry->len,
+		   TP_printk("dev: %s: gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
+			     __entry->devid, __entry->gt_id, __entry->action, __entry->len,
 			     __entry->tail, __entry->_head)
 
 );
-- 
2.34.1


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

* [PATCH v3 5/6] drm/xe/trace: Print device_id in xe_trace events
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (3 preceding siblings ...)
  2024-05-30 15:13 ` [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events Radhakrishna Sripada
@ 2024-05-30 15:13 ` Radhakrishna Sripada
  2024-05-30 15:13 ` [PATCH v3 6/6] drm/xe: Add reg read/write trace Radhakrishna Sripada
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada, Ville Syrjälä

In multi-gpu environments it is important to know the device
gt events belongs to. The tracing information includes the device_id
to indicate the device the event is associated with.

Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c | 27 +++++-----
 drivers/gpu/drm/xe/xe_pt.c                  |  8 +--
 drivers/gpu/drm/xe/xe_trace.h               | 60 ++++++++++++---------
 3 files changed, 55 insertions(+), 40 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c b/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
index 105797776a6c..a80b33a21064 100644
--- a/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
+++ b/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
@@ -22,6 +22,7 @@ static void xe_gt_tlb_fence_timeout(struct work_struct *work)
 {
 	struct xe_gt *gt = container_of(work, struct xe_gt,
 					tlb_invalidation.fence_tdr.work);
+	struct xe_device *xe = gt_to_xe(gt);
 	struct xe_gt_tlb_invalidation_fence *fence, *next;
 
 	spin_lock_irq(&gt->tlb_invalidation.pending_lock);
@@ -33,7 +34,7 @@ static void xe_gt_tlb_fence_timeout(struct work_struct *work)
 		if (msecs_to_jiffies(since_inval_ms) < TLB_TIMEOUT)
 			break;
 
-		trace_xe_gt_tlb_invalidation_fence_timeout(fence);
+		trace_xe_gt_tlb_invalidation_fence_timeout(dev_name(xe->drm.dev), fence);
 		xe_gt_err(gt, "TLB invalidation fence timeout, seqno=%d recv=%d",
 			  fence->seqno, gt->tlb_invalidation.seqno_recv);
 
@@ -71,18 +72,18 @@ int xe_gt_tlb_invalidation_init(struct xe_gt *gt)
 }
 
 static void
-__invalidation_fence_signal(struct xe_gt_tlb_invalidation_fence *fence)
+__invalidation_fence_signal(struct xe_device *xe, struct xe_gt_tlb_invalidation_fence *fence)
 {
-	trace_xe_gt_tlb_invalidation_fence_signal(fence);
+	trace_xe_gt_tlb_invalidation_fence_signal(dev_name(xe->drm.dev), fence);
 	dma_fence_signal(&fence->base);
 	dma_fence_put(&fence->base);
 }
 
 static void
-invalidation_fence_signal(struct xe_gt_tlb_invalidation_fence *fence)
+invalidation_fence_signal(struct xe_device *xe, struct xe_gt_tlb_invalidation_fence *fence)
 {
 	list_del(&fence->link);
-	__invalidation_fence_signal(fence);
+	__invalidation_fence_signal(xe, fence);
 }
 
 /**
@@ -121,7 +122,7 @@ void xe_gt_tlb_invalidation_reset(struct xe_gt *gt)
 
 	list_for_each_entry_safe(fence, next,
 				 &gt->tlb_invalidation.pending_fences, link)
-		invalidation_fence_signal(fence);
+		invalidation_fence_signal(gt_to_xe(gt), fence);
 	spin_unlock_irq(&gt->tlb_invalidation.pending_lock);
 	mutex_unlock(&gt->uc.guc.ct.lock);
 }
@@ -144,6 +145,7 @@ static int send_tlb_invalidation(struct xe_guc *guc,
 				 u32 *action, int len)
 {
 	struct xe_gt *gt = guc_to_gt(guc);
+	struct xe_device *xe = gt_to_xe(gt);
 	int seqno;
 	int ret;
 
@@ -157,7 +159,7 @@ static int send_tlb_invalidation(struct xe_guc *guc,
 	seqno = gt->tlb_invalidation.seqno;
 	if (fence) {
 		fence->seqno = seqno;
-		trace_xe_gt_tlb_invalidation_fence_send(fence);
+		trace_xe_gt_tlb_invalidation_fence_send(dev_name(xe->drm.dev), fence);
 	}
 	action[1] = seqno;
 	ret = xe_guc_ct_send_locked(&guc->ct, action, len,
@@ -171,7 +173,7 @@ static int send_tlb_invalidation(struct xe_guc *guc,
 		 * we can just go ahead and signal the fence here.
 		 */
 		if (tlb_invalidation_seqno_past(gt, seqno)) {
-			__invalidation_fence_signal(fence);
+			__invalidation_fence_signal(xe, fence);
 		} else {
 			fence->invalidation_time = ktime_get();
 			list_add_tail(&fence->link,
@@ -184,7 +186,7 @@ static int send_tlb_invalidation(struct xe_guc *guc,
 		}
 		spin_unlock_irq(&gt->tlb_invalidation.pending_lock);
 	} else if (ret < 0 && fence) {
-		__invalidation_fence_signal(fence);
+		__invalidation_fence_signal(xe, fence);
 	}
 	if (!ret) {
 		gt->tlb_invalidation.seqno = (gt->tlb_invalidation.seqno + 1) %
@@ -294,7 +296,7 @@ int xe_gt_tlb_invalidation_range(struct xe_gt *gt,
 	/* Execlists not supported */
 	if (gt_to_xe(gt)->info.force_execlist) {
 		if (fence)
-			__invalidation_fence_signal(fence);
+			__invalidation_fence_signal(xe, fence);
 
 		return 0;
 	}
@@ -432,6 +434,7 @@ int xe_gt_tlb_invalidation_wait(struct xe_gt *gt, int seqno)
 int xe_guc_tlb_invalidation_done_handler(struct xe_guc *guc, u32 *msg, u32 len)
 {
 	struct xe_gt *gt = guc_to_gt(guc);
+	struct xe_device *xe = gt_to_xe(gt);
 	struct xe_gt_tlb_invalidation_fence *fence, *next;
 	unsigned long flags;
 
@@ -468,12 +471,12 @@ int xe_guc_tlb_invalidation_done_handler(struct xe_guc *guc, u32 *msg, u32 len)
 
 	list_for_each_entry_safe(fence, next,
 				 &gt->tlb_invalidation.pending_fences, link) {
-		trace_xe_gt_tlb_invalidation_fence_recv(fence);
+		trace_xe_gt_tlb_invalidation_fence_recv(dev_name(xe->drm.dev), fence);
 
 		if (!tlb_invalidation_seqno_past(gt, fence->seqno))
 			break;
 
-		invalidation_fence_signal(fence);
+		invalidation_fence_signal(xe, fence);
 	}
 
 	if (!list_empty(&gt->tlb_invalidation.pending_fences))
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index cd60c009b679..5ba57f9846c4 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -1137,8 +1137,9 @@ static void invalidation_fence_cb(struct dma_fence *fence,
 {
 	struct invalidation_fence *ifence =
 		container_of(cb, struct invalidation_fence, cb);
+	struct xe_device *xe = gt_to_xe(ifence->gt);
 
-	trace_xe_gt_tlb_invalidation_fence_cb(&ifence->base);
+	trace_xe_gt_tlb_invalidation_fence_cb(dev_name(xe->drm.dev), &ifence->base);
 	if (!ifence->fence->error) {
 		queue_work(system_wq, &ifence->work);
 	} else {
@@ -1153,8 +1154,9 @@ static void invalidation_fence_work_func(struct work_struct *w)
 {
 	struct invalidation_fence *ifence =
 		container_of(w, struct invalidation_fence, work);
+	struct xe_device *xe = gt_to_xe(ifence->gt);
 
-	trace_xe_gt_tlb_invalidation_fence_work_func(&ifence->base);
+	trace_xe_gt_tlb_invalidation_fence_work_func(dev_name(xe->drm.dev), &ifence->base);
 	xe_gt_tlb_invalidation_range(ifence->gt, &ifence->base, ifence->start,
 				     ifence->end, ifence->asid);
 }
@@ -1166,7 +1168,7 @@ static int invalidation_fence_init(struct xe_gt *gt,
 {
 	int ret;
 
-	trace_xe_gt_tlb_invalidation_fence_create(&ifence->base);
+	trace_xe_gt_tlb_invalidation_fence_create(dev_name(gt_to_xe(gt)->drm.dev), &ifence->base);
 
 	spin_lock_irq(&gt->tlb_invalidation.lock);
 	dma_fence_init(&ifence->base.base, &invalidation_fence_ops,
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 8e00f0cdeb75..41e0b3365876 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -21,57 +21,59 @@
 #include "xe_vm.h"
 
 DECLARE_EVENT_CLASS(xe_gt_tlb_invalidation_fence,
-		    TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-		    TP_ARGS(fence),
+		    TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+		    TP_ARGS(devid, fence),
 
 		    TP_STRUCT__entry(
+			     __array(char, devid, 12)
 			     __field(struct xe_gt_tlb_invalidation_fence *, fence)
 			     __field(int, seqno)
 			     ),
 
 		    TP_fast_assign(
+			   memcpy(__entry->devid, devid, 12);
 			   __entry->fence = fence;
 			   __entry->seqno = fence->seqno;
 			   ),
 
-		    TP_printk("fence=%p, seqno=%d",
-			      __entry->fence, __entry->seqno)
+		    TP_printk("dev: %s: fence=%p, seqno=%d",
+			      __entry->devid, __entry->fence, __entry->seqno)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_create,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence,
 	     xe_gt_tlb_invalidation_fence_work_func,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_cb,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_send,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_recv,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_signal,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_timeout,
-	     TP_PROTO(struct xe_gt_tlb_invalidation_fence *fence),
-	     TP_ARGS(fence)
+	     TP_PROTO(const char *devid, struct xe_gt_tlb_invalidation_fence *fence),
+	     TP_ARGS(devid, fence)
 );
 
 DECLARE_EVENT_CLASS(xe_exec_queue,
@@ -79,6 +81,7 @@ DECLARE_EVENT_CLASS(xe_exec_queue,
 		    TP_ARGS(q),
 
 		    TP_STRUCT__entry(
+			     __array(char, devid, 12)
 			     __field(enum xe_engine_class, class)
 			     __field(u32, logical_mask)
 			     __field(u8, gt_id)
@@ -89,6 +92,7 @@ DECLARE_EVENT_CLASS(xe_exec_queue,
 			     ),
 
 		    TP_fast_assign(
+			   memcpy(__entry->devid, dev_name(gt_to_xe(q->gt)->drm.dev), 12);
 			   __entry->class = q->class;
 			   __entry->logical_mask = q->logical_mask;
 			   __entry->gt_id = q->gt->info.id;
@@ -98,8 +102,8 @@ DECLARE_EVENT_CLASS(xe_exec_queue,
 			   __entry->flags = q->flags;
 			   ),
 
-		    TP_printk("%d:0x%x, gt=%d, width=%d, guc_id=%d, guc_state=0x%x, flags=0x%x",
-			      __entry->class, __entry->logical_mask,
+		    TP_printk("dev: %s: %d:0x%x, gt=%d, width=%d, guc_id=%d, guc_state=0x%x, flags=0x%x",
+			      __entry->devid, __entry->class, __entry->logical_mask,
 			      __entry->gt_id, __entry->width, __entry->guc_id,
 			      __entry->guc_state, __entry->flags)
 );
@@ -199,6 +203,7 @@ DECLARE_EVENT_CLASS(xe_sched_job,
 		    TP_ARGS(job),
 
 		    TP_STRUCT__entry(
+			     __array(char, devid, 12)
 			     __field(u32, seqno)
 			     __field(u32, lrc_seqno)
 			     __field(u16, guc_id)
@@ -210,6 +215,7 @@ DECLARE_EVENT_CLASS(xe_sched_job,
 			     ),
 
 		    TP_fast_assign(
+			   memcpy(__entry->devid, dev_name(gt_to_xe(job->q->gt)->drm.dev), 12);
 			   __entry->seqno = xe_sched_job_seqno(job);
 			   __entry->lrc_seqno = xe_sched_job_lrc_seqno(job);
 			   __entry->guc_id = job->q->guc->id;
@@ -221,8 +227,8 @@ DECLARE_EVENT_CLASS(xe_sched_job,
 			   __entry->batch_addr = (u64)job->ptrs[0].batch_addr;
 			   ),
 
-		    TP_printk("fence=%p, seqno=%u, lrc_seqno=%u, guc_id=%d, batch_addr=0x%012llx, guc_state=0x%x, flags=0x%x, error=%d",
-			      __entry->fence, __entry->seqno,
+		    TP_printk("dev: %s: fence=%p, seqno=%u, lrc_seqno=%u, guc_id=%d, batch_addr=0x%012llx, guc_state=0x%x, flags=0x%x, error=%d",
+			      __entry->devid, __entry->fence, __entry->seqno,
 			      __entry->lrc_seqno, __entry->guc_id,
 			      __entry->batch_addr, __entry->guc_state,
 			      __entry->flags, __entry->error)
@@ -268,17 +274,19 @@ DECLARE_EVENT_CLASS(xe_sched_msg,
 		    TP_ARGS(msg),
 
 		    TP_STRUCT__entry(
+			     __array(char, devid, 12)
 			     __field(u32, opcode)
 			     __field(u16, guc_id)
 			     ),
 
 		    TP_fast_assign(
+			   memcpy(__entry->devid, dev_name(gt_to_xe(((struct xe_exec_queue *)msg->private_data)->gt)->drm.dev), 12);
 			   __entry->opcode = msg->opcode;
 			   __entry->guc_id =
 			   ((struct xe_exec_queue *)msg->private_data)->guc->id;
 			   ),
 
-		    TP_printk("guc_id=%d, opcode=%u", __entry->guc_id,
+		    TP_printk("dev: %s: guc_id=%d, opcode=%u", __entry->devid, __entry->guc_id,
 			      __entry->opcode)
 );
 
@@ -300,16 +308,18 @@ DECLARE_EVENT_CLASS(xe_hw_fence,
 			     __field(u64, ctx)
 			     __field(u32, seqno)
 			     __field(struct xe_hw_fence *, fence)
+			     __array(char, devid, 12)
 			     ),
 
 		    TP_fast_assign(
 			   __entry->ctx = fence->dma.context;
 			   __entry->seqno = fence->dma.seqno;
 			   __entry->fence = fence;
+			   memcpy(__entry->devid, dev_name(gt_to_xe(fence->ctx->gt)->drm.dev), 12);
 			   ),
 
-		    TP_printk("ctx=0x%016llx, fence=%p, seqno=%u",
-			      __entry->ctx, __entry->fence, __entry->seqno)
+		    TP_printk("dev: %s: ctx=0x%016llx, fence=%p, seqno=%u",
+			      __entry->devid, __entry->ctx, __entry->fence, __entry->seqno)
 );
 
 DEFINE_EVENT(xe_hw_fence, xe_hw_fence_create,
-- 
2.34.1


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

* [PATCH v3 6/6] drm/xe: Add reg read/write trace
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (4 preceding siblings ...)
  2024-05-30 15:13 ` [PATCH v3 5/6] drm/xe/trace: Print device_id in xe_trace events Radhakrishna Sripada
@ 2024-05-30 15:13 ` Radhakrishna Sripada
  2024-06-03 15:44   ` Gustavo Sousa
  2024-05-30 15:32 ` [PATCH v3 0/6] Tracing cleanup and add mmio tracing Jani Nikula
                   ` (9 subsequent siblings)
  15 siblings, 1 reply; 24+ messages in thread
From: Radhakrishna Sripada @ 2024-05-30 15:13 UTC (permalink / raw)
  To: intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada

This will help debug register read/writes and provides
a way to trace all the mmio transactions.

v2: Fix kunit error
v3: Print devid to help in multi-gpu setup

Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/xe/xe_mmio.c  | 22 ++++++++++++++++++----
 drivers/gpu/drm/xe/xe_trace.h | 30 ++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
index 248e93ec6df7..a44baa349109 100644
--- a/drivers/gpu/drm/xe/xe_mmio.c
+++ b/drivers/gpu/drm/xe/xe_mmio.c
@@ -27,6 +27,7 @@
 #include "xe_module.h"
 #include "xe_sriov.h"
 #include "xe_tile.h"
+#include "xe_trace.h"
 
 #define XEHP_MTCFG_ADDR		XE_REG(0x101800)
 #define TILE_COUNT		REG_GENMASK(15, 8)
@@ -455,16 +456,24 @@ u8 xe_mmio_read8(struct xe_gt *gt, struct xe_reg reg)
 {
 	struct xe_tile *tile = gt_to_tile(gt);
 	u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
+	u8 val;
 
-	return readb((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
+	val = readb((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
+	trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val, sizeof(val), true);
+
+	return val;
 }
 
 u16 xe_mmio_read16(struct xe_gt *gt, struct xe_reg reg)
 {
 	struct xe_tile *tile = gt_to_tile(gt);
 	u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
+	u16 val;
+
+	val = readw((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
+	trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val, sizeof(val), true);
 
-	return readw((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
+	return val;
 }
 
 void xe_mmio_write32(struct xe_gt *gt, struct xe_reg reg, u32 val)
@@ -472,6 +481,7 @@ void xe_mmio_write32(struct xe_gt *gt, struct xe_reg reg, u32 val)
 	struct xe_tile *tile = gt_to_tile(gt);
 	u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
 
+	trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), true, addr, val, sizeof(val), true);
 	writel(val, (reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
 }
 
@@ -479,11 +489,15 @@ u32 xe_mmio_read32(struct xe_gt *gt, struct xe_reg reg)
 {
 	struct xe_tile *tile = gt_to_tile(gt);
 	u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
+	u32 val;
 
 	if (!reg.vf && IS_SRIOV_VF(gt_to_xe(gt)))
-		return xe_gt_sriov_vf_read32(gt, reg);
+		val = xe_gt_sriov_vf_read32(gt, reg);
+
+	val = readl((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
+	trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val, sizeof(val), true);
 
-	return readl((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
+	return val;
 }
 
 u32 xe_mmio_rmw32(struct xe_gt *gt, struct xe_reg reg, u32 clr, u32 set)
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 41e0b3365876..d56e073560ee 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -342,6 +342,36 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
 	     TP_ARGS(fence)
 );
 
+TRACE_EVENT_CONDITION(xe_reg_rw,
+	TP_PROTO(const char *devid, bool write, u32 reg, u64 val, int len, bool trace),
+
+	TP_ARGS(devid, write, reg, val, len, trace),
+
+	TP_CONDITION(trace),
+
+	TP_STRUCT__entry(
+		__array(char, devid, 12)
+		__field(u64, val)
+		__field(u32, reg)
+		__field(u16, write)
+		__field(u16, len)
+		),
+
+	TP_fast_assign(
+		memcpy(__entry->devid, devid, 12);
+		__entry->val = (u64)val;
+		__entry->reg = reg;
+		__entry->write = write;
+		__entry->len = len;
+		),
+
+	TP_printk("dev: %s: %s reg=0x%x, len=%d, val=(0x%x, 0x%x)",
+		  __entry->devid, __entry->write ? "write" : "read",
+		  __entry->reg, __entry->len,
+		  (u32)(__entry->val & 0xffffffff),
+		  (u32)(__entry->val >> 32))
+);
+
 #endif
 
 /* This part must be outside protection */
-- 
2.34.1


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

* Re: [PATCH v3 0/6] Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (5 preceding siblings ...)
  2024-05-30 15:13 ` [PATCH v3 6/6] drm/xe: Add reg read/write trace Radhakrishna Sripada
@ 2024-05-30 15:32 ` Jani Nikula
  2024-05-30 16:26 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2024-05-30 15:32 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada

On Thu, 30 May 2024, Radhakrishna Sripada <radhakrishna.sripada@intel.com> wrote:
> xe_trace.h is getting bloated. Group related events to their own
> files. All bo, vm and vma related events have been moved to 
> xe_trace_bo.h. GuC related trace events have been moved to
> xe_trace_guc.h. Patches 1 and 2 splits the trace events into
> seperate files.
>
> In multi gpu environments, it is important to know the device from
> which the event was triggered. Print the device id information along
> with the trace information being printed. Patches 3, 4 and 5 make
> changes to print the device id's if not already captured.
>
> Mmio reg read writes are important tracing information that needs to be
> captured and will be helpful in display debug. Patch 6 adds the reg
> read/write tracing support.
>
> Earlier versions of patch 6 can be found here:
> v1: https://patchwork.freedesktop.org/series/119312/
> v2: https://patchwork.freedesktop.org/series/132626/
>
> Radhakrishna Sripada (6):
>   drm/xe/trace: Extract bo, vm, vma traces
>   drm/xe/trace: Extract guc related traces
>   drm/xe/trace: Print device_id in xe_trace_bo events
>   drm/xe/trace: Print device_id in xe_trace_guc events
>   drm/xe/trace: Print device_id in xe_trace events
>   drm/xe: Add reg read/write trace
>
>  drivers/gpu/drm/xe/Makefile                 |   2 +
>  drivers/gpu/drm/xe/xe_bo.c                  |   2 +-
>  drivers/gpu/drm/xe/xe_gt_pagefault.c        |   2 +-
>  drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c |  27 +-
>  drivers/gpu/drm/xe/xe_guc_ct.c              |  15 +-
>  drivers/gpu/drm/xe/xe_migrate.c             |   2 +-
>  drivers/gpu/drm/xe/xe_mmio.c                |  22 +-
>  drivers/gpu/drm/xe/xe_pt.c                  |   8 +-
>  drivers/gpu/drm/xe/xe_trace.h               | 368 +++-----------------
>  drivers/gpu/drm/xe/xe_trace_bo.c            |   9 +
>  drivers/gpu/drm/xe/xe_trace_bo.h            | 244 +++++++++++++
>  drivers/gpu/drm/xe/xe_trace_guc.c           |   9 +
>  drivers/gpu/drm/xe/xe_trace_guc.h           | 107 ++++++

Seems nice. Now y'all can bikeshed whether to name them
xe_trace_foo.[ch] or xe_foo_trace.[ch]!

*ducks*

>  drivers/gpu/drm/xe/xe_vm.c                  |   2 +-
>  14 files changed, 480 insertions(+), 339 deletions(-)
>  create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.c
>  create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.h
>  create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.c
>  create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.h

-- 
Jani Nikula, Intel

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

* ✓ CI.Patch_applied: success for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (6 preceding siblings ...)
  2024-05-30 15:32 ` [PATCH v3 0/6] Tracing cleanup and add mmio tracing Jani Nikula
@ 2024-05-30 16:26 ` Patchwork
  2024-05-30 16:27 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 16:26 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: d02534bf06ad drm-tip: 2024y-05m-30d-16h-11m-18s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/trace: Extract bo, vm, vma traces
Applying: drm/xe/trace: Extract guc related traces
Applying: drm/xe/trace: Print device_id in xe_trace_bo events
Applying: drm/xe/trace: Print device_id in xe_trace_guc events
Applying: drm/xe/trace: Print device_id in xe_trace events
Applying: drm/xe: Add reg read/write trace



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

* ✗ CI.checkpatch: warning for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (7 preceding siblings ...)
  2024-05-30 16:26 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-05-30 16:27 ` Patchwork
  2024-05-30 16:28 ` ✓ CI.KUnit: success " Patchwork
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 16:27 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit cf2736df07a3e896df2e89260356e5d049a7f7c4
Author: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
Date:   Thu May 30 08:13:13 2024 -0700

    drm/xe: Add reg read/write trace
    
    This will help debug register read/writes and provides
    a way to trace all the mmio transactions.
    
    v2: Fix kunit error
    v3: Print devid to help in multi-gpu setup
    
    Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
+ /mt/dim checkpatch d02534bf06ad39143f8ed786e49a01e482812cd6 drm-intel
d007ec61997b drm/xe/trace: Extract bo, vm, vma traces
Traceback (most recent call last):
  File "scripts/spdxcheck.py", line 6, in <module>
    from ply import lex, yacc
ModuleNotFoundError: No module named 'ply'
Traceback (most recent call last):
  File "scripts/spdxcheck.py", line 6, in <module>
    from ply import lex, yacc
ModuleNotFoundError: No module named 'ply'
-:302: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#302: 
new file mode 100644

-:344: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#344: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:23:
+		    TP_STRUCT__entry(

-:350: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#350: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:29:
+		    TP_fast_assign(

-:369: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#369: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:48:
+	    TP_STRUCT__entry(

-:378: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#378: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:57:
+	    TP_fast_assign(

-:396: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#396: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:75:
+		    TP_STRUCT__entry(

-:404: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#404: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:83:
+		    TP_fast_assign(

-:496: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#496: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:175:
+		    TP_STRUCT__entry(

-:501: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#501: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:180:
+		    TP_fast_assign(

-:555: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#555: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:234:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                              ^

-:555: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#555: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:234:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                 ^

-:555: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#555: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:234:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                         ^

-:555: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#555: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:234:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                             ^

-:555: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#555: FILE: drivers/gpu/drm/xe/xe_trace_bo.h:234:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                                 ^

total: 0 errors, 1 warnings, 13 checks, 514 lines checked
d7ef252856db drm/xe/trace: Extract guc related traces
Traceback (most recent call last):
  File "scripts/spdxcheck.py", line 6, in <module>
    from ply import lex, yacc
ModuleNotFoundError: No module named 'ply'
Traceback (most recent call last):
  File "scripts/spdxcheck.py", line 6, in <module>
    from ply import lex, yacc
ModuleNotFoundError: No module named 'ply'
-:130: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#130: 
new file mode 100644

-:170: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#170: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:21:
+		    TP_STRUCT__entry(

-:178: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#178: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:29:
+		    TP_fast_assign(

-:209: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#209: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:60:
+		    TP_STRUCT__entry(

-:217: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#217: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:68:
+		    TP_fast_assign(

-:250: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#250: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:101:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                              ^

-:250: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#250: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:101:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                 ^

-:250: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#250: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:101:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                         ^

-:250: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#250: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:101:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                             ^

-:250: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#250: FILE: drivers/gpu/drm/xe/xe_trace_guc.h:101:
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
                                                 ^

total: 0 errors, 1 warnings, 9 checks, 213 lines checked
8ab127201037 drm/xe/trace: Print device_id in xe_trace_bo events
f433a4823193 drm/xe/trace: Print device_id in xe_trace_guc events
6d6de6d030f7 drm/xe/trace: Print device_id in xe_trace events
-:318: WARNING:LONG_LINE: line length of 132 exceeds 100 columns
#318: FILE: drivers/gpu/drm/xe/xe_trace.h:283:
+			   memcpy(__entry->devid, dev_name(gt_to_xe(((struct xe_exec_queue *)msg->private_data)->gt)->drm.dev), 12);

total: 0 errors, 1 warnings, 0 checks, 298 lines checked
cf2736df07a3 drm/xe: Add reg read/write trace
-:88: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#88: FILE: drivers/gpu/drm/xe/xe_trace.h:346:
+TRACE_EVENT_CONDITION(xe_reg_rw,
+	TP_PROTO(const char *devid, bool write, u32 reg, u64 val, int len, bool trace),

-:94: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#94: FILE: drivers/gpu/drm/xe/xe_trace.h:352:
+	TP_STRUCT__entry(

-:102: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#102: FILE: drivers/gpu/drm/xe/xe_trace.h:360:
+	TP_fast_assign(

total: 0 errors, 0 warnings, 3 checks, 93 lines checked



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

* ✓ CI.KUnit: success for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (8 preceding siblings ...)
  2024-05-30 16:27 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-05-30 16:28 ` Patchwork
  2024-05-30 16:39 ` ✓ CI.Build: " Patchwork
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 16:28 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:27:07] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:27:11] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[16:27:37] Starting KUnit Kernel (1/1)...
[16:27:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:27:37] =================== guc_dbm (7 subtests) ===================
[16:27:37] [PASSED] test_empty
[16:27:37] [PASSED] test_default
[16:27:37] ======================== test_size  ========================
[16:27:37] [PASSED] 4
[16:27:37] [PASSED] 8
[16:27:37] [PASSED] 32
[16:27:37] [PASSED] 256
[16:27:37] ==================== [PASSED] test_size ====================
[16:27:37] ======================= test_reuse  ========================
[16:27:37] [PASSED] 4
[16:27:37] [PASSED] 8
[16:27:37] [PASSED] 32
[16:27:37] [PASSED] 256
[16:27:37] =================== [PASSED] test_reuse ====================
[16:27:37] =================== test_range_overlap  ====================
[16:27:37] [PASSED] 4
[16:27:37] [PASSED] 8
[16:27:37] [PASSED] 32
[16:27:37] [PASSED] 256
[16:27:37] =============== [PASSED] test_range_overlap ================
[16:27:37] =================== test_range_compact  ====================
[16:27:37] [PASSED] 4
[16:27:37] [PASSED] 8
[16:27:37] [PASSED] 32
[16:27:37] [PASSED] 256
[16:27:37] =============== [PASSED] test_range_compact ================
[16:27:37] ==================== test_range_spare  =====================
[16:27:37] [PASSED] 4
[16:27:37] [PASSED] 8
[16:27:37] [PASSED] 32
[16:27:37] [PASSED] 256
[16:27:37] ================ [PASSED] test_range_spare =================
[16:27:37] ===================== [PASSED] guc_dbm =====================
[16:27:37] =================== guc_idm (6 subtests) ===================
[16:27:37] [PASSED] bad_init
[16:27:37] [PASSED] no_init
[16:27:37] [PASSED] init_fini
[16:27:37] [PASSED] check_used
[16:27:37] [PASSED] check_quota
[16:27:37] [PASSED] check_all
[16:27:37] ===================== [PASSED] guc_idm =====================
[16:27:37] ================== no_relay (3 subtests) ===================
[16:27:37] [PASSED] xe_drops_guc2pf_if_not_ready
[16:27:37] [PASSED] xe_drops_guc2vf_if_not_ready
[16:27:37] [PASSED] xe_rejects_send_if_not_ready
[16:27:37] ==================== [PASSED] no_relay =====================
[16:27:37] ================== pf_relay (14 subtests) ==================
[16:27:37] [PASSED] pf_rejects_guc2pf_too_short
[16:27:37] [PASSED] pf_rejects_guc2pf_too_long
[16:27:37] [PASSED] pf_rejects_guc2pf_no_payload
[16:27:37] [PASSED] pf_fails_no_payload
[16:27:37] [PASSED] pf_fails_bad_origin
[16:27:37] [PASSED] pf_fails_bad_type
[16:27:37] [PASSED] pf_txn_reports_error
[16:27:37] [PASSED] pf_txn_sends_pf2guc
[16:27:37] [PASSED] pf_sends_pf2guc
[16:27:37] [SKIPPED] pf_loopback_nop
[16:27:37] [SKIPPED] pf_loopback_echo
[16:27:37] [SKIPPED] pf_loopback_fail
[16:27:37] [SKIPPED] pf_loopback_busy
[16:27:37] [SKIPPED] pf_loopback_retry
[16:27:37] ==================== [PASSED] pf_relay =====================
[16:27:37] ================== vf_relay (3 subtests) ===================
[16:27:37] [PASSED] vf_rejects_guc2vf_too_short
[16:27:37] [PASSED] vf_rejects_guc2vf_too_long
[16:27:37] [PASSED] vf_rejects_guc2vf_no_payload
[16:27:37] ==================== [PASSED] vf_relay =====================
[16:27:37] ================= pf_service (11 subtests) =================
[16:27:37] [PASSED] pf_negotiate_any
[16:27:37] [PASSED] pf_negotiate_base_match
[16:27:37] [PASSED] pf_negotiate_base_newer
[16:27:37] [PASSED] pf_negotiate_base_next
[16:27:37] [SKIPPED] pf_negotiate_base_older
[16:27:37] [PASSED] pf_negotiate_base_prev
[16:27:37] [PASSED] pf_negotiate_latest_match
[16:27:37] [PASSED] pf_negotiate_latest_newer
[16:27:37] [PASSED] pf_negotiate_latest_next
[16:27:37] [SKIPPED] pf_negotiate_latest_older
[16:27:37] [SKIPPED] pf_negotiate_latest_prev
[16:27:37] =================== [PASSED] pf_service ====================
[16:27:37] ===================== lmtt (1 subtest) =====================
[16:27:37] ======================== test_ops  =========================
[16:27:37] [PASSED] 2-level
[16:27:37] [PASSED] multi-level
[16:27:37] ==================== [PASSED] test_ops =====================
[16:27:37] ====================== [PASSED] lmtt =======================
[16:27:37] ==================== xe_bo (2 subtests) ====================
[16:27:37] [SKIPPED] xe_ccs_migrate_kunit
[16:27:37] [SKIPPED] xe_bo_evict_kunit
[16:27:37] ===================== [SKIPPED] xe_bo ======================
[16:27:37] ================== xe_dma_buf (1 subtest) ==================
[16:27:37] [SKIPPED] xe_dma_buf_kunit
[16:27:37] =================== [SKIPPED] xe_dma_buf ===================
[16:27:37] ================== xe_migrate (1 subtest) ==================
[16:27:37] [SKIPPED] xe_migrate_sanity_kunit
[16:27:37] =================== [SKIPPED] xe_migrate ===================
[16:27:37] =================== xe_mocs (2 subtests) ===================
[16:27:37] [SKIPPED] xe_live_mocs_kernel_kunit
[16:27:37] [SKIPPED] xe_live_mocs_reset_kunit
[16:27:37] ==================== [SKIPPED] xe_mocs =====================
[16:27:37] ==================== args (11 subtests) ====================
[16:27:37] [PASSED] count_args_test
[16:27:37] [PASSED] call_args_example
[16:27:37] [PASSED] call_args_test
[16:27:37] [PASSED] drop_first_arg_example
[16:27:37] [PASSED] drop_first_arg_test
[16:27:37] [PASSED] first_arg_example
[16:27:37] [PASSED] first_arg_test
[16:27:37] [PASSED] last_arg_example
[16:27:37] [PASSED] last_arg_test
[16:27:37] [PASSED] pick_arg_example
[16:27:37] [PASSED] sep_comma_example
[16:27:37] ====================== [PASSED] args =======================
[16:27:37] =================== xe_pci (2 subtests) ====================
[16:27:37] [PASSED] xe_gmdid_graphics_ip
[16:27:37] [PASSED] xe_gmdid_media_ip
[16:27:37] ===================== [PASSED] xe_pci ======================
[16:27:37] ==================== xe_rtp (1 subtest) ====================
[16:27:37] ================== xe_rtp_process_tests  ===================
[16:27:37] [PASSED] coalesce-same-reg
[16:27:37] [PASSED] no-match-no-add
[16:27:37] [PASSED] no-match-no-add-multiple-rules
[16:27:37] [PASSED] two-regs-two-entries
[16:27:37] [PASSED] clr-one-set-other
[16:27:37] [PASSED] set-field
[16:27:37] [PASSED] conflict-duplicate
[16:27:37] [PASSED] conflict-not-disjoint
[16:27:37] [PASSED] conflict-reg-type
[16:27:37] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[16:27:37] ===================== [PASSED] xe_rtp ======================
[16:27:37] ==================== xe_wa (1 subtest) =====================
[16:27:37] ======================== xe_wa_gt  =========================
[16:27:37] [PASSED] TIGERLAKE (B0)
[16:27:37] [PASSED] DG1 (A0)
[16:27:37] [PASSED] DG1 (B0)
[16:27:37] [PASSED] ALDERLAKE_S (A0)
[16:27:37] [PASSED] ALDERLAKE_S (B0)
[16:27:37] [PASSED] ALDERLAKE_S (C0)
[16:27:37] [PASSED] ALDERLAKE_S (D0)
[16:27:37] [PASSED] ALDERLAKE_P (A0)
[16:27:37] [PASSED] ALDERLAKE_P (B0)
[16:27:37] [PASSED] ALDERLAKE_P (C0)
[16:27:37] [PASSED] ALDERLAKE_S_RPLS (D0)
[16:27:37] [PASSED] ALDERLAKE_P_RPLU (E0)
[16:27:37] [PASSED] DG2_G10 (C0)
[16:27:37] [PASSED] DG2_G11 (B1)
[16:27:37] [PASSED] DG2_G12 (A1)
[16:27:37] [PASSED] METEORLAKE (g:A0, m:A0)
[16:27:37] [PASSED] METEORLAKE (g:A0, m:A0)
[16:27:37] [PASSED] METEORLAKE (g:A0, m:A0)
[16:27:37] [PASSED] LUNARLAKE (g:A0, m:A0)
[16:27:37] [PASSED] LUNARLAKE (g:B0, m:A0)
[16:27:37] ==================== [PASSED] xe_wa_gt =====================
[16:27:37] ====================== [PASSED] xe_wa ======================
[16:27:37] ============================================================
[16:27:37] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[16:27:37] Elapsed time: 30.753s total, 4.226s configuring, 26.256s building, 0.229s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:27:37] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:27:39] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[16:28:01] Starting KUnit Kernel (1/1)...
[16:28:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:28:01] ============ drm_test_pick_cmdline (2 subtests) ============
[16:28:01] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:28:01] =============== drm_test_pick_cmdline_named  ===============
[16:28:01] [PASSED] NTSC
[16:28:01] [PASSED] NTSC-J
[16:28:01] [PASSED] PAL
[16:28:01] [PASSED] PAL-M
[16:28:01] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:28:01] ============== [PASSED] drm_test_pick_cmdline ==============
[16:28:01] ================== drm_buddy (7 subtests) ==================
[16:28:01] [PASSED] drm_test_buddy_alloc_limit
[16:28:01] [PASSED] drm_test_buddy_alloc_optimistic
[16:28:01] [PASSED] drm_test_buddy_alloc_pessimistic
[16:28:01] [PASSED] drm_test_buddy_alloc_pathological
[16:28:01] [PASSED] drm_test_buddy_alloc_contiguous
[16:28:01] [PASSED] drm_test_buddy_alloc_clear
[16:28:01] [PASSED] drm_test_buddy_alloc_range_bias
[16:28:01] ==================== [PASSED] drm_buddy ====================
[16:28:01] ============= drm_cmdline_parser (40 subtests) =============
[16:28:01] [PASSED] drm_test_cmdline_force_d_only
[16:28:01] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:28:01] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:28:01] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:28:01] [PASSED] drm_test_cmdline_force_e_only
[16:28:01] [PASSED] drm_test_cmdline_res
[16:28:01] [PASSED] drm_test_cmdline_res_vesa
[16:28:01] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:28:01] [PASSED] drm_test_cmdline_res_rblank
[16:28:01] [PASSED] drm_test_cmdline_res_bpp
[16:28:01] [PASSED] drm_test_cmdline_res_refresh
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:28:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:28:01] [PASSED] drm_test_cmdline_res_margins_force_on
[16:28:01] [PASSED] drm_test_cmdline_res_vesa_margins
[16:28:01] [PASSED] drm_test_cmdline_name
[16:28:01] [PASSED] drm_test_cmdline_name_bpp
[16:28:01] [PASSED] drm_test_cmdline_name_option
[16:28:01] [PASSED] drm_test_cmdline_name_bpp_option
[16:28:01] [PASSED] drm_test_cmdline_rotate_0
[16:28:01] [PASSED] drm_test_cmdline_rotate_90
[16:28:01] [PASSED] drm_test_cmdline_rotate_180
[16:28:01] [PASSED] drm_test_cmdline_rotate_270
[16:28:01] [PASSED] drm_test_cmdline_hmirror
[16:28:01] [PASSED] drm_test_cmdline_vmirror
[16:28:01] [PASSED] drm_test_cmdline_margin_options
[16:28:01] [PASSED] drm_test_cmdline_multiple_options
[16:28:01] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:28:01] [PASSED] drm_test_cmdline_extra_and_option
[16:28:01] [PASSED] drm_test_cmdline_freestanding_options
[16:28:01] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:28:01] [PASSED] drm_test_cmdline_panel_orientation
[16:28:01] ================ drm_test_cmdline_invalid  =================
[16:28:01] [PASSED] margin_only
[16:28:01] [PASSED] interlace_only
[16:28:01] [PASSED] res_missing_x
[16:28:01] [PASSED] res_missing_y
[16:28:01] [PASSED] res_bad_y
[16:28:01] [PASSED] res_missing_y_bpp
[16:28:01] [PASSED] res_bad_bpp
[16:28:01] [PASSED] res_bad_refresh
[16:28:01] [PASSED] res_bpp_refresh_force_on_off
[16:28:01] [PASSED] res_invalid_mode
[16:28:01] [PASSED] res_bpp_wrong_place_mode
[16:28:01] [PASSED] name_bpp_refresh
[16:28:01] [PASSED] name_refresh
[16:28:01] [PASSED] name_refresh_wrong_mode
[16:28:01] [PASSED] name_refresh_invalid_mode
[16:28:01] [PASSED] rotate_multiple
[16:28:01] [PASSED] rotate_invalid_val
[16:28:01] [PASSED] rotate_truncated
[16:28:01] [PASSED] invalid_option
[16:28:01] [PASSED] invalid_tv_option
[16:28:01] [PASSED] truncated_tv_option
[16:28:01] ============ [PASSED] drm_test_cmdline_invalid =============
[16:28:01] =============== drm_test_cmdline_tv_options  ===============
[16:28:01] [PASSED] NTSC
[16:28:01] [PASSED] NTSC_443
[16:28:01] [PASSED] NTSC_J
[16:28:01] [PASSED] PAL
[16:28:01] [PASSED] PAL_M
[16:28:01] [PASSED] PAL_N
[16:28:01] [PASSED] SECAM
[16:28:01] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:28:01] =============== [PASSED] drm_cmdline_parser ================
[16:28:01] ========== drmm_connector_hdmi_init (19 subtests) ==========
[16:28:01] [PASSED] drm_test_connector_hdmi_init_valid
[16:28:01] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:28:01] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:28:01] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:28:01] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:28:01] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:28:01] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:28:01] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:28:01] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:28:01] [PASSED] drm_test_connector_hdmi_init_null_product
[16:28:01] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:28:01] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:28:01] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:28:01] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:28:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:28:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:28:01] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:28:01] ========= drm_test_connector_hdmi_init_type_valid  =========
[16:28:01] [PASSED] HDMI-A
[16:28:01] [PASSED] HDMI-B
[16:28:01] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:28:01] ======== drm_test_connector_hdmi_init_type_invalid  ========
[16:28:01] [PASSED] Unknown
[16:28:01] [PASSED] VGA
[16:28:01] [PASSED] DVI-I
[16:28:01] [PASSED] DVI-D
[16:28:01] [PASSED] DVI-A
[16:28:01] [PASSED] Composite
[16:28:01] [PASSED] SVIDEO
[16:28:01] [PASSED] LVDS
[16:28:01] [PASSED] Component
[16:28:01] [PASSED] DIN
[16:28:01] [PASSED] DP
[16:28:01] [PASSED] TV
[16:28:01] [PASSED] eDP
[16:28:01] [PASSED] Virtual
[16:28:01] [PASSED] DSI
[16:28:01] [PASSED] DPI
[16:28:01] [PASSED] Writeback
[16:28:01] [PASSED] SPI
[16:28:01] [PASSED] USB
[16:28:01] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:28:01] ============ [PASSED] drmm_connector_hdmi_init =============
[16:28:01] ============= drmm_connector_init (3 subtests) =============
[16:28:01] [PASSED] drm_test_drmm_connector_init
[16:28:01] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:28:01] ========= drm_test_drmm_connector_init_type_valid  =========
[16:28:01] [PASSED] Unknown
[16:28:01] [PASSED] VGA
[16:28:01] [PASSED] DVI-I
[16:28:01] [PASSED] DVI-D
[16:28:01] [PASSED] DVI-A
[16:28:01] [PASSED] Composite
[16:28:01] [PASSED] SVIDEO
[16:28:01] [PASSED] LVDS
[16:28:01] [PASSED] Component
[16:28:01] [PASSED] DIN
[16:28:01] [PASSED] DP
[16:28:01] [PASSED] HDMI-A
[16:28:01] [PASSED] HDMI-B
[16:28:01] [PASSED] TV
[16:28:01] [PASSED] eDP
[16:28:01] [PASSED] Virtual
[16:28:01] [PASSED] DSI
[16:28:01] [PASSED] DPI
[16:28:01] [PASSED] Writeback
[16:28:01] [PASSED] SPI
[16:28:01] [PASSED] USB
[16:28:01] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:28:01] =============== [PASSED] drmm_connector_init ===============
[16:28:01] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:28:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:28:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:28:01] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:28:01] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:28:01] ========== drm_test_get_tv_mode_from_name_valid  ===========
[16:28:01] [PASSED] NTSC
[16:28:01] [PASSED] NTSC-443
[16:28:01] [PASSED] NTSC-J
[16:28:01] [PASSED] PAL
[16:28:01] [PASSED] PAL-M
[16:28:01] [PASSED] PAL-N
[16:28:01] [PASSED] SECAM
[16:28:01] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:28:01] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:28:01] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:28:01] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:28:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:28:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:28:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:28:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:28:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:28:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:28:01] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[16:28:01] [PASSED] VIC 96
[16:28:01] [PASSED] VIC 97
[16:28:01] [PASSED] VIC 101
[16:28:01] [PASSED] VIC 102
[16:28:01] [PASSED] VIC 106
[16:28:01] [PASSED] VIC 107
[16:28:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:28:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:28:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:28:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:28:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:28:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:28:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:28:01] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:28:01] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[16:28:01] [PASSED] Automatic
[16:28:01] [PASSED] Full
[16:28:01] [PASSED] Limited 16:235
[16:28:01] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:28:01] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:28:01] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:28:01] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:28:01] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[16:28:01] [PASSED] RGB
[16:28:01] [PASSED] YUV 4:2:0
[16:28:01] [PASSED] YUV 4:2:2
[16:28:01] [PASSED] YUV 4:4:4
[16:28:01] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:28:01] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:28:01] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:28:01] ============= drm_damage_helper (21 subtests) ==============
[16:28:01] [PASSED] drm_test_damage_iter_no_damage
[16:28:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:28:01] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:28:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:28:01] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:28:01] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:28:01] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:28:01] [PASSED] drm_test_damage_iter_simple_damage
[16:28:01] [PASSED] drm_test_damage_iter_single_damage
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:28:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:28:01] [PASSED] drm_test_damage_iter_damage
[16:28:01] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:28:01] [PASSED] drm_test_damage_iter_damage_one_outside
[16:28:01] [PASSED] drm_test_damage_iter_damage_src_moved
[16:28:01] [PASSED] drm_test_damage_iter_damage_not_visible
[16:28:01] ================ [PASSED] drm_damage_helper ================
[16:28:01] ============== drm_dp_mst_helper (3 subtests) ==============
[16:28:01] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[16:28:01] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:28:01] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:28:01] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:28:01] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:28:01] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:28:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:28:01] ============== drm_test_dp_mst_calc_pbn_div  ===============
[16:28:01] [PASSED] Link rate 2000000 lane count 4
[16:28:01] [PASSED] Link rate 2000000 lane count 2
[16:28:01] [PASSED] Link rate 2000000 lane count 1
[16:28:01] [PASSED] Link rate 1350000 lane count 4
[16:28:01] [PASSED] Link rate 1350000 lane count 2
[16:28:01] [PASSED] Link rate 1350000 lane count 1
[16:28:01] [PASSED] Link rate 1000000 lane count 4
[16:28:01] [PASSED] Link rate 1000000 lane count 2
[16:28:01] [PASSED] Link rate 1000000 lane count 1
[16:28:01] [PASSED] Link rate 810000 lane count 4
[16:28:01] [PASSED] Link rate 810000 lane count 2
[16:28:01] [PASSED] Link rate 810000 lane count 1
[16:28:01] [PASSED] Link rate 540000 lane count 4
[16:28:01] [PASSED] Link rate 540000 lane count 2
[16:28:01] [PASSED] Link rate 540000 lane count 1
[16:28:01] [PASSED] Link rate 270000 lane count 4
[16:28:01] [PASSED] Link rate 270000 lane count 2
[16:28:01] [PASSED] Link rate 270000 lane count 1
[16:28:01] [PASSED] Link rate 162000 lane count 4
[16:28:01] [PASSED] Link rate 162000 lane count 2
[16:28:01] [PASSED] Link rate 162000 lane count 1
[16:28:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:28:01] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[16:28:01] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:28:01] [PASSED] DP_POWER_UP_PHY with port number
[16:28:01] [PASSED] DP_POWER_DOWN_PHY with port number
[16:28:01] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:28:01] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:28:01] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:28:01] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:28:01] [PASSED] DP_QUERY_PAYLOAD with port number
[16:28:01] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:28:01] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:28:01] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:28:01] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:28:01] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:28:01] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:28:01] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:28:01] [PASSED] DP_REMOTE_I2C_READ with port number
[16:28:01] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:28:01] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:28:01] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:28:01] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:28:01] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:28:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:28:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:28:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:28:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:28:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:28:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:28:01] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:28:01] ================ [PASSED] drm_dp_mst_helper ================
[16:28:01] ================== drm_exec (7 subtests) ===================
[16:28:01] [PASSED] sanitycheck
[16:28:01] [PASSED] test_lock
[16:28:01] [PASSED] test_lock_unlock
[16:28:01] [PASSED] test_duplicates
[16:28:01] [PASSED] test_prepare
[16:28:01] [PASSED] test_prepare_array
[16:28:01] [PASSED] test_multiple_loops
[16:28:01] ==================== [PASSED] drm_exec =====================
[16:28:01] =========== drm_format_helper_test (17 subtests) ===========
[16:28:01] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:28:01] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:28:01] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:28:01] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:28:01] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:28:01] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:28:01] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:28:01] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:28:01] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:28:01] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:28:01] ============== drm_test_fb_xrgb8888_to_mono  ===============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:28:01] ==================== drm_test_fb_swab  =====================
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ================ [PASSED] drm_test_fb_swab =================
[16:28:01] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:28:01] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[16:28:01] [PASSED] single_pixel_source_buffer
[16:28:01] [PASSED] single_pixel_clip_rectangle
[16:28:01] [PASSED] well_known_colors
[16:28:01] [PASSED] destination_pitch
[16:28:01] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:28:01] ================= drm_test_fb_clip_offset  =================
[16:28:01] [PASSED] pass through
[16:28:01] [PASSED] horizontal offset
[16:28:01] [PASSED] vertical offset
[16:28:01] [PASSED] horizontal and vertical offset
[16:28:01] [PASSED] horizontal offset (custom pitch)
[16:28:01] [PASSED] vertical offset (custom pitch)
[16:28:01] [PASSED] horizontal and vertical offset (custom pitch)
[16:28:01] ============= [PASSED] drm_test_fb_clip_offset =============
[16:28:01] ============== drm_test_fb_build_fourcc_list  ==============
[16:28:01] [PASSED] no native formats
[16:28:01] [PASSED] XRGB8888 as native format
[16:28:01] [PASSED] remove duplicates
[16:28:01] [PASSED] convert alpha formats
[16:28:01] [PASSED] random formats
[16:28:01] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[16:28:01] =================== drm_test_fb_memcpy  ====================
[16:28:01] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:28:01] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:28:01] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:28:01] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:28:01] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:28:01] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:28:01] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:28:01] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:28:01] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:28:01] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:28:01] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:28:01] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:28:01] =============== [PASSED] drm_test_fb_memcpy ================
[16:28:01] ============= [PASSED] drm_format_helper_test ==============
[16:28:01] ================= drm_format (18 subtests) =================
[16:28:01] [PASSED] drm_test_format_block_width_invalid
[16:28:01] [PASSED] drm_test_format_block_width_one_plane
[16:28:01] [PASSED] drm_test_format_block_width_two_plane
[16:28:01] [PASSED] drm_test_format_block_width_three_plane
[16:28:01] [PASSED] drm_test_format_block_width_tiled
[16:28:01] [PASSED] drm_test_format_block_height_invalid
[16:28:01] [PASSED] drm_test_format_block_height_one_plane
[16:28:01] [PASSED] drm_test_format_block_height_two_plane
[16:28:01] [PASSED] drm_test_format_block_height_three_plane
[16:28:01] [PASSED] drm_test_format_block_height_tiled
[16:28:01] [PASSED] drm_test_format_min_pitch_invalid
[16:28:01] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:28:01] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:28:01] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:28:01] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:28:01] [PASSED] drm_test_format_min_pitch_two_plane
[16:28:01] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:28:01] [PASSED] drm_test_format_min_pitch_tiled
[16:28:01] =================== [PASSED] drm_format ====================
[16:28:01] =============== drm_framebuffer (1 subtest) ================
[16:28:01] =============== drm_test_framebuffer_create  ===============
[16:28:01] [PASSED] ABGR8888 normal sizes
[16:28:01] [PASSED] ABGR8888 max sizes
[16:28:01] [PASSED] ABGR8888 pitch greater than min required
[16:28:01] [PASSED] ABGR8888 pitch less than min required
[16:28:01] [PASSED] ABGR8888 Invalid width
[16:28:01] [PASSED] ABGR8888 Invalid buffer handle
[16:28:01] [PASSED] No pixel format
[16:28:01] [PASSED] ABGR8888 Width 0
[16:28:01] [PASSED] ABGR8888 Height 0
[16:28:01] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:28:01] [PASSED] ABGR8888 Large buffer offset
[16:28:01] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:28:01] [PASSED] ABGR8888 Valid buffer modifier
[16:28:01] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:28:01] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] NV12 Normal sizes
[16:28:01] [PASSED] NV12 Max sizes
[16:28:01] [PASSED] NV12 Invalid pitch
[16:28:01] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:28:01] [PASSED] NV12 different  modifier per-plane
[16:28:01] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:28:01] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] NV12 Modifier for inexistent plane
[16:28:01] [PASSED] NV12 Handle for inexistent plane
[16:28:01] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:28:01] [PASSED] YVU420 Normal sizes
[16:28:01] [PASSED] YVU420 Max sizes
[16:28:01] [PASSED] YVU420 Invalid pitch
[16:28:01] [PASSED] YVU420 Different pitches
[16:28:01] [PASSED] YVU420 Different buffer offsets/pitches
[16:28:01] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:28:01] [PASSED] YVU420 Valid modifier
[16:28:01] [PASSED] YVU420 Different modifiers per plane
[16:28:01] [PASSED] YVU420 Modifier for inexistent plane
[16:28:01] [PASSED] X0L2 Normal sizes
[16:28:01] [PASSED] X0L2 Max sizes
[16:28:01] [PASSED] X0L2 Invalid pitch
[16:28:01] [PASSED] X0L2 Pitch greater than minimum required
[16:28:01] [PASSED] X0L2 Handle for inexistent plane
[16:28:01] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:28:01] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:28:01] [PASSED] X0L2 Valid modifier
[16:28:01] [PASSED] X0L2 Modifier for inexistent plane
[16:28:01] =========== [PASSED] drm_test_framebuffer_create ===========
[16:28:01] ================= [PASSED] drm_framebuffer =================
[16:28:01] ================ drm_gem_shmem (8 subtests) ================
[16:28:01] [PASSED] drm_gem_shmem_test_obj_create
[16:28:01] [PASSED] drm_gem_shmem_test_obj_create_private
[16:28:01] [PASSED] drm_gem_shmem_test_pin_pages
[16:28:01] [PASSED] drm_gem_shmem_test_vmap
[16:28:01] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:28:01] [PASSED] drm_gem_shmem_test_get_sg_table
[16:28:01] [PASSED] drm_gem_shmem_test_madvise
[16:28:01] [PASSED] drm_gem_shmem_test_purge
[16:28:01] ================== [PASSED] drm_gem_shmem ==================
[16:28:01] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:28:01] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:28:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[16:28:01] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[16:28:01] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:28:01] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:28:01] [PASSED] drm_test_check_output_bpc_dvi
[16:28:01] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:28:01] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:28:01] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:28:01] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:28:01] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:28:01] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:28:01] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:28:01] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:28:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:28:01] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:28:01] [PASSED] drm_test_check_broadcast_rgb_value
[16:28:01] [PASSED] drm_test_check_bpc_8_value
[16:28:01] [PASSED] drm_test_check_bpc_10_value
[16:28:01] [PASSED] drm_test_check_bpc_12_value
[16:28:01] [PASSED] drm_test_check_format_value
[16:28:01] [PASSED] drm_test_check_tmds_char_value
[16:28:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:28:01] ================= drm_managed (2 subtests) =================
[16:28:01] [PASSED] drm_test_managed_release_action
[16:28:01] [PASSED] drm_test_managed_run_action
[16:28:01] =================== [PASSED] drm_managed ===================
[16:28:01] =================== drm_mm (6 subtests) ====================
[16:28:01] [PASSED] drm_test_mm_init
[16:28:01] [PASSED] drm_test_mm_debug
[16:28:01] [PASSED] drm_test_mm_align32
[16:28:01] [PASSED] drm_test_mm_align64
[16:28:01] [PASSED] drm_test_mm_lowest
[16:28:01] [PASSED] drm_test_mm_highest
[16:28:01] ===================== [PASSED] drm_mm ======================
[16:28:01] ============= drm_modes_analog_tv (4 subtests) =============
[16:28:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:28:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:28:01] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:28:01] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:28:01] =============== [PASSED] drm_modes_analog_tv ===============
[16:28:01] ============== drm_plane_helper (2 subtests) ===============
[16:28:01] =============== drm_test_check_plane_state  ================
[16:28:01] [PASSED] clipping_simple
[16:28:01] [PASSED] clipping_rotate_reflect
[16:28:01] [PASSED] positioning_simple
[16:28:01] [PASSED] upscaling
[16:28:01] [PASSED] downscaling
[16:28:01] [PASSED] rounding1
[16:28:01] [PASSED] rounding2
[16:28:01] [PASSED] rounding3
[16:28:01] [PASSED] rounding4
[16:28:01] =========== [PASSED] drm_test_check_plane_state ============
[16:28:01] =========== drm_test_check_invalid_plane_state  ============
[16:28:01] [PASSED] positioning_invalid
[16:28:01] [PASSED] upscaling_invalid
[16:28:01] [PASSED] downscaling_invalid
[16:28:01] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:28:01] ================ [PASSED] drm_plane_helper =================
stty: 'standard input': Inappropriate ioctl for device
[16:28:01] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:28:01] ====== drm_test_connector_helper_tv_get_modes_check  =======
[16:28:01] [PASSED] None
[16:28:01] [PASSED] PAL
[16:28:01] [PASSED] NTSC
[16:28:01] [PASSED] Both, NTSC Default
[16:28:01] [PASSED] Both, PAL Default
[16:28:01] [PASSED] Both, NTSC Default, with PAL on command-line
[16:28:01] [PASSED] Both, PAL Default, with NTSC on command-line
[16:28:01] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:28:01] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:28:01] ================== drm_rect (9 subtests) ===================
[16:28:01] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:28:01] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:28:01] [PASSED] drm_test_rect_clip_scaled_clipped
[16:28:01] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:28:01] ================= drm_test_rect_intersect  =================
[16:28:01] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:28:01] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:28:01] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:28:01] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:28:01] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:28:01] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:28:01] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:28:01] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:28:01] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:28:01] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:28:01] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:28:01] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:28:01] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:28:01] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:28:01] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:28:01] ============= [PASSED] drm_test_rect_intersect =============
[16:28:01] ================ drm_test_rect_calc_hscale  ================
[16:28:01] [PASSED] normal use
[16:28:01] [PASSED] out of max range
[16:28:01] [PASSED] out of min range
[16:28:01] [PASSED] zero dst
[16:28:01] [PASSED] negative src
[16:28:01] [PASSED] negative dst
[16:28:01] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:28:01] ================ drm_test_rect_calc_vscale  ================
[16:28:01] [PASSED] normal use
[16:28:01] [PASSED] out of max range
[16:28:01] [PASSED] out of min range
[16:28:01] [PASSED] zero dst
[16:28:01] [PASSED] negative src
[16:28:01] [PASSED] negative dst
[16:28:01] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:28:01] ================== drm_test_rect_rotate  ===================
[16:28:01] [PASSED] reflect-x
[16:28:01] [PASSED] reflect-y
[16:28:01] [PASSED] rotate-0
[16:28:01] [PASSED] rotate-90
[16:28:01] [PASSED] rotate-180
[16:28:01] [PASSED] rotate-270
[16:28:01] ============== [PASSED] drm_test_rect_rotate ===============
[16:28:01] ================ drm_test_rect_rotate_inv  =================
[16:28:01] [PASSED] reflect-x
[16:28:01] [PASSED] reflect-y
[16:28:01] [PASSED] rotate-0
[16:28:01] [PASSED] rotate-90
[16:28:01] [PASSED] rotate-180
[16:28:01] [PASSED] rotate-270
[16:28:01] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:28:01] ==================== [PASSED] drm_rect =====================
[16:28:01] ============================================================
[16:28:01] Testing complete. Ran 511 tests: passed: 511
[16:28:01] Elapsed time: 23.301s total, 1.749s configuring, 21.399s building, 0.150s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✓ CI.Build: success for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (9 preceding siblings ...)
  2024-05-30 16:28 ` ✓ CI.KUnit: success " Patchwork
@ 2024-05-30 16:39 ` Patchwork
  2024-05-30 16:40 ` ✗ CI.Hooks: failure " Patchwork
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 16:39 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : success

== Summary ==

lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/
lib/modules/6.10.0-rc1-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc1-xe/build
lib/modules/6.10.0-rc1-xe/modules.alias.bin
lib/modules/6.10.0-rc1-xe/modules.builtin
lib/modules/6.10.0-rc1-xe/modules.softdep
lib/modules/6.10.0-rc1-xe/modules.alias
lib/modules/6.10.0-rc1-xe/modules.order
lib/modules/6.10.0-rc1-xe/modules.symbols
lib/modules/6.10.0-rc1-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1717087177:package_x86_64_nodebug\r\e[0K'
+ sync
^[[0Ksection_end:1717087177:package_x86_64_nodebug
^[[0K
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✗ CI.Hooks: failure for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (10 preceding siblings ...)
  2024-05-30 16:39 ` ✓ CI.Build: " Patchwork
@ 2024-05-30 16:40 ` Patchwork
  2024-05-30 16:41 ` ✓ CI.checksparse: success " Patchwork
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 16:40 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : failure

== Summary ==

run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
  GEN     Makefile
  UPD     include/generated/compile.h
  UPD     include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool 
  UPD     include/generated/utsrelease.h
  HOSTCC  /workspace/kernel/build64-default/tools/objtool/fixdep.o
  CALL    ../scripts/checksyscalls.sh
  HOSTLD  /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/fixdep
  INSTALL libsubcmd_headers
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
  LD      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
  AR      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
  CC      /workspace/kernel/build64-default/tools/objtool/weak.o
  CC      /workspace/kernel/build64-default/tools/objtool/check.o
  CC      /workspace/kernel/build64-default/tools/objtool/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/builtin-check.o
  CC      /workspace/kernel/build64-default/tools/objtool/elf.o
  CC      /workspace/kernel/build64-default/tools/objtool/objtool.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_gen.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_dump.o
  CC      /workspace/kernel/build64-default/tools/objtool/libstring.o
  CC      /workspace/kernel/build64-default/tools/objtool/libctype.o
  CC      /workspace/kernel/build64-default/tools/objtool/str_error_r.o
  CC      /workspace/kernel/build64-default/tools/objtool/librbtree.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
  LD      /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
  LD      /workspace/kernel/build64-default/tools/objtool/objtool-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'.  Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2



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

* ✓ CI.checksparse: success for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (11 preceding siblings ...)
  2024-05-30 16:40 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-05-30 16:41 ` Patchwork
  2024-05-30 17:16 ` ✓ CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 16:41 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : success

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast d02534bf06ad39143f8ed786e49a01e482812cd6
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✓ CI.BAT: success for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (12 preceding siblings ...)
  2024-05-30 16:41 ` ✓ CI.checksparse: success " Patchwork
@ 2024-05-30 17:16 ` Patchwork
  2024-05-30 21:22 ` ✗ CI.FULL: failure " Patchwork
  2024-06-03 15:50 ` [PATCH v3 0/6] " Gustavo Sousa
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 17:16 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1090 bytes --]

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : success

== Summary ==

CI Bug Log - changes from xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b_BAT -> xe-pw-134258v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (5 -> 3)
------------------------------

  Missing    (2): bat-lnl-1 bat-atsm-2 


Changes
-------

  No changes found


Build changes
-------------

  * IGT: IGT_7873 -> IGT_7874
  * Linux: xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b -> xe-pw-134258v1

  IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7874: 4d9b4ee12b5f0852c02818ca9a886355b43fbbff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b: bdab4dd15a635eedc4b4d95be9d4155be46e5e4b
  xe-pw-134258v1: 134258v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/index.html

[-- Attachment #2: Type: text/html, Size: 1652 bytes --]

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

* ✗ CI.FULL: failure for Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (13 preceding siblings ...)
  2024-05-30 17:16 ` ✓ CI.BAT: " Patchwork
@ 2024-05-30 21:22 ` Patchwork
  2024-06-03 15:50 ` [PATCH v3 0/6] " Gustavo Sousa
  15 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2024-05-30 21:22 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 87377 bytes --]

== Series Details ==

Series: Tracing cleanup and add mmio tracing
URL   : https://patchwork.freedesktop.org/series/134258/
State : failure

== Summary ==

CI Bug Log - changes from xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b_full -> xe-pw-134258v1_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-134258v1_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-134258v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (3 -> 3)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-134258v1_full:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_gt_freq@freq_fixed_exec:
    - shard-dg2-set2:     [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@xe_gt_freq@freq_fixed_exec.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-436/igt@xe_gt_freq@freq_fixed_exec.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_pm_dc@deep-pkgc:
    - {shard-lnl}:        NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html

  * igt@xe_exec_threads@threads-bal-mixed-userptr:
    - {shard-lnl}:        [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-lnl-7/igt@xe_exec_threads@threads-bal-mixed-userptr.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-lnl-3/igt@xe_exec_threads@threads-bal-mixed-userptr.html

  
Known issues
------------

  Here are the changes found in xe-pw-134258v1_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-read:
    - shard-adlp:         NOTRUN -> [SKIP][6] ([Intel XE#1125] / [Intel XE#1201])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-adlp:         NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#660])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#316]) +6 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][10] ([Intel XE#1231]) +1 other test fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [SKIP][11] ([Intel XE#1124] / [Intel XE#1201]) +17 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#367]) +4 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#787]) +74 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
    - shard-adlp:         NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +49 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][15] -> [INCOMPLETE][16] ([Intel XE#1195]) +3 other tests incomplete
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#1252]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@plane-scaling:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#1152] / [Intel XE#1201] / [Intel XE#455])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][22] ([Intel XE#1152] / [Intel XE#1201]) +2 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-1.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-adlp:         NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#306]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-adlp:         NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#373]) +11 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_content_protection@content-type-change:
    - shard-adlp:         NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#455]) +36 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-adlp:         NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#307])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-adlp:         NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#308]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-adlp:         NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#309]) +6 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#323])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-dg2-set2:     [PASS][31] -> [DMESG-WARN][32] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@forked-bo@all-pipes:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][33] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@kms_cursor_legacy@forked-bo@all-pipes.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][35] ([Intel XE#1191] / [Intel XE#1214]) +1 other test dmesg-warn
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#776])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][37] -> [DMESG-WARN][38] ([Intel XE#1162] / [Intel XE#1214]) +4 other tests dmesg-warn
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#310]) +11 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][40] ([Intel XE#1214] / [Intel XE#1608]) +2 other tests dmesg-warn
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html

  * igt@kms_flip@nonexisting-fb-interruptible@a-dp4:
    - shard-dg2-set2:     [PASS][41] -> [DMESG-WARN][42] ([Intel XE#1214]) +2 other tests dmesg-warn
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@kms_flip@nonexisting-fb-interruptible@a-dp4.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_flip@nonexisting-fb-interruptible@a-dp4.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][43] ([Intel XE#324]) +1 other test dmesg-fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
    - shard-adlp:         NOTRUN -> [FAIL][44] ([Intel XE#1874]) +12 other tests fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#651]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#651]) +20 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#651]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#653]) +7 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#1201]) +29 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-adlp:         NOTRUN -> [SKIP][50] ([Intel XE#1158] / [Intel XE#1201])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#653]) +18 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#653])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#656]) +67 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#1341])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#1339])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_getfb@getfb2-accept-ccs.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#417])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][57] -> [SKIP][58] ([Intel XE#1201] / [Intel XE#455])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@kms_hdr@invalid-hdr.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#356])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a:
    - shard-adlp:         NOTRUN -> [FAIL][60] ([Intel XE#1331] / [Intel XE#1978]) +5 other tests fail
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][61] ([Intel XE#1035] / [Intel XE#1195] / [Intel XE#927])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][62] ([Intel XE#1195] / [Intel XE#927])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-adlp:         NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
    - shard-adlp:         [PASS][67] -> [SKIP][68] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-adlp:         NOTRUN -> [SKIP][69] ([Intel XE#1122] / [Intel XE#1201])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#734])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#1201])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#836]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#1211])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-adlp:         [PASS][74] -> [SKIP][75] ([Intel XE#1201]) +7 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-9/igt@kms_pm_rpm@legacy-planes-dpms.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_psr@fbc-psr-primary-page-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@kms_psr@fbc-psr-primary-page-flip.html

  * igt@kms_psr@psr-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#929]) +22 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@kms_psr@psr-suspend.html

  * igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [FAIL][78] ([Intel XE#294]) +1 other test fail
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#327])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#1201] / [Intel XE#362]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#756]) +3 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-adlp:         NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#1932])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@xe_ccs@ctrl-surf-copy-new-ctx:
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_ccs@ctrl-surf-copy-new-ctx.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#1447]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#1123] / [Intel XE#1201])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#1126] / [Intel XE#1201])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-dg2-set2:     [PASS][89] -> [TIMEOUT][90] ([Intel XE#1473])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@xe_evict@evict-beng-threads-large.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-cm-threads-large:
    - shard-dg2-set2:     [PASS][91] -> [TIMEOUT][92] ([Intel XE#1473] / [Intel XE#392])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@xe_evict@evict-cm-threads-large.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-adlp:         NOTRUN -> [SKIP][93] ([Intel XE#1201] / [Intel XE#261]) +8 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     NOTRUN -> [TIMEOUT][94] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_evict@evict-small-multi-vm-cm:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +3 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_evict@evict-small-multi-vm-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#688]) +3 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#1392]) +19 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][98] ([Intel XE#1201] / [Intel XE#288]) +39 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@once-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][99] ([Intel XE#1201] / [Intel XE#288]) +4 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@xe_exec_fault_mode@once-basic.html

  * igt@xe_exec_reset@gt-reset-stress:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][100] ([Intel XE#1214] / [Intel XE#1638])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_exec_threads@threads-bal-fd-userptr-rebind:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][101] ([Intel XE#1214]) +15 other tests dmesg-warn
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_exec_threads@threads-bal-fd-userptr-rebind.html

  * igt@xe_intel_bb@offset-control:
    - shard-adlp:         [PASS][102] -> [DMESG-WARN][103] ([Intel XE#1214]) +4 other tests dmesg-warn
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-1/igt@xe_intel_bb@offset-control.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_intel_bb@offset-control.html

  * igt@xe_module_load@load:
    - shard-adlp:         NOTRUN -> [SKIP][104] ([Intel XE#1201] / [Intel XE#378])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@xe_module_load@load.html

  * igt@xe_noexec_ping_pong:
    - shard-adlp:         NOTRUN -> [SKIP][105] ([Intel XE#1201] / [Intel XE#379])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@xe_noexec_ping_pong.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#979])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][107] ([Intel XE#1201] / [Intel XE#366]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][108] ([Intel XE#1195]) +1 other test incomplete
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-adlp:         [PASS][109] -> [DMESG-WARN][110] ([Intel XE#1191] / [Intel XE#1214])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-8/igt@xe_pm@s3-multiple-execs.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s4-basic-exec:
    - shard-adlp:         [PASS][111] -> [ABORT][112] ([Intel XE#1358] / [Intel XE#1794])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-8/igt@xe_pm@s4-basic-exec.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-adlp:         [PASS][113] -> [INCOMPLETE][114] ([Intel XE#1195])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-1/igt@xe_pm@s4-vm-bind-prefetch.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_spin_batch@spin-fixed-duration:
    - shard-adlp:         NOTRUN -> [FAIL][116] ([Intel XE#1081])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_spin_batch@spin-fixed-duration.html

  * igt@xe_wedged@basic-wedged:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][117] ([Intel XE#1214] / [Intel XE#1760])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_wedged@basic-wedged.html

  
#### Possible fixes ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - {shard-lnl}:        [FAIL][118] ([Intel XE#1659]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [FAIL][120] ([Intel XE#1204]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-0:
    - shard-adlp:         [FAIL][122] ([Intel XE#1874]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [DMESG-WARN][124] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][125] +5 other tests pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-dg2-set2:     [DMESG-WARN][126] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][127] +1 other test pass
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_pm_dc@dc6-psr:
    - {shard-lnl}:        [FAIL][128] ([Intel XE#1430]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2-set2:     [INCOMPLETE][130] ([Intel XE#1195]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-dg2-set2:     [FAIL][132] ([Intel XE#771] / [Intel XE#899]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
    - shard-dg2-set2:     [FAIL][134] ([Intel XE#899]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-dg2-set2:     [TIMEOUT][136] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@xe_evict@evict-beng-cm-threads-large.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate-race:
    - shard-adlp:         [DMESG-WARN][138] ([Intel XE#1214]) -> [PASS][139] +1 other test pass
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate-race.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_exec_reset@cm-close-execqueues-close-fd:
    - shard-adlp:         [DMESG-WARN][140] ([Intel XE#1214] / [Intel XE#358]) -> [PASS][141] +1 other test pass
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html

  * igt@xe_pm@s2idle-mocs:
    - shard-dg2-set2:     [DMESG-WARN][142] ([Intel XE#1162]) -> [PASS][143]
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@xe_pm@s2idle-mocs.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@xe_pm@s2idle-mocs.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][144] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][145] +2 other tests pass
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-dg2-set2:     [DMESG-WARN][146] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1551]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_pm@s4-basic-exec:
    - {shard-lnl}:        [ABORT][148] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-lnl-6/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-adlp:         [INCOMPLETE][150] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][151] +1 other test pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-9/igt@xe_pm@s4-d3hot-basic-exec.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pm@s4-mocs:
    - {shard-lnl}:        [ABORT][152] ([Intel XE#1794]) -> [PASS][153]
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-lnl-2/igt@xe_pm@s4-mocs.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-lnl-6/igt@xe_pm@s4-mocs.html

  * igt@xe_pm_residency@gt-c6-freeze:
    - shard-adlp:         [INCOMPLETE][154] ([Intel XE#1195] / [Intel XE#1349]) -> [PASS][155]
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-9/igt@xe_pm_residency@gt-c6-freeze.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@xe_pm_residency@gt-c6-freeze.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-adlp:         [FAIL][156] ([Intel XE#958]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@xe_pm_residency@toggle-gt-c6.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@xe_pm_residency@toggle-gt-c6.html

  
#### Warnings ####

  * igt@kms_async_flips@test-cursor:
    - shard-dg2-set2:     [DMESG-WARN][158] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][159] ([Intel XE#282]) +1 other test dmesg-warn
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_async_flips@test-cursor.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_async_flips@test-cursor.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-adlp:         [SKIP][160] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][161] ([Intel XE#1201])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#316]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][165] ([Intel XE#316]) +2 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][167] ([Intel XE#1124]) +6 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#1124]) -> [SKIP][169] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-adlp:         [SKIP][170] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][171] ([Intel XE#1201])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_joiner@basic:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#346]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#346])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_big_joiner@basic.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@kms_big_joiner@basic.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][175] ([Intel XE#367]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#367]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#367])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-adlp:         [SKIP][178] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][179] ([Intel XE#1201])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][181] ([Intel XE#787]) +55 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][182] -> [INCOMPLETE][183] ([Intel XE#1195])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][185] ([Intel XE#1252])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][186] -> [TIMEOUT][187] ([Intel XE#1850])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][188] -> [TIMEOUT][189] ([Intel XE#1713])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#787]) -> [SKIP][191] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
    - shard-adlp:         [SKIP][192] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][193] ([Intel XE#1201])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-9/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][197] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@mode-transition@pipe-c-dp-4:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#314]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#306]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#306])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-436/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][203] ([Intel XE#306])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_chamelium_color@ctm-blue-to-red.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#373]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][207] ([Intel XE#373]) +4 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     [INCOMPLETE][208] ([Intel XE#1195]) -> [FAIL][209] ([Intel XE#1178]) +1 other test fail
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-adlp:         [SKIP][210] ([Intel XE#1201]) -> [SKIP][211] ([Intel XE#1201] / [Intel XE#308])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#308]) -> [SKIP][213] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [SKIP][214] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][215] ([Intel XE#308])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-adlp:         [DMESG-WARN][216] ([Intel XE#1214] / [Intel XE#1608]) -> [INCOMPLETE][217] ([Intel XE#1195] / [Intel XE#927])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_cursor_crc@cursor-suspend.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][218] ([Intel XE#1214] / [Intel XE#1608]) -> [INCOMPLETE][219] ([Intel XE#1195]) +1 other test incomplete
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][220] ([Intel XE#282]) -> [DMESG-WARN][221] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-6.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-6.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-dg2-set2:     [DMESG-WARN][222] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][223] ([Intel XE#1214] / [Intel XE#282])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-436/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     [SKIP][224] ([Intel XE#323]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#323])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-adlp:         [SKIP][226] ([Intel XE#1201] / [Intel XE#309]) -> [SKIP][227] ([Intel XE#1201]) +1 other test skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929]) -> [SKIP][229] ([Intel XE#455] / [Intel XE#929])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][230] ([Intel XE#1201] / [Intel XE#1927]) -> [SKIP][231] ([Intel XE#1927])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][232] ([Intel XE#776]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#776])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][234] ([Intel XE#1201] / [Intel XE#701]) -> [SKIP][235] ([Intel XE#701])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-436/igt@kms_feature_discovery@chamelium.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2-set2:     [DMESG-WARN][236] ([Intel XE#1162] / [Intel XE#1214]) -> [INCOMPLETE][237] ([Intel XE#1195])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-433/igt@kms_flip@flip-vs-suspend.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [INCOMPLETE][238] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-WARN][239] ([Intel XE#1191] / [Intel XE#1214] / [Intel XE#1608])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [INCOMPLETE][240] ([Intel XE#1195]) -> [DMESG-WARN][241] ([Intel XE#1191] / [Intel XE#1214] / [Intel XE#1608])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-adlp:         [SKIP][242] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][243] ([Intel XE#1201])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][244] ([Intel XE#651]) -> [SKIP][245] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-adlp:         [SKIP][246] ([Intel XE#1201] / [Intel XE#656]) -> [SKIP][247] ([Intel XE#1201]) +3 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][249] ([Intel XE#651]) +16 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][250] ([Intel XE#658]) -> [SKIP][251] ([Intel XE#1201] / [Intel XE#658])
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - shard-adlp:         [SKIP][252] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][253] ([Intel XE#1201])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][254] ([Intel XE#1158] / [Intel XE#1201]) -> [SKIP][255] ([Intel XE#1158])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][257] ([Intel XE#653]) +16 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     [SKIP][258] ([Intel XE#653]) -> [SKIP][259] ([Intel XE#1201] / [Intel XE#653]) +16 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-adlp:         [SKIP][260] ([Intel XE#1201]) -> [SKIP][261] ([Intel XE#1201] / [Intel XE#656]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#417]) -> [SKIP][263] ([Intel XE#1201] / [Intel XE#417])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@static-swap:
    - shard-adlp:         [SKIP][264] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][265] ([Intel XE#1201]) +2 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-8/igt@kms_hdr@static-swap.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-6/igt@kms_hdr@static-swap.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][266] ([Intel XE#1191] / [Intel XE#1214]) -> [INCOMPLETE][267] ([Intel XE#1195]) +1 other test incomplete
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][269] ([Intel XE#305] / [Intel XE#455]) +3 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][270] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][271] ([Intel XE#455]) +14 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][272] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][273] ([Intel XE#305]) +8 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-adlp:         [SKIP][274] ([Intel XE#1201] / [Intel XE#1211]) -> [SKIP][275] ([Intel XE#1201] / [Intel XE#836])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-adlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-adlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][276] ([Intel XE#1122]) -> [SKIP][277] ([Intel XE#1122] / [Intel XE#1201])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr2-suspend:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#929]) -> [SKIP][279] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@kms_psr@fbc-psr2-suspend.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][281] ([Intel XE#929]) +14 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@kms_psr@psr-dpms.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_psr@psr-dpms.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][282] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][283] ([Intel XE#327]) +3 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][284] ([Intel XE#1729]) -> [SKIP][285] ([Intel XE#1201] / [Intel XE#362])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][286] ([Intel XE#455]) -> [SKIP][287] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@kms_vrr@flipline.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-463/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-dg2-set2:     [SKIP][288] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][289] ([Intel XE#756])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-dg2-set2:     [SKIP][290] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][291] ([Intel XE#1091])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     [SKIP][292] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][293] ([Intel XE#1126])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][294] ([Intel XE#1126]) -> [SKIP][295] ([Intel XE#1126] / [Intel XE#1201])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_evict@evict-beng-mixed-many-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][296] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][297] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][298] ([Intel XE#1195] / [Intel XE#1473]) -> [INCOMPLETE][299] ([Intel XE#1473] / [Intel XE#392])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-436/igt@xe_evict@evict-threads-large.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm:
    - shard-dg2-set2:     [SKIP][300] ([Intel XE#288]) -> [SKIP][301] ([Intel XE#1201] / [Intel XE#288]) +14 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html

  * igt@xe_exec_fault_mode@once-rebind-prefetch:
    - shard-dg2-set2:     [SKIP][302] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][303] ([Intel XE#288]) +16 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-prefetch.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-prefetch.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][304] ([Intel XE#512]) -> [SKIP][305] ([Intel XE#1201] / [Intel XE#512])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-432/igt@xe_mmap@small-bar.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-434/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     [SKIP][306] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][307] ([Intel XE#378])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-464/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_module_load@load.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][309] ([Intel XE#366]) +1 other test skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-433/igt@xe_pm@d3cold-multiple-execs.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     [DMESG-WARN][310] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1941]) -> [DMESG-WARN][311] ([Intel XE#1162] / [Intel XE#1941])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_query@multigpu-query-config:
    - shard-dg2-set2:     [SKIP][312] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][313] ([Intel XE#944]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-463/igt@xe_query@multigpu-query-config.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-432/igt@xe_query@multigpu-query-config.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-dg2-set2:     [DMESG-WARN][314] ([Intel XE#1214] / [Intel XE#1760]) -> [DMESG-FAIL][315] ([Intel XE#1760])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1191
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
  [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
  [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1331
  [Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
  [Intel XE#1341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1341
  [Intel XE#1349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1349
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
  [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1713]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1713
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
  [Intel XE#1850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1850
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927
  [Intel XE#1932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1932
  [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#1978]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1978
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
  [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#660]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/660
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
  [Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


Build changes
-------------

  * IGT: IGT_7873 -> IGT_7874
  * Linux: xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b -> xe-pw-134258v1

  IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7874: 4d9b4ee12b5f0852c02818ca9a886355b43fbbff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1377-bdab4dd15a635eedc4b4d95be9d4155be46e5e4b: bdab4dd15a635eedc4b4d95be9d4155be46e5e4b
  xe-pw-134258v1: 134258v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134258v1/index.html

[-- Attachment #2: Type: text/html, Size: 116648 bytes --]

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

* Re: [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces
  2024-05-30 15:13 ` [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces Radhakrishna Sripada
@ 2024-05-31 14:33   ` Gustavo Sousa
  0 siblings, 0 replies; 24+ messages in thread
From: Gustavo Sousa @ 2024-05-31 14:33 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe
  Cc: lucas.demarchi, Radhakrishna Sripada, Jani Nikula

Quoting Radhakrishna Sripada (2024-05-30 12:13:08-03:00)
>xe_trace.h is starting to get over crowded. Move the traces
>related to bo, vm, vma's to its own file.
>
>Suggested-by: Jani Nikula <jani.nikula@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
>---
> drivers/gpu/drm/xe/Makefile          |   1 +
> drivers/gpu/drm/xe/xe_bo.c           |   2 +-
> drivers/gpu/drm/xe/xe_gt_pagefault.c |   2 +-
> drivers/gpu/drm/xe/xe_migrate.c      |   2 +-
> drivers/gpu/drm/xe/xe_trace.h        | 212 ------------------------
> drivers/gpu/drm/xe/xe_trace_bo.c     |   9 +
> drivers/gpu/drm/xe/xe_trace_bo.h     | 236 +++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_vm.c           |   2 +-
> 8 files changed, 250 insertions(+), 216 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.c
> create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.h
>
>diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
>index ae07f3d6a068..fa9960acfe53 100644
>--- a/drivers/gpu/drm/xe/Makefile
>+++ b/drivers/gpu/drm/xe/Makefile
>@@ -135,6 +135,7 @@ xe-y += xe_bb.o \
>         xe_tile.o \
>         xe_tile_sysfs.o \
>         xe_trace.o \
>+        xe_trace_bo.o \
>         xe_ttm_sys_mgr.o \
>         xe_ttm_stolen_mgr.o \
>         xe_ttm_vram_mgr.o \
>diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
>index 2bae01ce4e5b..74294f1b05bc 100644
>--- a/drivers/gpu/drm/xe/xe_bo.c
>+++ b/drivers/gpu/drm/xe/xe_bo.c
>@@ -25,7 +25,7 @@
> #include "xe_pm.h"
> #include "xe_preempt_fence.h"
> #include "xe_res_cursor.h"
>-#include "xe_trace.h"
>+#include "xe_trace_bo.h"
> #include "xe_ttm_stolen_mgr.h"
> #include "xe_vm.h"
> 
>diff --git a/drivers/gpu/drm/xe/xe_gt_pagefault.c b/drivers/gpu/drm/xe/xe_gt_pagefault.c
>index 040dd142c49c..dead920de5f1 100644
>--- a/drivers/gpu/drm/xe/xe_gt_pagefault.c
>+++ b/drivers/gpu/drm/xe/xe_gt_pagefault.c
>@@ -19,7 +19,7 @@
> #include "xe_guc.h"
> #include "xe_guc_ct.h"
> #include "xe_migrate.h"
>-#include "xe_trace.h"
>+#include "xe_trace_bo.h"
> #include "xe_vm.h"
> 
> struct pagefault {
>diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
>index cccffaf3db06..da3305834448 100644
>--- a/drivers/gpu/drm/xe/xe_migrate.c
>+++ b/drivers/gpu/drm/xe/xe_migrate.c
>@@ -32,7 +32,7 @@
> #include "xe_res_cursor.h"
> #include "xe_sched_job.h"
> #include "xe_sync.h"
>-#include "xe_trace.h"
>+#include "xe_trace_bo.h"
> #include "xe_vm.h"
> 
> /**
>diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
>index 450f407c66e8..9493cc3d6d82 100644
>--- a/drivers/gpu/drm/xe/xe_trace.h
>+++ b/drivers/gpu/drm/xe/xe_trace.h
>@@ -12,8 +12,6 @@
> #include <linux/tracepoint.h>
> #include <linux/types.h>
> 
>-#include "xe_bo.h"
>-#include "xe_bo_types.h"
> #include "xe_exec_queue_types.h"
> #include "xe_gpu_scheduler_types.h"
> #include "xe_gt_tlb_invalidation_types.h"
>@@ -76,58 +74,6 @@ DEFINE_EVENT(xe_gt_tlb_invalidation_fence, xe_gt_tlb_invalidation_fence_timeout,
>              TP_ARGS(fence)
> );
> 
>-DECLARE_EVENT_CLASS(xe_bo,
>-                    TP_PROTO(struct xe_bo *bo),
>-                    TP_ARGS(bo),
>-
>-                    TP_STRUCT__entry(
>-                             __field(size_t, size)
>-                             __field(u32, flags)
>-                             __field(struct xe_vm *, vm)
>-                             ),
>-
>-                    TP_fast_assign(
>-                           __entry->size = bo->size;
>-                           __entry->flags = bo->flags;
>-                           __entry->vm = bo->vm;
>-                           ),
>-
>-                    TP_printk("size=%zu, flags=0x%02x, vm=%p",
>-                              __entry->size, __entry->flags, __entry->vm)
>-);
>-
>-DEFINE_EVENT(xe_bo, xe_bo_cpu_fault,
>-             TP_PROTO(struct xe_bo *bo),
>-             TP_ARGS(bo)
>-);
>-
>-TRACE_EVENT(xe_bo_move,
>-            TP_PROTO(struct xe_bo *bo, uint32_t new_placement, uint32_t old_placement,
>-                     bool move_lacks_source),
>-            TP_ARGS(bo, new_placement, old_placement, move_lacks_source),
>-            TP_STRUCT__entry(
>-                     __field(struct xe_bo *, bo)
>-                     __field(size_t, size)
>-                     __field(u32, new_placement)
>-                     __field(u32, old_placement)
>-                     __array(char, device_id, 12)
>-                     __field(bool, move_lacks_source)
>-                        ),
>-
>-            TP_fast_assign(
>-                   __entry->bo      = bo;
>-                   __entry->size = bo->size;
>-                   __entry->new_placement = new_placement;
>-                   __entry->old_placement = old_placement;
>-                   strscpy(__entry->device_id, dev_name(xe_bo_device(__entry->bo)->drm.dev), 12);
>-                   __entry->move_lacks_source = move_lacks_source;
>-                   ),
>-            TP_printk("move_lacks_source:%s, migrate object %p [size %zu] from %s to %s device_id:%s",
>-                      __entry->move_lacks_source ? "yes" : "no", __entry->bo, __entry->size,
>-                      xe_mem_type_to_name[__entry->old_placement],
>-                      xe_mem_type_to_name[__entry->new_placement], __entry->device_id)
>-);
>-
> DECLARE_EVENT_CLASS(xe_exec_queue,
>                     TP_PROTO(struct xe_exec_queue *q),
>                     TP_ARGS(q),
>@@ -386,164 +332,6 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
>              TP_ARGS(fence)
> );
> 
>-DECLARE_EVENT_CLASS(xe_vma,
>-                    TP_PROTO(struct xe_vma *vma),
>-                    TP_ARGS(vma),
>-
>-                    TP_STRUCT__entry(
>-                             __field(struct xe_vma *, vma)
>-                             __field(u32, asid)
>-                             __field(u64, start)
>-                             __field(u64, end)
>-                             __field(u64, ptr)
>-                             ),
>-
>-                    TP_fast_assign(
>-                           __entry->vma = vma;
>-                           __entry->asid = xe_vma_vm(vma)->usm.asid;
>-                           __entry->start = xe_vma_start(vma);
>-                           __entry->end = xe_vma_end(vma) - 1;
>-                           __entry->ptr = xe_vma_userptr(vma);
>-                           ),
>-
>-                    TP_printk("vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
>-                              __entry->vma, __entry->asid, __entry->start,
>-                              __entry->end, __entry->ptr)
>-)
>-
>-DEFINE_EVENT(xe_vma, xe_vma_flush,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_pagefault,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_acc,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_fail,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_bind,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_pf_bind,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_unbind,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_worker,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_exec,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_rebind_worker,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_rebind_exec,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_invalidate,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_evict,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate_complete,
>-             TP_PROTO(struct xe_vma *vma),
>-             TP_ARGS(vma)
>-);
>-
>-DECLARE_EVENT_CLASS(xe_vm,
>-                    TP_PROTO(struct xe_vm *vm),
>-                    TP_ARGS(vm),
>-
>-                    TP_STRUCT__entry(
>-                             __field(struct xe_vm *, vm)
>-                             __field(u32, asid)
>-                             ),
>-
>-                    TP_fast_assign(
>-                           __entry->vm = vm;
>-                           __entry->asid = vm->usm.asid;
>-                           ),
>-
>-                    TP_printk("vm=%p, asid=0x%05x",  __entry->vm,
>-                              __entry->asid)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_kill,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_create,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_free,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_cpu_bind,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_restart,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_enter,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_retry,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
>-DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_exit,
>-             TP_PROTO(struct xe_vm *vm),
>-             TP_ARGS(vm)
>-);
>-
> /* GuC */
> DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
>                     TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>diff --git a/drivers/gpu/drm/xe/xe_trace_bo.c b/drivers/gpu/drm/xe/xe_trace_bo.c
>new file mode 100644
>index 000000000000..6320168677e8
>--- /dev/null
>+++ b/drivers/gpu/drm/xe/xe_trace_bo.c
>@@ -0,0 +1,9 @@
>+// SPDX-License-Identifier: GPL-2.0-only
>+/*
>+ * Copyright © 2022 Intel Corporation

s/2022/2024/

>+ */
>+
>+#ifndef __CHECKER__
>+#define CREATE_TRACE_POINTS
>+#include "xe_trace_bo.h"
>+#endif
>diff --git a/drivers/gpu/drm/xe/xe_trace_bo.h b/drivers/gpu/drm/xe/xe_trace_bo.h
>new file mode 100644
>index 000000000000..6d90f3f42d54
>--- /dev/null
>+++ b/drivers/gpu/drm/xe/xe_trace_bo.h
>@@ -0,0 +1,236 @@
>+/* SPDX-License-Identifier: GPL-2.0-only */
>+/*
>+ * Copyright © 2022 Intel Corporation

s/2022/2024/

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

>+ */
>+
>+#undef TRACE_SYSTEM
>+#define TRACE_SYSTEM xe
>+
>+#if !defined(_XE_TRACE_BO_H_) || defined(TRACE_HEADER_MULTI_READ)
>+#define _XE_TRACE_BO_H_
>+
>+#include <linux/tracepoint.h>
>+#include <linux/types.h>
>+
>+#include "xe_bo.h"
>+#include "xe_bo_types.h"
>+#include "xe_vm.h"
>+
>+DECLARE_EVENT_CLASS(xe_bo,
>+                    TP_PROTO(struct xe_bo *bo),
>+                    TP_ARGS(bo),
>+
>+                    TP_STRUCT__entry(
>+                             __field(size_t, size)
>+                             __field(u32, flags)
>+                             __field(struct xe_vm *, vm)
>+                             ),
>+
>+                    TP_fast_assign(
>+                           __entry->size = bo->size;
>+                           __entry->flags = bo->flags;
>+                           __entry->vm = bo->vm;
>+                           ),
>+
>+                    TP_printk("size=%zu, flags=0x%02x, vm=%p",
>+                              __entry->size, __entry->flags, __entry->vm)
>+);
>+
>+DEFINE_EVENT(xe_bo, xe_bo_cpu_fault,
>+             TP_PROTO(struct xe_bo *bo),
>+             TP_ARGS(bo)
>+);
>+
>+TRACE_EVENT(xe_bo_move,
>+            TP_PROTO(struct xe_bo *bo, uint32_t new_placement, uint32_t old_placement,
>+                     bool move_lacks_source),
>+            TP_ARGS(bo, new_placement, old_placement, move_lacks_source),
>+            TP_STRUCT__entry(
>+                     __field(struct xe_bo *, bo)
>+                     __field(size_t, size)
>+                     __field(u32, new_placement)
>+                     __field(u32, old_placement)
>+                     __array(char, device_id, 12)
>+                     __field(bool, move_lacks_source)
>+                        ),
>+
>+            TP_fast_assign(
>+                   __entry->bo      = bo;
>+                   __entry->size = bo->size;
>+                   __entry->new_placement = new_placement;
>+                   __entry->old_placement = old_placement;
>+                   strscpy(__entry->device_id, dev_name(xe_bo_device(__entry->bo)->drm.dev), 12);
>+                   __entry->move_lacks_source = move_lacks_source;
>+                   ),
>+            TP_printk("move_lacks_source:%s, migrate object %p [size %zu] from %s to %s device_id:%s",
>+                      __entry->move_lacks_source ? "yes" : "no", __entry->bo, __entry->size,
>+                      xe_mem_type_to_name[__entry->old_placement],
>+                      xe_mem_type_to_name[__entry->new_placement], __entry->device_id)
>+);
>+
>+DECLARE_EVENT_CLASS(xe_vma,
>+                    TP_PROTO(struct xe_vma *vma),
>+                    TP_ARGS(vma),
>+
>+                    TP_STRUCT__entry(
>+                             __field(struct xe_vma *, vma)
>+                             __field(u32, asid)
>+                             __field(u64, start)
>+                             __field(u64, end)
>+                             __field(u64, ptr)
>+                             ),
>+
>+                    TP_fast_assign(
>+                           __entry->vma = vma;
>+                           __entry->asid = xe_vma_vm(vma)->usm.asid;
>+                           __entry->start = xe_vma_start(vma);
>+                           __entry->end = xe_vma_end(vma) - 1;
>+                           __entry->ptr = xe_vma_userptr(vma);
>+                           ),
>+
>+                    TP_printk("vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
>+                              __entry->vma, __entry->asid, __entry->start,
>+                              __entry->end, __entry->ptr)
>+)
>+
>+DEFINE_EVENT(xe_vma, xe_vma_flush,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_pagefault,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_acc,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_fail,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_bind,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_pf_bind,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_unbind,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_worker,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_userptr_rebind_exec,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_rebind_worker,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_rebind_exec,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_invalidate,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_evict,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DEFINE_EVENT(xe_vma, xe_vma_userptr_invalidate_complete,
>+             TP_PROTO(struct xe_vma *vma),
>+             TP_ARGS(vma)
>+);
>+
>+DECLARE_EVENT_CLASS(xe_vm,
>+                    TP_PROTO(struct xe_vm *vm),
>+                    TP_ARGS(vm),
>+
>+                    TP_STRUCT__entry(
>+                             __field(struct xe_vm *, vm)
>+                             __field(u32, asid)
>+                             ),
>+
>+                    TP_fast_assign(
>+                           __entry->vm = vm;
>+                           __entry->asid = vm->usm.asid;
>+                           ),
>+
>+                    TP_printk("vm=%p, asid=0x%05x",  __entry->vm,
>+                              __entry->asid)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_kill,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_create,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_free,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_cpu_bind,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_restart,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_enter,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_retry,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+DEFINE_EVENT(xe_vm, xe_vm_rebind_worker_exit,
>+             TP_PROTO(struct xe_vm *vm),
>+             TP_ARGS(vm)
>+);
>+
>+#endif
>+
>+/* This part must be outside protection */
>+#undef TRACE_INCLUDE_PATH
>+#undef TRACE_INCLUDE_FILE
>+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
>+#define TRACE_INCLUDE_FILE xe_trace_bo
>+#include <trace/define_trace.h>
>diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
>index 26b409e1b0f0..c2100d26b4e3 100644
>--- a/drivers/gpu/drm/xe/xe_vm.c
>+++ b/drivers/gpu/drm/xe/xe_vm.c
>@@ -36,7 +36,7 @@
> #include "xe_pt.h"
> #include "xe_res_cursor.h"
> #include "xe_sync.h"
>-#include "xe_trace.h"
>+#include "xe_trace_bo.h"
> #include "xe_wa.h"
> #include "xe_hmm.h"
> 
>-- 
>2.34.1
>

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

* Re: [PATCH v3 2/6] drm/xe/trace: Extract guc related traces
  2024-05-30 15:13 ` [PATCH v3 2/6] drm/xe/trace: Extract guc related traces Radhakrishna Sripada
@ 2024-05-31 14:34   ` Gustavo Sousa
  0 siblings, 0 replies; 24+ messages in thread
From: Gustavo Sousa @ 2024-05-31 14:34 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe
  Cc: lucas.demarchi, Radhakrishna Sripada, Jani Nikula

Quoting Radhakrishna Sripada (2024-05-30 12:13:09-03:00)
>xe_trace.h is starting to get over crowded. Move the traces
>related to guc to its own file.
>
>Suggested-by: Jani Nikula <jani.nikula@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
>---
> drivers/gpu/drm/xe/Makefile       |   1 +
> drivers/gpu/drm/xe/xe_guc_ct.c    |   2 +-
> drivers/gpu/drm/xe/xe_trace.h     |  80 -----------------------
> drivers/gpu/drm/xe/xe_trace_guc.c |   9 +++
> drivers/gpu/drm/xe/xe_trace_guc.h | 103 ++++++++++++++++++++++++++++++
> 5 files changed, 114 insertions(+), 81 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.c
> create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.h
>
>diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
>index fa9960acfe53..db77b9823f7c 100644
>--- a/drivers/gpu/drm/xe/Makefile
>+++ b/drivers/gpu/drm/xe/Makefile
>@@ -136,6 +136,7 @@ xe-y += xe_bb.o \
>         xe_tile_sysfs.o \
>         xe_trace.o \
>         xe_trace_bo.o \
>+        xe_trace_guc.o \
>         xe_ttm_sys_mgr.o \
>         xe_ttm_stolen_mgr.o \
>         xe_ttm_vram_mgr.o \
>diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
>index c1f258348f5c..78f79df638d5 100644
>--- a/drivers/gpu/drm/xe/xe_guc_ct.c
>+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
>@@ -29,7 +29,7 @@
> #include "xe_guc_submit.h"
> #include "xe_map.h"
> #include "xe_pm.h"
>-#include "xe_trace.h"
>+#include "xe_trace_guc.h"
> 
> /* Used when a CT send wants to block and / or receive data */
> struct g2h_fence {
>diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
>index 9493cc3d6d82..8e00f0cdeb75 100644
>--- a/drivers/gpu/drm/xe/xe_trace.h
>+++ b/drivers/gpu/drm/xe/xe_trace.h
>@@ -332,86 +332,6 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
>              TP_ARGS(fence)
> );
> 
>-/* GuC */
>-DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
>-                    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>-                    TP_ARGS(_head, _tail, size, space, len),
>-
>-                    TP_STRUCT__entry(
>-                             __field(u32, _head)
>-                             __field(u32, _tail)
>-                             __field(u32, size)
>-                             __field(u32, space)
>-                             __field(u32, len)
>-                             ),
>-
>-                    TP_fast_assign(
>-                           __entry->_head = _head;
>-                           __entry->_tail = _tail;
>-                           __entry->size = size;
>-                           __entry->space = space;
>-                           __entry->len = len;
>-                           ),
>-
>-                    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>-                              __entry->_head, __entry->_tail, __entry->size,
>-                              __entry->space, __entry->len)
>-);
>-
>-DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
>-             TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>-             TP_ARGS(_head, _tail, size, space, len)
>-);
>-
>-DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
>-                   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>-                   TP_ARGS(_head, _tail, size, space, len),
>-
>-                   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>-                             __entry->_head, __entry->_tail, __entry->size,
>-                             __entry->space, __entry->len)
>-);
>-
>-DECLARE_EVENT_CLASS(xe_guc_ctb,
>-                    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>-                    TP_ARGS(gt_id, action, len, _head, tail),
>-
>-                    TP_STRUCT__entry(
>-                                __field(u8, gt_id)
>-                                __field(u32, action)
>-                                __field(u32, len)
>-                                __field(u32, tail)
>-                                __field(u32, _head)
>-                    ),
>-
>-                    TP_fast_assign(
>-                            __entry->gt_id = gt_id;
>-                            __entry->action = action;
>-                            __entry->len = len;
>-                            __entry->tail = tail;
>-                            __entry->_head = _head;
>-                    ),
>-
>-                    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>-                              __entry->gt_id, __entry->action, __entry->len,
>-                              __entry->tail, __entry->_head)
>-);
>-
>-DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
>-             TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>-             TP_ARGS(gt_id, action, len, _head, tail)
>-);
>-
>-DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
>-                   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>-                   TP_ARGS(gt_id, action, len, _head, tail),
>-
>-                   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>-                             __entry->gt_id, __entry->action, __entry->len,
>-                             __entry->tail, __entry->_head)
>-
>-);
>-
> #endif
> 
> /* This part must be outside protection */
>diff --git a/drivers/gpu/drm/xe/xe_trace_guc.c b/drivers/gpu/drm/xe/xe_trace_guc.c
>new file mode 100644
>index 000000000000..f2e2b6bd165d
>--- /dev/null
>+++ b/drivers/gpu/drm/xe/xe_trace_guc.c
>@@ -0,0 +1,9 @@
>+// SPDX-License-Identifier: GPL-2.0-only
>+/*
>+ * Copyright © 2022 Intel Corporation

s/2022/2024/

>+ */
>+
>+#ifndef __CHECKER__
>+#define CREATE_TRACE_POINTS
>+#include "xe_trace_guc.h"
>+#endif
>diff --git a/drivers/gpu/drm/xe/xe_trace_guc.h b/drivers/gpu/drm/xe/xe_trace_guc.h
>new file mode 100644
>index 000000000000..fb4976499812
>--- /dev/null
>+++ b/drivers/gpu/drm/xe/xe_trace_guc.h
>@@ -0,0 +1,103 @@
>+/* SPDX-License-Identifier: GPL-2.0-only */
>+/*
>+ * Copyright © 2022 Intel Corporation

s/2022/2024/

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

>+ */
>+
>+#undef TRACE_SYSTEM
>+#define TRACE_SYSTEM xe
>+
>+#if !defined(_XE_TRACE_GUC_H_) || defined(TRACE_HEADER_MULTI_READ)
>+#define _XE_TRACE_GUC_H_
>+
>+#include <linux/tracepoint.h>
>+#include <linux/types.h>
>+
>+#include "xe_guc_exec_queue_types.h"
>+
>+DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
>+                    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>+                    TP_ARGS(_head, _tail, size, space, len),
>+
>+                    TP_STRUCT__entry(
>+                             __field(u32, _head)
>+                             __field(u32, _tail)
>+                             __field(u32, size)
>+                             __field(u32, space)
>+                             __field(u32, len)
>+                             ),
>+
>+                    TP_fast_assign(
>+                           __entry->_head = _head;
>+                           __entry->_tail = _tail;
>+                           __entry->size = size;
>+                           __entry->space = space;
>+                           __entry->len = len;
>+                           ),
>+
>+                    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>+                              __entry->_head, __entry->_tail, __entry->size,
>+                              __entry->space, __entry->len)
>+);
>+
>+DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
>+             TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>+             TP_ARGS(_head, _tail, size, space, len)
>+);
>+
>+DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
>+                   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>+                   TP_ARGS(_head, _tail, size, space, len),
>+
>+                   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>+                             __entry->_head, __entry->_tail, __entry->size,
>+                             __entry->space, __entry->len)
>+);
>+
>+DECLARE_EVENT_CLASS(xe_guc_ctb,
>+                    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>+                    TP_ARGS(gt_id, action, len, _head, tail),
>+
>+                    TP_STRUCT__entry(
>+                                __field(u8, gt_id)
>+                                __field(u32, action)
>+                                __field(u32, len)
>+                                __field(u32, tail)
>+                                __field(u32, _head)
>+                    ),
>+
>+                    TP_fast_assign(
>+                            __entry->gt_id = gt_id;
>+                            __entry->action = action;
>+                            __entry->len = len;
>+                            __entry->tail = tail;
>+                            __entry->_head = _head;
>+                    ),
>+
>+                    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>+                              __entry->gt_id, __entry->action, __entry->len,
>+                              __entry->tail, __entry->_head)
>+);
>+
>+DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
>+             TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>+             TP_ARGS(gt_id, action, len, _head, tail)
>+);
>+
>+DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
>+                   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>+                   TP_ARGS(gt_id, action, len, _head, tail),
>+
>+                   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>+                             __entry->gt_id, __entry->action, __entry->len,
>+                             __entry->tail, __entry->_head)
>+
>+);
>+
>+#endif
>+
>+/* This part must be outside protection */
>+#undef TRACE_INCLUDE_PATH
>+#undef TRACE_INCLUDE_FILE
>+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/xe
>+#define TRACE_INCLUDE_FILE xe_trace_guc
>+#include <trace/define_trace.h>
>-- 
>2.34.1
>

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

* Re: [PATCH v3 3/6] drm/xe/trace: Print device_id in xe_trace_bo events
  2024-05-30 15:13 ` [PATCH v3 3/6] drm/xe/trace: Print device_id in xe_trace_bo events Radhakrishna Sripada
@ 2024-05-31 20:07   ` Gustavo Sousa
  0 siblings, 0 replies; 24+ messages in thread
From: Gustavo Sousa @ 2024-05-31 20:07 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe
  Cc: lucas.demarchi, Radhakrishna Sripada, Ville Syrjälä

Quoting Radhakrishna Sripada (2024-05-30 12:13:10-03:00)
>In multi-gpu environments it is important to know the device
>bo/vm belongs to. The tracing information includes the device_id
>to indicate the device the event is associated with.
>
>Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
>---
> drivers/gpu/drm/xe/xe_trace_bo.h | 20 ++++++++++++++------
> 1 file changed, 14 insertions(+), 6 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_trace_bo.h b/drivers/gpu/drm/xe/xe_trace_bo.h
>index 6d90f3f42d54..88204d4988fd 100644
>--- a/drivers/gpu/drm/xe/xe_trace_bo.h
>+++ b/drivers/gpu/drm/xe/xe_trace_bo.h
>@@ -24,16 +24,20 @@ DECLARE_EVENT_CLASS(xe_bo,
>                              __field(size_t, size)
>                              __field(u32, flags)
>                              __field(struct xe_vm *, vm)
>+                             __array(char, device_id, 12)

Two questions:

- Are we certain that 12 is always a suitable size? I see that i915
  display (in intel_display_trace.h) uses the variable sized variant for
  displaying dev name (e.g. the event intel_pipe_enable).

- Are we required to have additions of fields at the end? Putting that
  at the beginning feels more natural to me.

>                              ),
> 
>                     TP_fast_assign(
>                            __entry->size = bo->size;
>                            __entry->flags = bo->flags;
>                            __entry->vm = bo->vm;
>+                           strscpy(__entry->device_id,
>+                                   dev_name(xe_bo_device(bo)->drm.dev), 12);
>                            ),
> 
>-                    TP_printk("size=%zu, flags=0x%02x, vm=%p",
>-                              __entry->size, __entry->flags, __entry->vm)
>+                    TP_printk("dev: %s: size=%zu, flags=0x%02x, vm=%p",
>+                              __entry->device_id, __entry->size,
>+                              __entry->flags, __entry->vm)
> );
> 
> DEFINE_EVENT(xe_bo, xe_bo_cpu_fault,
>@@ -78,6 +82,7 @@ DECLARE_EVENT_CLASS(xe_vma,
>                              __field(u64, start)
>                              __field(u64, end)
>                              __field(u64, ptr)
>+                             __array(char, device_id, 12)
>                              ),
> 
>                     TP_fast_assign(
>@@ -86,10 +91,11 @@ DECLARE_EVENT_CLASS(xe_vma,
>                            __entry->start = xe_vma_start(vma);
>                            __entry->end = xe_vma_end(vma) - 1;
>                            __entry->ptr = xe_vma_userptr(vma);
>+                           strscpy(__entry->device_id, dev_name(xe_vma_vm(vma)->xe->drm.dev), 12);
>                            ),
> 
>-                    TP_printk("vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",
>-                              __entry->vma, __entry->asid, __entry->start,
>+                    TP_printk("dev: %s: vma=%p, asid=0x%05x, start=0x%012llx, end=0x%012llx, userptr=0x%012llx,",

I would go with "dev=%s, " to conform with the rest of the line. If you
prefer to keep the above, I would remove the ":" after "dev".

--
Gustavo Sousa

>+                              __entry->device_id, __entry->vma, __entry->asid, __entry->start,
>                               __entry->end, __entry->ptr)
> )
> 
>@@ -175,15 +181,17 @@ DECLARE_EVENT_CLASS(xe_vm,
>                     TP_STRUCT__entry(
>                              __field(struct xe_vm *, vm)
>                              __field(u32, asid)
>+                             __array(char, device_id, 12)
>                              ),
> 
>                     TP_fast_assign(
>                            __entry->vm = vm;
>                            __entry->asid = vm->usm.asid;
>+                           strscpy(__entry->device_id, dev_name(vm->xe->drm.dev), 12);
>                            ),
> 
>-                    TP_printk("vm=%p, asid=0x%05x",  __entry->vm,
>-                              __entry->asid)
>+                    TP_printk("dev: %s: vm=%p, asid=0x%05x", __entry->device_id,
>+                              __entry->vm,  __entry->asid)
> );
> 
> DEFINE_EVENT(xe_vm, xe_vm_kill,
>-- 
>2.34.1
>

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

* Re: [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events
  2024-05-30 15:13 ` [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events Radhakrishna Sripada
@ 2024-06-03 14:16   ` Gustavo Sousa
  2024-06-03 15:03     ` Sripada, Radhakrishna
  0 siblings, 1 reply; 24+ messages in thread
From: Gustavo Sousa @ 2024-06-03 14:16 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe
  Cc: lucas.demarchi, Radhakrishna Sripada, Ville Syrjälä

Quoting Radhakrishna Sripada (2024-05-30 12:13:11-03:00)
>In multi-gpu environments it is important to know the device
>guc txn belongs to. The tracing information includes the device_id
>to indicate the device the event is associated with.
>
>Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
>---
> drivers/gpu/drm/xe/xe_guc_ct.c    | 13 +++++----
> drivers/gpu/drm/xe/xe_trace_guc.h | 44 +++++++++++++++++--------------
> 2 files changed, 32 insertions(+), 25 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
>index 78f79df638d5..5b08cceb994a 100644
>--- a/drivers/gpu/drm/xe/xe_guc_ct.c
>+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
>@@ -528,7 +528,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len,
>         /* Update descriptor */
>         desc_write(xe, h2g, tail, h2g->info.tail);
> 
>-        trace_xe_guc_ctb_h2g(gt->info.id, *(action - 1), full_len,
>+        trace_xe_guc_ctb_h2g(dev_name(xe->drm.dev), gt->info.id, *(action - 1), full_len,
>                              desc_read(xe, h2g, head), h2g->info.tail);
> 
>         return 0;
>@@ -641,6 +641,7 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len,
>                               u32 g2h_len, u32 num_g2h,
>                               struct g2h_fence *g2h_fence)
> {
>+        struct xe_device *xe = ct_to_xe(ct);
>         struct xe_gt *gt = ct_to_gt(ct);
>         struct drm_printer p = xe_gt_info_printer(gt);
>         unsigned int sleep_period_ms = 1;
>@@ -668,7 +669,8 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len,
>                 if (sleep_period_ms == 1024)
>                         goto broken;
> 
>-                trace_xe_guc_ct_h2g_flow_control(h2g->info.head, h2g->info.tail,
>+                trace_xe_guc_ct_h2g_flow_control(dev_name(xe->drm.dev),
>+                                                 h2g->info.head, h2g->info.tail,
>                                                  h2g->info.size,
>                                                  h2g->info.space,
>                                                  len + GUC_CTB_HDR_LEN);
>@@ -680,7 +682,8 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len,
>                 struct xe_device *xe = ct_to_xe(ct);
>                 struct guc_ctb *g2h = &ct->ctbs.g2h;
> 
>-                trace_xe_guc_ct_g2h_flow_control(g2h->info.head,
>+                trace_xe_guc_ct_g2h_flow_control(dev_name(xe->drm.dev),
>+                                                 g2h->info.head,
>                                                  desc_read(xe, g2h, tail),
>                                                  g2h->info.size,
>                                                  g2h->info.space,
>@@ -1170,8 +1173,8 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path)
>         g2h->info.head = (head + avail) % g2h->info.size;
>         desc_write(xe, g2h, head, g2h->info.head);
> 
>-        trace_xe_guc_ctb_g2h(ct_to_gt(ct)->info.id, action, len,
>-                             g2h->info.head, tail);
>+        trace_xe_guc_ctb_g2h(dev_name(xe->drm.dev), ct_to_gt(ct)->info.id,
>+                             action, len, g2h->info.head, tail);
> 
>         return len;
> }
>diff --git a/drivers/gpu/drm/xe/xe_trace_guc.h b/drivers/gpu/drm/xe/xe_trace_guc.h
>index fb4976499812..8a7953803696 100644
>--- a/drivers/gpu/drm/xe/xe_trace_guc.h
>+++ b/drivers/gpu/drm/xe/xe_trace_guc.h
>@@ -15,10 +15,11 @@
> #include "xe_guc_exec_queue_types.h"
> 
> DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
>-                    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>-                    TP_ARGS(_head, _tail, size, space, len),
>+                    TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>+                    TP_ARGS(devid, _head, _tail, size, space, len),
> 
>                     TP_STRUCT__entry(
>+                             __array(char, devid, 12)
>                              __field(u32, _head)
>                              __field(u32, _tail)
>                              __field(u32, size)
>@@ -27,6 +28,7 @@ DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
>                              ),
> 
>                     TP_fast_assign(
>+                           memcpy(__entry->devid, devid, 12);

The same question from the previous patch applies here regarding using
variable length copy vs using a fixed sized buffer.

Also, any reason for the choice of memcpy() here against strscpy(),
which was used in the previous patch?

>                            __entry->_head = _head;
>                            __entry->_tail = _tail;
>                            __entry->size = size;
>@@ -34,30 +36,31 @@ DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
>                            __entry->len = len;
>                            ),
> 
>-                    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>-                              __entry->_head, __entry->_tail, __entry->size,
>+                    TP_printk("dev: %s: h2g flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",

Similarly to the previous patch, maybe use "h2g flow control: dev=%s, "?

--
Gustavo Sousa

>+                              __entry->devid, __entry->_head, __entry->_tail, __entry->size,
>                               __entry->space, __entry->len)
> );
> 
> DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
>-             TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>-             TP_ARGS(_head, _tail, size, space, len)
>+             TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>+             TP_ARGS(devid, _head, _tail, size, space, len)
> );
> 
> DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
>-                   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>-                   TP_ARGS(_head, _tail, size, space, len),
>+                   TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space, u32 len),
>+                   TP_ARGS(devid, _head, _tail, size, space, len),
> 
>-                   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>-                             __entry->_head, __entry->_tail, __entry->size,
>+                   TP_printk("dev: %s: g2h flow control: head=%u, tail=%u, size=%u, space=%u, len=%u",
>+                             __entry->devid, __entry->_head, __entry->_tail, __entry->size,
>                              __entry->space, __entry->len)
> );
> 
> DECLARE_EVENT_CLASS(xe_guc_ctb,
>-                    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>-                    TP_ARGS(gt_id, action, len, _head, tail),
>+                    TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>+                    TP_ARGS(devid, gt_id, action, len, _head, tail),
> 
>                     TP_STRUCT__entry(
>+                                __array(char, devid, 12)
>                                 __field(u8, gt_id)
>                                 __field(u32, action)
>                                 __field(u32, len)
>@@ -66,6 +69,7 @@ DECLARE_EVENT_CLASS(xe_guc_ctb,
>                     ),
> 
>                     TP_fast_assign(
>+                            memcpy(__entry->devid, devid, 12);
>                             __entry->gt_id = gt_id;
>                             __entry->action = action;
>                             __entry->len = len;
>@@ -73,22 +77,22 @@ DECLARE_EVENT_CLASS(xe_guc_ctb,
>                             __entry->_head = _head;
>                     ),
> 
>-                    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>-                              __entry->gt_id, __entry->action, __entry->len,
>+                    TP_printk("dev: %s: gt%d: H2G CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>+                              __entry->devid, __entry->gt_id, __entry->action, __entry->len,
>                               __entry->tail, __entry->_head)
> );
> 
> DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
>-             TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>-             TP_ARGS(gt_id, action, len, _head, tail)
>+             TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>+             TP_ARGS(devid, gt_id, action, len, _head, tail)
> );
> 
> DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
>-                   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>-                   TP_ARGS(gt_id, action, len, _head, tail),
>+                   TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
>+                   TP_ARGS(devid, gt_id, action, len, _head, tail),
> 
>-                   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>-                             __entry->gt_id, __entry->action, __entry->len,
>+                   TP_printk("dev: %s: gt%d: G2H CTB: action=0x%x, len=%d, tail=%d, head=%d\n",
>+                             __entry->devid, __entry->gt_id, __entry->action, __entry->len,
>                              __entry->tail, __entry->_head)
> 
> );
>-- 
>2.34.1
>

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

* RE: [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events
  2024-06-03 14:16   ` Gustavo Sousa
@ 2024-06-03 15:03     ` Sripada, Radhakrishna
  0 siblings, 0 replies; 24+ messages in thread
From: Sripada, Radhakrishna @ 2024-06-03 15:03 UTC (permalink / raw)
  To: Sousa, Gustavo, intel-xe@lists.freedesktop.org
  Cc: De Marchi, Lucas, Ville Syrjälä

Hi Gustavo,

> -----Original Message-----
> From: Sousa, Gustavo <gustavo.sousa@intel.com>
> Sent: Monday, June 3, 2024 7:17 AM
> To: Sripada, Radhakrishna <radhakrishna.sripada@intel.com>; intel-
> xe@lists.freedesktop.org
> Cc: De Marchi, Lucas <lucas.demarchi@intel.com>; Sripada, Radhakrishna
> <radhakrishna.sripada@intel.com>; Ville Syrjälä <ville.syrjala@linux.intel.com>
> Subject: Re: [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events
> 
> Quoting Radhakrishna Sripada (2024-05-30 12:13:11-03:00)
> >In multi-gpu environments it is important to know the device
> >guc txn belongs to. The tracing information includes the device_id
> >to indicate the device the event is associated with.
> >
> >Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> >Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
> >---
> > drivers/gpu/drm/xe/xe_guc_ct.c    | 13 +++++----
> > drivers/gpu/drm/xe/xe_trace_guc.h | 44 +++++++++++++++++--------------
> > 2 files changed, 32 insertions(+), 25 deletions(-)
> >
> >diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> >index 78f79df638d5..5b08cceb994a 100644
> >--- a/drivers/gpu/drm/xe/xe_guc_ct.c
> >+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> >@@ -528,7 +528,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32
> *action, u32 len,
> >         /* Update descriptor */
> >         desc_write(xe, h2g, tail, h2g->info.tail);
> >
> >-        trace_xe_guc_ctb_h2g(gt->info.id, *(action - 1), full_len,
> >+        trace_xe_guc_ctb_h2g(dev_name(xe->drm.dev), gt->info.id, *(action - 1),
> full_len,
> >                              desc_read(xe, h2g, head), h2g->info.tail);
> >
> >         return 0;
> >@@ -641,6 +641,7 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct,
> const u32 *action, u32 len,
> >                               u32 g2h_len, u32 num_g2h,
> >                               struct g2h_fence *g2h_fence)
> > {
> >+        struct xe_device *xe = ct_to_xe(ct);
> >         struct xe_gt *gt = ct_to_gt(ct);
> >         struct drm_printer p = xe_gt_info_printer(gt);
> >         unsigned int sleep_period_ms = 1;
> >@@ -668,7 +669,8 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct,
> const u32 *action, u32 len,
> >                 if (sleep_period_ms == 1024)
> >                         goto broken;
> >
> >-                trace_xe_guc_ct_h2g_flow_control(h2g->info.head, h2g->info.tail,
> >+                trace_xe_guc_ct_h2g_flow_control(dev_name(xe->drm.dev),
> >+                                                 h2g->info.head, h2g->info.tail,
> >                                                  h2g->info.size,
> >                                                  h2g->info.space,
> >                                                  len + GUC_CTB_HDR_LEN);
> >@@ -680,7 +682,8 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct,
> const u32 *action, u32 len,
> >                 struct xe_device *xe = ct_to_xe(ct);
> >                 struct guc_ctb *g2h = &ct->ctbs.g2h;
> >
> >-                trace_xe_guc_ct_g2h_flow_control(g2h->info.head,
> >+                trace_xe_guc_ct_g2h_flow_control(dev_name(xe->drm.dev),
> >+                                                 g2h->info.head,
> >                                                  desc_read(xe, g2h, tail),
> >                                                  g2h->info.size,
> >                                                  g2h->info.space,
> >@@ -1170,8 +1173,8 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg,
> bool fast_path)
> >         g2h->info.head = (head + avail) % g2h->info.size;
> >         desc_write(xe, g2h, head, g2h->info.head);
> >
> >-        trace_xe_guc_ctb_g2h(ct_to_gt(ct)->info.id, action, len,
> >-                             g2h->info.head, tail);
> >+        trace_xe_guc_ctb_g2h(dev_name(xe->drm.dev), ct_to_gt(ct)->info.id,
> >+                             action, len, g2h->info.head, tail);
> >
> >         return len;
> > }
> >diff --git a/drivers/gpu/drm/xe/xe_trace_guc.h
> b/drivers/gpu/drm/xe/xe_trace_guc.h
> >index fb4976499812..8a7953803696 100644
> >--- a/drivers/gpu/drm/xe/xe_trace_guc.h
> >+++ b/drivers/gpu/drm/xe/xe_trace_guc.h
> >@@ -15,10 +15,11 @@
> > #include "xe_guc_exec_queue_types.h"
> >
> > DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
> >-                    TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
> >-                    TP_ARGS(_head, _tail, size, space, len),
> >+                    TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32
> space, u32 len),
> >+                    TP_ARGS(devid, _head, _tail, size, space, len),
> >
> >                     TP_STRUCT__entry(
> >+                             __array(char, devid, 12)
> >                              __field(u32, _head)
> >                              __field(u32, _tail)
> >                              __field(u32, size)
> >@@ -27,6 +28,7 @@ DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
> >                              ),
> >
> >                     TP_fast_assign(
> >+                           memcpy(__entry->devid, devid, 12);
> 
> The same question from the previous patch applies here regarding using
> variable length copy vs using a fixed sized buffer.
I will use the style that is already there for xe_bo_move in xe_trace_bo.h
I can use a common dev length macro for each file.

> 
> Also, any reason for the choice of memcpy() here against strscpy(),
> which was used in the previous patch?
No particular reason. But can use strscpy for all.
> 
> >                            __entry->_head = _head;
> >                            __entry->_tail = _tail;
> >                            __entry->size = size;
> >@@ -34,30 +36,31 @@ DECLARE_EVENT_CLASS(xe_guc_ct_flow_control,
> >                            __entry->len = len;
> >                            ),
> >
> >-                    TP_printk("h2g flow control: head=%u, tail=%u, size=%u, space=%u,
> len=%u",
> >-                              __entry->_head, __entry->_tail, __entry->size,
> >+                    TP_printk("dev: %s: h2g flow control: head=%u, tail=%u, size=%u,
> space=%u, len=%u",
> 
> Similarly to the previous patch, maybe use "h2g flow control: dev=%s, "?
Sure will make the changes to all the events.

Regards,
Radhakrishna Sripada
> 
> --
> Gustavo Sousa
> 
> >+                              __entry->devid, __entry->_head, __entry->_tail, __entry-
> >size,
> >                               __entry->space, __entry->len)
> > );
> >
> > DEFINE_EVENT(xe_guc_ct_flow_control, xe_guc_ct_h2g_flow_control,
> >-             TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
> >-             TP_ARGS(_head, _tail, size, space, len)
> >+             TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32 space,
> u32 len),
> >+             TP_ARGS(devid, _head, _tail, size, space, len)
> > );
> >
> > DEFINE_EVENT_PRINT(xe_guc_ct_flow_control, xe_guc_ct_g2h_flow_control,
> >-                   TP_PROTO(u32 _head, u32 _tail, u32 size, u32 space, u32 len),
> >-                   TP_ARGS(_head, _tail, size, space, len),
> >+                   TP_PROTO(const char *devid, u32 _head, u32 _tail, u32 size, u32
> space, u32 len),
> >+                   TP_ARGS(devid, _head, _tail, size, space, len),
> >
> >-                   TP_printk("g2h flow control: head=%u, tail=%u, size=%u, space=%u,
> len=%u",
> >-                             __entry->_head, __entry->_tail, __entry->size,
> >+                   TP_printk("dev: %s: g2h flow control: head=%u, tail=%u, size=%u,
> space=%u, len=%u",
> >+                             __entry->devid, __entry->_head, __entry->_tail, __entry-
> >size,
> >                              __entry->space, __entry->len)
> > );
> >
> > DECLARE_EVENT_CLASS(xe_guc_ctb,
> >-                    TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
> >-                    TP_ARGS(gt_id, action, len, _head, tail),
> >+                    TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32
> _head, u32 tail),
> >+                    TP_ARGS(devid, gt_id, action, len, _head, tail),
> >
> >                     TP_STRUCT__entry(
> >+                                __array(char, devid, 12)
> >                                 __field(u8, gt_id)
> >                                 __field(u32, action)
> >                                 __field(u32, len)
> >@@ -66,6 +69,7 @@ DECLARE_EVENT_CLASS(xe_guc_ctb,
> >                     ),
> >
> >                     TP_fast_assign(
> >+                            memcpy(__entry->devid, devid, 12);
> >                             __entry->gt_id = gt_id;
> >                             __entry->action = action;
> >                             __entry->len = len;
> >@@ -73,22 +77,22 @@ DECLARE_EVENT_CLASS(xe_guc_ctb,
> >                             __entry->_head = _head;
> >                     ),
> >
> >-                    TP_printk("gt%d: H2G CTB: action=0x%x, len=%d, tail=%d,
> head=%d\n",
> >-                              __entry->gt_id, __entry->action, __entry->len,
> >+                    TP_printk("dev: %s: gt%d: H2G CTB: action=0x%x, len=%d, tail=%d,
> head=%d\n",
> >+                              __entry->devid, __entry->gt_id, __entry->action, __entry-
> >len,
> >                               __entry->tail, __entry->_head)
> > );
> >
> > DEFINE_EVENT(xe_guc_ctb, xe_guc_ctb_h2g,
> >-             TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
> >-             TP_ARGS(gt_id, action, len, _head, tail)
> >+             TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32 _head,
> u32 tail),
> >+             TP_ARGS(devid, gt_id, action, len, _head, tail)
> > );
> >
> > DEFINE_EVENT_PRINT(xe_guc_ctb, xe_guc_ctb_g2h,
> >-                   TP_PROTO(u8 gt_id, u32 action, u32 len, u32 _head, u32 tail),
> >-                   TP_ARGS(gt_id, action, len, _head, tail),
> >+                   TP_PROTO(const char *devid, u8 gt_id, u32 action, u32 len, u32
> _head, u32 tail),
> >+                   TP_ARGS(devid, gt_id, action, len, _head, tail),
> >
> >-                   TP_printk("gt%d: G2H CTB: action=0x%x, len=%d, tail=%d,
> head=%d\n",
> >-                             __entry->gt_id, __entry->action, __entry->len,
> >+                   TP_printk("dev: %s: gt%d: G2H CTB: action=0x%x, len=%d, tail=%d,
> head=%d\n",
> >+                             __entry->devid, __entry->gt_id, __entry->action, __entry->len,
> >                              __entry->tail, __entry->_head)
> >
> > );
> >--
> >2.34.1
> >

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

* Re: [PATCH v3 6/6] drm/xe: Add reg read/write trace
  2024-05-30 15:13 ` [PATCH v3 6/6] drm/xe: Add reg read/write trace Radhakrishna Sripada
@ 2024-06-03 15:44   ` Gustavo Sousa
  2024-06-03 15:49     ` Sripada, Radhakrishna
  0 siblings, 1 reply; 24+ messages in thread
From: Gustavo Sousa @ 2024-06-03 15:44 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada

Quoting Radhakrishna Sripada (2024-05-30 12:13:13-03:00)
>This will help debug register read/writes and provides
>a way to trace all the mmio transactions.
>
>v2: Fix kunit error
>v3: Print devid to help in multi-gpu setup
>
>Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
>---
> drivers/gpu/drm/xe/xe_mmio.c  | 22 ++++++++++++++++++----
> drivers/gpu/drm/xe/xe_trace.h | 30 ++++++++++++++++++++++++++++++
> 2 files changed, 48 insertions(+), 4 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
>index 248e93ec6df7..a44baa349109 100644
>--- a/drivers/gpu/drm/xe/xe_mmio.c
>+++ b/drivers/gpu/drm/xe/xe_mmio.c
>@@ -27,6 +27,7 @@
> #include "xe_module.h"
> #include "xe_sriov.h"
> #include "xe_tile.h"
>+#include "xe_trace.h"
> 
> #define XEHP_MTCFG_ADDR                XE_REG(0x101800)
> #define TILE_COUNT                REG_GENMASK(15, 8)
>@@ -455,16 +456,24 @@ u8 xe_mmio_read8(struct xe_gt *gt, struct xe_reg reg)
> {
>         struct xe_tile *tile = gt_to_tile(gt);
>         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
>+        u8 val;
> 
>-        return readb((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
>+        val = readb((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
>+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val, sizeof(val), true);
>+
>+        return val;
> }
> 
> u16 xe_mmio_read16(struct xe_gt *gt, struct xe_reg reg)
> {
>         struct xe_tile *tile = gt_to_tile(gt);
>         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
>+        u16 val;
>+
>+        val = readw((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
>+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val, sizeof(val), true);
> 
>-        return readw((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
>+        return val;
> }
> 
> void xe_mmio_write32(struct xe_gt *gt, struct xe_reg reg, u32 val)
>@@ -472,6 +481,7 @@ void xe_mmio_write32(struct xe_gt *gt, struct xe_reg reg, u32 val)
>         struct xe_tile *tile = gt_to_tile(gt);
>         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
> 
>+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), true, addr, val, sizeof(val), true);
>         writel(val, (reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> }
> 
>@@ -479,11 +489,15 @@ u32 xe_mmio_read32(struct xe_gt *gt, struct xe_reg reg)
> {
>         struct xe_tile *tile = gt_to_tile(gt);
>         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
>+        u32 val;
> 
>         if (!reg.vf && IS_SRIOV_VF(gt_to_xe(gt)))
>-                return xe_gt_sriov_vf_read32(gt, reg);
>+                val = xe_gt_sriov_vf_read32(gt, reg);
>+
>+        val = readl((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);

This readl() call needs to be inside an "else" statement, right?

>+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val, sizeof(val), true);
> 
>-        return readl((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
>+        return val;
> }
> 
> u32 xe_mmio_rmw32(struct xe_gt *gt, struct xe_reg reg, u32 clr, u32 set)
>diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
>index 41e0b3365876..d56e073560ee 100644
>--- a/drivers/gpu/drm/xe/xe_trace.h
>+++ b/drivers/gpu/drm/xe/xe_trace.h
>@@ -342,6 +342,36 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
>              TP_ARGS(fence)
> );
> 
>+TRACE_EVENT_CONDITION(xe_reg_rw,
>+        TP_PROTO(const char *devid, bool write, u32 reg, u64 val, int len, bool trace),
>+
>+        TP_ARGS(devid, write, reg, val, len, trace),
>+
>+        TP_CONDITION(trace),

Looks like trace is always true. Are there plans to have a false value?

--
Gustavo Sousa

>+
>+        TP_STRUCT__entry(
>+                __array(char, devid, 12)
>+                __field(u64, val)
>+                __field(u32, reg)
>+                __field(u16, write)
>+                __field(u16, len)
>+                ),
>+
>+        TP_fast_assign(
>+                memcpy(__entry->devid, devid, 12);
>+                __entry->val = (u64)val;
>+                __entry->reg = reg;
>+                __entry->write = write;
>+                __entry->len = len;
>+                ),
>+
>+        TP_printk("dev: %s: %s reg=0x%x, len=%d, val=(0x%x, 0x%x)",
>+                  __entry->devid, __entry->write ? "write" : "read",
>+                  __entry->reg, __entry->len,
>+                  (u32)(__entry->val & 0xffffffff),
>+                  (u32)(__entry->val >> 32))
>+);
>+
> #endif
> 
> /* This part must be outside protection */
>-- 
>2.34.1
>

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

* RE: [PATCH v3 6/6] drm/xe: Add reg read/write trace
  2024-06-03 15:44   ` Gustavo Sousa
@ 2024-06-03 15:49     ` Sripada, Radhakrishna
  0 siblings, 0 replies; 24+ messages in thread
From: Sripada, Radhakrishna @ 2024-06-03 15:49 UTC (permalink / raw)
  To: Sousa, Gustavo, intel-xe@lists.freedesktop.org; +Cc: De Marchi, Lucas

Hi Gustavo,

> -----Original Message-----
> From: Sousa, Gustavo <gustavo.sousa@intel.com>
> Sent: Monday, June 3, 2024 8:45 AM
> To: Sripada, Radhakrishna <radhakrishna.sripada@intel.com>; intel-
> xe@lists.freedesktop.org
> Cc: De Marchi, Lucas <lucas.demarchi@intel.com>; Sripada, Radhakrishna
> <radhakrishna.sripada@intel.com>
> Subject: Re: [PATCH v3 6/6] drm/xe: Add reg read/write trace
> 
> Quoting Radhakrishna Sripada (2024-05-30 12:13:13-03:00)
> >This will help debug register read/writes and provides
> >a way to trace all the mmio transactions.
> >
> >v2: Fix kunit error
> >v3: Print devid to help in multi-gpu setup
> >
> >Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
> >---
> > drivers/gpu/drm/xe/xe_mmio.c  | 22 ++++++++++++++++++----
> > drivers/gpu/drm/xe/xe_trace.h | 30 ++++++++++++++++++++++++++++++
> > 2 files changed, 48 insertions(+), 4 deletions(-)
> >
> >diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
> >index 248e93ec6df7..a44baa349109 100644
> >--- a/drivers/gpu/drm/xe/xe_mmio.c
> >+++ b/drivers/gpu/drm/xe/xe_mmio.c
> >@@ -27,6 +27,7 @@
> > #include "xe_module.h"
> > #include "xe_sriov.h"
> > #include "xe_tile.h"
> >+#include "xe_trace.h"
> >
> > #define XEHP_MTCFG_ADDR                XE_REG(0x101800)
> > #define TILE_COUNT                REG_GENMASK(15, 8)
> >@@ -455,16 +456,24 @@ u8 xe_mmio_read8(struct xe_gt *gt, struct xe_reg
> reg)
> > {
> >         struct xe_tile *tile = gt_to_tile(gt);
> >         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
> >+        u8 val;
> >
> >-        return readb((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> >+        val = readb((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> >+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val,
> sizeof(val), true);
> >+
> >+        return val;
> > }
> >
> > u16 xe_mmio_read16(struct xe_gt *gt, struct xe_reg reg)
> > {
> >         struct xe_tile *tile = gt_to_tile(gt);
> >         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
> >+        u16 val;
> >+
> >+        val = readw((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> >+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val,
> sizeof(val), true);
> >
> >-        return readw((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> >+        return val;
> > }
> >
> > void xe_mmio_write32(struct xe_gt *gt, struct xe_reg reg, u32 val)
> >@@ -472,6 +481,7 @@ void xe_mmio_write32(struct xe_gt *gt, struct xe_reg
> reg, u32 val)
> >         struct xe_tile *tile = gt_to_tile(gt);
> >         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
> >
> >+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), true, addr, val,
> sizeof(val), true);
> >         writel(val, (reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> > }
> >
> >@@ -479,11 +489,15 @@ u32 xe_mmio_read32(struct xe_gt *gt, struct xe_reg
> reg)
> > {
> >         struct xe_tile *tile = gt_to_tile(gt);
> >         u32 addr = xe_mmio_adjusted_addr(gt, reg.addr);
> >+        u32 val;
> >
> >         if (!reg.vf && IS_SRIOV_VF(gt_to_xe(gt)))
> >-                return xe_gt_sriov_vf_read32(gt, reg);
> >+                val = xe_gt_sriov_vf_read32(gt, reg);
> >+
> >+        val = readl((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> 
> This readl() call needs to be inside an "else" statement, right?
Ah nice catch. Will fix that.
> 
> >+        trace_xe_reg_rw(dev_name(gt_to_xe(gt)->drm.dev), false, addr, val,
> sizeof(val), true);
> >
> >-        return readl((reg.ext ? tile->mmio_ext.regs : tile->mmio.regs) + addr);
> >+        return val;
> > }
> >
> > u32 xe_mmio_rmw32(struct xe_gt *gt, struct xe_reg reg, u32 clr, u32 set)
> >diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
> >index 41e0b3365876..d56e073560ee 100644
> >--- a/drivers/gpu/drm/xe/xe_trace.h
> >+++ b/drivers/gpu/drm/xe/xe_trace.h
> >@@ -342,6 +342,36 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
> >              TP_ARGS(fence)
> > );
> >
> >+TRACE_EVENT_CONDITION(xe_reg_rw,
> >+        TP_PROTO(const char *devid, bool write, u32 reg, u64 val, int len, bool
> trace),
> >+
> >+        TP_ARGS(devid, write, reg, val, len, trace),
> >+
> >+        TP_CONDITION(trace),
> 
> Looks like trace is always true. Are there plans to have a false value?
I don’t think we have a no trace variant for any calls. So I will simply omit this argument.

-- Radhakrishna Sripada
> 
> --
> Gustavo Sousa
> 
> >+
> >+        TP_STRUCT__entry(
> >+                __array(char, devid, 12)
> >+                __field(u64, val)
> >+                __field(u32, reg)
> >+                __field(u16, write)
> >+                __field(u16, len)
> >+                ),
> >+
> >+        TP_fast_assign(
> >+                memcpy(__entry->devid, devid, 12);
> >+                __entry->val = (u64)val;
> >+                __entry->reg = reg;
> >+                __entry->write = write;
> >+                __entry->len = len;
> >+                ),
> >+
> >+        TP_printk("dev: %s: %s reg=0x%x, len=%d, val=(0x%x, 0x%x)",
> >+                  __entry->devid, __entry->write ? "write" : "read",
> >+                  __entry->reg, __entry->len,
> >+                  (u32)(__entry->val & 0xffffffff),
> >+                  (u32)(__entry->val >> 32))
> >+);
> >+
> > #endif
> >
> > /* This part must be outside protection */
> >--
> >2.34.1
> >

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

* Re: [PATCH v3 0/6] Tracing cleanup and add mmio tracing
  2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
                   ` (14 preceding siblings ...)
  2024-05-30 21:22 ` ✗ CI.FULL: failure " Patchwork
@ 2024-06-03 15:50 ` Gustavo Sousa
  15 siblings, 0 replies; 24+ messages in thread
From: Gustavo Sousa @ 2024-06-03 15:50 UTC (permalink / raw)
  To: Radhakrishna Sripada, intel-xe; +Cc: lucas.demarchi, Radhakrishna Sripada

Quoting Radhakrishna Sripada (2024-05-30 12:13:07-03:00)
>xe_trace.h is getting bloated. Group related events to their own
>files. All bo, vm and vma related events have been moved to 
>xe_trace_bo.h. GuC related trace events have been moved to
>xe_trace_guc.h. Patches 1 and 2 splits the trace events into
>seperate files.
>
>In multi gpu environments, it is important to know the device from
>which the event was triggered. Print the device id information along
>with the trace information being printed. Patches 3, 4 and 5 make
>changes to print the device id's if not already captured.
>
>Mmio reg read writes are important tracing information that needs to be
>captured and will be helpful in display debug. Patch 6 adds the reg
>read/write tracing support.

As a general comment, I see that we are using dev_name() in multiple
places, at the call sites of the trace_*() functions.

Wouldn't it be cleaner (and maybe a tiny bit more efficient) if we just
had the trace event prototypes to receive the pointer to struct
xe_device and get the dev name inside TP_fast_assign()?

Another benefit of that approach is that it get easier to print more
xe-specific device info in the future if we feel like it.

--
Gustavo Sousa

>
>Earlier versions of patch 6 can be found here:
>v1: https://patchwork.freedesktop.org/series/119312/
>v2: https://patchwork.freedesktop.org/series/132626/
>
>Radhakrishna Sripada (6):
>  drm/xe/trace: Extract bo, vm, vma traces
>  drm/xe/trace: Extract guc related traces
>  drm/xe/trace: Print device_id in xe_trace_bo events
>  drm/xe/trace: Print device_id in xe_trace_guc events
>  drm/xe/trace: Print device_id in xe_trace events
>  drm/xe: Add reg read/write trace
>
> drivers/gpu/drm/xe/Makefile                 |   2 +
> drivers/gpu/drm/xe/xe_bo.c                  |   2 +-
> drivers/gpu/drm/xe/xe_gt_pagefault.c        |   2 +-
> drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c |  27 +-
> drivers/gpu/drm/xe/xe_guc_ct.c              |  15 +-
> drivers/gpu/drm/xe/xe_migrate.c             |   2 +-
> drivers/gpu/drm/xe/xe_mmio.c                |  22 +-
> drivers/gpu/drm/xe/xe_pt.c                  |   8 +-
> drivers/gpu/drm/xe/xe_trace.h               | 368 +++-----------------
> drivers/gpu/drm/xe/xe_trace_bo.c            |   9 +
> drivers/gpu/drm/xe/xe_trace_bo.h            | 244 +++++++++++++
> drivers/gpu/drm/xe/xe_trace_guc.c           |   9 +
> drivers/gpu/drm/xe/xe_trace_guc.h           | 107 ++++++
> drivers/gpu/drm/xe/xe_vm.c                  |   2 +-
> 14 files changed, 480 insertions(+), 339 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.c
> create mode 100644 drivers/gpu/drm/xe/xe_trace_bo.h
> create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.c
> create mode 100644 drivers/gpu/drm/xe/xe_trace_guc.h
>
>-- 
>2.34.1
>

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

end of thread, other threads:[~2024-06-03 15:50 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-30 15:13 [PATCH v3 0/6] Tracing cleanup and add mmio tracing Radhakrishna Sripada
2024-05-30 15:13 ` [PATCH v3 1/6] drm/xe/trace: Extract bo, vm, vma traces Radhakrishna Sripada
2024-05-31 14:33   ` Gustavo Sousa
2024-05-30 15:13 ` [PATCH v3 2/6] drm/xe/trace: Extract guc related traces Radhakrishna Sripada
2024-05-31 14:34   ` Gustavo Sousa
2024-05-30 15:13 ` [PATCH v3 3/6] drm/xe/trace: Print device_id in xe_trace_bo events Radhakrishna Sripada
2024-05-31 20:07   ` Gustavo Sousa
2024-05-30 15:13 ` [PATCH v3 4/6] drm/xe/trace: Print device_id in xe_trace_guc events Radhakrishna Sripada
2024-06-03 14:16   ` Gustavo Sousa
2024-06-03 15:03     ` Sripada, Radhakrishna
2024-05-30 15:13 ` [PATCH v3 5/6] drm/xe/trace: Print device_id in xe_trace events Radhakrishna Sripada
2024-05-30 15:13 ` [PATCH v3 6/6] drm/xe: Add reg read/write trace Radhakrishna Sripada
2024-06-03 15:44   ` Gustavo Sousa
2024-06-03 15:49     ` Sripada, Radhakrishna
2024-05-30 15:32 ` [PATCH v3 0/6] Tracing cleanup and add mmio tracing Jani Nikula
2024-05-30 16:26 ` ✓ CI.Patch_applied: success for " Patchwork
2024-05-30 16:27 ` ✗ CI.checkpatch: warning " Patchwork
2024-05-30 16:28 ` ✓ CI.KUnit: success " Patchwork
2024-05-30 16:39 ` ✓ CI.Build: " Patchwork
2024-05-30 16:40 ` ✗ CI.Hooks: failure " Patchwork
2024-05-30 16:41 ` ✓ CI.checksparse: success " Patchwork
2024-05-30 17:16 ` ✓ CI.BAT: " Patchwork
2024-05-30 21:22 ` ✗ CI.FULL: failure " Patchwork
2024-06-03 15:50 ` [PATCH v3 0/6] " Gustavo Sousa

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