Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files
@ 2025-10-22  9:03 Sanjay Yadav
  2025-10-22 11:09 ` ✓ CI.KUnit: success for drm/xe: Fix spelling and typos across XE driver files (rev2) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Sanjay Yadav @ 2025-10-22  9:03 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.auld, matthew.brost, michael.j.ruhl, stuart.summers

Corrected various spelling mistakes and typos in multiple
files under the Xe directory. These fixes improve clarity
and maintain consistency in documentation.

v2
- Replaced all instances of "XE" with "Xe"
- of -> for
- Typical -> Typically

Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
 drivers/gpu/drm/xe/xe_args.h                |  2 +-
 drivers/gpu/drm/xe/xe_bo.c                  |  4 ++--
 drivers/gpu/drm/xe/xe_bo_doc.h              |  8 ++++----
 drivers/gpu/drm/xe/xe_configfs.c            |  2 +-
 drivers/gpu/drm/xe/xe_device.c              |  2 +-
 drivers/gpu/drm/xe/xe_device_types.h        |  8 ++++----
 drivers/gpu/drm/xe/xe_exec.c                |  2 +-
 drivers/gpu/drm/xe/xe_force_wake_types.h    |  4 ++--
 drivers/gpu/drm/xe/xe_gt_freq.c             |  2 +-
 drivers/gpu/drm/xe/xe_gt_sriov_vf.c         |  2 +-
 drivers/gpu/drm/xe/xe_guc_ads_types.h       |  2 +-
 drivers/gpu/drm/xe/xe_guc_ct_types.h        |  2 +-
 drivers/gpu/drm/xe/xe_guc_log_types.h       |  2 +-
 drivers/gpu/drm/xe/xe_guc_submit.c          |  2 +-
 drivers/gpu/drm/xe/xe_guc_tlb_inval.c       |  2 +-
 drivers/gpu/drm/xe/xe_map.h                 |  4 ++--
 drivers/gpu/drm/xe/xe_migrate.c             |  4 ++--
 drivers/gpu/drm/xe/xe_migrate_doc.h         |  2 +-
 drivers/gpu/drm/xe/xe_pm.c                  |  2 +-
 drivers/gpu/drm/xe/xe_preempt_fence_types.h |  2 +-
 drivers/gpu/drm/xe/xe_range_fence.h         |  4 ++--
 drivers/gpu/drm/xe/xe_sched_job.c           |  6 +++---
 drivers/gpu/drm/xe/xe_sched_job.h           | 12 ++++++------
 drivers/gpu/drm/xe/xe_sched_job_types.h     |  2 +-
 drivers/gpu/drm/xe/xe_svm.c                 |  2 +-
 drivers/gpu/drm/xe/xe_tlb_inval.h           |  2 +-
 drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h  |  4 ++--
 drivers/gpu/drm/xe/xe_uc_fw_types.h         |  6 +++---
 drivers/gpu/drm/xe/xe_uc_types.h            |  2 +-
 drivers/gpu/drm/xe/xe_validation.h          |  6 +++---
 drivers/gpu/drm/xe/xe_vm.c                  | 10 +++++-----
 drivers/gpu/drm/xe/xe_vm_doc.h              |  8 ++++----
 drivers/gpu/drm/xe/xe_vm_types.h            |  4 ++--
 33 files changed, 64 insertions(+), 64 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_args.h b/drivers/gpu/drm/xe/xe_args.h
index 4dbc7e53c624..84488f527d9a 100644
--- a/drivers/gpu/drm/xe/xe_args.h
+++ b/drivers/gpu/drm/xe/xe_args.h
@@ -9,7 +9,7 @@
 #include <linux/args.h>
 
 /*
- * Why don't the following macros have the XE prefix?
+ * Why don't the following macros have the Xe prefix?
  *
  * Once we find more potential users outside of the Xe driver, we plan to move
  * all of the following macros unchanged to linux/args.h.
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 7b6502081873..e4378b4dfcc7 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2105,7 +2105,7 @@ void xe_bo_free(struct xe_bo *bo)
  * if the function should allocate a new one.
  * @tile: The tile to select for migration of this bo, and the tile used for
  * GGTT binding if any. Only to be non-NULL for ttm_bo_type_kernel bos.
- * @resv: Pointer to a locked shared reservation object to use fo this bo,
+ * @resv: Pointer to a locked shared reservation object to use for this bo,
  * or NULL for the xe_bo to use its own.
  * @bulk: The bulk move to use for LRU bumping, or NULL for external bos.
  * @size: The storage size to use for the bo.
@@ -2629,7 +2629,7 @@ struct xe_bo *xe_bo_create_pin_map(struct xe_device *xe, struct xe_tile *tile,
  * @size: The storage size to use for the bo.
  * @type: The TTM buffer object type.
  * @flags: XE_BO_FLAG_ flags.
- * @intr: Whether to execut any waits for backing store interruptible.
+ * @intr: Whether to execute any waits for backing store interruptible.
  *
  * Create a pinned and mapped bo. The bo will be external and not associated
  * with a VM.
diff --git a/drivers/gpu/drm/xe/xe_bo_doc.h b/drivers/gpu/drm/xe/xe_bo_doc.h
index 25a884c64bf1..401e7dd26ef3 100644
--- a/drivers/gpu/drm/xe/xe_bo_doc.h
+++ b/drivers/gpu/drm/xe/xe_bo_doc.h
@@ -12,7 +12,7 @@
  * BO management
  * =============
  *
- * TTM manages (placement, eviction, etc...) all BOs in XE.
+ * TTM manages (placement, eviction, etc...) all BOs in Xe.
  *
  * BO creation
  * ===========
@@ -29,7 +29,7 @@
  * a kernel BO (e.g. engine state, memory for page tables, etc...). These BOs
  * are typically mapped in the GGTT (any kernel BOs aside memory for page tables
  * are in the GGTT), are pinned (can't move or be evicted at runtime), have a
- * vmap (XE can access the memory via xe_map layer) and have contiguous physical
+ * vmap (Xe can access the memory via xe_map layer) and have contiguous physical
  * memory.
  *
  * More details of why kernel BOs are pinned and contiguous below.
@@ -40,7 +40,7 @@
  * A user BO is created via the DRM_IOCTL_XE_GEM_CREATE IOCTL. Once it is
  * created the BO can be mmap'd (via DRM_IOCTL_XE_GEM_MMAP_OFFSET) for user
  * access and it can be bound for GPU access (via DRM_IOCTL_XE_VM_BIND). All
- * user BOs are evictable and user BOs are never pinned by XE. The allocation of
+ * user BOs are evictable and user BOs are never pinned by Xe. The allocation of
  * the backing store can be deferred from creation time until first use which is
  * either mmap, bind, or pagefault.
  *
@@ -84,7 +84,7 @@
  * ====================
  *
  * All eviction (or in other words, moving a BO from one memory location to
- * another) is routed through TTM with a callback into XE.
+ * another) is routed through TTM with a callback into Xe.
  *
  * Runtime eviction
  * ----------------
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index c1419a270fa4..1b86f5d505f6 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -27,7 +27,7 @@
  * Overview
  * ========
  *
- * Configfs is a filesystem-based manager of kernel objects. XE KMD registers a
+ * Configfs is a filesystem-based manager of kernel objects. Xe KMD registers a
  * configfs subsystem called ``xe`` that creates a directory in the mounted
  * configfs directory. The user can create devices under this directory and
  * configure them as necessary. See Documentation/filesystems/configfs.rst for
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 5f6a412b571c..47f5391ad8e9 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -1217,7 +1217,7 @@ static void xe_device_wedged_fini(struct drm_device *drm, void *arg)
  *
  *   /sys/bus/pci/devices/<device>/survivability_mode
  *
- * - Admin/userpsace consumer can use firmware flashing tools like fwupd to flash
+ * - Admin/userspace consumer can use firmware flashing tools like fwupd to flash
  *   firmware and restore device to normal operation.
  */
 
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 02c04ad7296e..2a817ba1882d 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -222,7 +222,7 @@ struct xe_tile {
 };
 
 /**
- * struct xe_device - Top level struct of XE device
+ * struct xe_device - Top level struct of Xe device
  */
 struct xe_device {
 	/** @drm: drm device */
@@ -250,9 +250,9 @@ struct xe_device {
 		u32 media_verx100;
 		/** @info.mem_region_mask: mask of valid memory regions */
 		u32 mem_region_mask;
-		/** @info.platform: XE platform enum */
+		/** @info.platform: Xe platform enum */
 		enum xe_platform platform;
-		/** @info.subplatform: XE subplatform enum */
+		/** @info.subplatform: Xe subplatform enum */
 		enum xe_subplatform subplatform;
 		/** @info.devid: device ID */
 		u16 devid;
@@ -653,7 +653,7 @@ struct xe_device {
 };
 
 /**
- * struct xe_file - file handle for XE driver
+ * struct xe_file - file handle for Xe driver
  */
 struct xe_file {
 	/** @xe: xe DEVICE **/
diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 0dc27476832b..521467d976f7 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -33,7 +33,7 @@
  * - Binding at exec time
  * - Flow controlling the ring at exec time
  *
- * In XE we avoid all of this complication by not allowing a BO list to be
+ * In Xe we avoid all of this complication by not allowing a BO list to be
  * passed into an exec, using the dma-buf implicit sync uAPI, have binds as
  * separate operations, and using the DRM scheduler to flow control the ring.
  * Let's deep dive on each of these.
diff --git a/drivers/gpu/drm/xe/xe_force_wake_types.h b/drivers/gpu/drm/xe/xe_force_wake_types.h
index 899fbbcb3ea9..12d6e2367455 100644
--- a/drivers/gpu/drm/xe/xe_force_wake_types.h
+++ b/drivers/gpu/drm/xe/xe_force_wake_types.h
@@ -52,7 +52,7 @@ enum xe_force_wake_domains {
 };
 
 /**
- * struct xe_force_wake_domain - XE force wake domains
+ * struct xe_force_wake_domain - Xe force wake domains
  */
 struct xe_force_wake_domain {
 	/** @id: domain force wake id */
@@ -70,7 +70,7 @@ struct xe_force_wake_domain {
 };
 
 /**
- * struct xe_force_wake - XE force wake
+ * struct xe_force_wake - Xe force wake
  */
 struct xe_force_wake {
 	/** @gt: back pointers to GT */
diff --git a/drivers/gpu/drm/xe/xe_gt_freq.c b/drivers/gpu/drm/xe/xe_gt_freq.c
index 701349251bbc..e88f113226bc 100644
--- a/drivers/gpu/drm/xe/xe_gt_freq.c
+++ b/drivers/gpu/drm/xe/xe_gt_freq.c
@@ -36,7 +36,7 @@
  * - act_freq: The actual resolved frequency decided by PCODE.
  * - cur_freq: The current one requested by GuC PC to the PCODE.
  * - rpn_freq: The Render Performance (RP) N level, which is the minimal one.
- * - rpa_freq: The Render Performance (RP) A level, which is the achiveable one.
+ * - rpa_freq: The Render Performance (RP) A level, which is the achievable one.
  *   Calculated by PCODE at runtime based on multiple running conditions
  * - rpe_freq: The Render Performance (RP) E level, which is the efficient one.
  *   Calculated by PCODE at runtime based on multiple running conditions
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 46518e629ba3..382083675021 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -739,7 +739,7 @@ static void vf_start_migration_recovery(struct xe_gt *gt)
 		gt->sriov.vf.migration.recovery_queued = true;
 		WRITE_ONCE(gt->sriov.vf.migration.recovery_inprogress, true);
 		WRITE_ONCE(gt->sriov.vf.migration.ggtt_need_fixes, true);
-		smp_wmb();	/* Ensure above writes visable before wake */
+		smp_wmb();	/* Ensure above writes visible before wake */
 
 		xe_guc_ct_wake_waiters(&gt->uc.guc.ct);
 
diff --git a/drivers/gpu/drm/xe/xe_guc_ads_types.h b/drivers/gpu/drm/xe/xe_guc_ads_types.h
index 70c132458ac3..48a8e092023f 100644
--- a/drivers/gpu/drm/xe/xe_guc_ads_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_ads_types.h
@@ -14,7 +14,7 @@ struct xe_bo;
  * struct xe_guc_ads - GuC additional data structures (ADS)
  */
 struct xe_guc_ads {
-	/** @bo: XE BO for GuC ads blob */
+	/** @bo: Xe BO for GuC ads blob */
 	struct xe_bo *bo;
 	/** @golden_lrc_size: golden LRC size */
 	size_t golden_lrc_size;
diff --git a/drivers/gpu/drm/xe/xe_guc_ct_types.h b/drivers/gpu/drm/xe/xe_guc_ct_types.h
index 8b03b50313d9..09d7ff1ef42a 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_ct_types.h
@@ -126,7 +126,7 @@ struct xe_fast_req_fence {
  * for the H2G and G2H requests sent and received through the buffers.
  */
 struct xe_guc_ct {
-	/** @bo: XE BO for CT */
+	/** @bo: Xe BO for CT */
 	struct xe_bo *bo;
 	/** @lock: protects everything in CT layer */
 	struct mutex lock;
diff --git a/drivers/gpu/drm/xe/xe_guc_log_types.h b/drivers/gpu/drm/xe/xe_guc_log_types.h
index b3d5c72ac752..02851b924aa4 100644
--- a/drivers/gpu/drm/xe/xe_guc_log_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_log_types.h
@@ -44,7 +44,7 @@ struct xe_guc_log_snapshot {
 struct xe_guc_log {
 	/** @level: GuC log level */
 	u32 level;
-	/** @bo: XE BO for GuC log */
+	/** @bo: Xe BO for GuC log */
 	struct xe_bo *bo;
 	/** @stats: logging related stats */
 	struct {
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 0ef67d3523a7..d4ffdb71ef3d 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1920,7 +1920,7 @@ static bool guc_exec_queue_reset_status(struct xe_exec_queue *q)
 }
 
 /*
- * All of these functions are an abstraction layer which other parts of XE can
+ * All of these functions are an abstraction layer which other parts of Xe can
  * use to trap into the GuC backend. All of these functions, aside from init,
  * really shouldn't do much other than trap into the DRM scheduler which
  * synchronizes these operations.
diff --git a/drivers/gpu/drm/xe/xe_guc_tlb_inval.c b/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
index 6bf2103602f8..a80175c7c478 100644
--- a/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
+++ b/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
@@ -207,7 +207,7 @@ static const struct xe_tlb_inval_ops guc_tlb_inval_ops = {
  * @guc: GuC object
  * @tlb_inval: TLB invalidation client
  *
- * Inititialize GuC TLB invalidation by setting back pointer in TLB invalidation
+ * Initialize GuC TLB invalidation by setting back pointer in TLB invalidation
  * client to the GuC and setting GuC backend ops.
  */
 void xe_guc_tlb_inval_init_early(struct xe_guc *guc,
diff --git a/drivers/gpu/drm/xe/xe_map.h b/drivers/gpu/drm/xe/xe_map.h
index f62e0c8b67ab..c44777125691 100644
--- a/drivers/gpu/drm/xe/xe_map.h
+++ b/drivers/gpu/drm/xe/xe_map.h
@@ -14,9 +14,9 @@
  * DOC: Map layer
  *
  * All access to any memory shared with a device (both sysmem and vram) in the
- * XE driver should go through this layer (xe_map). This layer is built on top
+ * Xe driver should go through this layer (xe_map). This layer is built on top
  * of :ref:`driver-api/device-io:Generalizing Access to System and I/O Memory`
- * and with extra hooks into the XE driver that allows adding asserts to memory
+ * and with extra hooks into the Xe driver that allows adding asserts to memory
  * accesses (e.g. for blocking runtime_pm D3Cold on Discrete Graphics).
  */
 
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 3112c966c67d..7d60c7c09f33 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -1981,7 +1981,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
  *
  * Copy from an array dma addresses to a VRAM device physical address
  *
- * Return: dma fence for migrate to signal completion on succees, ERR_PTR on
+ * Return: dma fence for migrate to signal completion on success, ERR_PTR on
  * failure
  */
 struct dma_fence *xe_migrate_to_vram(struct xe_migrate *m,
@@ -2002,7 +2002,7 @@ struct dma_fence *xe_migrate_to_vram(struct xe_migrate *m,
  *
  * Copy from a VRAM device physical address to an array dma addresses
  *
- * Return: dma fence for migrate to signal completion on succees, ERR_PTR on
+ * Return: dma fence for migrate to signal completion on success, ERR_PTR on
  * failure
  */
 struct dma_fence *xe_migrate_from_vram(struct xe_migrate *m,
diff --git a/drivers/gpu/drm/xe/xe_migrate_doc.h b/drivers/gpu/drm/xe/xe_migrate_doc.h
index 63c7d67b5b62..c082bc0b7068 100644
--- a/drivers/gpu/drm/xe/xe_migrate_doc.h
+++ b/drivers/gpu/drm/xe/xe_migrate_doc.h
@@ -9,7 +9,7 @@
 /**
  * DOC: Migrate Layer
  *
- * The XE migrate layer is used generate jobs which can copy memory (eviction),
+ * The Xe migrate layer is used generate jobs which can copy memory (eviction),
  * clear memory, or program tables (binds). This layer exists in every GT, has
  * a migrate engine, and uses a special VM for all generated jobs.
  *
diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
index 210298c4bcb1..4f8688fd3f00 100644
--- a/drivers/gpu/drm/xe/xe_pm.c
+++ b/drivers/gpu/drm/xe/xe_pm.c
@@ -102,7 +102,7 @@ static void xe_pm_block_end_signalling(void)
 /**
  * xe_pm_might_block_on_suspend() - Annotate that the code might block on suspend
  *
- * Annotation to use where the code might block or sieze to make
+ * Annotation to use where the code might block or seize to make
  * progress pending resume completion.
  */
 void xe_pm_might_block_on_suspend(void)
diff --git a/drivers/gpu/drm/xe/xe_preempt_fence_types.h b/drivers/gpu/drm/xe/xe_preempt_fence_types.h
index 312c3372a49f..ac125c697a41 100644
--- a/drivers/gpu/drm/xe/xe_preempt_fence_types.h
+++ b/drivers/gpu/drm/xe/xe_preempt_fence_types.h
@@ -12,7 +12,7 @@
 struct xe_exec_queue;
 
 /**
- * struct xe_preempt_fence - XE preempt fence
+ * struct xe_preempt_fence - Xe preempt fence
  *
  * hardware and triggers a callback once the xe_engine is complete.
  */
diff --git a/drivers/gpu/drm/xe/xe_range_fence.h b/drivers/gpu/drm/xe/xe_range_fence.h
index edd58b34f5c0..4934729dd904 100644
--- a/drivers/gpu/drm/xe/xe_range_fence.h
+++ b/drivers/gpu/drm/xe/xe_range_fence.h
@@ -13,13 +13,13 @@
 struct xe_range_fence_tree;
 struct xe_range_fence;
 
-/** struct xe_range_fence_ops - XE range fence ops */
+/** struct xe_range_fence_ops - Xe range fence ops */
 struct xe_range_fence_ops {
 	/** @free: free range fence op */
 	void (*free)(struct xe_range_fence *rfence);
 };
 
-/** struct xe_range_fence - XE range fence (address conflict tracking) */
+/** struct xe_range_fence - Xe range fence (address conflict tracking) */
 struct xe_range_fence {
 	/** @rb: RB tree node inserted into interval tree */
 	struct rb_node rb;
diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
index d21bf8f26964..6ae4cc6a3802 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.c
+++ b/drivers/gpu/drm/xe/xe_sched_job.c
@@ -160,11 +160,11 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
 }
 
 /**
- * xe_sched_job_destroy - Destroy XE schedule job
- * @ref: reference to XE schedule job
+ * xe_sched_job_destroy - Destroy Xe schedule job
+ * @ref: reference to Xe schedule job
  *
  * Called when ref == 0, drop a reference to job's xe_engine + fence, cleanup
- * base DRM schedule job, and free memory for XE schedule job.
+ * base DRM schedule job, and free memory for Xe schedule job.
  */
 void xe_sched_job_destroy(struct kref *ref)
 {
diff --git a/drivers/gpu/drm/xe/xe_sched_job.h b/drivers/gpu/drm/xe/xe_sched_job.h
index 3dc72c5c1f13..b467131b6d5f 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.h
+++ b/drivers/gpu/drm/xe/xe_sched_job.h
@@ -23,10 +23,10 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
 void xe_sched_job_destroy(struct kref *ref);
 
 /**
- * xe_sched_job_get - get reference to XE schedule job
- * @job: XE schedule job object
+ * xe_sched_job_get - get reference to Xe schedule job
+ * @job: Xe schedule job object
  *
- * Increment XE schedule job's reference count
+ * Increment Xe schedule job's reference count
  */
 static inline struct xe_sched_job *xe_sched_job_get(struct xe_sched_job *job)
 {
@@ -35,10 +35,10 @@ static inline struct xe_sched_job *xe_sched_job_get(struct xe_sched_job *job)
 }
 
 /**
- * xe_sched_job_put - put reference to XE schedule job
- * @job: XE schedule job object
+ * xe_sched_job_put - put reference to Xe schedule job
+ * @job: Xe schedule job object
  *
- * Decrement XE schedule job's reference count, call xe_sched_job_destroy when
+ * Decrement Xe schedule job's reference count, call xe_sched_job_destroy when
  * reference count == 0.
  */
 static inline void xe_sched_job_put(struct xe_sched_job *job)
diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
index 13e7a12b03ad..d26612abb4ca 100644
--- a/drivers/gpu/drm/xe/xe_sched_job_types.h
+++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
@@ -32,7 +32,7 @@ struct xe_job_ptrs {
 };
 
 /**
- * struct xe_sched_job - XE schedule job (batch buffer tracking)
+ * struct xe_sched_job - Xe schedule job (batch buffer tracking)
  */
 struct xe_sched_job {
 	/** @drm: base DRM scheduler job */
diff --git a/drivers/gpu/drm/xe/xe_svm.c b/drivers/gpu/drm/xe/xe_svm.c
index 129e7818565c..13af589715a7 100644
--- a/drivers/gpu/drm/xe/xe_svm.c
+++ b/drivers/gpu/drm/xe/xe_svm.c
@@ -633,7 +633,7 @@ static int xe_svm_copy(struct page **pages,
 
 	/*
 	 * XXX: We can't derive the GT here (or anywhere in this functions, but
-	 * compute always uses the primary GT so accumlate stats on the likely
+	 * compute always uses the primary GT so accumulate stats on the likely
 	 * GT of the fault.
 	 */
 	if (gt)
diff --git a/drivers/gpu/drm/xe/xe_tlb_inval.h b/drivers/gpu/drm/xe/xe_tlb_inval.h
index 554634dfd4e2..05614915463a 100644
--- a/drivers/gpu/drm/xe/xe_tlb_inval.h
+++ b/drivers/gpu/drm/xe/xe_tlb_inval.h
@@ -33,7 +33,7 @@ void xe_tlb_inval_fence_init(struct xe_tlb_inval *tlb_inval,
  * xe_tlb_inval_fence_wait() - TLB invalidiation fence wait
  * @fence: TLB invalidation fence to wait on
  *
- * Wait on a TLB invalidiation fence until it signals, non interruptable
+ * Wait on a TLB invalidiation fence until it signals, non interruptible
  */
 static inline void
 xe_tlb_inval_fence_wait(struct xe_tlb_inval_fence *fence)
diff --git a/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h b/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
index 1144f9232ebb..a71e14818ec2 100644
--- a/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
+++ b/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
@@ -10,7 +10,7 @@
 #include <drm/ttm/ttm_device.h>
 
 /**
- * struct xe_ttm_vram_mgr - XE TTM VRAM manager
+ * struct xe_ttm_vram_mgr - Xe TTM VRAM manager
  *
  * Manages placement of TTM resource in VRAM.
  */
@@ -32,7 +32,7 @@ struct xe_ttm_vram_mgr {
 };
 
 /**
- * struct xe_ttm_vram_mgr_resource - XE TTM VRAM resource
+ * struct xe_ttm_vram_mgr_resource - Xe TTM VRAM resource
  */
 struct xe_ttm_vram_mgr_resource {
 	/** @base: Base TTM resource */
diff --git a/drivers/gpu/drm/xe/xe_uc_fw_types.h b/drivers/gpu/drm/xe/xe_uc_fw_types.h
index 77a1dcf8b4ed..2ebe8c9db6ce 100644
--- a/drivers/gpu/drm/xe/xe_uc_fw_types.h
+++ b/drivers/gpu/drm/xe/xe_uc_fw_types.h
@@ -62,7 +62,7 @@ enum xe_uc_fw_type {
 };
 
 /**
- * struct xe_uc_fw_version - Version for XE micro controller firmware
+ * struct xe_uc_fw_version - Version for Xe micro controller firmware
  */
 struct xe_uc_fw_version {
 	/** @branch: branch version of the FW (not always available) */
@@ -84,7 +84,7 @@ enum xe_uc_fw_version_types {
 };
 
 /**
- * struct xe_uc_fw - XE micro controller firmware
+ * struct xe_uc_fw - Xe micro controller firmware
  */
 struct xe_uc_fw {
 	/** @type: type uC firmware */
@@ -112,7 +112,7 @@ struct xe_uc_fw {
 	/** @size: size of uC firmware including css header */
 	size_t size;
 
-	/** @bo: XE BO for uC firmware */
+	/** @bo: Xe BO for uC firmware */
 	struct xe_bo *bo;
 
 	/** @has_gsc_headers: whether the FW image starts with GSC headers */
diff --git a/drivers/gpu/drm/xe/xe_uc_types.h b/drivers/gpu/drm/xe/xe_uc_types.h
index 9924e4484866..1708379dc834 100644
--- a/drivers/gpu/drm/xe/xe_uc_types.h
+++ b/drivers/gpu/drm/xe/xe_uc_types.h
@@ -12,7 +12,7 @@
 #include "xe_wopcm_types.h"
 
 /**
- * struct xe_uc - XE micro controllers
+ * struct xe_uc - Xe micro controllers
  */
 struct xe_uc {
 	/** @guc: Graphics micro controller */
diff --git a/drivers/gpu/drm/xe/xe_validation.h b/drivers/gpu/drm/xe/xe_validation.h
index fec331d791e7..1ef181c90434 100644
--- a/drivers/gpu/drm/xe/xe_validation.h
+++ b/drivers/gpu/drm/xe/xe_validation.h
@@ -108,7 +108,7 @@ struct xe_val_flags {
  * @request_exclusive: Whether to lock exclusively (write mode) the next time
  * the domain lock is locked.
  * @exec_flags: The drm_exec flags used for drm_exec (re-)initialization.
- * @nr: The drm_exec nr parameter used for drm_exec (re-)initializaiton.
+ * @nr: The drm_exec nr parameter used for drm_exec (re-)initialization.
  */
 struct xe_validation_ctx {
 	struct drm_exec *exec;
@@ -137,7 +137,7 @@ bool xe_validation_should_retry(struct xe_validation_ctx *ctx, int *ret);
  * @_ret: The current error value possibly holding -ENOMEM
  *
  * Use this in way similar to drm_exec_retry_on_contention().
- * If @_ret contains -ENOMEM the tranaction is restarted once in a way that
+ * If @_ret contains -ENOMEM the transaction is restarted once in a way that
  * blocks other transactions and allows exhastive eviction. If the transaction
  * was already restarted once, Just return the -ENOMEM. May also set
  * _ret to -EINTR if not retrying and waits are interruptible.
@@ -180,7 +180,7 @@ static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
  * @_val: The xe_validation_device.
  * @_exec: The struct drm_exec object
  * @_flags: Flags for the xe_validation_ctx initialization.
- * @_ret: Return in / out parameter. May be set by this macro. Typicall 0 when called.
+ * @_ret: Return in / out parameter. May be set by this macro. Typically 0 when called.
  *
  * This macro is will initiate a drm_exec transaction with additional support for
  * exhaustive eviction.
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 10d77666a425..00f3520dec38 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -824,7 +824,7 @@ xe_vm_ops_add_range_rebind(struct xe_vma_ops *vops,
  *
  * (re)bind SVM range setting up GPU page tables for the range.
  *
- * Return: dma fence for rebind to signal completion on succees, ERR_PTR on
+ * Return: dma fence for rebind to signal completion on success, ERR_PTR on
  * failure
  */
 struct dma_fence *xe_vm_range_rebind(struct xe_vm *vm,
@@ -907,7 +907,7 @@ xe_vm_ops_add_range_unbind(struct xe_vma_ops *vops,
  *
  * Unbind SVM range removing the GPU page tables for the range.
  *
- * Return: dma fence for unbind to signal completion on succees, ERR_PTR on
+ * Return: dma fence for unbind to signal completion on success, ERR_PTR on
  * failure
  */
 struct dma_fence *xe_vm_range_unbind(struct xe_vm *vm,
@@ -1291,7 +1291,7 @@ static u16 pde_pat_index(struct xe_bo *bo)
 	 * selection of options. The user PAT index is only for encoding leaf
 	 * nodes, where we have use of more bits to do the encoding. The
 	 * non-leaf nodes are instead under driver control so the chosen index
-	 * here should be distict from the user PAT index. Also the
+	 * here should be distinct from the user PAT index. Also the
 	 * corresponding coherency of the PAT index should be tied to the
 	 * allocation type of the page table (or at least we should pick
 	 * something which is always safe).
@@ -4172,7 +4172,7 @@ void xe_vm_snapshot_free(struct xe_vm_snapshot *snap)
 
 /**
  * xe_vma_need_vram_for_atomic - Check if VMA needs VRAM migration for atomic operations
- * @xe: Pointer to the XE device structure
+ * @xe: Pointer to the Xe device structure
  * @vma: Pointer to the virtual memory area (VMA) structure
  * @is_atomic: In pagefault path and atomic operation
  *
@@ -4319,7 +4319,7 @@ static int xe_vm_alloc_vma(struct xe_vm *vm,
 			xe_vma_destroy(gpuva_to_vma(op->base.remap.unmap->va), NULL);
 		} else if (__op->op == DRM_GPUVA_OP_MAP) {
 			vma = op->map.vma;
-			/* In case of madvise call, MAP will always be follwed by REMAP.
+			/* In case of madvise call, MAP will always be followed by REMAP.
 			 * Therefore temp_attr will always have sane values, making it safe to
 			 * copy them to new vma.
 			 */
diff --git a/drivers/gpu/drm/xe/xe_vm_doc.h b/drivers/gpu/drm/xe/xe_vm_doc.h
index 1030ce214032..02e5288373c9 100644
--- a/drivers/gpu/drm/xe/xe_vm_doc.h
+++ b/drivers/gpu/drm/xe/xe_vm_doc.h
@@ -7,7 +7,7 @@
 #define _XE_VM_DOC_H_
 
 /**
- * DOC: XE VM (user address space)
+ * DOC: Xe VM (user address space)
  *
  * VM creation
  * ===========
@@ -202,13 +202,13 @@
  * User pointers are user allocated memory (malloc'd, mmap'd, etc..) for which the
  * user wants to create a GPU mapping. Typically in other DRM drivers a dummy BO
  * was created and then a binding was created. We bypass creating a dummy BO in
- * XE and simply create a binding directly from the userptr.
+ * Xe and simply create a binding directly from the userptr.
  *
  * Invalidation
  * ------------
  *
  * Since this a core kernel managed memory the kernel can move this memory
- * whenever it wants. We register an invalidation MMU notifier to alert XE when
+ * whenever it wants. We register an invalidation MMU notifier to alert Xe when
  * a user pointer is about to move. The invalidation notifier needs to block
  * until all pending users (jobs or compute mode engines) of the userptr are
  * idle to ensure no faults. This done by waiting on all of VM's dma-resv slots.
@@ -419,7 +419,7 @@
  * =======
  *
  * VM locking protects all of the core data paths (bind operations, execs,
- * evictions, and compute mode rebind worker) in XE.
+ * evictions, and compute mode rebind worker) in Xe.
  *
  * Locks
  * -----
diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index d6e2a0fdd4b3..830ed7b05c27 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -52,7 +52,7 @@ struct xe_vm_pgtable_update_op;
  * struct xe_vma_mem_attr - memory attributes associated with vma
  */
 struct xe_vma_mem_attr {
-	/** @preferred_loc: perferred memory_location */
+	/** @preferred_loc: preferred memory_location */
 	struct {
 		/** @preferred_loc.migration_policy: Pages migration policy */
 		u32 migration_policy;
@@ -338,7 +338,7 @@ struct xe_vm {
 	u64 tlb_flush_seqno;
 	/** @batch_invalidate_tlb: Always invalidate TLB before batch start */
 	bool batch_invalidate_tlb;
-	/** @xef: XE file handle for tracking this VM's drm client */
+	/** @xef: Xe file handle for tracking this VM's drm client */
 	struct xe_file *xef;
 };
 
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Fix spelling and typos across XE driver files (rev2)
  2025-10-22  9:03 [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Sanjay Yadav
@ 2025-10-22 11:09 ` Patchwork
  2025-10-22 12:30 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-10-22 11:09 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix spelling and typos across XE driver files (rev2)
URL   : https://patchwork.freedesktop.org/series/156263/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:07:55] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:07:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:08:29] Starting KUnit Kernel (1/1)...
[11:08:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:08:30] ================== guc_buf (11 subtests) ===================
[11:08:30] [PASSED] test_smallest
[11:08:30] [PASSED] test_largest
[11:08:30] [PASSED] test_granular
[11:08:30] [PASSED] test_unique
[11:08:30] [PASSED] test_overlap
[11:08:30] [PASSED] test_reusable
[11:08:30] [PASSED] test_too_big
[11:08:30] [PASSED] test_flush
[11:08:30] [PASSED] test_lookup
[11:08:30] [PASSED] test_data
[11:08:30] [PASSED] test_class
[11:08:30] ===================== [PASSED] guc_buf =====================
[11:08:30] =================== guc_dbm (7 subtests) ===================
[11:08:30] [PASSED] test_empty
[11:08:30] [PASSED] test_default
[11:08:30] ======================== test_size  ========================
[11:08:30] [PASSED] 4
[11:08:30] [PASSED] 8
[11:08:30] [PASSED] 32
[11:08:30] [PASSED] 256
[11:08:30] ==================== [PASSED] test_size ====================
[11:08:30] ======================= test_reuse  ========================
[11:08:30] [PASSED] 4
[11:08:30] [PASSED] 8
[11:08:30] [PASSED] 32
[11:08:30] [PASSED] 256
[11:08:30] =================== [PASSED] test_reuse ====================
[11:08:30] =================== test_range_overlap  ====================
[11:08:30] [PASSED] 4
[11:08:30] [PASSED] 8
[11:08:30] [PASSED] 32
[11:08:30] [PASSED] 256
[11:08:30] =============== [PASSED] test_range_overlap ================
[11:08:30] =================== test_range_compact  ====================
[11:08:30] [PASSED] 4
[11:08:30] [PASSED] 8
[11:08:30] [PASSED] 32
[11:08:30] [PASSED] 256
[11:08:30] =============== [PASSED] test_range_compact ================
[11:08:30] ==================== test_range_spare  =====================
[11:08:30] [PASSED] 4
[11:08:30] [PASSED] 8
[11:08:30] [PASSED] 32
[11:08:30] [PASSED] 256
[11:08:30] ================ [PASSED] test_range_spare =================
[11:08:30] ===================== [PASSED] guc_dbm =====================
[11:08:30] =================== guc_idm (6 subtests) ===================
[11:08:30] [PASSED] bad_init
[11:08:30] [PASSED] no_init
[11:08:30] [PASSED] init_fini
[11:08:30] [PASSED] check_used
[11:08:30] [PASSED] check_quota
[11:08:30] [PASSED] check_all
[11:08:30] ===================== [PASSED] guc_idm =====================
[11:08:30] ================== no_relay (3 subtests) ===================
[11:08:30] [PASSED] xe_drops_guc2pf_if_not_ready
[11:08:30] [PASSED] xe_drops_guc2vf_if_not_ready
[11:08:30] [PASSED] xe_rejects_send_if_not_ready
[11:08:30] ==================== [PASSED] no_relay =====================
[11:08:30] ================== pf_relay (14 subtests) ==================
[11:08:30] [PASSED] pf_rejects_guc2pf_too_short
[11:08:30] [PASSED] pf_rejects_guc2pf_too_long
[11:08:30] [PASSED] pf_rejects_guc2pf_no_payload
[11:08:30] [PASSED] pf_fails_no_payload
[11:08:30] [PASSED] pf_fails_bad_origin
[11:08:30] [PASSED] pf_fails_bad_type
[11:08:30] [PASSED] pf_txn_reports_error
[11:08:30] [PASSED] pf_txn_sends_pf2guc
[11:08:30] [PASSED] pf_sends_pf2guc
[11:08:30] [SKIPPED] pf_loopback_nop
[11:08:30] [SKIPPED] pf_loopback_echo
[11:08:30] [SKIPPED] pf_loopback_fail
[11:08:30] [SKIPPED] pf_loopback_busy
[11:08:30] [SKIPPED] pf_loopback_retry
[11:08:30] ==================== [PASSED] pf_relay =====================
[11:08:30] ================== vf_relay (3 subtests) ===================
[11:08:30] [PASSED] vf_rejects_guc2vf_too_short
[11:08:30] [PASSED] vf_rejects_guc2vf_too_long
[11:08:30] [PASSED] vf_rejects_guc2vf_no_payload
[11:08:30] ==================== [PASSED] vf_relay =====================
[11:08:30] ===================== lmtt (1 subtest) =====================
[11:08:30] ======================== test_ops  =========================
[11:08:30] [PASSED] 2-level
[11:08:30] [PASSED] multi-level
[11:08:30] ==================== [PASSED] test_ops =====================
[11:08:30] ====================== [PASSED] lmtt =======================
[11:08:30] ================= pf_service (11 subtests) =================
[11:08:30] [PASSED] pf_negotiate_any
[11:08:30] [PASSED] pf_negotiate_base_match
[11:08:30] [PASSED] pf_negotiate_base_newer
[11:08:30] [PASSED] pf_negotiate_base_next
[11:08:30] [SKIPPED] pf_negotiate_base_older
[11:08:30] [PASSED] pf_negotiate_base_prev
[11:08:30] [PASSED] pf_negotiate_latest_match
[11:08:30] [PASSED] pf_negotiate_latest_newer
[11:08:30] [PASSED] pf_negotiate_latest_next
[11:08:30] [SKIPPED] pf_negotiate_latest_older
[11:08:30] [SKIPPED] pf_negotiate_latest_prev
[11:08:30] =================== [PASSED] pf_service ====================
[11:08:30] ================= xe_guc_g2g (2 subtests) ==================
[11:08:30] ============== xe_live_guc_g2g_kunit_default  ==============
[11:08:30] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:08:30] ============== xe_live_guc_g2g_kunit_allmem  ===============
[11:08:30] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:08:30] =================== [SKIPPED] xe_guc_g2g ===================
[11:08:30] =================== xe_mocs (2 subtests) ===================
[11:08:30] ================ xe_live_mocs_kernel_kunit  ================
[11:08:30] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:08:30] ================ xe_live_mocs_reset_kunit  =================
[11:08:30] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:08:30] ==================== [SKIPPED] xe_mocs =====================
[11:08:30] ================= xe_migrate (2 subtests) ==================
[11:08:30] ================= xe_migrate_sanity_kunit  =================
[11:08:30] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:08:30] ================== xe_validate_ccs_kunit  ==================
[11:08:30] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:08:30] =================== [SKIPPED] xe_migrate ===================
[11:08:30] ================== xe_dma_buf (1 subtest) ==================
[11:08:30] ==================== xe_dma_buf_kunit  =====================
[11:08:30] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:08:30] =================== [SKIPPED] xe_dma_buf ===================
[11:08:30] ================= xe_bo_shrink (1 subtest) =================
[11:08:30] =================== xe_bo_shrink_kunit  ====================
[11:08:30] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:08:30] ================== [SKIPPED] xe_bo_shrink ==================
[11:08:30] ==================== xe_bo (2 subtests) ====================
[11:08:30] ================== xe_ccs_migrate_kunit  ===================
[11:08:30] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:08:30] ==================== xe_bo_evict_kunit  ====================
[11:08:30] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:08:30] ===================== [SKIPPED] xe_bo ======================
[11:08:30] ==================== args (11 subtests) ====================
[11:08:30] [PASSED] count_args_test
[11:08:30] [PASSED] call_args_example
[11:08:30] [PASSED] call_args_test
[11:08:30] [PASSED] drop_first_arg_example
[11:08:30] [PASSED] drop_first_arg_test
[11:08:30] [PASSED] first_arg_example
[11:08:30] [PASSED] first_arg_test
[11:08:30] [PASSED] last_arg_example
[11:08:30] [PASSED] last_arg_test
[11:08:30] [PASSED] pick_arg_example
[11:08:30] [PASSED] sep_comma_example
[11:08:30] ====================== [PASSED] args =======================
[11:08:30] =================== xe_pci (3 subtests) ====================
[11:08:30] ==================== check_graphics_ip  ====================
[11:08:30] [PASSED] 12.00 Xe_LP
[11:08:30] [PASSED] 12.10 Xe_LP+
[11:08:30] [PASSED] 12.55 Xe_HPG
[11:08:30] [PASSED] 12.60 Xe_HPC
[11:08:30] [PASSED] 12.70 Xe_LPG
[11:08:30] [PASSED] 12.71 Xe_LPG
[11:08:30] [PASSED] 12.74 Xe_LPG+
[11:08:30] [PASSED] 20.01 Xe2_HPG
[11:08:30] [PASSED] 20.02 Xe2_HPG
[11:08:30] [PASSED] 20.04 Xe2_LPG
[11:08:30] [PASSED] 30.00 Xe3_LPG
[11:08:30] [PASSED] 30.01 Xe3_LPG
[11:08:30] [PASSED] 30.03 Xe3_LPG
[11:08:30] [PASSED] 30.04 Xe3_LPG
[11:08:30] [PASSED] 30.05 Xe3_LPG
[11:08:30] [PASSED] 35.11 Xe3p_XPC
[11:08:30] ================ [PASSED] check_graphics_ip ================
[11:08:30] ===================== check_media_ip  ======================
[11:08:30] [PASSED] 12.00 Xe_M
[11:08:30] [PASSED] 12.55 Xe_HPM
[11:08:30] [PASSED] 13.00 Xe_LPM+
[11:08:30] [PASSED] 13.01 Xe2_HPM
[11:08:30] [PASSED] 20.00 Xe2_LPM
[11:08:30] [PASSED] 30.00 Xe3_LPM
[11:08:30] [PASSED] 30.02 Xe3_LPM
[11:08:30] [PASSED] 35.00 Xe3p_LPM
[11:08:30] [PASSED] 35.03 Xe3p_HPM
[11:08:30] ================= [PASSED] check_media_ip ==================
[11:08:30] ================= check_platform_gt_count  =================
[11:08:30] [PASSED] 0x9A60 (TIGERLAKE)
[11:08:30] [PASSED] 0x9A68 (TIGERLAKE)
[11:08:30] [PASSED] 0x9A70 (TIGERLAKE)
[11:08:30] [PASSED] 0x9A40 (TIGERLAKE)
[11:08:30] [PASSED] 0x9A49 (TIGERLAKE)
[11:08:30] [PASSED] 0x9A59 (TIGERLAKE)
[11:08:30] [PASSED] 0x9A78 (TIGERLAKE)
[11:08:30] [PASSED] 0x9AC0 (TIGERLAKE)
[11:08:30] [PASSED] 0x9AC9 (TIGERLAKE)
[11:08:30] [PASSED] 0x9AD9 (TIGERLAKE)
[11:08:30] [PASSED] 0x9AF8 (TIGERLAKE)
[11:08:30] [PASSED] 0x4C80 (ROCKETLAKE)
[11:08:30] [PASSED] 0x4C8A (ROCKETLAKE)
[11:08:30] [PASSED] 0x4C8B (ROCKETLAKE)
[11:08:30] [PASSED] 0x4C8C (ROCKETLAKE)
[11:08:30] [PASSED] 0x4C90 (ROCKETLAKE)
[11:08:30] [PASSED] 0x4C9A (ROCKETLAKE)
[11:08:30] [PASSED] 0x4680 (ALDERLAKE_S)
[11:08:30] [PASSED] 0x4682 (ALDERLAKE_S)
[11:08:30] [PASSED] 0x4688 (ALDERLAKE_S)
[11:08:30] [PASSED] 0x468A (ALDERLAKE_S)
[11:08:30] [PASSED] 0x468B (ALDERLAKE_S)
[11:08:30] [PASSED] 0x4690 (ALDERLAKE_S)
[11:08:30] [PASSED] 0x4692 (ALDERLAKE_S)
[11:08:30] [PASSED] 0x4693 (ALDERLAKE_S)
[11:08:30] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46AA (ALDERLAKE_P)
[11:08:30] [PASSED] 0x462A (ALDERLAKE_P)
[11:08:30] [PASSED] 0x4626 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x4628 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:08:30] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:08:30] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:08:30] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:08:30] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:08:30] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:08:30] [PASSED] 0xA721 (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA720 (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:08:30] [PASSED] 0xA780 (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA781 (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA782 (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA783 (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA788 (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA789 (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA78A (ALDERLAKE_S)
[11:08:30] [PASSED] 0xA78B (ALDERLAKE_S)
[11:08:30] [PASSED] 0x4905 (DG1)
[11:08:30] [PASSED] 0x4906 (DG1)
[11:08:30] [PASSED] 0x4907 (DG1)
[11:08:30] [PASSED] 0x4908 (DG1)
[11:08:30] [PASSED] 0x4909 (DG1)
[11:08:30] [PASSED] 0x56C0 (DG2)
[11:08:30] [PASSED] 0x56C2 (DG2)
[11:08:30] [PASSED] 0x56C1 (DG2)
[11:08:30] [PASSED] 0x7D51 (METEORLAKE)
[11:08:30] [PASSED] 0x7DD1 (METEORLAKE)
[11:08:30] [PASSED] 0x7D41 (METEORLAKE)
[11:08:30] [PASSED] 0x7D67 (METEORLAKE)
[11:08:30] [PASSED] 0xB640 (METEORLAKE)
[11:08:30] [PASSED] 0x56A0 (DG2)
[11:08:30] [PASSED] 0x56A1 (DG2)
[11:08:30] [PASSED] 0x56A2 (DG2)
[11:08:30] [PASSED] 0x56BE (DG2)
[11:08:30] [PASSED] 0x56BF (DG2)
[11:08:30] [PASSED] 0x5690 (DG2)
[11:08:30] [PASSED] 0x5691 (DG2)
[11:08:30] [PASSED] 0x5692 (DG2)
[11:08:30] [PASSED] 0x56A5 (DG2)
[11:08:30] [PASSED] 0x56A6 (DG2)
[11:08:30] [PASSED] 0x56B0 (DG2)
[11:08:30] [PASSED] 0x56B1 (DG2)
[11:08:30] [PASSED] 0x56BA (DG2)
[11:08:30] [PASSED] 0x56BB (DG2)
[11:08:30] [PASSED] 0x56BC (DG2)
[11:08:30] [PASSED] 0x56BD (DG2)
[11:08:30] [PASSED] 0x5693 (DG2)
[11:08:30] [PASSED] 0x5694 (DG2)
[11:08:30] [PASSED] 0x5695 (DG2)
[11:08:30] [PASSED] 0x56A3 (DG2)
[11:08:30] [PASSED] 0x56A4 (DG2)
[11:08:30] [PASSED] 0x56B2 (DG2)
[11:08:30] [PASSED] 0x56B3 (DG2)
[11:08:30] [PASSED] 0x5696 (DG2)
[11:08:30] [PASSED] 0x5697 (DG2)
[11:08:30] [PASSED] 0xB69 (PVC)
[11:08:30] [PASSED] 0xB6E (PVC)
[11:08:30] [PASSED] 0xBD4 (PVC)
[11:08:30] [PASSED] 0xBD5 (PVC)
[11:08:30] [PASSED] 0xBD6 (PVC)
[11:08:30] [PASSED] 0xBD7 (PVC)
[11:08:30] [PASSED] 0xBD8 (PVC)
[11:08:30] [PASSED] 0xBD9 (PVC)
[11:08:30] [PASSED] 0xBDA (PVC)
[11:08:30] [PASSED] 0xBDB (PVC)
[11:08:30] [PASSED] 0xBE0 (PVC)
[11:08:30] [PASSED] 0xBE1 (PVC)
[11:08:30] [PASSED] 0xBE5 (PVC)
[11:08:30] [PASSED] 0x7D40 (METEORLAKE)
[11:08:30] [PASSED] 0x7D45 (METEORLAKE)
[11:08:30] [PASSED] 0x7D55 (METEORLAKE)
[11:08:30] [PASSED] 0x7D60 (METEORLAKE)
[11:08:30] [PASSED] 0x7DD5 (METEORLAKE)
[11:08:30] [PASSED] 0x6420 (LUNARLAKE)
[11:08:30] [PASSED] 0x64A0 (LUNARLAKE)
[11:08:30] [PASSED] 0x64B0 (LUNARLAKE)
[11:08:30] [PASSED] 0xE202 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE209 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE20B (BATTLEMAGE)
[11:08:30] [PASSED] 0xE20C (BATTLEMAGE)
[11:08:30] [PASSED] 0xE20D (BATTLEMAGE)
[11:08:30] [PASSED] 0xE210 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE211 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE212 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE216 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE220 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE221 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE222 (BATTLEMAGE)
[11:08:30] [PASSED] 0xE223 (BATTLEMAGE)
[11:08:30] [PASSED] 0xB080 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB081 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB082 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB083 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB084 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB085 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB086 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB087 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB08F (PANTHERLAKE)
[11:08:30] [PASSED] 0xB090 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:08:30] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:08:30] [PASSED] 0xFD80 (PANTHERLAKE)
[11:08:30] [PASSED] 0xFD81 (PANTHERLAKE)
[11:08:30] [PASSED] 0xD740 (NOVALAKE_S)
[11:08:30] [PASSED] 0xD741 (NOVALAKE_S)
[11:08:30] [PASSED] 0xD742 (NOVALAKE_S)
[11:08:30] [PASSED] 0xD743 (NOVALAKE_S)
[11:08:30] [PASSED] 0xD744 (NOVALAKE_S)
[11:08:30] [PASSED] 0xD745 (NOVALAKE_S)
[11:08:30] ============= [PASSED] check_platform_gt_count =============
[11:08:30] ===================== [PASSED] xe_pci ======================
[11:08:30] =================== xe_rtp (2 subtests) ====================
[11:08:30] =============== xe_rtp_process_to_sr_tests  ================
[11:08:30] [PASSED] coalesce-same-reg
[11:08:30] [PASSED] no-match-no-add
[11:08:30] [PASSED] match-or
[11:08:30] [PASSED] match-or-xfail
[11:08:30] [PASSED] no-match-no-add-multiple-rules
[11:08:30] [PASSED] two-regs-two-entries
[11:08:30] [PASSED] clr-one-set-other
[11:08:30] [PASSED] set-field
[11:08:30] [PASSED] conflict-duplicate
[11:08:30] [PASSED] conflict-not-disjoint
[11:08:30] [PASSED] conflict-reg-type
[11:08:30] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:08:30] ================== xe_rtp_process_tests  ===================
[11:08:30] [PASSED] active1
[11:08:30] [PASSED] active2
[11:08:30] [PASSED] active-inactive
[11:08:30] [PASSED] inactive-active
[11:08:30] [PASSED] inactive-1st_or_active-inactive
[11:08:30] [PASSED] inactive-2nd_or_active-inactive
[11:08:30] [PASSED] inactive-last_or_active-inactive
[11:08:30] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[11:08:30] ============== [PASSED] xe_rtp_process_tests ===============
[11:08:30] ===================== [PASSED] xe_rtp ======================
[11:08:30] ==================== xe_wa (1 subtest) =====================
[11:08:30] ======================== xe_wa_gt  =========================
[11:08:30] [PASSED] TIGERLAKE B0
[11:08:30] [PASSED] DG1 A0
[11:08:30] [PASSED] DG1 B0
[11:08:30] [PASSED] ALDERLAKE_S A0
[11:08:30] [PASSED] ALDERLAKE_S B0
[11:08:30] [PASSED] ALDERLAKE_S C0
[11:08:30] [PASSED] ALDERLAKE_S D0
[11:08:30] [PASSED] ALDERLAKE_P A0
[11:08:30] [PASSED] ALDERLAKE_P B0
[11:08:30] [PASSED] ALDERLAKE_P C0
[11:08:30] [PASSED] ALDERLAKE_S RPLS D0
[11:08:30] [PASSED] ALDERLAKE_P RPLU E0
[11:08:30] [PASSED] DG2 G10 C0
[11:08:30] [PASSED] DG2 G11 B1
[11:08:30] [PASSED] DG2 G12 A1
[11:08:30] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:08:30] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:08:30] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:08:30] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:08:30] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:08:30] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:08:30] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:08:30] ==================== [PASSED] xe_wa_gt =====================
[11:08:30] ====================== [PASSED] xe_wa ======================
[11:08:30] ============================================================
[11:08:30] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[11:08:30] Elapsed time: 34.601s total, 4.189s configuring, 30.046s building, 0.338s running

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

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:08:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:08:58] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:09:08] Starting KUnit Kernel (1/1)...
[11:09:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:09:08] ================= ttm_device (5 subtests) ==================
[11:09:08] [PASSED] ttm_device_init_basic
[11:09:08] [PASSED] ttm_device_init_multiple
[11:09:08] [PASSED] ttm_device_fini_basic
[11:09:08] [PASSED] ttm_device_init_no_vma_man
[11:09:08] ================== ttm_device_init_pools  ==================
[11:09:08] [PASSED] No DMA allocations, no DMA32 required
[11:09:08] [PASSED] DMA allocations, DMA32 required
[11:09:08] [PASSED] No DMA allocations, DMA32 required
[11:09:08] [PASSED] DMA allocations, no DMA32 required
[11:09:08] ============== [PASSED] ttm_device_init_pools ==============
[11:09:08] =================== [PASSED] ttm_device ====================
[11:09:08] ================== ttm_pool (8 subtests) ===================
[11:09:08] ================== ttm_pool_alloc_basic  ===================
[11:09:08] [PASSED] One page
[11:09:08] [PASSED] More than one page
[11:09:08] [PASSED] Above the allocation limit
[11:09:08] [PASSED] One page, with coherent DMA mappings enabled
[11:09:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:09:08] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:09:08] ============== ttm_pool_alloc_basic_dma_addr  ==============
[11:09:08] [PASSED] One page
[11:09:08] [PASSED] More than one page
[11:09:08] [PASSED] Above the allocation limit
[11:09:08] [PASSED] One page, with coherent DMA mappings enabled
[11:09:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:09:08] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:09:08] [PASSED] ttm_pool_alloc_order_caching_match
[11:09:08] [PASSED] ttm_pool_alloc_caching_mismatch
[11:09:08] [PASSED] ttm_pool_alloc_order_mismatch
[11:09:08] [PASSED] ttm_pool_free_dma_alloc
[11:09:08] [PASSED] ttm_pool_free_no_dma_alloc
[11:09:08] [PASSED] ttm_pool_fini_basic
[11:09:08] ==================== [PASSED] ttm_pool =====================
[11:09:08] ================ ttm_resource (8 subtests) =================
[11:09:08] ================= ttm_resource_init_basic  =================
[11:09:08] [PASSED] Init resource in TTM_PL_SYSTEM
[11:09:08] [PASSED] Init resource in TTM_PL_VRAM
[11:09:08] [PASSED] Init resource in a private placement
[11:09:08] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:09:08] ============= [PASSED] ttm_resource_init_basic =============
[11:09:08] [PASSED] ttm_resource_init_pinned
[11:09:08] [PASSED] ttm_resource_fini_basic
[11:09:08] [PASSED] ttm_resource_manager_init_basic
[11:09:08] [PASSED] ttm_resource_manager_usage_basic
[11:09:08] [PASSED] ttm_resource_manager_set_used_basic
[11:09:08] [PASSED] ttm_sys_man_alloc_basic
[11:09:08] [PASSED] ttm_sys_man_free_basic
[11:09:08] ================== [PASSED] ttm_resource ===================
[11:09:08] =================== ttm_tt (15 subtests) ===================
[11:09:08] ==================== ttm_tt_init_basic  ====================
[11:09:08] [PASSED] Page-aligned size
[11:09:08] [PASSED] Extra pages requested
[11:09:08] ================ [PASSED] ttm_tt_init_basic ================
[11:09:08] [PASSED] ttm_tt_init_misaligned
[11:09:08] [PASSED] ttm_tt_fini_basic
[11:09:08] [PASSED] ttm_tt_fini_sg
[11:09:08] [PASSED] ttm_tt_fini_shmem
[11:09:08] [PASSED] ttm_tt_create_basic
[11:09:08] [PASSED] ttm_tt_create_invalid_bo_type
[11:09:08] [PASSED] ttm_tt_create_ttm_exists
[11:09:08] [PASSED] ttm_tt_create_failed
[11:09:08] [PASSED] ttm_tt_destroy_basic
[11:09:08] [PASSED] ttm_tt_populate_null_ttm
[11:09:08] [PASSED] ttm_tt_populate_populated_ttm
[11:09:08] [PASSED] ttm_tt_unpopulate_basic
[11:09:08] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:09:08] [PASSED] ttm_tt_swapin_basic
[11:09:08] ===================== [PASSED] ttm_tt ======================
[11:09:08] =================== ttm_bo (14 subtests) ===================
[11:09:08] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[11:09:08] [PASSED] Cannot be interrupted and sleeps
[11:09:08] [PASSED] Cannot be interrupted, locks straight away
[11:09:08] [PASSED] Can be interrupted, sleeps
[11:09:08] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:09:08] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:09:08] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:09:08] [PASSED] ttm_bo_reserve_double_resv
[11:09:08] [PASSED] ttm_bo_reserve_interrupted
[11:09:08] [PASSED] ttm_bo_reserve_deadlock
[11:09:08] [PASSED] ttm_bo_unreserve_basic
[11:09:08] [PASSED] ttm_bo_unreserve_pinned
[11:09:08] [PASSED] ttm_bo_unreserve_bulk
[11:09:08] [PASSED] ttm_bo_fini_basic
[11:09:08] [PASSED] ttm_bo_fini_shared_resv
[11:09:08] [PASSED] ttm_bo_pin_basic
[11:09:08] [PASSED] ttm_bo_pin_unpin_resource
[11:09:08] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:09:08] ===================== [PASSED] ttm_bo ======================
[11:09:08] ============== ttm_bo_validate (21 subtests) ===============
[11:09:08] ============== ttm_bo_init_reserved_sys_man  ===============
[11:09:08] [PASSED] Buffer object for userspace
[11:09:08] [PASSED] Kernel buffer object
[11:09:08] [PASSED] Shared buffer object
[11:09:08] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:09:08] ============== ttm_bo_init_reserved_mock_man  ==============
[11:09:08] [PASSED] Buffer object for userspace
[11:09:08] [PASSED] Kernel buffer object
[11:09:08] [PASSED] Shared buffer object
[11:09:08] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:09:08] [PASSED] ttm_bo_init_reserved_resv
[11:09:08] ================== ttm_bo_validate_basic  ==================
[11:09:08] [PASSED] Buffer object for userspace
[11:09:08] [PASSED] Kernel buffer object
[11:09:08] [PASSED] Shared buffer object
[11:09:08] ============== [PASSED] ttm_bo_validate_basic ==============
[11:09:08] [PASSED] ttm_bo_validate_invalid_placement
[11:09:08] ============= ttm_bo_validate_same_placement  ==============
[11:09:08] [PASSED] System manager
[11:09:08] [PASSED] VRAM manager
[11:09:08] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:09:08] [PASSED] ttm_bo_validate_failed_alloc
[11:09:08] [PASSED] ttm_bo_validate_pinned
[11:09:08] [PASSED] ttm_bo_validate_busy_placement
[11:09:08] ================ ttm_bo_validate_multihop  =================
[11:09:08] [PASSED] Buffer object for userspace
[11:09:08] [PASSED] Kernel buffer object
[11:09:08] [PASSED] Shared buffer object
[11:09:08] ============ [PASSED] ttm_bo_validate_multihop =============
[11:09:08] ========== ttm_bo_validate_no_placement_signaled  ==========
[11:09:08] [PASSED] Buffer object in system domain, no page vector
[11:09:08] [PASSED] Buffer object in system domain with an existing page vector
[11:09:08] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:09:08] ======== ttm_bo_validate_no_placement_not_signaled  ========
[11:09:08] [PASSED] Buffer object for userspace
[11:09:08] [PASSED] Kernel buffer object
[11:09:08] [PASSED] Shared buffer object
[11:09:08] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:09:08] [PASSED] ttm_bo_validate_move_fence_signaled
[11:09:08] ========= ttm_bo_validate_move_fence_not_signaled  =========
[11:09:08] [PASSED] Waits for GPU
[11:09:08] [PASSED] Tries to lock straight away
[11:09:08] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:09:08] [PASSED] ttm_bo_validate_happy_evict
[11:09:08] [PASSED] ttm_bo_validate_all_pinned_evict
[11:09:08] [PASSED] ttm_bo_validate_allowed_only_evict
[11:09:08] [PASSED] ttm_bo_validate_deleted_evict
[11:09:08] [PASSED] ttm_bo_validate_busy_domain_evict
[11:09:08] [PASSED] ttm_bo_validate_evict_gutting
[11:09:08] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[11:09:08] ================= [PASSED] ttm_bo_validate =================
[11:09:08] ============================================================
[11:09:08] Testing complete. Ran 101 tests: passed: 101
[11:09:08] Elapsed time: 11.252s total, 1.669s configuring, 9.366s building, 0.188s running

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Fix spelling and typos across XE driver files (rev2)
  2025-10-22  9:03 [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Sanjay Yadav
  2025-10-22 11:09 ` ✓ CI.KUnit: success for drm/xe: Fix spelling and typos across XE driver files (rev2) Patchwork
@ 2025-10-22 12:30 ` Patchwork
  2025-10-22 13:50 ` ✓ Xe.CI.Full: " Patchwork
  2025-10-22 18:13 ` [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Summers, Stuart
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-10-22 12:30 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix spelling and typos across XE driver files (rev2)
URL   : https://patchwork.freedesktop.org/series/156263/
State : success

== Summary ==

CI Bug Log - changes from xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b_BAT -> xe-pw-156263v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b -> xe-pw-156263v2

  IGT_8594: 8594
  xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b: 126bfe822b7fa02f01008cf6f712bd777b1d625b
  xe-pw-156263v2: 156263v2

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for drm/xe: Fix spelling and typos across XE driver files (rev2)
  2025-10-22  9:03 [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Sanjay Yadav
  2025-10-22 11:09 ` ✓ CI.KUnit: success for drm/xe: Fix spelling and typos across XE driver files (rev2) Patchwork
  2025-10-22 12:30 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-22 13:50 ` Patchwork
  2025-10-22 18:13 ` [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Summers, Stuart
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-10-22 13:50 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix spelling and typos across XE driver files (rev2)
URL   : https://patchwork.freedesktop.org/series/156263/
State : success

== Summary ==

CI Bug Log - changes from xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b_FULL -> xe-pw-156263v2_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-156263v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1:
    - shard-adlp:         [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#4543]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [PASS][3] -> [FAIL][4] ([Intel XE#3908]) +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][5] ([Intel XE#1124]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#1124]) +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][7] ([Intel XE#367])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2887]) +3 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][10] -> [INCOMPLETE][11] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][12] ([Intel XE#2705] / [Intel XE#4212])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][13] -> [INCOMPLETE][14] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#787]) +13 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2325])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_frames@hdmi-cmp-planes-random:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2252]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#373]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-storm.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][20] ([Intel XE#1178]) +1 other test fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2320]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [PASS][22] -> [SKIP][23] ([Intel XE#2291]) +4 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][24] -> [FAIL][25] ([Intel XE#4633])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@forked-move:
    - shard-adlp:         [PASS][26] -> [DMESG-WARN][27] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-4/igt@kms_cursor_legacy@forked-move.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_cursor_legacy@forked-move.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][28] ([Intel XE#323])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#4302])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [PASS][31] -> [SKIP][32] ([Intel XE#4294])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#4331])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#5425])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          [PASS][35] -> [SKIP][36] ([Intel XE#2316]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][37] -> [FAIL][38] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
    - shard-adlp:         [PASS][39] -> [DMESG-WARN][40] ([Intel XE#4543]) +12 other tests dmesg-warn
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-6/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#455]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-adlp:         [PASS][42] -> [ABORT][43] ([Intel XE#2953])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-4/igt@kms_force_connector_basic@force-connector-state.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2311]) +8 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#5390]) +2 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#651]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2313]) +6 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#1158])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#653]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#5020])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [PASS][51] -> [SKIP][52] ([Intel XE#2571])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2763]) +4 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1439] / [Intel XE#836])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@pr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_psr@pr-sprite-render.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2330])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][59] -> [FAIL][60] ([Intel XE#4459]) +1 other test fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#1091] / [Intel XE#2849])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#6360])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html

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

  * igt@xe_copy_basic@mem-page-copy-17:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#5300])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_copy_basic@mem-page-copy-17.html

  * igt@xe_eudebug@basic-vm-bind:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#4837]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_eudebug@basic-vm-bind.html

  * igt@xe_eudebug@connect-user:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#4837]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@xe_eudebug@connect-user.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][67] -> [INCOMPLETE][68] ([Intel XE#6321])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-once-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2322]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@xe_exec_basic@multigpu-once-userptr.html

  * igt@xe_exec_fault_mode@many-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#288]) +3 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_exec_fault_mode@many-rebind-prefetch.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#2360])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4943]) +4 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@twice-malloc-fork-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#4915]) +58 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@xe_exec_system_allocator@twice-malloc-fork-read.html

  * igt@xe_gt_freq@freq_fixed_idle:
    - shard-dg2-set2:     [PASS][74] -> [FAIL][75] ([Intel XE#6407])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-434/igt@xe_gt_freq@freq_fixed_idle.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-436/igt@xe_gt_freq@freq_fixed_idle.html

  * igt@xe_oa@non-zero-reason:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#3573])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_oa@non-zero-reason.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#2236])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#4650])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-466/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#944]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#944])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][81] ([Intel XE#6054]) -> [PASS][82] +3 other tests pass
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][83] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][85] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][87] ([Intel XE#2291]) -> [PASS][88] +1 other test pass
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [SKIP][89] ([Intel XE#2316]) -> [PASS][90] +6 other tests pass
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a6:
    - shard-dg2-set2:     [INCOMPLETE][91] ([Intel XE#2049] / [Intel XE#4842]) -> [PASS][92] +1 other test pass
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-434/igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a6.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a6.html

  * igt@kms_flip@flip-vs-rmfb:
    - shard-adlp:         [DMESG-WARN][93] ([Intel XE#5208]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][95] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][96] +4 other tests pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][97] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][99] ([Intel XE#4543]) -> [PASS][100] +11 other tests pass
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x:
    - shard-adlp:         [DMESG-FAIL][101] ([Intel XE#4543]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][103] ([Intel XE#4596]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [SKIP][105] ([Intel XE#1435]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [FAIL][107] ([Intel XE#5625]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][109] ([Intel XE#5893]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  
#### Warnings ####

  * igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
    - shard-adlp:         [DMESG-FAIL][111] ([Intel XE#4543]) -> [FAIL][112] ([Intel XE#3884])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][113] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [INCOMPLETE][114] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][115] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][116] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [FAIL][117] ([Intel XE#1178]) -> [SKIP][118] ([Intel XE#2341])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [SKIP][119] ([Intel XE#2341]) -> [FAIL][120] ([Intel XE#1178]) +1 other test fail
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_content_protection@srm.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_content_protection@srm.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][121] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-WARN][122] ([Intel XE#4543])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][123] ([Intel XE#2311]) -> [SKIP][124] ([Intel XE#2312]) +10 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][125] ([Intel XE#5390]) -> [SKIP][126] ([Intel XE#2312]) +5 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][127] ([Intel XE#2312]) -> [SKIP][128] ([Intel XE#5390]) +9 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][129] ([Intel XE#2312]) -> [SKIP][130] ([Intel XE#2311]) +15 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][131] ([Intel XE#2312]) -> [SKIP][132] ([Intel XE#2313]) +16 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][133] ([Intel XE#2313]) -> [SKIP][134] ([Intel XE#2312]) +12 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][135] ([Intel XE#4596]) -> [SKIP][136] ([Intel XE#5021])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][137] ([Intel XE#1729]) -> [SKIP][138] ([Intel XE#2426])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     [ABORT][139] ([Intel XE#5466]) -> [ABORT][140] ([Intel XE#4917] / [Intel XE#5466])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         [ABORT][141] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][142] ([Intel XE#5530])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          [ABORT][143] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][144] ([Intel XE#5466] / [Intel XE#5530])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156263v2/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [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#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [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#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
  [Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
  [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b -> xe-pw-156263v2

  IGT_8594: 8594
  xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b: 126bfe822b7fa02f01008cf6f712bd777b1d625b
  xe-pw-156263v2: 156263v2

== Logs ==

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

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

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

* Re: [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files
  2025-10-22  9:03 [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Sanjay Yadav
                   ` (2 preceding siblings ...)
  2025-10-22 13:50 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-10-22 18:13 ` Summers, Stuart
  2025-10-22 18:44   ` Michal Wajdeczko
  3 siblings, 1 reply; 6+ messages in thread
From: Summers, Stuart @ 2025-10-22 18:13 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Yadav,  Sanjay Kumar
  Cc: Brost, Matthew, Ruhl, Michael J, Auld, Matthew

On Wed, 2025-10-22 at 14:33 +0530, Sanjay Yadav wrote:
> Corrected various spelling mistakes and typos in multiple
> files under the Xe directory. These fixes improve clarity
> and maintain consistency in documentation.
> 
> v2
> - Replaced all instances of "XE" with "Xe"
> - of -> for
> - Typical -> Typically
> 
> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>

Reviewed-by: Stuart Summers <stuart.summers@intel.com>

> ---
>  drivers/gpu/drm/xe/xe_args.h                |  2 +-
>  drivers/gpu/drm/xe/xe_bo.c                  |  4 ++--
>  drivers/gpu/drm/xe/xe_bo_doc.h              |  8 ++++----
>  drivers/gpu/drm/xe/xe_configfs.c            |  2 +-
>  drivers/gpu/drm/xe/xe_device.c              |  2 +-
>  drivers/gpu/drm/xe/xe_device_types.h        |  8 ++++----
>  drivers/gpu/drm/xe/xe_exec.c                |  2 +-
>  drivers/gpu/drm/xe/xe_force_wake_types.h    |  4 ++--
>  drivers/gpu/drm/xe/xe_gt_freq.c             |  2 +-
>  drivers/gpu/drm/xe/xe_gt_sriov_vf.c         |  2 +-
>  drivers/gpu/drm/xe/xe_guc_ads_types.h       |  2 +-
>  drivers/gpu/drm/xe/xe_guc_ct_types.h        |  2 +-
>  drivers/gpu/drm/xe/xe_guc_log_types.h       |  2 +-
>  drivers/gpu/drm/xe/xe_guc_submit.c          |  2 +-
>  drivers/gpu/drm/xe/xe_guc_tlb_inval.c       |  2 +-
>  drivers/gpu/drm/xe/xe_map.h                 |  4 ++--
>  drivers/gpu/drm/xe/xe_migrate.c             |  4 ++--
>  drivers/gpu/drm/xe/xe_migrate_doc.h         |  2 +-
>  drivers/gpu/drm/xe/xe_pm.c                  |  2 +-
>  drivers/gpu/drm/xe/xe_preempt_fence_types.h |  2 +-
>  drivers/gpu/drm/xe/xe_range_fence.h         |  4 ++--
>  drivers/gpu/drm/xe/xe_sched_job.c           |  6 +++---
>  drivers/gpu/drm/xe/xe_sched_job.h           | 12 ++++++------
>  drivers/gpu/drm/xe/xe_sched_job_types.h     |  2 +-
>  drivers/gpu/drm/xe/xe_svm.c                 |  2 +-
>  drivers/gpu/drm/xe/xe_tlb_inval.h           |  2 +-
>  drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h  |  4 ++--
>  drivers/gpu/drm/xe/xe_uc_fw_types.h         |  6 +++---
>  drivers/gpu/drm/xe/xe_uc_types.h            |  2 +-
>  drivers/gpu/drm/xe/xe_validation.h          |  6 +++---
>  drivers/gpu/drm/xe/xe_vm.c                  | 10 +++++-----
>  drivers/gpu/drm/xe/xe_vm_doc.h              |  8 ++++----
>  drivers/gpu/drm/xe/xe_vm_types.h            |  4 ++--
>  33 files changed, 64 insertions(+), 64 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_args.h
> b/drivers/gpu/drm/xe/xe_args.h
> index 4dbc7e53c624..84488f527d9a 100644
> --- a/drivers/gpu/drm/xe/xe_args.h
> +++ b/drivers/gpu/drm/xe/xe_args.h
> @@ -9,7 +9,7 @@
>  #include <linux/args.h>
>  
>  /*
> - * Why don't the following macros have the XE prefix?
> + * Why don't the following macros have the Xe prefix?
>   *
>   * Once we find more potential users outside of the Xe driver, we
> plan to move
>   * all of the following macros unchanged to linux/args.h.
> diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
> index 7b6502081873..e4378b4dfcc7 100644
> --- a/drivers/gpu/drm/xe/xe_bo.c
> +++ b/drivers/gpu/drm/xe/xe_bo.c
> @@ -2105,7 +2105,7 @@ void xe_bo_free(struct xe_bo *bo)
>   * if the function should allocate a new one.
>   * @tile: The tile to select for migration of this bo, and the tile
> used for
>   * GGTT binding if any. Only to be non-NULL for ttm_bo_type_kernel
> bos.
> - * @resv: Pointer to a locked shared reservation object to use fo
> this bo,
> + * @resv: Pointer to a locked shared reservation object to use for
> this bo,
>   * or NULL for the xe_bo to use its own.
>   * @bulk: The bulk move to use for LRU bumping, or NULL for external
> bos.
>   * @size: The storage size to use for the bo.
> @@ -2629,7 +2629,7 @@ struct xe_bo *xe_bo_create_pin_map(struct
> xe_device *xe, struct xe_tile *tile,
>   * @size: The storage size to use for the bo.
>   * @type: The TTM buffer object type.
>   * @flags: XE_BO_FLAG_ flags.
> - * @intr: Whether to execut any waits for backing store
> interruptible.
> + * @intr: Whether to execute any waits for backing store
> interruptible.
>   *
>   * Create a pinned and mapped bo. The bo will be external and not
> associated
>   * with a VM.
> diff --git a/drivers/gpu/drm/xe/xe_bo_doc.h
> b/drivers/gpu/drm/xe/xe_bo_doc.h
> index 25a884c64bf1..401e7dd26ef3 100644
> --- a/drivers/gpu/drm/xe/xe_bo_doc.h
> +++ b/drivers/gpu/drm/xe/xe_bo_doc.h
> @@ -12,7 +12,7 @@
>   * BO management
>   * =============
>   *
> - * TTM manages (placement, eviction, etc...) all BOs in XE.
> + * TTM manages (placement, eviction, etc...) all BOs in Xe.
>   *
>   * BO creation
>   * ===========
> @@ -29,7 +29,7 @@
>   * a kernel BO (e.g. engine state, memory for page tables, etc...).
> These BOs
>   * are typically mapped in the GGTT (any kernel BOs aside memory for
> page tables
>   * are in the GGTT), are pinned (can't move or be evicted at
> runtime), have a
> - * vmap (XE can access the memory via xe_map layer) and have
> contiguous physical
> + * vmap (Xe can access the memory via xe_map layer) and have
> contiguous physical
>   * memory.
>   *
>   * More details of why kernel BOs are pinned and contiguous below.
> @@ -40,7 +40,7 @@
>   * A user BO is created via the DRM_IOCTL_XE_GEM_CREATE IOCTL. Once
> it is
>   * created the BO can be mmap'd (via DRM_IOCTL_XE_GEM_MMAP_OFFSET)
> for user
>   * access and it can be bound for GPU access (via
> DRM_IOCTL_XE_VM_BIND). All
> - * user BOs are evictable and user BOs are never pinned by XE. The
> allocation of
> + * user BOs are evictable and user BOs are never pinned by Xe. The
> allocation of
>   * the backing store can be deferred from creation time until first
> use which is
>   * either mmap, bind, or pagefault.
>   *
> @@ -84,7 +84,7 @@
>   * ====================
>   *
>   * All eviction (or in other words, moving a BO from one memory
> location to
> - * another) is routed through TTM with a callback into XE.
> + * another) is routed through TTM with a callback into Xe.
>   *
>   * Runtime eviction
>   * ----------------
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c
> b/drivers/gpu/drm/xe/xe_configfs.c
> index c1419a270fa4..1b86f5d505f6 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -27,7 +27,7 @@
>   * Overview
>   * ========
>   *
> - * Configfs is a filesystem-based manager of kernel objects. XE KMD
> registers a
> + * Configfs is a filesystem-based manager of kernel objects. Xe KMD
> registers a
>   * configfs subsystem called ``xe`` that creates a directory in the
> mounted
>   * configfs directory. The user can create devices under this
> directory and
>   * configure them as necessary. See
> Documentation/filesystems/configfs.rst for
> diff --git a/drivers/gpu/drm/xe/xe_device.c
> b/drivers/gpu/drm/xe/xe_device.c
> index 5f6a412b571c..47f5391ad8e9 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -1217,7 +1217,7 @@ static void xe_device_wedged_fini(struct
> drm_device *drm, void *arg)
>   *
>   *   /sys/bus/pci/devices/<device>/survivability_mode
>   *
> - * - Admin/userpsace consumer can use firmware flashing tools like
> fwupd to flash
> + * - Admin/userspace consumer can use firmware flashing tools like
> fwupd to flash
>   *   firmware and restore device to normal operation.
>   */
>  
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h
> b/drivers/gpu/drm/xe/xe_device_types.h
> index 02c04ad7296e..2a817ba1882d 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -222,7 +222,7 @@ struct xe_tile {
>  };
>  
>  /**
> - * struct xe_device - Top level struct of XE device
> + * struct xe_device - Top level struct of Xe device
>   */
>  struct xe_device {
>         /** @drm: drm device */
> @@ -250,9 +250,9 @@ struct xe_device {
>                 u32 media_verx100;
>                 /** @info.mem_region_mask: mask of valid memory
> regions */
>                 u32 mem_region_mask;
> -               /** @info.platform: XE platform enum */
> +               /** @info.platform: Xe platform enum */
>                 enum xe_platform platform;
> -               /** @info.subplatform: XE subplatform enum */
> +               /** @info.subplatform: Xe subplatform enum */
>                 enum xe_subplatform subplatform;
>                 /** @info.devid: device ID */
>                 u16 devid;
> @@ -653,7 +653,7 @@ struct xe_device {
>  };
>  
>  /**
> - * struct xe_file - file handle for XE driver
> + * struct xe_file - file handle for Xe driver
>   */
>  struct xe_file {
>         /** @xe: xe DEVICE **/
> diff --git a/drivers/gpu/drm/xe/xe_exec.c
> b/drivers/gpu/drm/xe/xe_exec.c
> index 0dc27476832b..521467d976f7 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -33,7 +33,7 @@
>   * - Binding at exec time
>   * - Flow controlling the ring at exec time
>   *
> - * In XE we avoid all of this complication by not allowing a BO list
> to be
> + * In Xe we avoid all of this complication by not allowing a BO list
> to be
>   * passed into an exec, using the dma-buf implicit sync uAPI, have
> binds as
>   * separate operations, and using the DRM scheduler to flow control
> the ring.
>   * Let's deep dive on each of these.
> diff --git a/drivers/gpu/drm/xe/xe_force_wake_types.h
> b/drivers/gpu/drm/xe/xe_force_wake_types.h
> index 899fbbcb3ea9..12d6e2367455 100644
> --- a/drivers/gpu/drm/xe/xe_force_wake_types.h
> +++ b/drivers/gpu/drm/xe/xe_force_wake_types.h
> @@ -52,7 +52,7 @@ enum xe_force_wake_domains {
>  };
>  
>  /**
> - * struct xe_force_wake_domain - XE force wake domains
> + * struct xe_force_wake_domain - Xe force wake domains
>   */
>  struct xe_force_wake_domain {
>         /** @id: domain force wake id */
> @@ -70,7 +70,7 @@ struct xe_force_wake_domain {
>  };
>  
>  /**
> - * struct xe_force_wake - XE force wake
> + * struct xe_force_wake - Xe force wake
>   */
>  struct xe_force_wake {
>         /** @gt: back pointers to GT */
> diff --git a/drivers/gpu/drm/xe/xe_gt_freq.c
> b/drivers/gpu/drm/xe/xe_gt_freq.c
> index 701349251bbc..e88f113226bc 100644
> --- a/drivers/gpu/drm/xe/xe_gt_freq.c
> +++ b/drivers/gpu/drm/xe/xe_gt_freq.c
> @@ -36,7 +36,7 @@
>   * - act_freq: The actual resolved frequency decided by PCODE.
>   * - cur_freq: The current one requested by GuC PC to the PCODE.
>   * - rpn_freq: The Render Performance (RP) N level, which is the
> minimal one.
> - * - rpa_freq: The Render Performance (RP) A level, which is the
> achiveable one.
> + * - rpa_freq: The Render Performance (RP) A level, which is the
> achievable one.
>   *   Calculated by PCODE at runtime based on multiple running
> conditions
>   * - rpe_freq: The Render Performance (RP) E level, which is the
> efficient one.
>   *   Calculated by PCODE at runtime based on multiple running
> conditions
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 46518e629ba3..382083675021 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -739,7 +739,7 @@ static void vf_start_migration_recovery(struct
> xe_gt *gt)
>                 gt->sriov.vf.migration.recovery_queued = true;
>                 WRITE_ONCE(gt-
> >sriov.vf.migration.recovery_inprogress, true);
>                 WRITE_ONCE(gt->sriov.vf.migration.ggtt_need_fixes,
> true);
> -               smp_wmb();      /* Ensure above writes visable before
> wake */
> +               smp_wmb();      /* Ensure above writes visible before
> wake */
>  
>                 xe_guc_ct_wake_waiters(&gt->uc.guc.ct);
>  
> diff --git a/drivers/gpu/drm/xe/xe_guc_ads_types.h
> b/drivers/gpu/drm/xe/xe_guc_ads_types.h
> index 70c132458ac3..48a8e092023f 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ads_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_ads_types.h
> @@ -14,7 +14,7 @@ struct xe_bo;
>   * struct xe_guc_ads - GuC additional data structures (ADS)
>   */
>  struct xe_guc_ads {
> -       /** @bo: XE BO for GuC ads blob */
> +       /** @bo: Xe BO for GuC ads blob */
>         struct xe_bo *bo;
>         /** @golden_lrc_size: golden LRC size */
>         size_t golden_lrc_size;
> diff --git a/drivers/gpu/drm/xe/xe_guc_ct_types.h
> b/drivers/gpu/drm/xe/xe_guc_ct_types.h
> index 8b03b50313d9..09d7ff1ef42a 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ct_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_ct_types.h
> @@ -126,7 +126,7 @@ struct xe_fast_req_fence {
>   * for the H2G and G2H requests sent and received through the
> buffers.
>   */
>  struct xe_guc_ct {
> -       /** @bo: XE BO for CT */
> +       /** @bo: Xe BO for CT */
>         struct xe_bo *bo;
>         /** @lock: protects everything in CT layer */
>         struct mutex lock;
> diff --git a/drivers/gpu/drm/xe/xe_guc_log_types.h
> b/drivers/gpu/drm/xe/xe_guc_log_types.h
> index b3d5c72ac752..02851b924aa4 100644
> --- a/drivers/gpu/drm/xe/xe_guc_log_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_log_types.h
> @@ -44,7 +44,7 @@ struct xe_guc_log_snapshot {
>  struct xe_guc_log {
>         /** @level: GuC log level */
>         u32 level;
> -       /** @bo: XE BO for GuC log */
> +       /** @bo: Xe BO for GuC log */
>         struct xe_bo *bo;
>         /** @stats: logging related stats */
>         struct {
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 0ef67d3523a7..d4ffdb71ef3d 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -1920,7 +1920,7 @@ static bool guc_exec_queue_reset_status(struct
> xe_exec_queue *q)
>  }
>  
>  /*
> - * All of these functions are an abstraction layer which other parts
> of XE can
> + * All of these functions are an abstraction layer which other parts
> of Xe can
>   * use to trap into the GuC backend. All of these functions, aside
> from init,
>   * really shouldn't do much other than trap into the DRM scheduler
> which
>   * synchronizes these operations.
> diff --git a/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
> b/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
> index 6bf2103602f8..a80175c7c478 100644
> --- a/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
> +++ b/drivers/gpu/drm/xe/xe_guc_tlb_inval.c
> @@ -207,7 +207,7 @@ static const struct xe_tlb_inval_ops
> guc_tlb_inval_ops = {
>   * @guc: GuC object
>   * @tlb_inval: TLB invalidation client
>   *
> - * Inititialize GuC TLB invalidation by setting back pointer in TLB
> invalidation
> + * Initialize GuC TLB invalidation by setting back pointer in TLB
> invalidation
>   * client to the GuC and setting GuC backend ops.
>   */
>  void xe_guc_tlb_inval_init_early(struct xe_guc *guc,
> diff --git a/drivers/gpu/drm/xe/xe_map.h
> b/drivers/gpu/drm/xe/xe_map.h
> index f62e0c8b67ab..c44777125691 100644
> --- a/drivers/gpu/drm/xe/xe_map.h
> +++ b/drivers/gpu/drm/xe/xe_map.h
> @@ -14,9 +14,9 @@
>   * DOC: Map layer
>   *
>   * All access to any memory shared with a device (both sysmem and
> vram) in the
> - * XE driver should go through this layer (xe_map). This layer is
> built on top
> + * Xe driver should go through this layer (xe_map). This layer is
> built on top
>   * of :ref:`driver-api/device-io:Generalizing Access to System and
> I/O Memory`
> - * and with extra hooks into the XE driver that allows adding
> asserts to memory
> + * and with extra hooks into the Xe driver that allows adding
> asserts to memory
>   * accesses (e.g. for blocking runtime_pm D3Cold on Discrete
> Graphics).
>   */
>  
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c
> b/drivers/gpu/drm/xe/xe_migrate.c
> index 3112c966c67d..7d60c7c09f33 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -1981,7 +1981,7 @@ static struct dma_fence *xe_migrate_vram(struct
> xe_migrate *m,
>   *
>   * Copy from an array dma addresses to a VRAM device physical
> address
>   *
> - * Return: dma fence for migrate to signal completion on succees,
> ERR_PTR on
> + * Return: dma fence for migrate to signal completion on success,
> ERR_PTR on
>   * failure
>   */
>  struct dma_fence *xe_migrate_to_vram(struct xe_migrate *m,
> @@ -2002,7 +2002,7 @@ struct dma_fence *xe_migrate_to_vram(struct
> xe_migrate *m,
>   *
>   * Copy from a VRAM device physical address to an array dma
> addresses
>   *
> - * Return: dma fence for migrate to signal completion on succees,
> ERR_PTR on
> + * Return: dma fence for migrate to signal completion on success,
> ERR_PTR on
>   * failure
>   */
>  struct dma_fence *xe_migrate_from_vram(struct xe_migrate *m,
> diff --git a/drivers/gpu/drm/xe/xe_migrate_doc.h
> b/drivers/gpu/drm/xe/xe_migrate_doc.h
> index 63c7d67b5b62..c082bc0b7068 100644
> --- a/drivers/gpu/drm/xe/xe_migrate_doc.h
> +++ b/drivers/gpu/drm/xe/xe_migrate_doc.h
> @@ -9,7 +9,7 @@
>  /**
>   * DOC: Migrate Layer
>   *
> - * The XE migrate layer is used generate jobs which can copy memory
> (eviction),
> + * The Xe migrate layer is used generate jobs which can copy memory
> (eviction),
>   * clear memory, or program tables (binds). This layer exists in
> every GT, has
>   * a migrate engine, and uses a special VM for all generated jobs.
>   *
> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> index 210298c4bcb1..4f8688fd3f00 100644
> --- a/drivers/gpu/drm/xe/xe_pm.c
> +++ b/drivers/gpu/drm/xe/xe_pm.c
> @@ -102,7 +102,7 @@ static void xe_pm_block_end_signalling(void)
>  /**
>   * xe_pm_might_block_on_suspend() - Annotate that the code might
> block on suspend
>   *
> - * Annotation to use where the code might block or sieze to make
> + * Annotation to use where the code might block or seize to make
>   * progress pending resume completion.
>   */
>  void xe_pm_might_block_on_suspend(void)
> diff --git a/drivers/gpu/drm/xe/xe_preempt_fence_types.h
> b/drivers/gpu/drm/xe/xe_preempt_fence_types.h
> index 312c3372a49f..ac125c697a41 100644
> --- a/drivers/gpu/drm/xe/xe_preempt_fence_types.h
> +++ b/drivers/gpu/drm/xe/xe_preempt_fence_types.h
> @@ -12,7 +12,7 @@
>  struct xe_exec_queue;
>  
>  /**
> - * struct xe_preempt_fence - XE preempt fence
> + * struct xe_preempt_fence - Xe preempt fence
>   *
>   * hardware and triggers a callback once the xe_engine is complete.
>   */
> diff --git a/drivers/gpu/drm/xe/xe_range_fence.h
> b/drivers/gpu/drm/xe/xe_range_fence.h
> index edd58b34f5c0..4934729dd904 100644
> --- a/drivers/gpu/drm/xe/xe_range_fence.h
> +++ b/drivers/gpu/drm/xe/xe_range_fence.h
> @@ -13,13 +13,13 @@
>  struct xe_range_fence_tree;
>  struct xe_range_fence;
>  
> -/** struct xe_range_fence_ops - XE range fence ops */
> +/** struct xe_range_fence_ops - Xe range fence ops */
>  struct xe_range_fence_ops {
>         /** @free: free range fence op */
>         void (*free)(struct xe_range_fence *rfence);
>  };
>  
> -/** struct xe_range_fence - XE range fence (address conflict
> tracking) */
> +/** struct xe_range_fence - Xe range fence (address conflict
> tracking) */
>  struct xe_range_fence {
>         /** @rb: RB tree node inserted into interval tree */
>         struct rb_node rb;
> diff --git a/drivers/gpu/drm/xe/xe_sched_job.c
> b/drivers/gpu/drm/xe/xe_sched_job.c
> index d21bf8f26964..6ae4cc6a3802 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job.c
> +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> @@ -160,11 +160,11 @@ struct xe_sched_job *xe_sched_job_create(struct
> xe_exec_queue *q,
>  }
>  
>  /**
> - * xe_sched_job_destroy - Destroy XE schedule job
> - * @ref: reference to XE schedule job
> + * xe_sched_job_destroy - Destroy Xe schedule job
> + * @ref: reference to Xe schedule job
>   *
>   * Called when ref == 0, drop a reference to job's xe_engine +
> fence, cleanup
> - * base DRM schedule job, and free memory for XE schedule job.
> + * base DRM schedule job, and free memory for Xe schedule job.
>   */
>  void xe_sched_job_destroy(struct kref *ref)
>  {
> diff --git a/drivers/gpu/drm/xe/xe_sched_job.h
> b/drivers/gpu/drm/xe/xe_sched_job.h
> index 3dc72c5c1f13..b467131b6d5f 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job.h
> +++ b/drivers/gpu/drm/xe/xe_sched_job.h
> @@ -23,10 +23,10 @@ struct xe_sched_job *xe_sched_job_create(struct
> xe_exec_queue *q,
>  void xe_sched_job_destroy(struct kref *ref);
>  
>  /**
> - * xe_sched_job_get - get reference to XE schedule job
> - * @job: XE schedule job object
> + * xe_sched_job_get - get reference to Xe schedule job
> + * @job: Xe schedule job object
>   *
> - * Increment XE schedule job's reference count
> + * Increment Xe schedule job's reference count
>   */
>  static inline struct xe_sched_job *xe_sched_job_get(struct
> xe_sched_job *job)
>  {
> @@ -35,10 +35,10 @@ static inline struct xe_sched_job
> *xe_sched_job_get(struct xe_sched_job *job)
>  }
>  
>  /**
> - * xe_sched_job_put - put reference to XE schedule job
> - * @job: XE schedule job object
> + * xe_sched_job_put - put reference to Xe schedule job
> + * @job: Xe schedule job object
>   *
> - * Decrement XE schedule job's reference count, call
> xe_sched_job_destroy when
> + * Decrement Xe schedule job's reference count, call
> xe_sched_job_destroy when
>   * reference count == 0.
>   */
>  static inline void xe_sched_job_put(struct xe_sched_job *job)
> diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h
> b/drivers/gpu/drm/xe/xe_sched_job_types.h
> index 13e7a12b03ad..d26612abb4ca 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> @@ -32,7 +32,7 @@ struct xe_job_ptrs {
>  };
>  
>  /**
> - * struct xe_sched_job - XE schedule job (batch buffer tracking)
> + * struct xe_sched_job - Xe schedule job (batch buffer tracking)
>   */
>  struct xe_sched_job {
>         /** @drm: base DRM scheduler job */
> diff --git a/drivers/gpu/drm/xe/xe_svm.c
> b/drivers/gpu/drm/xe/xe_svm.c
> index 129e7818565c..13af589715a7 100644
> --- a/drivers/gpu/drm/xe/xe_svm.c
> +++ b/drivers/gpu/drm/xe/xe_svm.c
> @@ -633,7 +633,7 @@ static int xe_svm_copy(struct page **pages,
>  
>         /*
>          * XXX: We can't derive the GT here (or anywhere in this
> functions, but
> -        * compute always uses the primary GT so accumlate stats on
> the likely
> +        * compute always uses the primary GT so accumulate stats on
> the likely
>          * GT of the fault.
>          */
>         if (gt)
> diff --git a/drivers/gpu/drm/xe/xe_tlb_inval.h
> b/drivers/gpu/drm/xe/xe_tlb_inval.h
> index 554634dfd4e2..05614915463a 100644
> --- a/drivers/gpu/drm/xe/xe_tlb_inval.h
> +++ b/drivers/gpu/drm/xe/xe_tlb_inval.h
> @@ -33,7 +33,7 @@ void xe_tlb_inval_fence_init(struct xe_tlb_inval
> *tlb_inval,
>   * xe_tlb_inval_fence_wait() - TLB invalidiation fence wait
>   * @fence: TLB invalidation fence to wait on
>   *
> - * Wait on a TLB invalidiation fence until it signals, non
> interruptable
> + * Wait on a TLB invalidiation fence until it signals, non
> interruptible
>   */
>  static inline void
>  xe_tlb_inval_fence_wait(struct xe_tlb_inval_fence *fence)
> diff --git a/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
> b/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
> index 1144f9232ebb..a71e14818ec2 100644
> --- a/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
> +++ b/drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h
> @@ -10,7 +10,7 @@
>  #include <drm/ttm/ttm_device.h>
>  
>  /**
> - * struct xe_ttm_vram_mgr - XE TTM VRAM manager
> + * struct xe_ttm_vram_mgr - Xe TTM VRAM manager
>   *
>   * Manages placement of TTM resource in VRAM.
>   */
> @@ -32,7 +32,7 @@ struct xe_ttm_vram_mgr {
>  };
>  
>  /**
> - * struct xe_ttm_vram_mgr_resource - XE TTM VRAM resource
> + * struct xe_ttm_vram_mgr_resource - Xe TTM VRAM resource
>   */
>  struct xe_ttm_vram_mgr_resource {
>         /** @base: Base TTM resource */
> diff --git a/drivers/gpu/drm/xe/xe_uc_fw_types.h
> b/drivers/gpu/drm/xe/xe_uc_fw_types.h
> index 77a1dcf8b4ed..2ebe8c9db6ce 100644
> --- a/drivers/gpu/drm/xe/xe_uc_fw_types.h
> +++ b/drivers/gpu/drm/xe/xe_uc_fw_types.h
> @@ -62,7 +62,7 @@ enum xe_uc_fw_type {
>  };
>  
>  /**
> - * struct xe_uc_fw_version - Version for XE micro controller
> firmware
> + * struct xe_uc_fw_version - Version for Xe micro controller
> firmware
>   */
>  struct xe_uc_fw_version {
>         /** @branch: branch version of the FW (not always available)
> */
> @@ -84,7 +84,7 @@ enum xe_uc_fw_version_types {
>  };
>  
>  /**
> - * struct xe_uc_fw - XE micro controller firmware
> + * struct xe_uc_fw - Xe micro controller firmware
>   */
>  struct xe_uc_fw {
>         /** @type: type uC firmware */
> @@ -112,7 +112,7 @@ struct xe_uc_fw {
>         /** @size: size of uC firmware including css header */
>         size_t size;
>  
> -       /** @bo: XE BO for uC firmware */
> +       /** @bo: Xe BO for uC firmware */
>         struct xe_bo *bo;
>  
>         /** @has_gsc_headers: whether the FW image starts with GSC
> headers */
> diff --git a/drivers/gpu/drm/xe/xe_uc_types.h
> b/drivers/gpu/drm/xe/xe_uc_types.h
> index 9924e4484866..1708379dc834 100644
> --- a/drivers/gpu/drm/xe/xe_uc_types.h
> +++ b/drivers/gpu/drm/xe/xe_uc_types.h
> @@ -12,7 +12,7 @@
>  #include "xe_wopcm_types.h"
>  
>  /**
> - * struct xe_uc - XE micro controllers
> + * struct xe_uc - Xe micro controllers
>   */
>  struct xe_uc {
>         /** @guc: Graphics micro controller */
> diff --git a/drivers/gpu/drm/xe/xe_validation.h
> b/drivers/gpu/drm/xe/xe_validation.h
> index fec331d791e7..1ef181c90434 100644
> --- a/drivers/gpu/drm/xe/xe_validation.h
> +++ b/drivers/gpu/drm/xe/xe_validation.h
> @@ -108,7 +108,7 @@ struct xe_val_flags {
>   * @request_exclusive: Whether to lock exclusively (write mode) the
> next time
>   * the domain lock is locked.
>   * @exec_flags: The drm_exec flags used for drm_exec (re-
> )initialization.
> - * @nr: The drm_exec nr parameter used for drm_exec (re-
> )initializaiton.
> + * @nr: The drm_exec nr parameter used for drm_exec (re-
> )initialization.
>   */
>  struct xe_validation_ctx {
>         struct drm_exec *exec;
> @@ -137,7 +137,7 @@ bool xe_validation_should_retry(struct
> xe_validation_ctx *ctx, int *ret);
>   * @_ret: The current error value possibly holding -ENOMEM
>   *
>   * Use this in way similar to drm_exec_retry_on_contention().
> - * If @_ret contains -ENOMEM the tranaction is restarted once in a
> way that
> + * If @_ret contains -ENOMEM the transaction is restarted once in a
> way that
>   * blocks other transactions and allows exhastive eviction. If the
> transaction
>   * was already restarted once, Just return the -ENOMEM. May also set
>   * _ret to -EINTR if not retrying and waits are interruptible.
> @@ -180,7 +180,7 @@ static inline void
> *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
>   * @_val: The xe_validation_device.
>   * @_exec: The struct drm_exec object
>   * @_flags: Flags for the xe_validation_ctx initialization.
> - * @_ret: Return in / out parameter. May be set by this macro.
> Typicall 0 when called.
> + * @_ret: Return in / out parameter. May be set by this macro.
> Typically 0 when called.
>   *
>   * This macro is will initiate a drm_exec transaction with
> additional support for
>   * exhaustive eviction.
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index 10d77666a425..00f3520dec38 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -824,7 +824,7 @@ xe_vm_ops_add_range_rebind(struct xe_vma_ops
> *vops,
>   *
>   * (re)bind SVM range setting up GPU page tables for the range.
>   *
> - * Return: dma fence for rebind to signal completion on succees,
> ERR_PTR on
> + * Return: dma fence for rebind to signal completion on success,
> ERR_PTR on
>   * failure
>   */
>  struct dma_fence *xe_vm_range_rebind(struct xe_vm *vm,
> @@ -907,7 +907,7 @@ xe_vm_ops_add_range_unbind(struct xe_vma_ops
> *vops,
>   *
>   * Unbind SVM range removing the GPU page tables for the range.
>   *
> - * Return: dma fence for unbind to signal completion on succees,
> ERR_PTR on
> + * Return: dma fence for unbind to signal completion on success,
> ERR_PTR on
>   * failure
>   */
>  struct dma_fence *xe_vm_range_unbind(struct xe_vm *vm,
> @@ -1291,7 +1291,7 @@ static u16 pde_pat_index(struct xe_bo *bo)
>          * selection of options. The user PAT index is only for
> encoding leaf
>          * nodes, where we have use of more bits to do the encoding.
> The
>          * non-leaf nodes are instead under driver control so the
> chosen index
> -        * here should be distict from the user PAT index. Also the
> +        * here should be distinct from the user PAT index. Also the
>          * corresponding coherency of the PAT index should be tied to
> the
>          * allocation type of the page table (or at least we should
> pick
>          * something which is always safe).
> @@ -4172,7 +4172,7 @@ void xe_vm_snapshot_free(struct xe_vm_snapshot
> *snap)
>  
>  /**
>   * xe_vma_need_vram_for_atomic - Check if VMA needs VRAM migration
> for atomic operations
> - * @xe: Pointer to the XE device structure
> + * @xe: Pointer to the Xe device structure
>   * @vma: Pointer to the virtual memory area (VMA) structure
>   * @is_atomic: In pagefault path and atomic operation
>   *
> @@ -4319,7 +4319,7 @@ static int xe_vm_alloc_vma(struct xe_vm *vm,
>                         xe_vma_destroy(gpuva_to_vma(op-
> >base.remap.unmap->va), NULL);
>                 } else if (__op->op == DRM_GPUVA_OP_MAP) {
>                         vma = op->map.vma;
> -                       /* In case of madvise call, MAP will always
> be follwed by REMAP.
> +                       /* In case of madvise call, MAP will always
> be followed by REMAP.
>                          * Therefore temp_attr will always have sane
> values, making it safe to
>                          * copy them to new vma.
>                          */
> diff --git a/drivers/gpu/drm/xe/xe_vm_doc.h
> b/drivers/gpu/drm/xe/xe_vm_doc.h
> index 1030ce214032..02e5288373c9 100644
> --- a/drivers/gpu/drm/xe/xe_vm_doc.h
> +++ b/drivers/gpu/drm/xe/xe_vm_doc.h
> @@ -7,7 +7,7 @@
>  #define _XE_VM_DOC_H_
>  
>  /**
> - * DOC: XE VM (user address space)
> + * DOC: Xe VM (user address space)
>   *
>   * VM creation
>   * ===========
> @@ -202,13 +202,13 @@
>   * User pointers are user allocated memory (malloc'd, mmap'd, etc..)
> for which the
>   * user wants to create a GPU mapping. Typically in other DRM
> drivers a dummy BO
>   * was created and then a binding was created. We bypass creating a
> dummy BO in
> - * XE and simply create a binding directly from the userptr.
> + * Xe and simply create a binding directly from the userptr.
>   *
>   * Invalidation
>   * ------------
>   *
>   * Since this a core kernel managed memory the kernel can move this
> memory
> - * whenever it wants. We register an invalidation MMU notifier to
> alert XE when
> + * whenever it wants. We register an invalidation MMU notifier to
> alert Xe when
>   * a user pointer is about to move. The invalidation notifier needs
> to block
>   * until all pending users (jobs or compute mode engines) of the
> userptr are
>   * idle to ensure no faults. This done by waiting on all of VM's
> dma-resv slots.
> @@ -419,7 +419,7 @@
>   * =======
>   *
>   * VM locking protects all of the core data paths (bind operations,
> execs,
> - * evictions, and compute mode rebind worker) in XE.
> + * evictions, and compute mode rebind worker) in Xe.
>   *
>   * Locks
>   * -----
> diff --git a/drivers/gpu/drm/xe/xe_vm_types.h
> b/drivers/gpu/drm/xe/xe_vm_types.h
> index d6e2a0fdd4b3..830ed7b05c27 100644
> --- a/drivers/gpu/drm/xe/xe_vm_types.h
> +++ b/drivers/gpu/drm/xe/xe_vm_types.h
> @@ -52,7 +52,7 @@ struct xe_vm_pgtable_update_op;
>   * struct xe_vma_mem_attr - memory attributes associated with vma
>   */
>  struct xe_vma_mem_attr {
> -       /** @preferred_loc: perferred memory_location */
> +       /** @preferred_loc: preferred memory_location */
>         struct {
>                 /** @preferred_loc.migration_policy: Pages migration
> policy */
>                 u32 migration_policy;
> @@ -338,7 +338,7 @@ struct xe_vm {
>         u64 tlb_flush_seqno;
>         /** @batch_invalidate_tlb: Always invalidate TLB before batch
> start */
>         bool batch_invalidate_tlb;
> -       /** @xef: XE file handle for tracking this VM's drm client */
> +       /** @xef: Xe file handle for tracking this VM's drm client */
>         struct xe_file *xef;
>  };
>  


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

* Re: [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files
  2025-10-22 18:13 ` [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Summers, Stuart
@ 2025-10-22 18:44   ` Michal Wajdeczko
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Wajdeczko @ 2025-10-22 18:44 UTC (permalink / raw)
  To: Summers, Stuart, intel-xe@lists.freedesktop.org,
	Yadav, Sanjay Kumar
  Cc: Brost, Matthew, Ruhl, Michael J, Auld, Matthew



On 10/22/2025 8:13 PM, Summers, Stuart wrote:
> On Wed, 2025-10-22 at 14:33 +0530, Sanjay Yadav wrote:
>> Corrected various spelling mistakes and typos in multiple
>> files under the Xe directory. These fixes improve clarity
>> and maintain consistency in documentation.
>>
>> v2
>> - Replaced all instances of "XE" with "Xe"
>> - of -> for
>> - Typical -> Typically
>>
>> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> 
> Reviewed-by: Stuart Summers <stuart.summers@intel.com>
> 
>> ---

...

>> diff --git a/drivers/gpu/drm/xe/xe_args.h
>> b/drivers/gpu/drm/xe/xe_args.h
>> index 4dbc7e53c624..84488f527d9a 100644
>> --- a/drivers/gpu/drm/xe/xe_args.h
>> +++ b/drivers/gpu/drm/xe/xe_args.h
>> @@ -9,7 +9,7 @@
>>  #include <linux/args.h>
>>  
>>  /*
>> - * Why don't the following macros have the XE prefix?
>> + * Why don't the following macros have the Xe prefix?

but here the "XE" refers to the actual macro prefix, not the driver name

>>   *
>>   * Once we find more potential users outside of the Xe driver, we

which is correctly spelled here as "Xe"

>> plan to move
>>   * all of the following macros unchanged to linux/args.h.

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

end of thread, other threads:[~2025-10-22 18:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-22  9:03 [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Sanjay Yadav
2025-10-22 11:09 ` ✓ CI.KUnit: success for drm/xe: Fix spelling and typos across XE driver files (rev2) Patchwork
2025-10-22 12:30 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-22 13:50 ` ✓ Xe.CI.Full: " Patchwork
2025-10-22 18:13 ` [PATCH v2] drm/xe: Fix spelling and typos across Xe driver files Summers, Stuart
2025-10-22 18:44   ` Michal Wajdeczko

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