* [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
@ 2026-09-10 21:28 Vinay Belgaumkar
2026-09-10 21:28 ` [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3 Vinay Belgaumkar
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Vinay Belgaumkar @ 2026-09-10 21:28 UTC (permalink / raw)
To: intel-xe; +Cc: Vinay Belgaumkar, Badal Nilawar, Rodrigo Vivi
Inspect all GT force wake bits in the idle check for runtime suspend.
This includes the ones not typically used by Xe KMD as well. Skip suspend
when any of these bits are set, since it could mean someone is trying to
keep the GT awake.
Also add a call to pm_runtime_autosuspend() inside the idle check. This
ensures a PM subsystem retry at a later time.
v2: Only check the GT domain FW register. Other domains require a GT force
wake applied before we can read their registers. Retry if idleness check
fails (Sashiko)
Cc: Badal Nilawar <badal.nilawar@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Assisted-by: Claude:Claude-Sonnet-5
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
drivers/gpu/drm/xe/xe_force_wake.c | 25 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_force_wake.h | 1 +
drivers/gpu/drm/xe/xe_pci.c | 6 +++++-
drivers/gpu/drm/xe/xe_pm.c | 19 +++++++++++++++++++
drivers/gpu/drm/xe/xe_pm.h | 1 +
5 files changed, 51 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_force_wake.c b/drivers/gpu/drm/xe/xe_force_wake.c
index 197e2197bd0a..0acb796c756c 100644
--- a/drivers/gpu/drm/xe/xe_force_wake.c
+++ b/drivers/gpu/drm/xe/xe_force_wake.c
@@ -148,6 +148,31 @@ static int domain_sleep_wait(struct xe_gt *gt,
return __domain_wait(gt, domain, false);
}
+/**
+ * xe_force_wake_any_bit_set - Return true if any force wake bit is set
+ * @fw: struct xe_force_wake
+ * @id: Force wake domain id
+ *
+ * Check if any multithread force wake bit is set for a given domain ID.
+ *
+ * Return: true if any bit in the force wake reg is set
+ */
+bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id)
+{
+ struct xe_gt *gt = fw->gt;
+ struct xe_force_wake_domain *domain = &fw->domains[id];
+ u32 val;
+
+ val = xe_mmio_read32(>->mmio, domain->reg_ctl);
+ if (val & 0xFFFF) {
+ xe_gt_dbg(gt, "FW bit set in domain: %d, reg: 0x%x, val: 0x%x",
+ domain->id, domain->reg_ctl.addr, val);
+ return true;
+ }
+
+ return false;
+}
+
/**
* xe_force_wake_get() : Increase the domain refcount
* @fw: struct xe_force_wake
diff --git a/drivers/gpu/drm/xe/xe_force_wake.h b/drivers/gpu/drm/xe/xe_force_wake.h
index e2721f205d6c..53941e5a0fbe 100644
--- a/drivers/gpu/drm/xe/xe_force_wake.h
+++ b/drivers/gpu/drm/xe/xe_force_wake.h
@@ -18,6 +18,7 @@ void xe_force_wake_init_engines(struct xe_gt *gt,
unsigned int __must_check xe_force_wake_get(struct xe_force_wake *fw,
enum xe_force_wake_domains domains);
void xe_force_wake_put(struct xe_force_wake *fw, unsigned int fw_ref);
+bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id);
const char *xe_force_wake_domain_to_str(enum xe_force_wake_domain_id id);
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index ab4da1d9a9f1..a79d928ad75a 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -1438,10 +1438,14 @@ static int xe_pci_runtime_idle(struct device *dev)
{
struct pci_dev *pdev = to_pci_dev(dev);
struct xe_device *xe = pdev_to_xe_device(pdev);
+ int ret;
xe_pm_d3cold_allowed_toggle(xe);
- return 0;
+ ret = xe_pm_check_runtime_idle(xe);
+ pm_runtime_autosuspend(dev);
+
+ return ret;
}
static const struct dev_pm_ops xe_pm_ops = {
diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
index f517bf453b54..e8d4cdbaef88 100644
--- a/drivers/gpu/drm/xe/xe_pm.c
+++ b/drivers/gpu/drm/xe/xe_pm.c
@@ -17,6 +17,8 @@
#include "xe_bo.h"
#include "xe_bo_evict.h"
#include "xe_device.h"
+#include "xe_force_wake.h"
+#include "xe_force_wake_types.h"
#include "xe_ggtt.h"
#include "xe_gt.h"
#include "xe_gt_idle.h"
@@ -1030,6 +1032,23 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
mutex_unlock(&xe->d3cold.lock);
}
+/**
+ * xe_pm_check_runtime_idle() - Perform checks before signaling runtime idle.
+ *
+ * Return: 0 on success, non-zero on finding device not idle
+ */
+int xe_pm_check_runtime_idle(struct xe_device *xe)
+{
+ struct xe_gt *gt;
+ u8 id;
+
+ for_each_gt(gt, xe, id)
+ if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
+ return -EBUSY;
+
+ return 0;
+}
+
/**
* xe_pm_module_init() - Perform xe_pm specific module initialization.
*
diff --git a/drivers/gpu/drm/xe/xe_pm.h b/drivers/gpu/drm/xe/xe_pm.h
index 6d5ab09cb769..d1f6a694b7c4 100644
--- a/drivers/gpu/drm/xe/xe_pm.h
+++ b/drivers/gpu/drm/xe/xe_pm.h
@@ -38,6 +38,7 @@ struct task_struct *xe_pm_read_callback_task(struct xe_device *xe);
int xe_pm_block_on_suspend(struct xe_device *xe);
void xe_pm_might_block_on_suspend(void);
int xe_pm_module_init(void);
+int xe_pm_check_runtime_idle(struct xe_device *xe);
static inline void __xe_pm_runtime_noop(struct xe_device *xe) {}
--
2.38.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
@ 2026-09-10 21:28 ` Vinay Belgaumkar
2026-09-10 21:41 ` sashiko-bot
2026-09-10 22:23 ` Rodrigo Vivi
2026-09-10 21:41 ` ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness Patchwork
` (4 subsequent siblings)
5 siblings, 2 replies; 13+ messages in thread
From: Vinay Belgaumkar @ 2026-09-10 21:28 UTC (permalink / raw)
To: intel-xe; +Cc: Vinay Belgaumkar, Badal Nilawar, Rodrigo Vivi
Check if GTs are in C6 before transitioning to D3. PM subsystem can
retry if this is not the case. This ensures some component is not
accessing the GT when D3 state is forced. This check can be added
to the runtime idle check since it helps to check for pending
forcewakes as well before we poll for GT C6.
v2: Force resume when we cancel suspend due to C6 check (Sashiko)
Cc: Badal Nilawar <badal.nilawar@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
drivers/gpu/drm/xe/xe_gt_idle.c | 37 +++++++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_idle.h | 1 +
drivers/gpu/drm/xe/xe_pci.c | 9 ++++++++
drivers/gpu/drm/xe/xe_pm.c | 4 ++++
4 files changed, 51 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_idle.c b/drivers/gpu/drm/xe/xe_gt_idle.c
index c208d7563e36..e077f9a13473 100644
--- a/drivers/gpu/drm/xe/xe_gt_idle.c
+++ b/drivers/gpu/drm/xe/xe_gt_idle.c
@@ -8,10 +8,12 @@
#include <drm/drm_managed.h>
#include <generated/xe_wa_oob.h>
+#include <linux/iopoll.h>
#include "xe_force_wake.h"
#include "xe_device.h"
#include "xe_gt.h"
#include "xe_gt_idle.h"
+#include "xe_gt_printk.h"
#include "xe_gt_sysfs.h"
#include "xe_guc_pc.h"
#include "regs/xe_gt_regs.h"
@@ -451,3 +453,38 @@ int xe_gt_idle_disable_c6(struct xe_gt *gt)
return 0;
}
+
+static int wait_for_gt_c6_state(struct xe_gt *gt,
+ u16 timeout_ms)
+{
+ struct xe_guc_pc *pc = >->uc.guc.pc;
+ enum xe_gt_idle_state state;
+
+ return poll_timeout_us(state = gt->gtidle.idle_status(pc),
+ state == GT_IDLE_C6,
+ 20,
+ timeout_ms * USEC_PER_MSEC,
+ false);
+}
+
+/**
+ * xe_gt_idle_wait_for_c6 - Poll for GT C6
+ * @gt: GT object
+ * @timeout_ms: wait time in ms
+ *
+ * This function polls for GT C6 state
+ *
+ * Return: 0 on success, -EAGAIN otherwise
+ */
+int xe_gt_idle_wait_for_c6(struct xe_gt *gt, u16 timeout_ms)
+{
+ if (IS_SRIOV_VF(gt_to_xe(gt)))
+ return 0;
+
+ if (wait_for_gt_c6_state(gt, timeout_ms)) {
+ xe_gt_dbg(gt, "GT is not in C6\n");
+ return -EAGAIN;
+ }
+
+ return 0;
+}
diff --git a/drivers/gpu/drm/xe/xe_gt_idle.h b/drivers/gpu/drm/xe/xe_gt_idle.h
index 9c34a155e102..74d6bd167fab 100644
--- a/drivers/gpu/drm/xe/xe_gt_idle.h
+++ b/drivers/gpu/drm/xe/xe_gt_idle.h
@@ -18,5 +18,6 @@ void xe_gt_idle_enable_pg(struct xe_gt *gt);
void xe_gt_idle_disable_pg(struct xe_gt *gt);
int xe_gt_idle_pg_print(struct xe_gt *gt, struct drm_printer *p);
u64 xe_gt_idle_residency_msec(struct xe_gt_idle *gtidle);
+int xe_gt_idle_wait_for_c6(struct xe_gt *gt, u16 timeout_ms);
#endif /* _XE_GT_IDLE_H_ */
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index a79d928ad75a..ca7898cce2aa 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -1343,6 +1343,15 @@ static int xe_pci_suspend(struct device *dev)
*/
d3cold_toggle(pdev, D3COLD_ENABLE);
+ err = xe_pm_check_runtime_idle(xe);
+ if (err) {
+ err = xe_pm_runtime_resume(xe);
+ if (err) {
+ drm_err(&xe->drm, "Resume failed after suspend was canceled");
+ return err;
+ }
+ }
+
pci_save_state(pdev);
pci_disable_device(pdev);
pci_set_power_state(pdev, PCI_D3cold);
diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
index e8d4cdbaef88..04529a242998 100644
--- a/drivers/gpu/drm/xe/xe_pm.c
+++ b/drivers/gpu/drm/xe/xe_pm.c
@@ -1046,6 +1046,10 @@ int xe_pm_check_runtime_idle(struct xe_device *xe)
if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
return -EBUSY;
+ for_each_gt(gt, xe, id)
+ if (xe_gt_idle_wait_for_c6(gt, 200))
+ return -EAGAIN;
+
return 0;
}
--
2.38.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3
2026-09-10 21:28 ` [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3 Vinay Belgaumkar
@ 2026-09-10 21:41 ` sashiko-bot
2026-09-10 22:23 ` Rodrigo Vivi
1 sibling, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-09-10 21:41 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] System suspend cancellation fails to abort the suspend process, overwrites the error code, and incorrectly uses a runtime PM resume function for recovery, leaving the device in an inconsistent state.
--
commit f28ea72e47f788fbd5be4572ca0cce1ab88bfb3f
Author: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
drm/xe: Poll GT for C6 before D3
This commit adds a check to ensure GTs are in C6 before transitioning
to D3 during suspend. If the GTs are not in C6, it attempts to resume
the device and abort the suspend.
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 278cfd390364c..04f0884f21c1b 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -1342,6 +1342,15 @@ static int xe_pci_suspend(struct device *dev)
> */
> d3cold_toggle(pdev, D3COLD_ENABLE);
>
> + err = xe_pm_check_runtime_idle(xe);
> + if (err) {
> + err = xe_pm_runtime_resume(xe);
> + if (err) {
> + drm_err(&xe->drm, "Resume failed after suspend was canceled");
> + return err;
> + }
> + }
[Severity: High]
If xe_pm_check_runtime_idle() returns an error to abort the suspend, this
block assigns the result of xe_pm_runtime_resume() to the same 'err'
variable.
If the resume succeeds and returns 0, the function will continue executing
and return 0. Doesn't this overwrite the abort error code and allow the
system suspend to proceed instead of successfully cancelling it?
Additionally, xe_pci_suspend() is a system PM suspend path. Calling
xe_pm_runtime_resume() here invokes runtime PM semantics which skip certain
initializations based on the xe->d3cold.allowed flag.
Since system PM paths require full hardware reinitialization unconditionally,
does this unwinding path need to use xe_pm_resume() or an equivalent system
PM recovery function to ensure the device is left in a consistent state?
> +
> pci_save_state(pdev);
> pci_disable_device(pdev);
> pci_set_power_state(pdev, PCI_D3cold);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260910212823.2358362-1-vinay.belgaumkar@intel.com?part=2
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
2026-09-10 21:28 ` [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3 Vinay Belgaumkar
@ 2026-09-10 21:41 ` Patchwork
2026-09-10 21:45 ` [PATCH v2 1/2] " sashiko-bot
` (3 subsequent siblings)
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-10 21:41 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-xe
== Series Details ==
Series: series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness
URL : https://patchwork.freedesktop.org/series/173816/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[21:39:34] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:39:39] 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
[21:39:59] Starting KUnit Kernel (1/1)...
[21:39:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:39:59] ============= refcount_interrupt (4 subtests) ==============
[21:39:59] [PASSED] test_single_irq_change
[21:39:59] [PASSED] test_nested_irq_change
[21:39:59] [PASSED] test_multiple_irq_change
[21:39:59] [PASSED] test_irq_save
[21:39:59] =============== [PASSED] refcount_interrupt ================
[21:39:59] ================= gpu_buddy (14 subtests) ==================
[21:39:59] [PASSED] gpu_test_buddy_alloc_limit
[21:39:59] [PASSED] gpu_test_buddy_alloc_optimistic
[21:39:59] [PASSED] gpu_test_buddy_alloc_pessimistic
[21:39:59] [PASSED] gpu_test_buddy_alloc_pathological
[21:39:59] [PASSED] gpu_test_buddy_alloc_contiguous
[21:39:59] [PASSED] gpu_test_buddy_alloc_clear
[21:39:59] [PASSED] gpu_test_buddy_alloc_range
[21:39:59] [PASSED] gpu_test_buddy_alloc_range_bias
[21:40:00] [PASSED] gpu_test_buddy_fragmentation_performance
[21:40:01] [PASSED] gpu_test_buddy_dirty_tracker_performance
[21:40:01] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[21:40:01] [PASSED] gpu_test_buddy_offset_aligned_allocation
[21:40:01] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[21:40:01] [PASSED] gpu_test_buddy_addr_to_block
[21:40:01] ==================== [PASSED] gpu_buddy ====================
[21:40:01] ============================================================
[21:40:01] Testing complete. Ran 18 tests: passed: 18
[21:40:01] Elapsed time: 26.709s total, 4.383s configuring, 20.409s building, 1.863s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:40:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:40:03] 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
[21:40:37] Starting KUnit Kernel (1/1)...
[21:40:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:40:37] ============= refcount_interrupt (4 subtests) ==============
[21:40:37] [PASSED] test_single_irq_change
[21:40:37] [PASSED] test_nested_irq_change
[21:40:37] [PASSED] test_multiple_irq_change
[21:40:37] [PASSED] test_irq_save
[21:40:37] =============== [PASSED] refcount_interrupt ================
[21:40:37] ================== guc_buf (11 subtests) ===================
[21:40:37] [PASSED] test_smallest
[21:40:37] [PASSED] test_largest
[21:40:37] [PASSED] test_granular
[21:40:37] [PASSED] test_unique
[21:40:37] [PASSED] test_overlap
[21:40:37] [PASSED] test_reusable
[21:40:37] [PASSED] test_too_big
[21:40:37] [PASSED] test_flush
[21:40:37] [PASSED] test_lookup
[21:40:37] [PASSED] test_data
[21:40:37] [PASSED] test_class
[21:40:37] ===================== [PASSED] guc_buf =====================
[21:40:37] =================== guc_dbm (7 subtests) ===================
[21:40:37] [PASSED] test_empty
[21:40:37] [PASSED] test_default
[21:40:37] ======================== test_size ========================
[21:40:37] [PASSED] 4
[21:40:37] [PASSED] 8
[21:40:37] [PASSED] 32
[21:40:37] [PASSED] 256
[21:40:37] ==================== [PASSED] test_size ====================
[21:40:37] ======================= test_reuse ========================
[21:40:37] [PASSED] 4
[21:40:37] [PASSED] 8
[21:40:37] [PASSED] 32
[21:40:37] [PASSED] 256
[21:40:37] =================== [PASSED] test_reuse ====================
[21:40:37] =================== test_range_overlap ====================
[21:40:37] [PASSED] 4
[21:40:37] [PASSED] 8
[21:40:37] [PASSED] 32
[21:40:37] [PASSED] 256
[21:40:37] =============== [PASSED] test_range_overlap ================
[21:40:37] =================== test_range_compact ====================
[21:40:37] [PASSED] 4
[21:40:37] [PASSED] 8
[21:40:37] [PASSED] 32
[21:40:37] [PASSED] 256
[21:40:37] =============== [PASSED] test_range_compact ================
[21:40:37] ==================== test_range_spare =====================
[21:40:37] [PASSED] 4
[21:40:37] [PASSED] 8
[21:40:37] [PASSED] 32
[21:40:37] [PASSED] 256
[21:40:37] ================ [PASSED] test_range_spare =================
[21:40:37] ===================== [PASSED] guc_dbm =====================
[21:40:37] =================== guc_idm (6 subtests) ===================
[21:40:37] [PASSED] bad_init
[21:40:37] [PASSED] no_init
[21:40:37] [PASSED] init_fini
[21:40:37] [PASSED] check_used
[21:40:37] [PASSED] check_quota
[21:40:37] [PASSED] check_all
[21:40:37] ===================== [PASSED] guc_idm =====================
[21:40:37] =============== guc_klv_helpers (9 subtests) ===============
[21:40:37] [PASSED] test_count
[21:40:37] [PASSED] test_encode_u32
[21:40:37] [PASSED] test_encode_u64
[21:40:37] [PASSED] test_encode_string
[21:40:37] [PASSED] test_encode_object_raw
[21:40:37] [PASSED] test_encode_object_klv
[21:40:37] [PASSED] test_encode_object_nested
[21:40:37] [PASSED] test_encode_object_basic
[21:40:37] [PASSED] test_print
[21:40:37] ================= [PASSED] guc_klv_helpers =================
[21:40:37] =================== xe_log (4 subtests) ====================
[21:40:37] [PASSED] demo_cper
[21:40:37] [PASSED] demo_dmesg
[21:40:37] ======================= test_dmesg ========================
[21:40:37] [PASSED] test_fatal
[21:40:37] [PASSED] test_fatal_tile
[21:40:37] [PASSED] test_fatal_gt
[21:40:37] [PASSED] test_fatal_comp
[21:40:37] [PASSED] test_fatal_comp_tile
[21:40:37] [PASSED] test_fatal_comp_gt
[21:40:37] [PASSED] test_fatal_all
[21:40:37] [PASSED] test_recoverable
[21:40:37] [PASSED] test_recoverable_tile
[21:40:37] [PASSED] test_recoverable_gt
[21:40:37] [PASSED] test_recoverable_comp
[21:40:37] [PASSED] test_recoverable_comp_tile
[21:40:37] [PASSED] test_recoverable_comp_gt
[21:40:37] [PASSED] test_recoverable_all
[21:40:37] [PASSED] test_info
[21:40:37] [PASSED] test_info_tile
[21:40:37] [PASSED] test_info_gt
[21:40:37] [PASSED] test_info_err
[21:40:37] [PASSED] test_info_comp
[21:40:37] [PASSED] test_info_comp_tile
[21:40:37] [PASSED] test_info_comp_gt
[21:40:37] [PASSED] test_info_all
[21:40:37] [PASSED] test_hw_fatal
[21:40:37] [PASSED] test_hw_recoverable
[21:40:37] [PASSED] test_hw_corrected
[21:40:37] [PASSED] test_hw_informational
[21:40:37] =================== [PASSED] test_dmesg ====================
[21:40:37] ====================== test_invalid =======================
[21:40:37] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[21:40:37] ================== [SKIPPED] test_invalid ==================
[21:40:37] ===================== [PASSED] xe_log ======================
[21:40:37] ================== no_relay (3 subtests) ===================
[21:40:37] [PASSED] xe_drops_guc2pf_if_not_ready
[21:40:37] [PASSED] xe_drops_guc2vf_if_not_ready
[21:40:37] [PASSED] xe_rejects_send_if_not_ready
[21:40:37] ==================== [PASSED] no_relay =====================
[21:40:37] ================== pf_relay (14 subtests) ==================
[21:40:37] [PASSED] pf_rejects_guc2pf_too_short
[21:40:37] [PASSED] pf_rejects_guc2pf_too_long
[21:40:37] [PASSED] pf_rejects_guc2pf_no_payload
[21:40:37] [PASSED] pf_fails_no_payload
[21:40:37] [PASSED] pf_fails_bad_origin
[21:40:37] [PASSED] pf_fails_bad_type
[21:40:37] [PASSED] pf_txn_reports_error
[21:40:37] [PASSED] pf_txn_sends_pf2guc
[21:40:37] [PASSED] pf_sends_pf2guc
[21:40:37] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[21:40:37] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[21:40:37] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[21:40:37] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[21:40:37] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[21:40:37] ==================== [PASSED] pf_relay =====================
[21:40:37] ================== vf_relay (3 subtests) ===================
[21:40:37] [PASSED] vf_rejects_guc2vf_too_short
[21:40:37] [PASSED] vf_rejects_guc2vf_too_long
[21:40:37] [PASSED] vf_rejects_guc2vf_no_payload
[21:40:37] ==================== [PASSED] vf_relay =====================
[21:40:37] ================ pf_gt_config (9 subtests) =================
[21:40:37] [PASSED] fair_contexts_1vf
[21:40:37] [PASSED] fair_doorbells_1vf
[21:40:37] [PASSED] fair_ggtt_1vf
[21:40:37] ====================== fair_vram_1vf ======================
[21:40:37] [PASSED] 3.50 GiB
[21:40:37] [PASSED] 11.5 GiB
[21:40:37] [PASSED] 15.5 GiB
[21:40:37] [PASSED] 31.5 GiB
[21:40:37] [PASSED] 63.5 GiB
[21:40:37] [PASSED] 1.91 GiB
[21:40:37] ================== [PASSED] fair_vram_1vf ==================
[21:40:37] ================ fair_vram_1vf_admin_only =================
[21:40:37] [PASSED] 3.50 GiB
[21:40:37] [PASSED] 11.5 GiB
[21:40:37] [PASSED] 15.5 GiB
[21:40:37] [PASSED] 31.5 GiB
[21:40:37] [PASSED] 63.5 GiB
[21:40:37] [PASSED] 1.91 GiB
[21:40:37] ============ [PASSED] fair_vram_1vf_admin_only =============
[21:40:37] ====================== fair_contexts ======================
[21:40:37] [PASSED] 1 VF
[21:40:37] [PASSED] 2 VFs
[21:40:37] [PASSED] 3 VFs
[21:40:37] [PASSED] 4 VFs
[21:40:37] [PASSED] 5 VFs
[21:40:37] [PASSED] 6 VFs
[21:40:37] [PASSED] 7 VFs
[21:40:37] [PASSED] 8 VFs
[21:40:37] [PASSED] 9 VFs
[21:40:37] [PASSED] 10 VFs
[21:40:37] [PASSED] 11 VFs
[21:40:37] [PASSED] 12 VFs
[21:40:37] [PASSED] 13 VFs
[21:40:37] [PASSED] 14 VFs
[21:40:37] [PASSED] 15 VFs
[21:40:37] [PASSED] 16 VFs
[21:40:37] [PASSED] 17 VFs
[21:40:37] [PASSED] 18 VFs
[21:40:37] [PASSED] 19 VFs
[21:40:37] [PASSED] 20 VFs
[21:40:37] [PASSED] 21 VFs
[21:40:37] [PASSED] 22 VFs
[21:40:37] [PASSED] 23 VFs
[21:40:37] [PASSED] 24 VFs
[21:40:37] [PASSED] 25 VFs
[21:40:37] [PASSED] 26 VFs
[21:40:37] [PASSED] 27 VFs
[21:40:37] [PASSED] 28 VFs
[21:40:37] [PASSED] 29 VFs
[21:40:37] [PASSED] 30 VFs
[21:40:37] [PASSED] 31 VFs
[21:40:37] [PASSED] 32 VFs
[21:40:37] [PASSED] 33 VFs
[21:40:37] [PASSED] 34 VFs
[21:40:37] [PASSED] 35 VFs
[21:40:37] [PASSED] 36 VFs
[21:40:37] [PASSED] 37 VFs
[21:40:37] [PASSED] 38 VFs
[21:40:37] [PASSED] 39 VFs
[21:40:37] [PASSED] 40 VFs
[21:40:37] [PASSED] 41 VFs
[21:40:37] [PASSED] 42 VFs
[21:40:37] [PASSED] 43 VFs
[21:40:37] [PASSED] 44 VFs
[21:40:37] [PASSED] 45 VFs
[21:40:37] [PASSED] 46 VFs
[21:40:37] [PASSED] 47 VFs
[21:40:37] [PASSED] 48 VFs
[21:40:37] [PASSED] 49 VFs
[21:40:37] [PASSED] 50 VFs
[21:40:37] [PASSED] 51 VFs
[21:40:37] [PASSED] 52 VFs
[21:40:37] [PASSED] 53 VFs
[21:40:37] [PASSED] 54 VFs
[21:40:37] [PASSED] 55 VFs
[21:40:37] [PASSED] 56 VFs
[21:40:37] [PASSED] 57 VFs
[21:40:37] [PASSED] 58 VFs
[21:40:37] [PASSED] 59 VFs
[21:40:37] [PASSED] 60 VFs
[21:40:37] [PASSED] 61 VFs
[21:40:37] [PASSED] 62 VFs
[21:40:37] [PASSED] 63 VFs
[21:40:37] ================== [PASSED] fair_contexts ==================
[21:40:37] ===================== fair_doorbells ======================
[21:40:37] [PASSED] 1 VF
[21:40:37] [PASSED] 2 VFs
[21:40:37] [PASSED] 3 VFs
[21:40:37] [PASSED] 4 VFs
[21:40:37] [PASSED] 5 VFs
[21:40:37] [PASSED] 6 VFs
[21:40:37] [PASSED] 7 VFs
[21:40:37] [PASSED] 8 VFs
[21:40:37] [PASSED] 9 VFs
[21:40:37] [PASSED] 10 VFs
[21:40:37] [PASSED] 11 VFs
[21:40:37] [PASSED] 12 VFs
[21:40:37] [PASSED] 13 VFs
[21:40:37] [PASSED] 14 VFs
[21:40:37] [PASSED] 15 VFs
[21:40:37] [PASSED] 16 VFs
[21:40:37] [PASSED] 17 VFs
[21:40:37] [PASSED] 18 VFs
[21:40:37] [PASSED] 19 VFs
[21:40:37] [PASSED] 20 VFs
[21:40:37] [PASSED] 21 VFs
[21:40:37] [PASSED] 22 VFs
[21:40:37] [PASSED] 23 VFs
[21:40:37] [PASSED] 24 VFs
[21:40:37] [PASSED] 25 VFs
[21:40:37] [PASSED] 26 VFs
[21:40:37] [PASSED] 27 VFs
[21:40:37] [PASSED] 28 VFs
[21:40:37] [PASSED] 29 VFs
[21:40:37] [PASSED] 30 VFs
[21:40:37] [PASSED] 31 VFs
[21:40:37] [PASSED] 32 VFs
[21:40:37] [PASSED] 33 VFs
[21:40:37] [PASSED] 34 VFs
[21:40:37] [PASSED] 35 VFs
[21:40:37] [PASSED] 36 VFs
[21:40:37] [PASSED] 37 VFs
[21:40:37] [PASSED] 38 VFs
[21:40:37] [PASSED] 39 VFs
[21:40:37] [PASSED] 40 VFs
[21:40:37] [PASSED] 41 VFs
[21:40:37] [PASSED] 42 VFs
[21:40:37] [PASSED] 43 VFs
[21:40:37] [PASSED] 44 VFs
[21:40:37] [PASSED] 45 VFs
[21:40:37] [PASSED] 46 VFs
[21:40:37] [PASSED] 47 VFs
[21:40:37] [PASSED] 48 VFs
[21:40:37] [PASSED] 49 VFs
[21:40:37] [PASSED] 50 VFs
[21:40:37] [PASSED] 51 VFs
[21:40:37] [PASSED] 52 VFs
[21:40:37] [PASSED] 53 VFs
[21:40:37] [PASSED] 54 VFs
[21:40:37] [PASSED] 55 VFs
[21:40:37] [PASSED] 56 VFs
[21:40:37] [PASSED] 57 VFs
[21:40:37] [PASSED] 58 VFs
[21:40:37] [PASSED] 59 VFs
[21:40:37] [PASSED] 60 VFs
[21:40:37] [PASSED] 61 VFs
[21:40:37] [PASSED] 62 VFs
[21:40:37] [PASSED] 63 VFs
[21:40:37] ================= [PASSED] fair_doorbells ==================
[21:40:37] ======================== fair_ggtt ========================
[21:40:37] [PASSED] 1 VF
[21:40:37] [PASSED] 2 VFs
[21:40:37] [PASSED] 3 VFs
[21:40:37] [PASSED] 4 VFs
[21:40:37] [PASSED] 5 VFs
[21:40:37] [PASSED] 6 VFs
[21:40:37] [PASSED] 7 VFs
[21:40:37] [PASSED] 8 VFs
[21:40:37] [PASSED] 9 VFs
[21:40:37] [PASSED] 10 VFs
[21:40:37] [PASSED] 11 VFs
[21:40:37] [PASSED] 12 VFs
[21:40:37] [PASSED] 13 VFs
[21:40:37] [PASSED] 14 VFs
[21:40:37] [PASSED] 15 VFs
[21:40:37] [PASSED] 16 VFs
[21:40:37] [PASSED] 17 VFs
[21:40:37] [PASSED] 18 VFs
[21:40:37] [PASSED] 19 VFs
[21:40:37] [PASSED] 20 VFs
[21:40:37] [PASSED] 21 VFs
[21:40:37] [PASSED] 22 VFs
[21:40:37] [PASSED] 23 VFs
[21:40:37] [PASSED] 24 VFs
[21:40:37] [PASSED] 25 VFs
[21:40:37] [PASSED] 26 VFs
[21:40:37] [PASSED] 27 VFs
[21:40:37] [PASSED] 28 VFs
[21:40:37] [PASSED] 29 VFs
[21:40:37] [PASSED] 30 VFs
[21:40:37] [PASSED] 31 VFs
[21:40:37] [PASSED] 32 VFs
[21:40:37] [PASSED] 33 VFs
[21:40:37] [PASSED] 34 VFs
[21:40:37] [PASSED] 35 VFs
[21:40:37] [PASSED] 36 VFs
[21:40:37] [PASSED] 37 VFs
[21:40:37] [PASSED] 38 VFs
[21:40:37] [PASSED] 39 VFs
[21:40:37] [PASSED] 40 VFs
[21:40:37] [PASSED] 41 VFs
[21:40:37] [PASSED] 42 VFs
[21:40:37] [PASSED] 43 VFs
[21:40:37] [PASSED] 44 VFs
[21:40:37] [PASSED] 45 VFs
[21:40:37] [PASSED] 46 VFs
[21:40:37] [PASSED] 47 VFs
[21:40:37] [PASSED] 48 VFs
[21:40:37] [PASSED] 49 VFs
[21:40:37] [PASSED] 50 VFs
[21:40:37] [PASSED] 51 VFs
[21:40:37] [PASSED] 52 VFs
[21:40:37] [PASSED] 53 VFs
[21:40:37] [PASSED] 54 VFs
[21:40:37] [PASSED] 55 VFs
[21:40:37] [PASSED] 56 VFs
[21:40:37] [PASSED] 57 VFs
[21:40:37] [PASSED] 58 VFs
[21:40:37] [PASSED] 59 VFs
[21:40:37] [PASSED] 60 VFs
[21:40:37] [PASSED] 61 VFs
[21:40:37] [PASSED] 62 VFs
[21:40:37] [PASSED] 63 VFs
[21:40:37] ==================== [PASSED] fair_ggtt ====================
[21:40:37] ======================== fair_vram ========================
[21:40:37] [PASSED] 1 VF
[21:40:37] [PASSED] 2 VFs
[21:40:37] [PASSED] 3 VFs
[21:40:37] [PASSED] 4 VFs
[21:40:37] [PASSED] 5 VFs
[21:40:37] [PASSED] 6 VFs
[21:40:37] [PASSED] 7 VFs
[21:40:37] [PASSED] 8 VFs
[21:40:37] [PASSED] 9 VFs
[21:40:37] [PASSED] 10 VFs
[21:40:37] [PASSED] 11 VFs
[21:40:37] [PASSED] 12 VFs
[21:40:37] [PASSED] 13 VFs
[21:40:37] [PASSED] 14 VFs
[21:40:37] [PASSED] 15 VFs
[21:40:37] [PASSED] 16 VFs
[21:40:37] [PASSED] 17 VFs
[21:40:37] [PASSED] 18 VFs
[21:40:37] [PASSED] 19 VFs
[21:40:37] [PASSED] 20 VFs
[21:40:37] [PASSED] 21 VFs
[21:40:37] [PASSED] 22 VFs
[21:40:37] [PASSED] 23 VFs
[21:40:37] [PASSED] 24 VFs
[21:40:37] [PASSED] 25 VFs
[21:40:37] [PASSED] 26 VFs
[21:40:37] [PASSED] 27 VFs
[21:40:37] [PASSED] 28 VFs
[21:40:37] [PASSED] 29 VFs
[21:40:37] [PASSED] 30 VFs
[21:40:37] [PASSED] 31 VFs
[21:40:37] [PASSED] 32 VFs
[21:40:37] [PASSED] 33 VFs
[21:40:37] [PASSED] 34 VFs
[21:40:37] [PASSED] 35 VFs
[21:40:37] [PASSED] 36 VFs
[21:40:37] [PASSED] 37 VFs
[21:40:37] [PASSED] 38 VFs
[21:40:37] [PASSED] 39 VFs
[21:40:37] [PASSED] 40 VFs
[21:40:37] [PASSED] 41 VFs
[21:40:37] [PASSED] 42 VFs
[21:40:37] [PASSED] 43 VFs
[21:40:37] [PASSED] 44 VFs
[21:40:37] [PASSED] 45 VFs
[21:40:37] [PASSED] 46 VFs
[21:40:37] [PASSED] 47 VFs
[21:40:37] [PASSED] 48 VFs
[21:40:37] [PASSED] 49 VFs
[21:40:37] [PASSED] 50 VFs
[21:40:37] [PASSED] 51 VFs
[21:40:37] [PASSED] 52 VFs
[21:40:37] [PASSED] 53 VFs
[21:40:37] [PASSED] 54 VFs
[21:40:37] [PASSED] 55 VFs
[21:40:37] [PASSED] 56 VFs
[21:40:37] [PASSED] 57 VFs
[21:40:37] [PASSED] 58 VFs
[21:40:37] [PASSED] 59 VFs
[21:40:37] [PASSED] 60 VFs
[21:40:37] [PASSED] 61 VFs
[21:40:37] [PASSED] 62 VFs
[21:40:37] [PASSED] 63 VFs
[21:40:37] ==================== [PASSED] fair_vram ====================
[21:40:37] ================== [PASSED] pf_gt_config ===================
[21:40:37] ===================== lmtt (1 subtest) =====================
[21:40:37] ======================== test_ops =========================
[21:40:37] [PASSED] 2-level
[21:40:37] [PASSED] multi-level
[21:40:37] ==================== [PASSED] test_ops =====================
[21:40:37] ====================== [PASSED] lmtt =======================
[21:40:37] ================= sriov_packet (1 subtest) =================
[21:40:37] [PASSED] test_descriptor_init
[21:40:37] ================== [PASSED] sriov_packet ===================
[21:40:37] ================= pf_service (11 subtests) =================
[21:40:37] [PASSED] pf_negotiate_any
[21:40:37] [PASSED] pf_negotiate_base_match
[21:40:37] [PASSED] pf_negotiate_base_newer
[21:40:37] [PASSED] pf_negotiate_base_next
[21:40:37] [SKIPPED] pf_negotiate_base_older (no older minor)
[21:40:37] [PASSED] pf_negotiate_base_prev
[21:40:37] [PASSED] pf_negotiate_latest_match
[21:40:37] [PASSED] pf_negotiate_latest_newer
[21:40:37] [PASSED] pf_negotiate_latest_next
[21:40:37] [SKIPPED] pf_negotiate_latest_older (no older minor)
[21:40:37] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[21:40:37] =================== [PASSED] pf_service ====================
[21:40:37] ================= xe_guc_g2g (2 subtests) ==================
[21:40:37] ============== xe_live_guc_g2g_kunit_default ==============
[21:40:37] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:40:37] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:40:37] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:40:37] =================== [SKIPPED] xe_guc_g2g ===================
[21:40:37] =================== xe_mocs (2 subtests) ===================
[21:40:37] ================ xe_live_mocs_kernel_kunit ================
[21:40:37] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:40:37] ================ xe_live_mocs_reset_kunit =================
[21:40:37] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:40:37] ==================== [SKIPPED] xe_mocs =====================
[21:40:37] ================= xe_migrate (2 subtests) ==================
[21:40:37] ================= xe_migrate_sanity_kunit =================
[21:40:37] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:40:37] ================== xe_validate_ccs_kunit ==================
[21:40:37] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:40:37] =================== [SKIPPED] xe_migrate ===================
[21:40:37] ================== xe_dma_buf (1 subtest) ==================
[21:40:37] ==================== xe_dma_buf_kunit =====================
[21:40:37] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:40:37] =================== [SKIPPED] xe_dma_buf ===================
[21:40:37] ================= xe_bo_shrink (1 subtest) =================
[21:40:37] =================== xe_bo_shrink_kunit ====================
[21:40:37] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:40:37] ================== [SKIPPED] xe_bo_shrink ==================
[21:40:37] ==================== xe_bo (2 subtests) ====================
[21:40:37] ================== xe_ccs_migrate_kunit ===================
[21:40:37] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:40:37] ==================== xe_bo_evict_kunit ====================
[21:40:37] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:40:37] ===================== [SKIPPED] xe_bo ======================
[21:40:37] =================== xe_any (9 subtests) ====================
[21:40:37] [PASSED] test_to_xe
[21:40:37] [PASSED] test_to_dev
[21:40:37] [PASSED] test_to_pdev
[21:40:37] [PASSED] test_to_drm
[21:40:37] [PASSED] test_if_pdev
[21:40:37] [PASSED] test_if_xe
[21:40:37] [PASSED] test_if_tile
[21:40:37] [PASSED] test_if_gt
[21:40:37] [PASSED] test_to_id
[21:40:37] ===================== [PASSED] xe_any ======================
[21:40:37] ==================== args (13 subtests) ====================
[21:40:37] [PASSED] count_args_test
[21:40:37] [PASSED] call_args_example
[21:40:37] [PASSED] call_args_test
[21:40:37] [PASSED] drop_first_arg_example
[21:40:37] [PASSED] drop_first_arg_test
[21:40:37] [PASSED] first_arg_example
[21:40:37] [PASSED] first_arg_test
[21:40:37] [PASSED] last_arg_example
[21:40:37] [PASSED] last_arg_test
[21:40:37] [PASSED] pick_arg_example
[21:40:37] [PASSED] if_args_example
[21:40:37] [PASSED] if_args_test
[21:40:37] [PASSED] sep_comma_example
[21:40:37] ====================== [PASSED] args =======================
[21:40:37] =================== xe_pci (3 subtests) ====================
[21:40:37] ==================== check_graphics_ip ====================
[21:40:37] [PASSED] 12.00 Xe_LP
[21:40:37] [PASSED] 12.10 Xe_LP+
[21:40:37] [PASSED] 12.55 Xe_HPG
[21:40:37] [PASSED] 12.60 Xe_HPC
[21:40:37] [PASSED] 12.70 Xe_LPG
[21:40:37] [PASSED] 12.71 Xe_LPG
[21:40:37] [PASSED] 12.74 Xe_LPG+
[21:40:37] [PASSED] 20.01 Xe2_HPG
[21:40:37] [PASSED] 20.02 Xe2_HPG
[21:40:37] [PASSED] 20.04 Xe2_LPG
[21:40:37] [PASSED] 30.00 Xe3_LPG
[21:40:37] [PASSED] 30.01 Xe3_LPG
[21:40:37] [PASSED] 30.03 Xe3_LPG
[21:40:37] [PASSED] 30.04 Xe3_LPG
[21:40:37] [PASSED] 30.05 Xe3_LPG
[21:40:37] [PASSED] 35.10 Xe3p_LPG
[21:40:37] [PASSED] 35.11 Xe3p_XPC
[21:40:37] ================ [PASSED] check_graphics_ip ================
[21:40:37] ===================== check_media_ip ======================
[21:40:37] [PASSED] 12.00 Xe_M
[21:40:37] [PASSED] 12.55 Xe_HPM
[21:40:37] [PASSED] 13.00 Xe_LPM+
[21:40:37] [PASSED] 13.01 Xe2_HPM
[21:40:37] [PASSED] 20.00 Xe2_LPM
[21:40:37] [PASSED] 30.00 Xe3_LPM
[21:40:37] [PASSED] 30.02 Xe3_LPM
[21:40:37] [PASSED] 35.00 Xe3p_LPM
[21:40:37] [PASSED] 35.03 Xe3p_HPM
[21:40:37] ================= [PASSED] check_media_ip ==================
[21:40:37] =================== check_platform_desc ===================
[21:40:37] [PASSED] 0x9A60 (TIGERLAKE)
[21:40:37] [PASSED] 0x9A68 (TIGERLAKE)
[21:40:37] [PASSED] 0x9A70 (TIGERLAKE)
[21:40:37] [PASSED] 0x9A40 (TIGERLAKE)
[21:40:37] [PASSED] 0x9A49 (TIGERLAKE)
[21:40:37] [PASSED] 0x9A59 (TIGERLAKE)
[21:40:37] [PASSED] 0x9A78 (TIGERLAKE)
[21:40:37] [PASSED] 0x9AC0 (TIGERLAKE)
[21:40:37] [PASSED] 0x9AC9 (TIGERLAKE)
[21:40:37] [PASSED] 0x9AD9 (TIGERLAKE)
[21:40:37] [PASSED] 0x9AF8 (TIGERLAKE)
[21:40:37] [PASSED] 0x4C80 (ROCKETLAKE)
[21:40:37] [PASSED] 0x4C8A (ROCKETLAKE)
[21:40:37] [PASSED] 0x4C8B (ROCKETLAKE)
[21:40:37] [PASSED] 0x4C8C (ROCKETLAKE)
[21:40:37] [PASSED] 0x4C90 (ROCKETLAKE)
[21:40:37] [PASSED] 0x4C9A (ROCKETLAKE)
[21:40:37] [PASSED] 0x4680 (ALDERLAKE_S)
[21:40:37] [PASSED] 0x4682 (ALDERLAKE_S)
[21:40:37] [PASSED] 0x4688 (ALDERLAKE_S)
[21:40:37] [PASSED] 0x468A (ALDERLAKE_S)
[21:40:37] [PASSED] 0x468B (ALDERLAKE_S)
[21:40:37] [PASSED] 0x4690 (ALDERLAKE_S)
[21:40:37] [PASSED] 0x4692 (ALDERLAKE_S)
[21:40:37] [PASSED] 0x4693 (ALDERLAKE_S)
[21:40:37] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46AA (ALDERLAKE_P)
[21:40:37] [PASSED] 0x462A (ALDERLAKE_P)
[21:40:37] [PASSED] 0x4626 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x4628 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:40:37] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:40:37] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:40:37] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:40:37] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:40:37] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:40:37] [PASSED] 0xA721 (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA720 (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:40:37] [PASSED] 0xA780 (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA781 (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA782 (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA783 (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA788 (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA789 (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA78A (ALDERLAKE_S)
[21:40:37] [PASSED] 0xA78B (ALDERLAKE_S)
[21:40:37] [PASSED] 0x4905 (DG1)
[21:40:37] [PASSED] 0x4906 (DG1)
[21:40:37] [PASSED] 0x4907 (DG1)
[21:40:37] [PASSED] 0x4908 (DG1)
[21:40:37] [PASSED] 0x4909 (DG1)
[21:40:37] [PASSED] 0x56C0 (DG2)
[21:40:37] [PASSED] 0x56C2 (DG2)
[21:40:37] [PASSED] 0x56C1 (DG2)
[21:40:37] [PASSED] 0x7D51 (METEORLAKE)
[21:40:37] [PASSED] 0x7DD1 (METEORLAKE)
[21:40:37] [PASSED] 0x7D41 (METEORLAKE)
[21:40:37] [PASSED] 0x7D67 (METEORLAKE)
[21:40:37] [PASSED] 0xB640 (METEORLAKE)
[21:40:37] [PASSED] 0x56A0 (DG2)
[21:40:37] [PASSED] 0x56A1 (DG2)
[21:40:37] [PASSED] 0x56A2 (DG2)
[21:40:37] [PASSED] 0x56BE (DG2)
[21:40:37] [PASSED] 0x56BF (DG2)
[21:40:37] [PASSED] 0x5690 (DG2)
[21:40:37] [PASSED] 0x5691 (DG2)
[21:40:37] [PASSED] 0x5692 (DG2)
[21:40:37] [PASSED] 0x56A5 (DG2)
[21:40:37] [PASSED] 0x56A6 (DG2)
[21:40:37] [PASSED] 0x56B0 (DG2)
[21:40:37] [PASSED] 0x56B1 (DG2)
[21:40:37] [PASSED] 0x56BA (DG2)
[21:40:37] [PASSED] 0x56BB (DG2)
[21:40:37] [PASSED] 0x56BC (DG2)
[21:40:37] [PASSED] 0x56BD (DG2)
[21:40:37] [PASSED] 0x5693 (DG2)
[21:40:37] [PASSED] 0x5694 (DG2)
[21:40:37] [PASSED] 0x5695 (DG2)
[21:40:37] [PASSED] 0x56A3 (DG2)
[21:40:37] [PASSED] 0x56A4 (DG2)
[21:40:37] [PASSED] 0x56B2 (DG2)
[21:40:37] [PASSED] 0x56B3 (DG2)
[21:40:37] [PASSED] 0x5696 (DG2)
[21:40:37] [PASSED] 0x5697 (DG2)
[21:40:37] [PASSED] 0xB69 (PVC)
[21:40:37] [PASSED] 0xB6E (PVC)
[21:40:37] [PASSED] 0xBD4 (PVC)
[21:40:37] [PASSED] 0xBD5 (PVC)
[21:40:37] [PASSED] 0xBD6 (PVC)
[21:40:37] [PASSED] 0xBD7 (PVC)
[21:40:37] [PASSED] 0xBD8 (PVC)
[21:40:37] [PASSED] 0xBD9 (PVC)
[21:40:37] [PASSED] 0xBDA (PVC)
[21:40:37] [PASSED] 0xBDB (PVC)
[21:40:37] [PASSED] 0xBE0 (PVC)
[21:40:37] [PASSED] 0xBE1 (PVC)
[21:40:37] [PASSED] 0xBE5 (PVC)
[21:40:37] [PASSED] 0x7D40 (METEORLAKE)
[21:40:37] [PASSED] 0x7D45 (METEORLAKE)
[21:40:37] [PASSED] 0x7D55 (METEORLAKE)
[21:40:37] [PASSED] 0x7D60 (METEORLAKE)
[21:40:37] [PASSED] 0x7DD5 (METEORLAKE)
[21:40:37] [PASSED] 0x6420 (LUNARLAKE)
[21:40:37] [PASSED] 0x64A0 (LUNARLAKE)
[21:40:37] [PASSED] 0x64B0 (LUNARLAKE)
[21:40:37] [PASSED] 0xE202 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE209 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE20B (BATTLEMAGE)
[21:40:37] [PASSED] 0xE20C (BATTLEMAGE)
[21:40:37] [PASSED] 0xE20D (BATTLEMAGE)
[21:40:37] [PASSED] 0xE210 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE211 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE212 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE216 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE220 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE221 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE222 (BATTLEMAGE)
[21:40:37] [PASSED] 0xE223 (BATTLEMAGE)
[21:40:37] [PASSED] 0xB080 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB081 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB082 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB083 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB084 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB085 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB086 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB087 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB08F (PANTHERLAKE)
[21:40:37] [PASSED] 0xB090 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:40:37] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:40:37] [PASSED] 0xFD80 (PANTHERLAKE)
[21:40:37] [PASSED] 0xFD81 (PANTHERLAKE)
[21:40:37] [PASSED] 0xD740 (NOVALAKE_S)
[21:40:37] [PASSED] 0xD741 (NOVALAKE_S)
[21:40:37] [PASSED] 0xD742 (NOVALAKE_S)
[21:40:37] [PASSED] 0xD743 (NOVALAKE_S)
[21:40:37] [PASSED] 0xD745 (NOVALAKE_S)
[21:40:37] [PASSED] 0xD74A (NOVALAKE_S)
[21:40:37] [PASSED] 0xD74B (NOVALAKE_S)
[21:40:37] [PASSED] 0x674C (CRESCENTISLAND)
[21:40:37] [PASSED] 0x674D (CRESCENTISLAND)
[21:40:37] [PASSED] 0x674E (CRESCENTISLAND)
[21:40:37] [PASSED] 0x674F (CRESCENTISLAND)
[21:40:37] [PASSED] 0x6750 (CRESCENTISLAND)
[21:40:37] [PASSED] 0xD750 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD751 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD752 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD753 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD754 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD755 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD756 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD757 (NOVALAKE_P)
[21:40:37] [PASSED] 0xD75F (NOVALAKE_P)
[21:40:37] =============== [PASSED] check_platform_desc ===============
[21:40:37] ===================== [PASSED] xe_pci ======================
[21:40:37] ============= xe_rtp_tables_test (5 subtests) ==============
[21:40:37] ================== xe_rtp_table_gt_test ===================
[21:40:37] [PASSED] gt_was/14011060649
[21:40:37] [PASSED] gt_was/14011059788
[21:40:37] [PASSED] gt_was/14015795083
[21:40:37] [PASSED] gt_was/16021867713
[21:40:37] [PASSED] gt_was/14019449301
[21:40:37] [PASSED] gt_was/16028005424
[21:40:37] [PASSED] gt_was/14026578760
[21:40:37] [PASSED] gt_was/1409420604
[21:40:37] [PASSED] gt_was/1408615072
[21:40:37] [PASSED] gt_was/22010523718
[21:40:37] [PASSED] gt_was/14011006942
[21:40:37] [PASSED] gt_was/14014830051
[21:40:37] [PASSED] gt_was/18018781329
[21:40:37] [PASSED] gt_was/1509235366
[21:40:37] [PASSED] gt_was/18018781329
[21:40:37] [PASSED] gt_was/16016694945
[21:40:37] [PASSED] gt_was/14018575942
[21:40:37] [PASSED] gt_was/22016670082
[21:40:37] [PASSED] gt_was/22016670082
[21:40:37] [PASSED] gt_was/14017421178
[21:40:37] [PASSED] gt_was/16025250150
[21:40:37] [PASSED] gt_was/14021871409
[21:40:37] [PASSED] gt_was/16021865536
[21:40:37] [PASSED] gt_was/14021486841
[21:40:37] [PASSED] gt_was/14025160223
[21:40:37] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[21:40:37] [PASSED] gt_was/14025635424
[21:40:37] [PASSED] gt_was/16028005424
[21:40:37] ============== [PASSED] xe_rtp_table_gt_test ===============
[21:40:37] ================== xe_rtp_table_gt_test ===================
[21:40:37] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[21:40:37] [PASSED] gt_tunings/Tuning: 32B Access Enable
[21:40:37] [PASSED] gt_tunings/Tuning: L3 cache
[21:40:37] [PASSED] gt_tunings/Tuning: L3 cache - media
[21:40:37] [PASSED] gt_tunings/Tuning: Compression Overfetch
[21:40:37] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[21:40:37] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[21:40:37] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[21:40:37] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[21:40:37] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[21:40:37] [PASSED] gt_tunings/Tuning: Stateless compression control
[21:40:37] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[21:40:37] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[21:40:37] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[21:40:37] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[21:40:37] ============== [PASSED] xe_rtp_table_gt_test ===============
[21:40:37] ================== xe_rtp_table_oob_test ==================
[21:40:37] [PASSED] oob_was/1607983814
[21:40:37] [PASSED] oob_was/16010904313
[21:40:37] [PASSED] oob_was/18022495364
[21:40:37] [PASSED] oob_was/22012773006
[21:40:37] [PASSED] oob_was/14014475959
[21:40:37] [PASSED] oob_was/22011391025
[21:40:37] [PASSED] oob_was/22012727170
[21:40:37] [PASSED] oob_was/22012727685
[21:40:37] [PASSED] oob_was/22016596838
[21:40:37] [PASSED] oob_was/18020744125
[21:40:37] [PASSED] oob_was/1409600907
[21:40:37] [PASSED] oob_was/22014953428
[21:40:37] [PASSED] oob_was/16017236439
[21:40:37] [PASSED] oob_was/14019821291
[21:40:37] [PASSED] oob_was/14015076503
[21:40:37] [PASSED] oob_was/14018913170
[21:40:37] [PASSED] oob_was/14018094691
[21:40:37] [PASSED] oob_was/18024947630
[21:40:37] [PASSED] oob_was/16022287689
[21:40:37] [PASSED] oob_was/13011645652
[21:40:37] [PASSED] oob_was/14022293748
[21:40:37] [PASSED] oob_was/22019794406
[21:40:37] [PASSED] oob_was/22019338487
[21:40:37] [PASSED] oob_was/16023588340
[21:40:37] [PASSED] oob_was/14019789679
[21:40:37] [PASSED] oob_was/14022866841
[21:40:37] [PASSED] oob_was/16021333562
[21:40:37] [PASSED] oob_was/14016712196
[21:40:37] [PASSED] oob_was/14015568240
[21:40:37] [PASSED] oob_was/18013179988
[21:40:37] [PASSED] oob_was/1508761755
[21:40:37] [PASSED] oob_was/16023105232
[21:40:37] [PASSED] oob_was/16026508708
[21:40:37] [PASSED] oob_was/14020001231
[21:40:37] [PASSED] oob_was/16023683509
[21:40:37] [PASSED] oob_was/14025515070
[21:40:37] [PASSED] oob_was/15015404425_disable
[21:40:37] [PASSED] oob_was/16026007364
[21:40:37] [PASSED] oob_was/14020316580
[21:40:37] [PASSED] oob_was/14025883347
[21:40:37] [PASSED] oob_was/16029380221
[21:40:37] [PASSED] oob_was/22022079272
[21:40:37] [PASSED] oob_was/16029897822
[21:40:37] [PASSED] oob_was/14027054324
[21:40:37] ============== [PASSED] xe_rtp_table_oob_test ==============
[21:40:37] ================ xe_rtp_table_dev_oob_test ================
[21:40:37] [PASSED] device_oob_was/22010954014
[21:40:37] [PASSED] device_oob_was/15015404425
[21:40:37] [PASSED] device_oob_was/22019338487_display
[21:40:37] [PASSED] device_oob_was/14022085890
[21:40:37] [PASSED] device_oob_was/14026539277
[21:40:37] [PASSED] device_oob_was/14026633728
[21:40:37] [PASSED] device_oob_was/14026746987
[21:40:37] [PASSED] device_oob_was/14026779378
[21:40:37] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[21:40:37] ========== xe_rtp_table_missing_upper_bound_test ==========
[21:40:37] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[21:40:37] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[21:40:37] [PASSED] register_whitelist/1806527549
[21:40:37] [PASSED] register_whitelist/allow_read_ctx_timestamp
[21:40:37] [PASSED] register_whitelist/allow_read_queue_timestamp
[21:40:37] [PASSED] register_whitelist/16014440446
[21:40:37] [PASSED] register_whitelist/16017236439
[21:40:37] [PASSED] register_whitelist/16020183090
[21:40:37] [PASSED] register_whitelist/14024997852
[21:40:37] [PASSED] register_whitelist/14024997852
[21:40:37] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[21:40:37] =============== [PASSED] xe_rtp_tables_test ================
[21:40:37] =================== xe_rtp (3 subtests) ====================
[21:40:37] =================== xe_rtp_rules_tests ====================
[21:40:37] [PASSED] no
[21:40:37] [PASSED] yes
[21:40:37] [PASSED] no-and-no
[21:40:37] [PASSED] no-and-yes
[21:40:37] [PASSED] yes-and-no
[21:40:37] [PASSED] yes-and-yes
[21:40:37] [PASSED] no-or-no
[21:40:37] [PASSED] no-or-yes
[21:40:37] [PASSED] yes-or-no
[21:40:37] [PASSED] yes-or-yes
[21:40:37] [PASSED] no-yes-or-yes-no
[21:40:37] [PASSED] no-yes-or-yes-yes
[21:40:37] [PASSED] yes-yes-or-no-yes
[21:40:37] [PASSED] yes-yes-or-yes-yes
[21:40:37] [PASSED] no-no-or-yes-or-no
[21:40:37] [PASSED] or
[21:40:37] [PASSED] or-yes
[21:40:37] [PASSED] or-no
[21:40:37] [PASSED] yes-or
[21:40:37] [PASSED] no-or
[21:40:37] [PASSED] no-or-or-yes
[21:40:37] [PASSED] yes-or-or-no
[21:40:37] [PASSED] no-or-or-no
[21:40:37] [PASSED] missing-context-engine-class
[21:40:37] [PASSED] missing-context-engine-class-or-yes
[21:40:37] [PASSED] missing-context-engine-class-or-or-yes
[21:40:37] =============== [PASSED] xe_rtp_rules_tests ================
[21:40:37] =============== xe_rtp_process_to_sr_tests ================
[21:40:37] [PASSED] coalesce-same-reg
[21:40:37] [PASSED] coalesce-same-reg-literal-and-func
[21:40:37] [PASSED] no-match-no-add
[21:40:37] [PASSED] two-regs-two-entries
[21:40:37] [PASSED] clr-one-set-other
[21:40:37] [PASSED] set-field
[21:40:37] [PASSED] conflict-duplicate
[21:40:37] [PASSED] conflict-not-disjoint
[21:40:37] [PASSED] conflict-not-disjoint-literal-and-func
[21:40:37] [PASSED] conflict-reg-type
[21:40:37] [PASSED] bad-mcr-reg-forced-to-regular
[21:40:37] [PASSED] bad-regular-reg-forced-to-mcr
[21:40:37] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:40:37] ================== xe_rtp_process_tests ===================
[21:40:37] [PASSED] active1
[21:40:37] [PASSED] active2
[21:40:37] [PASSED] active-inactive
[21:40:37] [PASSED] inactive-active
[21:40:37] [PASSED] inactive-active-inactive
[21:40:37] [PASSED] inactive-inactive-inactive
[21:40:37] ============== [PASSED] xe_rtp_process_tests ===============
[21:40:37] ===================== [PASSED] xe_rtp ======================
[21:40:37] ==================== xe_wa (1 subtest) =====================
[21:40:37] ======================== xe_wa_gt =========================
[21:40:37] [PASSED] TIGERLAKE B0
[21:40:37] [PASSED] DG1 A0
[21:40:37] [PASSED] DG1 B0
[21:40:37] [PASSED] ALDERLAKE_S A0
[21:40:37] [PASSED] ALDERLAKE_S B0
[21:40:37] [PASSED] ALDERLAKE_S C0
[21:40:37] [PASSED] ALDERLAKE_S D0
[21:40:37] [PASSED] ALDERLAKE_P A0
[21:40:37] [PASSED] ALDERLAKE_P B0
[21:40:37] [PASSED] ALDERLAKE_P C0
[21:40:37] [PASSED] ALDERLAKE_S RPLS D0
[21:40:37] [PASSED] ALDERLAKE_P RPLU E0
[21:40:37] [PASSED] DG2 G10 C0
[21:40:37] [PASSED] DG2 G11 B1
[21:40:37] [PASSED] DG2 G12 A1
[21:40:37] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:40:37] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:40:37] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:40:37] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:40:37] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:40:37] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:40:37] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:40:37] ==================== [PASSED] xe_wa_gt =====================
[21:40:37] ====================== [PASSED] xe_wa ======================
[21:40:37] ============================================================
[21:40:37] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[21:40:37] Elapsed time: 36.048s total, 1.842s configuring, 33.490s building, 0.705s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:40:37] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:40:39] 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
[21:41:04] Starting KUnit Kernel (1/1)...
[21:41:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:41:04] ============= refcount_interrupt (4 subtests) ==============
[21:41:04] [PASSED] test_single_irq_change
[21:41:04] [PASSED] test_nested_irq_change
[21:41:04] [PASSED] test_multiple_irq_change
[21:41:04] [PASSED] test_irq_save
[21:41:04] =============== [PASSED] refcount_interrupt ================
[21:41:04] ============ drm_test_pick_cmdline (2 subtests) ============
[21:41:04] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:41:04] =============== drm_test_pick_cmdline_named ===============
[21:41:04] [PASSED] NTSC
[21:41:04] [PASSED] NTSC-J
[21:41:04] [PASSED] PAL
[21:41:04] [PASSED] PAL-M
[21:41:04] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:41:04] ============== [PASSED] drm_test_pick_cmdline ==============
[21:41:04] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:41:04] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:41:04] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:41:04] =========== drm_validate_clone_mode (2 subtests) ===========
[21:41:04] ============== drm_test_check_in_clone_mode ===============
[21:41:04] [PASSED] in_clone_mode
[21:41:04] [PASSED] not_in_clone_mode
[21:41:04] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:41:04] =============== drm_test_check_valid_clones ===============
[21:41:04] [PASSED] not_in_clone_mode
[21:41:04] [PASSED] valid_clone
[21:41:04] [PASSED] invalid_clone
[21:41:04] =========== [PASSED] drm_test_check_valid_clones ===========
[21:41:04] ============= [PASSED] drm_validate_clone_mode =============
[21:41:04] ============= drm_validate_modeset (1 subtest) =============
[21:41:04] [PASSED] drm_test_check_connector_changed_modeset
[21:41:04] ============== [PASSED] drm_validate_modeset ===============
[21:41:04] ====== drm_test_bridge_get_current_state (1 subtest) =======
[21:41:04] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:41:04] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:41:04] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:41:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:41:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:41:04] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[21:41:04] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:41:04] ============== drm_bridge_alloc (2 subtests) ===============
[21:41:04] [PASSED] drm_test_drm_bridge_alloc_basic
[21:41:04] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:41:04] ================ [PASSED] drm_bridge_alloc =================
[21:41:04] ============= drm_bridge_bus_fmt (5 subtests) ==============
[21:41:04] [PASSED] drm_test_bridge_rgb_yuv_rgb
[21:41:04] [PASSED] drm_test_bridge_must_convert_to_yuv444
[21:41:04] [PASSED] drm_test_bridge_hdmi_auto_rgb
[21:41:04] [PASSED] drm_test_bridge_auto_first
[21:41:04] [PASSED] drm_test_bridge_rgb_yuv_no_path
[21:41:04] =============== [PASSED] drm_bridge_bus_fmt ================
[21:41:04] ============= drm_cmdline_parser (40 subtests) =============
[21:41:04] [PASSED] drm_test_cmdline_force_d_only
[21:41:04] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:41:04] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:41:04] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:41:04] [PASSED] drm_test_cmdline_force_e_only
[21:41:04] [PASSED] drm_test_cmdline_res
[21:41:04] [PASSED] drm_test_cmdline_res_vesa
[21:41:04] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:41:04] [PASSED] drm_test_cmdline_res_rblank
[21:41:04] [PASSED] drm_test_cmdline_res_bpp
[21:41:04] [PASSED] drm_test_cmdline_res_refresh
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:41:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:41:04] [PASSED] drm_test_cmdline_res_margins_force_on
[21:41:04] [PASSED] drm_test_cmdline_res_vesa_margins
[21:41:04] [PASSED] drm_test_cmdline_name
[21:41:04] [PASSED] drm_test_cmdline_name_bpp
[21:41:04] [PASSED] drm_test_cmdline_name_option
[21:41:04] [PASSED] drm_test_cmdline_name_bpp_option
[21:41:04] [PASSED] drm_test_cmdline_rotate_0
[21:41:04] [PASSED] drm_test_cmdline_rotate_90
[21:41:04] [PASSED] drm_test_cmdline_rotate_180
[21:41:04] [PASSED] drm_test_cmdline_rotate_270
[21:41:04] [PASSED] drm_test_cmdline_hmirror
[21:41:04] [PASSED] drm_test_cmdline_vmirror
[21:41:04] [PASSED] drm_test_cmdline_margin_options
[21:41:04] [PASSED] drm_test_cmdline_multiple_options
[21:41:04] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:41:04] [PASSED] drm_test_cmdline_extra_and_option
[21:41:04] [PASSED] drm_test_cmdline_freestanding_options
[21:41:04] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:41:04] [PASSED] drm_test_cmdline_panel_orientation
[21:41:04] ================ drm_test_cmdline_invalid =================
[21:41:04] [PASSED] margin_only
[21:41:04] [PASSED] interlace_only
[21:41:04] [PASSED] res_missing_x
[21:41:04] [PASSED] res_missing_y
[21:41:04] [PASSED] res_bad_y
[21:41:04] [PASSED] res_missing_y_bpp
[21:41:04] [PASSED] res_bad_bpp
[21:41:04] [PASSED] res_bad_refresh
[21:41:04] [PASSED] res_bpp_refresh_force_on_off
[21:41:04] [PASSED] res_invalid_mode
[21:41:04] [PASSED] res_bpp_wrong_place_mode
[21:41:04] [PASSED] name_bpp_refresh
[21:41:04] [PASSED] name_refresh
[21:41:04] [PASSED] name_refresh_wrong_mode
[21:41:04] [PASSED] name_refresh_invalid_mode
[21:41:04] [PASSED] rotate_multiple
[21:41:04] [PASSED] rotate_invalid_val
[21:41:04] [PASSED] rotate_truncated
[21:41:04] [PASSED] invalid_option
[21:41:04] [PASSED] invalid_tv_option
[21:41:04] [PASSED] truncated_tv_option
[21:41:04] ============ [PASSED] drm_test_cmdline_invalid =============
[21:41:04] =============== drm_test_cmdline_tv_options ===============
[21:41:04] [PASSED] NTSC
[21:41:04] [PASSED] NTSC_443
[21:41:04] [PASSED] NTSC_J
[21:41:04] [PASSED] PAL
[21:41:04] [PASSED] PAL_M
[21:41:04] [PASSED] PAL_N
[21:41:04] [PASSED] SECAM
[21:41:04] [PASSED] MONO_525
[21:41:04] [PASSED] MONO_625
[21:41:04] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:41:04] =============== [PASSED] drm_cmdline_parser ================
[21:41:04] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:41:04] [PASSED] drm_test_connector_hdmi_init_valid
[21:41:04] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:41:04] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:41:04] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:41:04] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:41:04] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:41:04] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:41:04] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:41:04] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:41:04] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:41:04] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:41:04] [PASSED] supported_formats=0x5 yuv420_allowed=1
[21:41:04] [PASSED] supported_formats=0x5 yuv420_allowed=0
[21:41:04] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:41:04] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:41:04] [PASSED] drm_test_connector_hdmi_init_null_product
[21:41:04] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:41:04] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:41:04] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:41:04] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:41:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:41:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:41:04] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:41:04] ========= drm_test_connector_hdmi_init_type_valid =========
[21:41:04] [PASSED] HDMI-A
[21:41:04] [PASSED] HDMI-B
[21:41:04] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:41:04] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:41:04] [PASSED] Unknown
[21:41:04] [PASSED] VGA
[21:41:04] [PASSED] DVI-I
[21:41:04] [PASSED] DVI-D
[21:41:04] [PASSED] DVI-A
[21:41:04] [PASSED] Composite
[21:41:04] [PASSED] SVIDEO
[21:41:04] [PASSED] LVDS
[21:41:04] [PASSED] Component
[21:41:04] [PASSED] DIN
[21:41:04] [PASSED] DP
[21:41:04] [PASSED] TV
[21:41:04] [PASSED] eDP
[21:41:04] [PASSED] Virtual
[21:41:04] [PASSED] DSI
[21:41:04] [PASSED] DPI
[21:41:04] [PASSED] Writeback
[21:41:04] [PASSED] SPI
[21:41:04] [PASSED] USB
[21:41:04] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:41:04] ============ [PASSED] drmm_connector_hdmi_init =============
[21:41:04] ============= drmm_connector_init (3 subtests) =============
[21:41:04] [PASSED] drm_test_drmm_connector_init
[21:41:04] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:41:04] ========= drm_test_drmm_connector_init_type_valid =========
[21:41:04] [PASSED] Unknown
[21:41:04] [PASSED] VGA
[21:41:04] [PASSED] DVI-I
[21:41:04] [PASSED] DVI-D
[21:41:04] [PASSED] DVI-A
[21:41:04] [PASSED] Composite
[21:41:04] [PASSED] SVIDEO
[21:41:04] [PASSED] LVDS
[21:41:04] [PASSED] Component
[21:41:04] [PASSED] DIN
[21:41:04] [PASSED] DP
[21:41:04] [PASSED] HDMI-A
[21:41:04] [PASSED] HDMI-B
[21:41:04] [PASSED] TV
[21:41:04] [PASSED] eDP
[21:41:04] [PASSED] Virtual
[21:41:04] [PASSED] DSI
[21:41:04] [PASSED] DPI
[21:41:04] [PASSED] Writeback
[21:41:04] [PASSED] SPI
[21:41:04] [PASSED] USB
[21:41:04] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:41:04] =============== [PASSED] drmm_connector_init ===============
[21:41:04] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_init
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:41:04] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:41:04] [PASSED] Unknown
[21:41:04] [PASSED] VGA
[21:41:04] [PASSED] DVI-I
[21:41:04] [PASSED] DVI-D
[21:41:04] [PASSED] DVI-A
[21:41:04] [PASSED] Composite
[21:41:04] [PASSED] SVIDEO
[21:41:04] [PASSED] LVDS
[21:41:04] [PASSED] Component
[21:41:04] [PASSED] DIN
[21:41:04] [PASSED] DP
[21:41:04] [PASSED] HDMI-A
[21:41:04] [PASSED] HDMI-B
[21:41:04] [PASSED] TV
[21:41:04] [PASSED] eDP
[21:41:04] [PASSED] Virtual
[21:41:04] [PASSED] DSI
[21:41:04] [PASSED] DPI
[21:41:04] [PASSED] Writeback
[21:41:04] [PASSED] SPI
[21:41:04] [PASSED] USB
[21:41:04] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:41:04] ======== drm_test_drm_connector_dynamic_init_name =========
[21:41:04] [PASSED] Unknown
[21:41:04] [PASSED] VGA
[21:41:04] [PASSED] DVI-I
[21:41:04] [PASSED] DVI-D
[21:41:04] [PASSED] DVI-A
[21:41:04] [PASSED] Composite
[21:41:04] [PASSED] SVIDEO
[21:41:04] [PASSED] LVDS
[21:41:04] [PASSED] Component
[21:41:04] [PASSED] DIN
[21:41:04] [PASSED] DP
[21:41:04] [PASSED] HDMI-A
[21:41:04] [PASSED] HDMI-B
[21:41:04] [PASSED] TV
[21:41:04] [PASSED] eDP
[21:41:04] [PASSED] Virtual
[21:41:04] [PASSED] DSI
[21:41:04] [PASSED] DPI
[21:41:04] [PASSED] Writeback
[21:41:04] [PASSED] SPI
[21:41:04] [PASSED] USB
[21:41:04] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:41:04] =========== [PASSED] drm_connector_dynamic_init ============
[21:41:04] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:41:04] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:41:04] ======= drm_connector_dynamic_register (7 subtests) ========
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:41:04] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:41:04] ========= [PASSED] drm_connector_dynamic_register ==========
[21:41:04] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:41:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:41:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:41:04] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:41:04] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:41:04] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:41:04] [PASSED] NTSC
[21:41:04] [PASSED] NTSC-443
[21:41:04] [PASSED] NTSC-J
[21:41:04] [PASSED] PAL
[21:41:04] [PASSED] PAL-M
[21:41:04] [PASSED] PAL-N
[21:41:04] [PASSED] SECAM
[21:41:04] [PASSED] Mono
[21:41:04] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:41:04] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:41:04] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:41:04] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:41:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:41:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:41:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:41:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:41:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:41:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:41:04] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:41:04] [PASSED] VIC 96
[21:41:04] [PASSED] VIC 97
[21:41:04] [PASSED] VIC 101
[21:41:04] [PASSED] VIC 102
[21:41:04] [PASSED] VIC 106
[21:41:04] [PASSED] VIC 107
[21:41:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:41:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:41:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:41:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:41:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:41:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:41:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:41:04] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:41:04] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:41:04] [PASSED] Automatic
[21:41:04] [PASSED] Full
[21:41:04] [PASSED] Limited 16:235
[21:41:04] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:41:04] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:41:04] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:41:04] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:41:04] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:41:04] [PASSED] RGB
[21:41:04] [PASSED] YUV 4:2:0
[21:41:04] [PASSED] YUV 4:2:2
[21:41:04] [PASSED] YUV 4:4:4
[21:41:04] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:41:04] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:41:04] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:41:04] ============= drm_damage_helper (21 subtests) ==============
[21:41:04] [PASSED] drm_test_damage_iter_no_damage
[21:41:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:41:04] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:41:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:41:04] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:41:04] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:41:04] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:41:04] [PASSED] drm_test_damage_iter_simple_damage
[21:41:04] [PASSED] drm_test_damage_iter_single_damage
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:41:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:41:04] [PASSED] drm_test_damage_iter_damage
[21:41:04] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:41:04] [PASSED] drm_test_damage_iter_damage_one_outside
[21:41:04] [PASSED] drm_test_damage_iter_damage_src_moved
[21:41:04] [PASSED] drm_test_damage_iter_damage_not_visible
[21:41:04] ================ [PASSED] drm_damage_helper ================
[21:41:04] ============== drm_dp_mst_helper (3 subtests) ==============
[21:41:04] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:41:04] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:41:04] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:41:04] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:41:04] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:41:04] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:41:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:41:04] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:41:04] [PASSED] Link rate 2000000 lane count 4
[21:41:04] [PASSED] Link rate 2000000 lane count 2
[21:41:04] [PASSED] Link rate 2000000 lane count 1
[21:41:04] [PASSED] Link rate 1350000 lane count 4
[21:41:04] [PASSED] Link rate 1350000 lane count 2
[21:41:04] [PASSED] Link rate 1350000 lane count 1
[21:41:04] [PASSED] Link rate 1000000 lane count 4
[21:41:04] [PASSED] Link rate 1000000 lane count 2
[21:41:04] [PASSED] Link rate 1000000 lane count 1
[21:41:04] [PASSED] Link rate 810000 lane count 4
[21:41:04] [PASSED] Link rate 810000 lane count 2
[21:41:04] [PASSED] Link rate 810000 lane count 1
[21:41:04] [PASSED] Link rate 540000 lane count 4
[21:41:04] [PASSED] Link rate 540000 lane count 2
[21:41:04] [PASSED] Link rate 540000 lane count 1
[21:41:04] [PASSED] Link rate 270000 lane count 4
[21:41:04] [PASSED] Link rate 270000 lane count 2
[21:41:04] [PASSED] Link rate 270000 lane count 1
[21:41:04] [PASSED] Link rate 162000 lane count 4
[21:41:04] [PASSED] Link rate 162000 lane count 2
[21:41:04] [PASSED] Link rate 162000 lane count 1
[21:41:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:41:04] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:41:04] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:41:04] [PASSED] DP_POWER_UP_PHY with port number
[21:41:04] [PASSED] DP_POWER_DOWN_PHY with port number
[21:41:04] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:41:04] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:41:04] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:41:04] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:41:04] [PASSED] DP_QUERY_PAYLOAD with port number
[21:41:04] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:41:04] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:41:04] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:41:04] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:41:04] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:41:04] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:41:04] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:41:04] [PASSED] DP_REMOTE_I2C_READ with port number
[21:41:04] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:41:04] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:41:04] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:41:04] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:41:04] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:41:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:41:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:41:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:41:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:41:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:41:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:41:04] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:41:04] ================ [PASSED] drm_dp_mst_helper ================
[21:41:04] ================== drm_exec (7 subtests) ===================
[21:41:04] [PASSED] sanitycheck
[21:41:04] [PASSED] test_lock
[21:41:04] [PASSED] test_lock_unlock
[21:41:04] [PASSED] test_duplicates
[21:41:04] [PASSED] test_prepare
[21:41:04] [PASSED] test_prepare_array
[21:41:04] [PASSED] test_multiple_loops
[21:41:04] ==================== [PASSED] drm_exec =====================
[21:41:04] =========== drm_format_helper_test (17 subtests) ===========
[21:41:04] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:41:04] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:41:04] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:41:04] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:41:04] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:41:04] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:41:04] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:41:04] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:41:04] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:41:04] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:41:04] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:41:04] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:41:04] ==================== drm_test_fb_swab =====================
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ================ [PASSED] drm_test_fb_swab =================
[21:41:04] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:41:04] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:41:04] [PASSED] single_pixel_source_buffer
[21:41:04] [PASSED] single_pixel_clip_rectangle
[21:41:04] [PASSED] well_known_colors
[21:41:04] [PASSED] destination_pitch
[21:41:04] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:41:04] ================= drm_test_fb_clip_offset =================
[21:41:04] [PASSED] pass through
[21:41:04] [PASSED] horizontal offset
[21:41:04] [PASSED] vertical offset
[21:41:04] [PASSED] horizontal and vertical offset
[21:41:04] [PASSED] horizontal offset (custom pitch)
[21:41:04] [PASSED] vertical offset (custom pitch)
[21:41:04] [PASSED] horizontal and vertical offset (custom pitch)
[21:41:04] ============= [PASSED] drm_test_fb_clip_offset =============
[21:41:04] =================== drm_test_fb_memcpy ====================
[21:41:04] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:41:04] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:41:04] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:41:04] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:41:04] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:41:04] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:41:04] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:41:04] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:41:04] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:41:04] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:41:04] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:41:04] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:41:04] =============== [PASSED] drm_test_fb_memcpy ================
[21:41:04] ============= [PASSED] drm_format_helper_test ==============
[21:41:04] ================= drm_format (18 subtests) =================
[21:41:04] [PASSED] drm_test_format_block_width_invalid
[21:41:04] [PASSED] drm_test_format_block_width_one_plane
[21:41:04] [PASSED] drm_test_format_block_width_two_plane
[21:41:04] [PASSED] drm_test_format_block_width_three_plane
[21:41:04] [PASSED] drm_test_format_block_width_tiled
[21:41:04] [PASSED] drm_test_format_block_height_invalid
[21:41:04] [PASSED] drm_test_format_block_height_one_plane
[21:41:04] [PASSED] drm_test_format_block_height_two_plane
[21:41:04] [PASSED] drm_test_format_block_height_three_plane
[21:41:04] [PASSED] drm_test_format_block_height_tiled
[21:41:04] [PASSED] drm_test_format_min_pitch_invalid
[21:41:04] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:41:04] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:41:04] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:41:04] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:41:04] [PASSED] drm_test_format_min_pitch_two_plane
[21:41:04] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:41:04] [PASSED] drm_test_format_min_pitch_tiled
[21:41:04] =================== [PASSED] drm_format ====================
[21:41:04] ============== drm_framebuffer (10 subtests) ===============
[21:41:04] ========== drm_test_framebuffer_check_src_coords ==========
[21:41:04] [PASSED] Success: source fits into fb
[21:41:04] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:41:04] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:41:04] [PASSED] Fail: overflowing fb with source width
[21:41:04] [PASSED] Fail: overflowing fb with source height
[21:41:04] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:41:04] [PASSED] drm_test_framebuffer_cleanup
[21:41:04] =============== drm_test_framebuffer_create ===============
[21:41:04] [PASSED] ABGR8888 normal sizes
[21:41:04] [PASSED] ABGR8888 max sizes
[21:41:04] [PASSED] ABGR8888 pitch greater than min required
[21:41:04] [PASSED] ABGR8888 pitch less than min required
[21:41:04] [PASSED] ABGR8888 Invalid width
[21:41:04] [PASSED] ABGR8888 Invalid buffer handle
[21:41:04] [PASSED] No pixel format
[21:41:04] [PASSED] ABGR8888 Width 0
[21:41:04] [PASSED] ABGR8888 Height 0
[21:41:04] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:41:04] [PASSED] ABGR8888 Large buffer offset
[21:41:04] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:41:04] [PASSED] ABGR8888 Invalid flag
[21:41:04] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:41:04] [PASSED] ABGR8888 Valid buffer modifier
[21:41:04] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:41:04] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] NV12 Normal sizes
[21:41:04] [PASSED] NV12 Max sizes
[21:41:04] [PASSED] NV12 Invalid pitch
[21:41:04] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:41:04] [PASSED] NV12 different modifier per-plane
[21:41:04] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:41:04] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] NV12 Modifier for inexistent plane
[21:41:04] [PASSED] NV12 Handle for inexistent plane
[21:41:04] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:41:04] [PASSED] YVU420 Normal sizes
[21:41:04] [PASSED] YVU420 Max sizes
[21:41:04] [PASSED] YVU420 Invalid pitch
[21:41:04] [PASSED] YVU420 Different pitches
[21:41:04] [PASSED] YVU420 Different buffer offsets/pitches
[21:41:04] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:41:04] [PASSED] YVU420 Valid modifier
[21:41:04] [PASSED] YVU420 Different modifiers per plane
[21:41:04] [PASSED] YVU420 Modifier for inexistent plane
[21:41:04] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:41:04] [PASSED] X0L2 Normal sizes
[21:41:04] [PASSED] X0L2 Max sizes
[21:41:04] [PASSED] X0L2 Invalid pitch
[21:41:04] [PASSED] X0L2 Pitch greater than minimum required
[21:41:04] [PASSED] X0L2 Handle for inexistent plane
[21:41:04] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:41:04] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:41:04] [PASSED] X0L2 Valid modifier
[21:41:04] [PASSED] X0L2 Modifier for inexistent plane
[21:41:04] =========== [PASSED] drm_test_framebuffer_create ===========
[21:41:04] [PASSED] drm_test_framebuffer_free
[21:41:04] [PASSED] drm_test_framebuffer_init
[21:41:04] [PASSED] drm_test_framebuffer_init_bad_format
[21:41:04] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:41:04] [PASSED] drm_test_framebuffer_lookup
[21:41:04] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:41:04] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:41:04] ================= [PASSED] drm_framebuffer =================
[21:41:04] ================ drm_gem_shmem (8 subtests) ================
[21:41:04] [PASSED] drm_gem_shmem_test_obj_create
[21:41:04] [PASSED] drm_gem_shmem_test_obj_create_private
[21:41:04] [PASSED] drm_gem_shmem_test_pin_pages
[21:41:04] [PASSED] drm_gem_shmem_test_vmap
[21:41:04] [PASSED] drm_gem_shmem_test_get_sg_table
[21:41:04] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:41:04] [PASSED] drm_gem_shmem_test_madvise
[21:41:04] [PASSED] drm_gem_shmem_test_purge
[21:41:04] ================== [PASSED] drm_gem_shmem ==================
[21:41:04] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:41:04] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:41:04] [PASSED] Automatic
[21:41:04] [PASSED] Full
[21:41:04] [PASSED] Limited 16:235
[21:41:04] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:41:04] [PASSED] drm_test_check_disable_connector
[21:41:04] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:41:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:41:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:41:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:41:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:41:04] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:41:04] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:41:04] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:41:04] [PASSED] drm_test_check_output_bpc_dvi
[21:41:04] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:41:04] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:41:04] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:41:04] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:41:04] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:41:04] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:41:04] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:41:04] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:41:04] ============ drm_test_check_hdmi_color_format =============
[21:41:04] [PASSED] AUTO -> RGB
[21:41:04] [PASSED] YCBCR422 -> YUV422
[21:41:04] [PASSED] YCBCR420 -> YUV420
[21:41:04] [PASSED] YCBCR444 -> YUV444
[21:41:04] [PASSED] RGB -> RGB
[21:41:04] ======== [PASSED] drm_test_check_hdmi_color_format =========
[21:41:04] ======== drm_test_check_hdmi_color_format_420_only ========
[21:41:04] [PASSED] RGB should fail
[21:41:04] [PASSED] YUV444 should fail
[21:41:04] [PASSED] YUV422 should fail
[21:41:04] [PASSED] YUV420 should work
[21:41:04] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[21:41:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:41:04] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:41:04] [PASSED] drm_test_check_broadcast_rgb_value
[21:41:04] [PASSED] drm_test_check_bpc_8_value
[21:41:04] [PASSED] drm_test_check_bpc_10_value
[21:41:04] [PASSED] drm_test_check_bpc_12_value
[21:41:04] [PASSED] drm_test_check_format_value
[21:41:04] [PASSED] drm_test_check_tmds_char_value
[21:41:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:41:04] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[21:41:04] [PASSED] drm_test_check_mode_valid
[21:41:04] [PASSED] drm_test_check_mode_valid_reject
[21:41:04] [PASSED] drm_test_check_mode_valid_reject_rate
[21:41:04] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:41:04] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[21:41:04] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[21:41:04] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[21:41:04] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:41:04] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[21:41:04] [PASSED] drm_test_check_infoframes
[21:41:04] [PASSED] drm_test_check_reject_avi_infoframe
[21:41:04] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[21:41:04] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[21:41:04] [PASSED] drm_test_check_reject_audio_infoframe
[21:41:04] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[21:41:04] ================= drm_managed (2 subtests) =================
[21:41:04] [PASSED] drm_test_managed_release_action
[21:41:04] [PASSED] drm_test_managed_run_action
[21:41:04] =================== [PASSED] drm_managed ===================
[21:41:04] =================== drm_mm (6 subtests) ====================
[21:41:04] [PASSED] drm_test_mm_init
[21:41:04] [PASSED] drm_test_mm_debug
[21:41:04] [PASSED] drm_test_mm_align32
[21:41:04] [PASSED] drm_test_mm_align64
[21:41:04] [PASSED] drm_test_mm_lowest
[21:41:04] [PASSED] drm_test_mm_highest
[21:41:04] ===================== [PASSED] drm_mm ======================
[21:41:04] ============= drm_modes_analog_tv (5 subtests) =============
[21:41:04] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:41:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:41:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:41:04] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:41:04] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:41:04] =============== [PASSED] drm_modes_analog_tv ===============
[21:41:04] ============== drm_plane_helper (2 subtests) ===============
[21:41:04] =============== drm_test_check_plane_state ================
[21:41:04] [PASSED] clipping_simple
[21:41:04] [PASSED] clipping_rotate_reflect
[21:41:04] [PASSED] positioning_simple
[21:41:04] [PASSED] upscaling
[21:41:04] [PASSED] downscaling
[21:41:04] [PASSED] rounding1
[21:41:04] [PASSED] rounding2
[21:41:04] [PASSED] rounding3
[21:41:04] [PASSED] rounding4
[21:41:04] =========== [PASSED] drm_test_check_plane_state ============
[21:41:04] =========== drm_test_check_invalid_plane_state ============
[21:41:04] [PASSED] positioning_invalid
[21:41:04] [PASSED] upscaling_invalid
[21:41:04] [PASSED] downscaling_invalid
[21:41:04] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:41:04] ================ [PASSED] drm_plane_helper =================
[21:41:04] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:41:04] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:41:04] [PASSED] None
[21:41:04] [PASSED] PAL
[21:41:04] [PASSED] NTSC
[21:41:04] [PASSED] Both, NTSC Default
[21:41:04] [PASSED] Both, PAL Default
[21:41:04] [PASSED] Both, NTSC Default, with PAL on command-line
[21:41:04] [PASSED] Both, PAL Default, with NTSC on command-line
[21:41:04] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:41:04] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:41:04] ================== drm_rect (9 subtests) ===================
[21:41:04] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:41:04] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:41:04] [PASSED] drm_test_rect_clip_scaled_clipped
[21:41:04] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:41:04] ================= drm_test_rect_intersect =================
[21:41:04] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:41:04] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:41:04] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:41:04] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:41:04] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:41:04] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:41:04] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:41:04] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:41:04] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:41:04] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:41:04] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:41:04] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:41:04] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:41:04] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:41:04] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:41:04] ============= [PASSED] drm_test_rect_intersect =============
[21:41:04] ================ drm_test_rect_calc_hscale ================
[21:41:04] [PASSED] normal use
[21:41:04] [PASSED] out of max range
[21:41:04] [PASSED] out of min range
[21:41:04] [PASSED] zero dst
[21:41:04] [PASSED] negative src
[21:41:04] [PASSED] negative dst
[21:41:04] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:41:04] ================ drm_test_rect_calc_vscale ================
[21:41:04] [PASSED] normal use
[21:41:04] [PASSED] out of max range
[21:41:04] [PASSED] out of min range
[21:41:04] [PASSED] zero dst
[21:41:04] [PASSED] negative src
[21:41:04] [PASSED] negative dst
[21:41:04] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:41:04] ================== drm_test_rect_rotate ===================
[21:41:04] [PASSED] reflect-x
[21:41:04] [PASSED] reflect-y
[21:41:04] [PASSED] rotate-0
[21:41:04] [PASSED] rotate-90
[21:41:04] [PASSED] rotate-180
[21:41:04] [PASSED] rotate-270
[21:41:04] ============== [PASSED] drm_test_rect_rotate ===============
[21:41:04] ================ drm_test_rect_rotate_inv =================
[21:41:04] [PASSED] reflect-x
[21:41:04] [PASSED] reflect-y
[21:41:04] [PASSED] rotate-0
[21:41:04] [PASSED] rotate-90
[21:41:04] [PASSED] rotate-180
[21:41:04] [PASSED] rotate-270
[21:41:04] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:41:04] ==================== [PASSED] drm_rect =====================
[21:41:04] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:41:04] ============ drm_test_sysfb_build_fourcc_list =============
[21:41:04] [PASSED] no native formats
[21:41:04] [PASSED] XRGB8888 as native format
[21:41:04] [PASSED] remove duplicates
[21:41:04] [PASSED] convert alpha formats
[21:41:04] [PASSED] random formats
[21:41:04] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:41:04] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:41:04] ================== drm_fixp (2 subtests) ===================
[21:41:04] [PASSED] drm_test_int2fixp
[21:41:04] [PASSED] drm_test_sm2fixp
[21:41:04] ==================== [PASSED] drm_fixp =====================
[21:41:04] ============================================================
[21:41:04] Testing complete. Ran 641 tests: passed: 641
[21:41:04] Elapsed time: 26.847s total, 1.792s configuring, 24.840s building, 0.189s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:41:04] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:41:06] 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
[21:41:16] Starting KUnit Kernel (1/1)...
[21:41:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:41:16] ============= refcount_interrupt (4 subtests) ==============
[21:41:16] [PASSED] test_single_irq_change
[21:41:16] [PASSED] test_nested_irq_change
[21:41:16] [PASSED] test_multiple_irq_change
[21:41:16] [PASSED] test_irq_save
[21:41:16] =============== [PASSED] refcount_interrupt ================
[21:41:16] ================= ttm_device (5 subtests) ==================
[21:41:16] [PASSED] ttm_device_init_basic
[21:41:16] [PASSED] ttm_device_init_multiple
[21:41:16] [PASSED] ttm_device_fini_basic
[21:41:16] [PASSED] ttm_device_init_no_vma_man
[21:41:16] ================== ttm_device_init_pools ==================
[21:41:16] [PASSED] No DMA allocations, no DMA32 required
[21:41:16] [PASSED] DMA allocations, DMA32 required
[21:41:16] [PASSED] No DMA allocations, DMA32 required
[21:41:16] [PASSED] DMA allocations, no DMA32 required
[21:41:16] ============== [PASSED] ttm_device_init_pools ==============
[21:41:16] =================== [PASSED] ttm_device ====================
[21:41:16] ================== ttm_pool (8 subtests) ===================
[21:41:16] ================== ttm_pool_alloc_basic ===================
[21:41:16] [PASSED] One page
[21:41:16] [PASSED] More than one page
[21:41:16] [PASSED] Above the allocation limit
[21:41:16] [PASSED] One page, with coherent DMA mappings enabled
[21:41:16] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:41:16] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:41:16] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:41:16] [PASSED] One page
[21:41:16] [PASSED] More than one page
[21:41:16] [PASSED] Above the allocation limit
[21:41:16] [PASSED] One page, with coherent DMA mappings enabled
[21:41:16] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:41:16] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:41:16] [PASSED] ttm_pool_alloc_order_caching_match
[21:41:16] [PASSED] ttm_pool_alloc_caching_mismatch
[21:41:16] [PASSED] ttm_pool_alloc_order_mismatch
[21:41:16] [PASSED] ttm_pool_free_dma_alloc
[21:41:16] [PASSED] ttm_pool_free_no_dma_alloc
[21:41:16] [PASSED] ttm_pool_fini_basic
[21:41:16] ==================== [PASSED] ttm_pool =====================
[21:41:16] ================ ttm_resource (8 subtests) =================
[21:41:16] ================= ttm_resource_init_basic =================
[21:41:16] [PASSED] Init resource in TTM_PL_SYSTEM
[21:41:16] [PASSED] Init resource in TTM_PL_VRAM
[21:41:16] [PASSED] Init resource in a private placement
[21:41:16] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:41:16] ============= [PASSED] ttm_resource_init_basic =============
[21:41:16] [PASSED] ttm_resource_init_pinned
[21:41:16] [PASSED] ttm_resource_fini_basic
[21:41:16] [PASSED] ttm_resource_manager_init_basic
[21:41:16] [PASSED] ttm_resource_manager_usage_basic
[21:41:16] [PASSED] ttm_resource_manager_set_used_basic
[21:41:16] [PASSED] ttm_sys_man_alloc_basic
[21:41:16] [PASSED] ttm_sys_man_free_basic
[21:41:16] ================== [PASSED] ttm_resource ===================
[21:41:16] =================== ttm_tt (15 subtests) ===================
[21:41:16] ==================== ttm_tt_init_basic ====================
[21:41:16] [PASSED] Page-aligned size
[21:41:16] [PASSED] Extra pages requested
[21:41:16] ================ [PASSED] ttm_tt_init_basic ================
[21:41:16] [PASSED] ttm_tt_init_misaligned
[21:41:16] [PASSED] ttm_tt_fini_basic
[21:41:16] [PASSED] ttm_tt_fini_sg
[21:41:16] [PASSED] ttm_tt_fini_shmem
[21:41:16] [PASSED] ttm_tt_create_basic
[21:41:16] [PASSED] ttm_tt_create_invalid_bo_type
[21:41:16] [PASSED] ttm_tt_create_ttm_exists
[21:41:16] [PASSED] ttm_tt_create_failed
[21:41:16] [PASSED] ttm_tt_destroy_basic
[21:41:16] [PASSED] ttm_tt_populate_null_ttm
[21:41:16] [PASSED] ttm_tt_populate_populated_ttm
[21:41:16] [PASSED] ttm_tt_unpopulate_basic
[21:41:16] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:41:16] [PASSED] ttm_tt_swapin_basic
[21:41:16] ===================== [PASSED] ttm_tt ======================
[21:41:16] =================== ttm_bo (14 subtests) ===================
[21:41:16] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:41:16] [PASSED] Cannot be interrupted and sleeps
[21:41:16] [PASSED] Cannot be interrupted, locks straight away
[21:41:16] [PASSED] Can be interrupted, sleeps
[21:41:16] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:41:16] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:41:16] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:41:16] [PASSED] ttm_bo_reserve_double_resv
[21:41:16] [PASSED] ttm_bo_reserve_interrupted
[21:41:16] [PASSED] ttm_bo_reserve_deadlock
[21:41:16] [PASSED] ttm_bo_unreserve_basic
[21:41:16] [PASSED] ttm_bo_unreserve_pinned
[21:41:16] [PASSED] ttm_bo_unreserve_bulk
[21:41:16] [PASSED] ttm_bo_fini_basic
[21:41:16] [PASSED] ttm_bo_fini_shared_resv
[21:41:16] [PASSED] ttm_bo_pin_basic
[21:41:16] [PASSED] ttm_bo_pin_unpin_resource
[21:41:16] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:41:16] ===================== [PASSED] ttm_bo ======================
[21:41:16] ============== ttm_bo_validate (22 subtests) ===============
[21:41:16] ============== ttm_bo_init_reserved_sys_man ===============
[21:41:16] [PASSED] Buffer object for userspace
[21:41:16] [PASSED] Kernel buffer object
[21:41:16] [PASSED] Shared buffer object
[21:41:16] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:41:16] ============== ttm_bo_init_reserved_mock_man ==============
[21:41:16] [PASSED] Buffer object for userspace
[21:41:16] [PASSED] Kernel buffer object
[21:41:16] [PASSED] Shared buffer object
[21:41:16] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:41:16] [PASSED] ttm_bo_init_reserved_resv
[21:41:16] ================== ttm_bo_validate_basic ==================
[21:41:16] [PASSED] Buffer object for userspace
[21:41:16] [PASSED] Kernel buffer object
[21:41:16] [PASSED] Shared buffer object
[21:41:16] ============== [PASSED] ttm_bo_validate_basic ==============
[21:41:16] [PASSED] ttm_bo_validate_invalid_placement
[21:41:16] ============= ttm_bo_validate_same_placement ==============
[21:41:16] [PASSED] System manager
[21:41:16] [PASSED] VRAM manager
[21:41:16] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:41:16] [PASSED] ttm_bo_validate_failed_alloc
[21:41:16] [PASSED] ttm_bo_validate_pinned
[21:41:16] [PASSED] ttm_bo_validate_busy_placement
[21:41:16] ================ ttm_bo_validate_multihop =================
[21:41:16] [PASSED] Buffer object for userspace
[21:41:16] [PASSED] Kernel buffer object
[21:41:16] [PASSED] Shared buffer object
[21:41:16] ============ [PASSED] ttm_bo_validate_multihop =============
[21:41:16] ========== ttm_bo_validate_no_placement_signaled ==========
[21:41:16] [PASSED] Buffer object in system domain, no page vector
[21:41:16] [PASSED] Buffer object in system domain with an existing page vector
[21:41:16] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:41:16] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:41:16] [PASSED] Buffer object for userspace
[21:41:16] [PASSED] Kernel buffer object
[21:41:16] [PASSED] Shared buffer object
[21:41:16] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:41:16] [PASSED] ttm_bo_validate_move_fence_signaled
[21:41:16] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:41:16] [PASSED] Waits for GPU
[21:41:16] [PASSED] Tries to lock straight away
[21:41:16] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:41:16] [PASSED] ttm_bo_validate_swapout
[21:41:16] [PASSED] ttm_bo_validate_happy_evict
[21:41:16] [PASSED] ttm_bo_validate_all_pinned_evict
[21:41:16] [PASSED] ttm_bo_validate_allowed_only_evict
[21:41:16] [PASSED] ttm_bo_validate_deleted_evict
[21:41:16] [PASSED] ttm_bo_validate_busy_domain_evict
[21:41:16] [PASSED] ttm_bo_validate_evict_gutting
[21:41:16] [PASSED] ttm_bo_validate_recrusive_evict
[21:41:16] ================= [PASSED] ttm_bo_validate =================
[21:41:16] ============================================================
[21:41:16] Testing complete. Ran 106 tests: passed: 106
[21:41:16] Elapsed time: 11.985s total, 1.781s configuring, 9.989s building, 0.176s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[21:41:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:41:18] 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
[21:41:27] Starting KUnit Kernel (1/1)...
[21:41:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:41:27] ============= refcount_interrupt (4 subtests) ==============
[21:41:27] [PASSED] test_single_irq_change
[21:41:27] [PASSED] test_nested_irq_change
[21:41:27] [PASSED] test_multiple_irq_change
[21:41:27] [PASSED] test_irq_save
[21:41:27] =============== [PASSED] refcount_interrupt ================
[21:41:27] =============== dma-buf-fence (12 subtests) ================
[21:41:27] [PASSED] test_sanitycheck
[21:41:27] [PASSED] test_signaling
[21:41:27] [PASSED] test_add_callback
[21:41:27] [PASSED] test_late_add_callback
[21:41:27] [PASSED] test_rm_callback
[21:41:27] [PASSED] test_late_rm_callback
[21:41:27] [PASSED] test_status
[21:41:27] [PASSED] test_error
[21:41:27] [PASSED] test_wait
[21:41:27] [PASSED] test_wait_timeout
[21:41:27] [PASSED] test_stub
[21:41:27] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[21:41:27] ================== [PASSED] dma-buf-fence ==================
[21:41:27] ============ dma-buf-fence-chain (11 subtests) =============
[21:41:27] [PASSED] test_sanitycheck
[21:41:27] [PASSED] test_find_seqno
[21:41:27] [PASSED] test_find_signaled
[21:41:27] [PASSED] test_find_out_of_order
[21:41:32] [PASSED] test_find_gap
[21:41:32] [PASSED] test_find_race
[21:41:32] [PASSED] test_signal_forward
[21:41:32] [PASSED] test_signal_backward
[21:41:32] [PASSED] test_wait_forward
[21:41:32] [PASSED] test_wait_backward
[21:41:32] [PASSED] test_wait_random
[21:41:32] =============== [PASSED] dma-buf-fence-chain ===============
[21:41:32] ============ dma-buf-fence-unwrap (10 subtests) ============
[21:41:32] [PASSED] test_sanitycheck
[21:41:32] [PASSED] test_unwrap_array
[21:41:32] [PASSED] test_unwrap_chain
[21:41:32] [PASSED] test_unwrap_chain_array
[21:41:32] [PASSED] test_unwrap_merge
[21:41:32] [PASSED] test_unwrap_merge_duplicate
[21:41:32] [PASSED] test_unwrap_merge_seqno
[21:41:32] [PASSED] test_unwrap_merge_order
[21:41:32] [PASSED] test_unwrap_merge_complex
[21:41:32] [PASSED] test_unwrap_merge_complex_seqno
[21:41:32] ============== [PASSED] dma-buf-fence-unwrap ===============
[21:41:32] ================ dma-buf-resv (5 subtests) =================
[21:41:32] [PASSED] test_sanitycheck
[21:41:32] ===================== test_signaling ======================
[21:41:32] [PASSED] kernel
[21:41:32] [PASSED] write
[21:41:32] [PASSED] read
[21:41:32] [PASSED] bookkeep
[21:41:32] ================= [PASSED] test_signaling ==================
[21:41:32] ====================== test_for_each ======================
[21:41:32] [PASSED] kernel
[21:41:32] [PASSED] write
[21:41:32] [PASSED] read
[21:41:32] [PASSED] bookkeep
[21:41:32] ================== [PASSED] test_for_each ==================
[21:41:32] ================= test_for_each_unlocked ==================
[21:41:32] [PASSED] kernel
[21:41:32] [PASSED] write
[21:41:32] [PASSED] read
[21:41:32] [PASSED] bookkeep
[21:41:32] ============= [PASSED] test_for_each_unlocked ==============
[21:41:32] ===================== test_get_fences =====================
[21:41:32] [PASSED] kernel
[21:41:32] [PASSED] write
[21:41:32] [PASSED] read
[21:41:32] [PASSED] bookkeep
[21:41:32] ================= [PASSED] test_get_fences =================
[21:41:32] ================== [PASSED] dma-buf-resv ===================
[21:41:32] ============================================================
[21:41:32] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[21:41:32] Elapsed time: 15.796s total, 1.823s configuring, 8.650s building, 5.273s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
2026-09-10 21:28 ` [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3 Vinay Belgaumkar
2026-09-10 21:41 ` ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness Patchwork
@ 2026-09-10 21:45 ` sashiko-bot
2026-09-10 21:53 ` Belgaumkar, Vinay
2026-09-10 22:17 ` Rodrigo Vivi
` (2 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: sashiko-bot @ 2026-09-10 21:45 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] The runtime PM autosuspend retry mechanism is broken, causing unconditional suspension even when forcewake bits are set.
--
commit 87cc16a66c9eb41f1b093edd9b83a3cac1ad67b5
Author: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
drm/xe: Inspect all forcewake bits for runtime idleness
This commit adds checks for all GT force wake bits in the idle check
for runtime suspend to avoid suspending while the GT is kept awake.
It also adds a call to pm_runtime_autosuspend() inside the idle check
to ensure a PM subsystem retry at a later time.
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 1e04e8ef2611f..278cfd390364c 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
[ ... ]
> @@ -1437,10 +1437,14 @@ static int xe_pci_runtime_idle(struct device *dev)
> {
> struct pci_dev *pdev = to_pci_dev(dev);
> struct xe_device *xe = pdev_to_xe_device(pdev);
> + int ret;
>
> xe_pm_d3cold_allowed_toggle(xe);
>
> - return 0;
> + ret = xe_pm_check_runtime_idle(xe);
> + pm_runtime_autosuspend(dev);
[Severity: High]
Does this cause an immediate suspension rather than a delayed retry?
When xe_pm_check_runtime_idle() detects forcewake bits and returns -EBUSY,
pm_runtime_autosuspend() is called to queue a retry. However, because
pm_runtime_mark_last_busy() is not called to update the timestamp, the PM
core calculates that the autosuspend timer is already expired.
This causes rpm_suspend() to execute immediately. Since the
xe_pci_runtime_suspend() callback does not re-check idleness, the device
appears to unconditionally suspend while forcewake bits are still active.
> +
> + return ret;
> }
>
> static const struct dev_pm_ops xe_pm_ops = {
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260910212823.2358362-1-vinay.belgaumkar@intel.com?part=1
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 21:45 ` [PATCH v2 1/2] " sashiko-bot
@ 2026-09-10 21:53 ` Belgaumkar, Vinay
0 siblings, 0 replies; 13+ messages in thread
From: Belgaumkar, Vinay @ 2026-09-10 21:53 UTC (permalink / raw)
To: sashiko-reviews; +Cc: intel-xe
On 9/10/2026 2:45 PM, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> - [High] The runtime PM autosuspend retry mechanism is broken, causing unconditional suspension even when forcewake bits are set.
> --
>
> commit 87cc16a66c9eb41f1b093edd9b83a3cac1ad67b5
> Author: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> drm/xe: Inspect all forcewake bits for runtime idleness
>
> This commit adds checks for all GT force wake bits in the idle check
> for runtime suspend to avoid suspending while the GT is kept awake.
> It also adds a call to pm_runtime_autosuspend() inside the idle check
> to ensure a PM subsystem retry at a later time.
>
>> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
>> index 1e04e8ef2611f..278cfd390364c 100644
>> --- a/drivers/gpu/drm/xe/xe_pci.c
>> +++ b/drivers/gpu/drm/xe/xe_pci.c
> [ ... ]
>
>> @@ -1437,10 +1437,14 @@ static int xe_pci_runtime_idle(struct device *dev)
>> {
>> struct pci_dev *pdev = to_pci_dev(dev);
>> struct xe_device *xe = pdev_to_xe_device(pdev);
>> + int ret;
>>
>> xe_pm_d3cold_allowed_toggle(xe);
>>
>> - return 0;
>> + ret = xe_pm_check_runtime_idle(xe);
>> + pm_runtime_autosuspend(dev);
> [Severity: High]
> Does this cause an immediate suspension rather than a delayed retry?
>
> When xe_pm_check_runtime_idle() detects forcewake bits and returns -EBUSY,
> pm_runtime_autosuspend() is called to queue a retry. However, because
> pm_runtime_mark_last_busy() is not called to update the timestamp, the PM
> core calculates that the autosuspend timer is already expired.
pm_runtime_autosuspend() does call pm_runtime_mark_last_busy() internally. So, the timer should get updated accordingly.
Thanks,
Vinay.
>
> This causes rpm_suspend() to execute immediately. Since the
> xe_pci_runtime_suspend() callback does not re-check idleness, the device
> appears to unconditionally suspend while forcewake bits are still active.
>
>> +
>> + return ret;
>> }
>>
>> static const struct dev_pm_ops xe_pm_ops = {
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
` (2 preceding siblings ...)
2026-09-10 21:45 ` [PATCH v2 1/2] " sashiko-bot
@ 2026-09-10 22:17 ` Rodrigo Vivi
2026-09-10 23:00 ` Belgaumkar, Vinay
2026-09-10 22:35 ` ✓ Xe.CI.BAT: success for series starting with [v2,1/2] " Patchwork
2026-09-11 7:03 ` ✗ Xe.CI.FULL: failure " Patchwork
5 siblings, 1 reply; 13+ messages in thread
From: Rodrigo Vivi @ 2026-09-10 22:17 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-xe, Badal Nilawar
On Thu, Sep 10, 2026 at 02:28:22PM -0700, Vinay Belgaumkar wrote:
> Inspect all GT force wake bits in the idle check for runtime suspend.
> This includes the ones not typically used by Xe KMD as well. Skip suspend
> when any of these bits are set, since it could mean someone is trying to
> keep the GT awake.
>
> Also add a call to pm_runtime_autosuspend() inside the idle check. This
> ensures a PM subsystem retry at a later time.
>
> v2: Only check the GT domain FW register. Other domains require a GT force
> wake applied before we can read their registers. Retry if idleness check
> fails (Sashiko)
>
> Cc: Badal Nilawar <badal.nilawar@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Assisted-by: Claude:Claude-Sonnet-5
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> ---
> drivers/gpu/drm/xe/xe_force_wake.c | 25 +++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_force_wake.h | 1 +
> drivers/gpu/drm/xe/xe_pci.c | 6 +++++-
> drivers/gpu/drm/xe/xe_pm.c | 19 +++++++++++++++++++
> drivers/gpu/drm/xe/xe_pm.h | 1 +
> 5 files changed, 51 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_force_wake.c b/drivers/gpu/drm/xe/xe_force_wake.c
> index 197e2197bd0a..0acb796c756c 100644
> --- a/drivers/gpu/drm/xe/xe_force_wake.c
> +++ b/drivers/gpu/drm/xe/xe_force_wake.c
> @@ -148,6 +148,31 @@ static int domain_sleep_wait(struct xe_gt *gt,
> return __domain_wait(gt, domain, false);
> }
>
> +/**
> + * xe_force_wake_any_bit_set - Return true if any force wake bit is set
> + * @fw: struct xe_force_wake
> + * @id: Force wake domain id
> + *
> + * Check if any multithread force wake bit is set for a given domain ID.
> + *
> + * Return: true if any bit in the force wake reg is set
> + */
> +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id)
> +{
> + struct xe_gt *gt = fw->gt;
> + struct xe_force_wake_domain *domain = &fw->domains[id];
> + u32 val;
> +
> + val = xe_mmio_read32(>->mmio, domain->reg_ctl);
> + if (val & 0xFFFF) {
> + xe_gt_dbg(gt, "FW bit set in domain: %d, reg: 0x%x, val: 0x%x",
> + domain->id, domain->reg_ctl.addr, val);
> + return true;
> + }
> +
> + return false;
> +}
> +
> /**
> * xe_force_wake_get() : Increase the domain refcount
> * @fw: struct xe_force_wake
> diff --git a/drivers/gpu/drm/xe/xe_force_wake.h b/drivers/gpu/drm/xe/xe_force_wake.h
> index e2721f205d6c..53941e5a0fbe 100644
> --- a/drivers/gpu/drm/xe/xe_force_wake.h
> +++ b/drivers/gpu/drm/xe/xe_force_wake.h
> @@ -18,6 +18,7 @@ void xe_force_wake_init_engines(struct xe_gt *gt,
> unsigned int __must_check xe_force_wake_get(struct xe_force_wake *fw,
> enum xe_force_wake_domains domains);
> void xe_force_wake_put(struct xe_force_wake *fw, unsigned int fw_ref);
> +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id);
>
> const char *xe_force_wake_domain_to_str(enum xe_force_wake_domain_id id);
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index ab4da1d9a9f1..a79d928ad75a 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -1438,10 +1438,14 @@ static int xe_pci_runtime_idle(struct device *dev)
> {
> struct pci_dev *pdev = to_pci_dev(dev);
> struct xe_device *xe = pdev_to_xe_device(pdev);
> + int ret;
>
> xe_pm_d3cold_allowed_toggle(xe);
>
> - return 0;
> + ret = xe_pm_check_runtime_idle(xe);
> + pm_runtime_autosuspend(dev);
do we really need this autosuspend here?
I believe this is what may have confused Sashiko.
And if needed it probably worth a separate patch with explanation.
> +
> + return ret;
> }
>
> static const struct dev_pm_ops xe_pm_ops = {
> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> index f517bf453b54..e8d4cdbaef88 100644
> --- a/drivers/gpu/drm/xe/xe_pm.c
> +++ b/drivers/gpu/drm/xe/xe_pm.c
> @@ -17,6 +17,8 @@
> #include "xe_bo.h"
> #include "xe_bo_evict.h"
> #include "xe_device.h"
> +#include "xe_force_wake.h"
> +#include "xe_force_wake_types.h"
> #include "xe_ggtt.h"
> #include "xe_gt.h"
> #include "xe_gt_idle.h"
> @@ -1030,6 +1032,23 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
> mutex_unlock(&xe->d3cold.lock);
> }
>
> +/**
> + * xe_pm_check_runtime_idle() - Perform checks before signaling runtime idle.
> + *
> + * Return: 0 on success, non-zero on finding device not idle
> + */
> +int xe_pm_check_runtime_idle(struct xe_device *xe)
> +{
> + struct xe_gt *gt;
> + u8 id;
> +
> + for_each_gt(gt, xe, id)
> + if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
> + return -EBUSY;
> +
> + return 0;
> +}
> +
> /**
> * xe_pm_module_init() - Perform xe_pm specific module initialization.
> *
> diff --git a/drivers/gpu/drm/xe/xe_pm.h b/drivers/gpu/drm/xe/xe_pm.h
> index 6d5ab09cb769..d1f6a694b7c4 100644
> --- a/drivers/gpu/drm/xe/xe_pm.h
> +++ b/drivers/gpu/drm/xe/xe_pm.h
> @@ -38,6 +38,7 @@ struct task_struct *xe_pm_read_callback_task(struct xe_device *xe);
> int xe_pm_block_on_suspend(struct xe_device *xe);
> void xe_pm_might_block_on_suspend(void);
> int xe_pm_module_init(void);
> +int xe_pm_check_runtime_idle(struct xe_device *xe);
>
> static inline void __xe_pm_runtime_noop(struct xe_device *xe) {}
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3
2026-09-10 21:28 ` [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3 Vinay Belgaumkar
2026-09-10 21:41 ` sashiko-bot
@ 2026-09-10 22:23 ` Rodrigo Vivi
1 sibling, 0 replies; 13+ messages in thread
From: Rodrigo Vivi @ 2026-09-10 22:23 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-xe, Badal Nilawar
On Thu, Sep 10, 2026 at 02:28:23PM -0700, Vinay Belgaumkar wrote:
> Check if GTs are in C6 before transitioning to D3. PM subsystem can
> retry if this is not the case. This ensures some component is not
> accessing the GT when D3 state is forced. This check can be added
> to the runtime idle check since it helps to check for pending
> forcewakes as well before we poll for GT C6.
>
> v2: Force resume when we cancel suspend due to C6 check (Sashiko)
>
> Cc: Badal Nilawar <badal.nilawar@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_idle.c | 37 +++++++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_gt_idle.h | 1 +
> drivers/gpu/drm/xe/xe_pci.c | 9 ++++++++
> drivers/gpu/drm/xe/xe_pm.c | 4 ++++
> 4 files changed, 51 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_idle.c b/drivers/gpu/drm/xe/xe_gt_idle.c
> index c208d7563e36..e077f9a13473 100644
> --- a/drivers/gpu/drm/xe/xe_gt_idle.c
> +++ b/drivers/gpu/drm/xe/xe_gt_idle.c
> @@ -8,10 +8,12 @@
> #include <drm/drm_managed.h>
>
> #include <generated/xe_wa_oob.h>
> +#include <linux/iopoll.h>
> #include "xe_force_wake.h"
> #include "xe_device.h"
> #include "xe_gt.h"
> #include "xe_gt_idle.h"
> +#include "xe_gt_printk.h"
> #include "xe_gt_sysfs.h"
> #include "xe_guc_pc.h"
> #include "regs/xe_gt_regs.h"
> @@ -451,3 +453,38 @@ int xe_gt_idle_disable_c6(struct xe_gt *gt)
>
> return 0;
> }
> +
> +static int wait_for_gt_c6_state(struct xe_gt *gt,
> + u16 timeout_ms)
> +{
> + struct xe_guc_pc *pc = >->uc.guc.pc;
> + enum xe_gt_idle_state state;
> +
> + return poll_timeout_us(state = gt->gtidle.idle_status(pc),
> + state == GT_IDLE_C6,
> + 20,
> + timeout_ms * USEC_PER_MSEC,
> + false);
> +}
> +
> +/**
> + * xe_gt_idle_wait_for_c6 - Poll for GT C6
> + * @gt: GT object
> + * @timeout_ms: wait time in ms
> + *
> + * This function polls for GT C6 state
> + *
> + * Return: 0 on success, -EAGAIN otherwise
> + */
> +int xe_gt_idle_wait_for_c6(struct xe_gt *gt, u16 timeout_ms)
> +{
> + if (IS_SRIOV_VF(gt_to_xe(gt)))
> + return 0;
> +
> + if (wait_for_gt_c6_state(gt, timeout_ms)) {
> + xe_gt_dbg(gt, "GT is not in C6\n");
> + return -EAGAIN;
> + }
> +
> + return 0;
> +}
> diff --git a/drivers/gpu/drm/xe/xe_gt_idle.h b/drivers/gpu/drm/xe/xe_gt_idle.h
> index 9c34a155e102..74d6bd167fab 100644
> --- a/drivers/gpu/drm/xe/xe_gt_idle.h
> +++ b/drivers/gpu/drm/xe/xe_gt_idle.h
> @@ -18,5 +18,6 @@ void xe_gt_idle_enable_pg(struct xe_gt *gt);
> void xe_gt_idle_disable_pg(struct xe_gt *gt);
> int xe_gt_idle_pg_print(struct xe_gt *gt, struct drm_printer *p);
> u64 xe_gt_idle_residency_msec(struct xe_gt_idle *gtidle);
> +int xe_gt_idle_wait_for_c6(struct xe_gt *gt, u16 timeout_ms);
>
> #endif /* _XE_GT_IDLE_H_ */
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index a79d928ad75a..ca7898cce2aa 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -1343,6 +1343,15 @@ static int xe_pci_suspend(struct device *dev)
> */
> d3cold_toggle(pdev, D3COLD_ENABLE);
>
> + err = xe_pm_check_runtime_idle(xe);
I don't like the _idle inside the _suspend...
This can get messed really quickly.
Le'ts only do the wait in here, but keep the _idle only
checking for the fw bits...
> + if (err) {
> + err = xe_pm_runtime_resume(xe);
> + if (err) {
> + drm_err(&xe->drm, "Resume failed after suspend was canceled");
> + return err;
> + }
> + }
> +
> pci_save_state(pdev);
> pci_disable_device(pdev);
> pci_set_power_state(pdev, PCI_D3cold);
> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> index e8d4cdbaef88..04529a242998 100644
> --- a/drivers/gpu/drm/xe/xe_pm.c
> +++ b/drivers/gpu/drm/xe/xe_pm.c
> @@ -1046,6 +1046,10 @@ int xe_pm_check_runtime_idle(struct xe_device *xe)
> if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
> return -EBUSY;
>
> + for_each_gt(gt, xe, id)
> + if (xe_gt_idle_wait_for_c6(gt, 200))
> + return -EAGAIN;
> +
> return 0;
> }
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
` (3 preceding siblings ...)
2026-09-10 22:17 ` Rodrigo Vivi
@ 2026-09-10 22:35 ` Patchwork
2026-09-11 7:03 ` ✗ Xe.CI.FULL: failure " Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-10 22:35 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1443 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness
URL : https://patchwork.freedesktop.org/series/173816/
State : success
== Summary ==
CI Bug Log - changes from xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974_BAT -> xe-pw-173816v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (15 -> 15)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-173816v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@reltime:
- bat-ptl-2: [PASS][1] -> [FAIL][2] ([Intel XE#9115])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/bat-ptl-2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/bat-ptl-2/igt@xe_waitfence@reltime.html
[Intel XE#9115]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9115
Build changes
-------------
* Linux: xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974 -> xe-pw-173816v1
IGT_9090: 9090
xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974: da9c5bc444c1057d8d59ca6fe1de87e39dbad974
xe-pw-173816v1: 173816v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/index.html
[-- Attachment #2: Type: text/html, Size: 2008 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 22:17 ` Rodrigo Vivi
@ 2026-09-10 23:00 ` Belgaumkar, Vinay
2026-09-11 21:58 ` Rodrigo Vivi
0 siblings, 1 reply; 13+ messages in thread
From: Belgaumkar, Vinay @ 2026-09-10 23:00 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, Badal Nilawar
On 9/10/2026 3:17 PM, Rodrigo Vivi wrote:
> On Thu, Sep 10, 2026 at 02:28:22PM -0700, Vinay Belgaumkar wrote:
>> Inspect all GT force wake bits in the idle check for runtime suspend.
>> This includes the ones not typically used by Xe KMD as well. Skip suspend
>> when any of these bits are set, since it could mean someone is trying to
>> keep the GT awake.
>>
>> Also add a call to pm_runtime_autosuspend() inside the idle check. This
>> ensures a PM subsystem retry at a later time.
>>
>> v2: Only check the GT domain FW register. Other domains require a GT force
>> wake applied before we can read their registers. Retry if idleness check
>> fails (Sashiko)
>>
>> Cc: Badal Nilawar <badal.nilawar@intel.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> Assisted-by: Claude:Claude-Sonnet-5
>> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_force_wake.c | 25 +++++++++++++++++++++++++
>> drivers/gpu/drm/xe/xe_force_wake.h | 1 +
>> drivers/gpu/drm/xe/xe_pci.c | 6 +++++-
>> drivers/gpu/drm/xe/xe_pm.c | 19 +++++++++++++++++++
>> drivers/gpu/drm/xe/xe_pm.h | 1 +
>> 5 files changed, 51 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_force_wake.c b/drivers/gpu/drm/xe/xe_force_wake.c
>> index 197e2197bd0a..0acb796c756c 100644
>> --- a/drivers/gpu/drm/xe/xe_force_wake.c
>> +++ b/drivers/gpu/drm/xe/xe_force_wake.c
>> @@ -148,6 +148,31 @@ static int domain_sleep_wait(struct xe_gt *gt,
>> return __domain_wait(gt, domain, false);
>> }
>>
>> +/**
>> + * xe_force_wake_any_bit_set - Return true if any force wake bit is set
>> + * @fw: struct xe_force_wake
>> + * @id: Force wake domain id
>> + *
>> + * Check if any multithread force wake bit is set for a given domain ID.
>> + *
>> + * Return: true if any bit in the force wake reg is set
>> + */
>> +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id)
>> +{
>> + struct xe_gt *gt = fw->gt;
>> + struct xe_force_wake_domain *domain = &fw->domains[id];
>> + u32 val;
>> +
>> + val = xe_mmio_read32(>->mmio, domain->reg_ctl);
>> + if (val & 0xFFFF) {
>> + xe_gt_dbg(gt, "FW bit set in domain: %d, reg: 0x%x, val: 0x%x",
>> + domain->id, domain->reg_ctl.addr, val);
>> + return true;
>> + }
>> +
>> + return false;
>> +}
>> +
>> /**
>> * xe_force_wake_get() : Increase the domain refcount
>> * @fw: struct xe_force_wake
>> diff --git a/drivers/gpu/drm/xe/xe_force_wake.h b/drivers/gpu/drm/xe/xe_force_wake.h
>> index e2721f205d6c..53941e5a0fbe 100644
>> --- a/drivers/gpu/drm/xe/xe_force_wake.h
>> +++ b/drivers/gpu/drm/xe/xe_force_wake.h
>> @@ -18,6 +18,7 @@ void xe_force_wake_init_engines(struct xe_gt *gt,
>> unsigned int __must_check xe_force_wake_get(struct xe_force_wake *fw,
>> enum xe_force_wake_domains domains);
>> void xe_force_wake_put(struct xe_force_wake *fw, unsigned int fw_ref);
>> +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id);
>>
>> const char *xe_force_wake_domain_to_str(enum xe_force_wake_domain_id id);
>>
>> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
>> index ab4da1d9a9f1..a79d928ad75a 100644
>> --- a/drivers/gpu/drm/xe/xe_pci.c
>> +++ b/drivers/gpu/drm/xe/xe_pci.c
>> @@ -1438,10 +1438,14 @@ static int xe_pci_runtime_idle(struct device *dev)
>> {
>> struct pci_dev *pdev = to_pci_dev(dev);
>> struct xe_device *xe = pdev_to_xe_device(pdev);
>> + int ret;
>>
>> xe_pm_d3cold_allowed_toggle(xe);
>>
>> - return 0;
>> + ret = xe_pm_check_runtime_idle(xe);
>> + pm_runtime_autosuspend(dev);
> do we really need this autosuspend here?
> I believe this is what may have confused Sashiko.
> And if needed it probably worth a separate patch with explanation.
It was Sashiko's suggestion :). If we fail runtime_idle check due to
someone holding a forcewake, there is no mechanism to re-trigger the
autosuspend when they release the forcewake. I believe it is only
retriggered on a pm_ref put(). So, system will be stuck in D0 state even
after the forcewake has been released (until some execution happens and
a pm_ref count goes to zero again). We only need the autosuspend when
the check fails, so should be part of the same patch? I added it to both
paths since it is a noop in the case where we succeed in the idle check
(as it returns 0 to the PM subsystem).
Thanks,
Vinay.
>
>> +
>> + return ret;
>> }
>>
>> static const struct dev_pm_ops xe_pm_ops = {
>> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
>> index f517bf453b54..e8d4cdbaef88 100644
>> --- a/drivers/gpu/drm/xe/xe_pm.c
>> +++ b/drivers/gpu/drm/xe/xe_pm.c
>> @@ -17,6 +17,8 @@
>> #include "xe_bo.h"
>> #include "xe_bo_evict.h"
>> #include "xe_device.h"
>> +#include "xe_force_wake.h"
>> +#include "xe_force_wake_types.h"
>> #include "xe_ggtt.h"
>> #include "xe_gt.h"
>> #include "xe_gt_idle.h"
>> @@ -1030,6 +1032,23 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
>> mutex_unlock(&xe->d3cold.lock);
>> }
>>
>> +/**
>> + * xe_pm_check_runtime_idle() - Perform checks before signaling runtime idle.
>> + *
>> + * Return: 0 on success, non-zero on finding device not idle
>> + */
>> +int xe_pm_check_runtime_idle(struct xe_device *xe)
>> +{
>> + struct xe_gt *gt;
>> + u8 id;
>> +
>> + for_each_gt(gt, xe, id)
>> + if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
>> + return -EBUSY;
>> +
>> + return 0;
>> +}
>> +
>> /**
>> * xe_pm_module_init() - Perform xe_pm specific module initialization.
>> *
>> diff --git a/drivers/gpu/drm/xe/xe_pm.h b/drivers/gpu/drm/xe/xe_pm.h
>> index 6d5ab09cb769..d1f6a694b7c4 100644
>> --- a/drivers/gpu/drm/xe/xe_pm.h
>> +++ b/drivers/gpu/drm/xe/xe_pm.h
>> @@ -38,6 +38,7 @@ struct task_struct *xe_pm_read_callback_task(struct xe_device *xe);
>> int xe_pm_block_on_suspend(struct xe_device *xe);
>> void xe_pm_might_block_on_suspend(void);
>> int xe_pm_module_init(void);
>> +int xe_pm_check_runtime_idle(struct xe_device *xe);
>>
>> static inline void __xe_pm_runtime_noop(struct xe_device *xe) {}
>>
>> --
>> 2.38.1
>>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
` (4 preceding siblings ...)
2026-09-10 22:35 ` ✓ Xe.CI.BAT: success for series starting with [v2,1/2] " Patchwork
@ 2026-09-11 7:03 ` Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-11 7:03 UTC (permalink / raw)
To: Belgaumkar, Vinay; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 56907 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness
URL : https://patchwork.freedesktop.org/series/173816/
State : failure
== Summary ==
CI Bug Log - changes from xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974_FULL -> xe-pw-173816v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-173816v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-173816v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-173816v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-lnl: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-lnl-8/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
Known issues
------------
Here are the changes found in xe-pw-173816v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][3] -> [ABORT][4] ([Intel XE#8007])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-6/igt@core_hotunplug@hotreplug.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-1/igt@core_hotunplug@hotreplug.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658] / [Intel XE#7360])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#7059] / [Intel XE#7085])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1477] / [Intel XE#7361])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1428] / [Intel XE#7387])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#7679])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#367]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3432])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +14 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#7008])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325] / [Intel XE#7358])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#306] / [Intel XE#7358]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#7358])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7642]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6974]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6974])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321] / [Intel XE#7355])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1424]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#309] / [Intel XE#7343]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#7809])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2286] / [Intel XE#6035])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#4354] / [Intel XE#7450])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#9009])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#8265])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#8265]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#4422] / [Intel XE#7442])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8680])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2374] / [Intel XE#6127])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][43] -> [FAIL][44] ([Intel XE#3321]) +2 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7349])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7179]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#352]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312] / [Intel XE#651]) +13 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4141]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#656] / [Intel XE#7905]) +37 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1469] / [Intel XE#7399])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2311]) +18 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#6312]) +12 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7061]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7905]) +42 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7399])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7061]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2313]) +18 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7865]) +25 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3374] / [Intel XE#3544])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1503])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4298] / [Intel XE#5873])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6900] / [Intel XE#7362])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7173] / [Intel XE#7294])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#7283]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#8303]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7283]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4596] / [Intel XE#5854])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#5020] / [Intel XE#7348])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2763] / [Intel XE#6886]) +11 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6813])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4608]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#4608] / [Intel XE#7304]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1489]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1128] / [Intel XE#7413])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#7345])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1406]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1435] / [Intel XE#9142])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#330] / [Intel XE#5857])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1499])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1091] / [Intel XE#2849])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#6599])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_compute@eu-busy-10s.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#6540] / [Intel XE#688]) +10 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_exec_balancer@once-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7482]) +19 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_exec_balancer@once-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1392]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_fault_mode@atomic-many:
- shard-bmg: [PASS][101] -> [FAIL][102] ([Intel XE#8578])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-3/igt@xe_exec_fault_mode@atomic-many.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#8374]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#8374]) +15 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#8364]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@one-queue-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#8364]) +28 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_exec_multi_queue@one-queue-close-fd-smem.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#8369]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#8378]) +7 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#8378]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race.html
* igt@xe_madvise@atomic-device:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#7980])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@xe_madvise@atomic-device.html
* igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#6964]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#6964])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_page_reclaim@pat-index-xd:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#7793]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_page_reclaim@pat-index-xd.html
* igt@xe_page_reclaim@random:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#7793]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@xe_page_reclaim@random.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7590] / [Intel XE#977])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7590] / [Intel XE#979])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-i2c:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#5694] / [Intel XE#7370])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_prefetch_fault@l2-prefetch-fault:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#8815])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@xe_prefetch_fault@l2-prefetch-fault.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4733] / [Intel XE#7417])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#944])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#944]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#7174])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#4130] / [Intel XE#7366]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#8339])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_sriov_vram@vf-access-after-resize-down.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#8415])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@xe_survivability@i2c-functionality.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: NOTRUN -> [DMESG-WARN][130] ([Intel XE#8966])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_survivability@runtime-survivability.html
* igt@xe_vm@overcommit-nonfault-vram-no-lr:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#7892])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-4/igt@xe_vm@overcommit-nonfault-vram-no-lr.html
#### Possible fixes ####
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [ABORT][132] ([Intel XE#9154]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][134] ([Intel XE#3321]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][136] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-suspend@a-dp2:
- shard-bmg: [ABORT][138] ([Intel XE#9093]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-dp2.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-dp2.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][140] ([Intel XE#1503]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][142] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
- shard-bmg: [FAIL][144] ([Intel XE#9096]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-9/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-5/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
* igt@xe_module_load@many-reload:
- shard-bmg: [ABORT][146] ([Intel XE#8007]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-1/igt@xe_module_load@many-reload.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-7/igt@xe_module_load@many-reload.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
- shard-bmg: [FAIL][148] ([Intel XE#8555]) -> [PASS][149] +5 other tests pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][150] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][151] ([Intel XE#309] / [Intel XE#7343])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][152] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][153] ([Intel XE#301])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][154] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][155] ([Intel XE#1729] / [Intel XE#7424])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][156] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][157] ([Intel XE#2509] / [Intel XE#7437])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_reset@gt-reset-fault-injection:
- shard-bmg: [DMESG-WARN][158] ([Intel XE#9130]) -> [ABORT][159] ([Intel XE#9131] / [Intel XE#9145])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-1/igt@xe_exec_reset@gt-reset-fault-injection.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-2/igt@xe_exec_reset@gt-reset-fault-injection.html
- shard-lnl: [DMESG-WARN][160] ([Intel XE#9130]) -> [ABORT][161] ([Intel XE#9140] / [Intel XE#9145])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-lnl-7/igt@xe_exec_reset@gt-reset-fault-injection.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-lnl-7/igt@xe_exec_reset@gt-reset-fault-injection.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][162] ([Intel XE#8963]) -> [ABORT][163] ([Intel XE#8591] / [Intel XE#8963])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974/shard-bmg-1/igt@xe_wedged@basic-wedged.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/shard-bmg-9/igt@xe_wedged@basic-wedged.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[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#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415
[Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555
[Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8815
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#8966]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8966
[Intel XE#9009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9009
[Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093
[Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096
[Intel XE#9130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9130
[Intel XE#9131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9131
[Intel XE#9140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9140
[Intel XE#9142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9142
[Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144
[Intel XE#9145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9145
[Intel XE#9154]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9154
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974 -> xe-pw-173816v1
IGT_9090: 9090
xe-5725-da9c5bc444c1057d8d59ca6fe1de87e39dbad974: da9c5bc444c1057d8d59ca6fe1de87e39dbad974
xe-pw-173816v1: 173816v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173816v1/index.html
[-- Attachment #2: Type: text/html, Size: 63700 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-10 23:00 ` Belgaumkar, Vinay
@ 2026-09-11 21:58 ` Rodrigo Vivi
2026-09-11 23:02 ` Belgaumkar, Vinay
0 siblings, 1 reply; 13+ messages in thread
From: Rodrigo Vivi @ 2026-09-11 21:58 UTC (permalink / raw)
To: Belgaumkar, Vinay; +Cc: intel-xe, Badal Nilawar
On Thu, Sep 10, 2026 at 04:00:40PM -0700, Belgaumkar, Vinay wrote:
>
> On 9/10/2026 3:17 PM, Rodrigo Vivi wrote:
> > On Thu, Sep 10, 2026 at 02:28:22PM -0700, Vinay Belgaumkar wrote:
> > > Inspect all GT force wake bits in the idle check for runtime suspend.
> > > This includes the ones not typically used by Xe KMD as well. Skip suspend
> > > when any of these bits are set, since it could mean someone is trying to
> > > keep the GT awake.
> > >
> > > Also add a call to pm_runtime_autosuspend() inside the idle check. This
> > > ensures a PM subsystem retry at a later time.
> > >
> > > v2: Only check the GT domain FW register. Other domains require a GT force
> > > wake applied before we can read their registers. Retry if idleness check
> > > fails (Sashiko)
> > >
> > > Cc: Badal Nilawar <badal.nilawar@intel.com>
> > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > Assisted-by: Claude:Claude-Sonnet-5
> > > Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/xe_force_wake.c | 25 +++++++++++++++++++++++++
> > > drivers/gpu/drm/xe/xe_force_wake.h | 1 +
> > > drivers/gpu/drm/xe/xe_pci.c | 6 +++++-
> > > drivers/gpu/drm/xe/xe_pm.c | 19 +++++++++++++++++++
> > > drivers/gpu/drm/xe/xe_pm.h | 1 +
> > > 5 files changed, 51 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_force_wake.c b/drivers/gpu/drm/xe/xe_force_wake.c
> > > index 197e2197bd0a..0acb796c756c 100644
> > > --- a/drivers/gpu/drm/xe/xe_force_wake.c
> > > +++ b/drivers/gpu/drm/xe/xe_force_wake.c
> > > @@ -148,6 +148,31 @@ static int domain_sleep_wait(struct xe_gt *gt,
> > > return __domain_wait(gt, domain, false);
> > > }
> > > +/**
> > > + * xe_force_wake_any_bit_set - Return true if any force wake bit is set
> > > + * @fw: struct xe_force_wake
> > > + * @id: Force wake domain id
> > > + *
> > > + * Check if any multithread force wake bit is set for a given domain ID.
> > > + *
> > > + * Return: true if any bit in the force wake reg is set
> > > + */
> > > +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id)
> > > +{
> > > + struct xe_gt *gt = fw->gt;
> > > + struct xe_force_wake_domain *domain = &fw->domains[id];
> > > + u32 val;
> > > +
> > > + val = xe_mmio_read32(>->mmio, domain->reg_ctl);
> > > + if (val & 0xFFFF) {
> > > + xe_gt_dbg(gt, "FW bit set in domain: %d, reg: 0x%x, val: 0x%x",
> > > + domain->id, domain->reg_ctl.addr, val);
> > > + return true;
> > > + }
> > > +
> > > + return false;
> > > +}
> > > +
> > > /**
> > > * xe_force_wake_get() : Increase the domain refcount
> > > * @fw: struct xe_force_wake
> > > diff --git a/drivers/gpu/drm/xe/xe_force_wake.h b/drivers/gpu/drm/xe/xe_force_wake.h
> > > index e2721f205d6c..53941e5a0fbe 100644
> > > --- a/drivers/gpu/drm/xe/xe_force_wake.h
> > > +++ b/drivers/gpu/drm/xe/xe_force_wake.h
> > > @@ -18,6 +18,7 @@ void xe_force_wake_init_engines(struct xe_gt *gt,
> > > unsigned int __must_check xe_force_wake_get(struct xe_force_wake *fw,
> > > enum xe_force_wake_domains domains);
> > > void xe_force_wake_put(struct xe_force_wake *fw, unsigned int fw_ref);
> > > +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id);
> > > const char *xe_force_wake_domain_to_str(enum xe_force_wake_domain_id id);
> > > diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> > > index ab4da1d9a9f1..a79d928ad75a 100644
> > > --- a/drivers/gpu/drm/xe/xe_pci.c
> > > +++ b/drivers/gpu/drm/xe/xe_pci.c
> > > @@ -1438,10 +1438,14 @@ static int xe_pci_runtime_idle(struct device *dev)
> > > {
> > > struct pci_dev *pdev = to_pci_dev(dev);
> > > struct xe_device *xe = pdev_to_xe_device(pdev);
> > > + int ret;
> > > xe_pm_d3cold_allowed_toggle(xe);
> > > - return 0;
> > > + ret = xe_pm_check_runtime_idle(xe);
> > > + pm_runtime_autosuspend(dev);
> > do we really need this autosuspend here?
> > I believe this is what may have confused Sashiko.
> > And if needed it probably worth a separate patch with explanation.
>
> It was Sashiko's suggestion :). If we fail runtime_idle check due to someone
> holding a forcewake, there is no mechanism to re-trigger the autosuspend
> when they release the forcewake. I believe it is only retriggered on a
> pm_ref put(). So, system will be stuck in D0 state even after the forcewake
> has been released (until some execution happens and a pm_ref count goes to
> zero again). We only need the autosuspend when the check fails, so should be
> part of the same patch? I added it to both paths since it is a noop in the
> case where we succeed in the idle check (as it returns 0 to the PM
> subsystem).
Well, Sashiko is right about something that I had never realized,
runtime_suspend failure does schedule itself, the idle indeed doesn't.
That's awkward in the rpm infra, but not a driver job to do this call.
Also, I don't believe it is forever anyway. In the next put/get pair
it will be rearmed.
So, we can either accept this delayed rearm, we can move this check
to inside runtime_suspend and avoid the _idle or we can try to work
with linux core kernel to ensure _idle is rearmed.
But this call itself needs to be removed from here.
Thanks,
Rodrigo.
>
> Thanks,
>
> Vinay.
>
> >
> > > +
> > > + return ret;
> > > }
> > > static const struct dev_pm_ops xe_pm_ops = {
> > > diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> > > index f517bf453b54..e8d4cdbaef88 100644
> > > --- a/drivers/gpu/drm/xe/xe_pm.c
> > > +++ b/drivers/gpu/drm/xe/xe_pm.c
> > > @@ -17,6 +17,8 @@
> > > #include "xe_bo.h"
> > > #include "xe_bo_evict.h"
> > > #include "xe_device.h"
> > > +#include "xe_force_wake.h"
> > > +#include "xe_force_wake_types.h"
> > > #include "xe_ggtt.h"
> > > #include "xe_gt.h"
> > > #include "xe_gt_idle.h"
> > > @@ -1030,6 +1032,23 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
> > > mutex_unlock(&xe->d3cold.lock);
> > > }
> > > +/**
> > > + * xe_pm_check_runtime_idle() - Perform checks before signaling runtime idle.
> > > + *
> > > + * Return: 0 on success, non-zero on finding device not idle
> > > + */
> > > +int xe_pm_check_runtime_idle(struct xe_device *xe)
> > > +{
> > > + struct xe_gt *gt;
> > > + u8 id;
> > > +
> > > + for_each_gt(gt, xe, id)
> > > + if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
> > > + return -EBUSY;
> > > +
> > > + return 0;
> > > +}
> > > +
> > > /**
> > > * xe_pm_module_init() - Perform xe_pm specific module initialization.
> > > *
> > > diff --git a/drivers/gpu/drm/xe/xe_pm.h b/drivers/gpu/drm/xe/xe_pm.h
> > > index 6d5ab09cb769..d1f6a694b7c4 100644
> > > --- a/drivers/gpu/drm/xe/xe_pm.h
> > > +++ b/drivers/gpu/drm/xe/xe_pm.h
> > > @@ -38,6 +38,7 @@ struct task_struct *xe_pm_read_callback_task(struct xe_device *xe);
> > > int xe_pm_block_on_suspend(struct xe_device *xe);
> > > void xe_pm_might_block_on_suspend(void);
> > > int xe_pm_module_init(void);
> > > +int xe_pm_check_runtime_idle(struct xe_device *xe);
> > > static inline void __xe_pm_runtime_noop(struct xe_device *xe) {}
> > > --
> > > 2.38.1
> > >
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness
2026-09-11 21:58 ` Rodrigo Vivi
@ 2026-09-11 23:02 ` Belgaumkar, Vinay
0 siblings, 0 replies; 13+ messages in thread
From: Belgaumkar, Vinay @ 2026-09-11 23:02 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, Badal Nilawar
On 9/11/2026 2:58 PM, Rodrigo Vivi wrote:
> On Thu, Sep 10, 2026 at 04:00:40PM -0700, Belgaumkar, Vinay wrote:
>> On 9/10/2026 3:17 PM, Rodrigo Vivi wrote:
>>> On Thu, Sep 10, 2026 at 02:28:22PM -0700, Vinay Belgaumkar wrote:
>>>> Inspect all GT force wake bits in the idle check for runtime suspend.
>>>> This includes the ones not typically used by Xe KMD as well. Skip suspend
>>>> when any of these bits are set, since it could mean someone is trying to
>>>> keep the GT awake.
>>>>
>>>> Also add a call to pm_runtime_autosuspend() inside the idle check. This
>>>> ensures a PM subsystem retry at a later time.
>>>>
>>>> v2: Only check the GT domain FW register. Other domains require a GT force
>>>> wake applied before we can read their registers. Retry if idleness check
>>>> fails (Sashiko)
>>>>
>>>> Cc: Badal Nilawar <badal.nilawar@intel.com>
>>>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>>>> Assisted-by: Claude:Claude-Sonnet-5
>>>> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>>>> ---
>>>> drivers/gpu/drm/xe/xe_force_wake.c | 25 +++++++++++++++++++++++++
>>>> drivers/gpu/drm/xe/xe_force_wake.h | 1 +
>>>> drivers/gpu/drm/xe/xe_pci.c | 6 +++++-
>>>> drivers/gpu/drm/xe/xe_pm.c | 19 +++++++++++++++++++
>>>> drivers/gpu/drm/xe/xe_pm.h | 1 +
>>>> 5 files changed, 51 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_force_wake.c b/drivers/gpu/drm/xe/xe_force_wake.c
>>>> index 197e2197bd0a..0acb796c756c 100644
>>>> --- a/drivers/gpu/drm/xe/xe_force_wake.c
>>>> +++ b/drivers/gpu/drm/xe/xe_force_wake.c
>>>> @@ -148,6 +148,31 @@ static int domain_sleep_wait(struct xe_gt *gt,
>>>> return __domain_wait(gt, domain, false);
>>>> }
>>>> +/**
>>>> + * xe_force_wake_any_bit_set - Return true if any force wake bit is set
>>>> + * @fw: struct xe_force_wake
>>>> + * @id: Force wake domain id
>>>> + *
>>>> + * Check if any multithread force wake bit is set for a given domain ID.
>>>> + *
>>>> + * Return: true if any bit in the force wake reg is set
>>>> + */
>>>> +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id)
>>>> +{
>>>> + struct xe_gt *gt = fw->gt;
>>>> + struct xe_force_wake_domain *domain = &fw->domains[id];
>>>> + u32 val;
>>>> +
>>>> + val = xe_mmio_read32(>->mmio, domain->reg_ctl);
>>>> + if (val & 0xFFFF) {
>>>> + xe_gt_dbg(gt, "FW bit set in domain: %d, reg: 0x%x, val: 0x%x",
>>>> + domain->id, domain->reg_ctl.addr, val);
>>>> + return true;
>>>> + }
>>>> +
>>>> + return false;
>>>> +}
>>>> +
>>>> /**
>>>> * xe_force_wake_get() : Increase the domain refcount
>>>> * @fw: struct xe_force_wake
>>>> diff --git a/drivers/gpu/drm/xe/xe_force_wake.h b/drivers/gpu/drm/xe/xe_force_wake.h
>>>> index e2721f205d6c..53941e5a0fbe 100644
>>>> --- a/drivers/gpu/drm/xe/xe_force_wake.h
>>>> +++ b/drivers/gpu/drm/xe/xe_force_wake.h
>>>> @@ -18,6 +18,7 @@ void xe_force_wake_init_engines(struct xe_gt *gt,
>>>> unsigned int __must_check xe_force_wake_get(struct xe_force_wake *fw,
>>>> enum xe_force_wake_domains domains);
>>>> void xe_force_wake_put(struct xe_force_wake *fw, unsigned int fw_ref);
>>>> +bool xe_force_wake_any_bit_set(struct xe_force_wake *fw, enum xe_force_wake_domain_id id);
>>>> const char *xe_force_wake_domain_to_str(enum xe_force_wake_domain_id id);
>>>> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
>>>> index ab4da1d9a9f1..a79d928ad75a 100644
>>>> --- a/drivers/gpu/drm/xe/xe_pci.c
>>>> +++ b/drivers/gpu/drm/xe/xe_pci.c
>>>> @@ -1438,10 +1438,14 @@ static int xe_pci_runtime_idle(struct device *dev)
>>>> {
>>>> struct pci_dev *pdev = to_pci_dev(dev);
>>>> struct xe_device *xe = pdev_to_xe_device(pdev);
>>>> + int ret;
>>>> xe_pm_d3cold_allowed_toggle(xe);
>>>> - return 0;
>>>> + ret = xe_pm_check_runtime_idle(xe);
>>>> + pm_runtime_autosuspend(dev);
>>> do we really need this autosuspend here?
>>> I believe this is what may have confused Sashiko.
>>> And if needed it probably worth a separate patch with explanation.
>> It was Sashiko's suggestion :). If we fail runtime_idle check due to someone
>> holding a forcewake, there is no mechanism to re-trigger the autosuspend
>> when they release the forcewake. I believe it is only retriggered on a
>> pm_ref put(). So, system will be stuck in D0 state even after the forcewake
>> has been released (until some execution happens and a pm_ref count goes to
>> zero again). We only need the autosuspend when the check fails, so should be
>> part of the same patch? I added it to both paths since it is a noop in the
>> case where we succeed in the idle check (as it returns 0 to the PM
>> subsystem).
> Well, Sashiko is right about something that I had never realized,
> runtime_suspend failure does schedule itself, the idle indeed doesn't.
> That's awkward in the rpm infra, but not a driver job to do this call.
>
> Also, I don't believe it is forever anyway. In the next put/get pair
> it will be rearmed.
>
> So, we can either accept this delayed rearm, we can move this check
> to inside runtime_suspend and avoid the _idle or we can try to work
> with linux core kernel to ensure _idle is rearmed.
>
> But this call itself needs to be removed from here.
Sure, we can only check inside _suspend call to simplify. In that case,
there is no need to check for forcewake bits, right? Checking for C6 is
sufficient since it cannot happen without the other.
Thanks,
Vinay.
>
> Thanks,
> Rodrigo.
>
>> Thanks,
>>
>> Vinay.
>>
>>>> +
>>>> + return ret;
>>>> }
>>>> static const struct dev_pm_ops xe_pm_ops = {
>>>> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
>>>> index f517bf453b54..e8d4cdbaef88 100644
>>>> --- a/drivers/gpu/drm/xe/xe_pm.c
>>>> +++ b/drivers/gpu/drm/xe/xe_pm.c
>>>> @@ -17,6 +17,8 @@
>>>> #include "xe_bo.h"
>>>> #include "xe_bo_evict.h"
>>>> #include "xe_device.h"
>>>> +#include "xe_force_wake.h"
>>>> +#include "xe_force_wake_types.h"
>>>> #include "xe_ggtt.h"
>>>> #include "xe_gt.h"
>>>> #include "xe_gt_idle.h"
>>>> @@ -1030,6 +1032,23 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
>>>> mutex_unlock(&xe->d3cold.lock);
>>>> }
>>>> +/**
>>>> + * xe_pm_check_runtime_idle() - Perform checks before signaling runtime idle.
>>>> + *
>>>> + * Return: 0 on success, non-zero on finding device not idle
>>>> + */
>>>> +int xe_pm_check_runtime_idle(struct xe_device *xe)
>>>> +{
>>>> + struct xe_gt *gt;
>>>> + u8 id;
>>>> +
>>>> + for_each_gt(gt, xe, id)
>>>> + if (xe_force_wake_any_bit_set(gt_to_fw(gt), XE_FW_DOMAIN_ID_GT))
>>>> + return -EBUSY;
>>>> +
>>>> + return 0;
>>>> +}
>>>> +
>>>> /**
>>>> * xe_pm_module_init() - Perform xe_pm specific module initialization.
>>>> *
>>>> diff --git a/drivers/gpu/drm/xe/xe_pm.h b/drivers/gpu/drm/xe/xe_pm.h
>>>> index 6d5ab09cb769..d1f6a694b7c4 100644
>>>> --- a/drivers/gpu/drm/xe/xe_pm.h
>>>> +++ b/drivers/gpu/drm/xe/xe_pm.h
>>>> @@ -38,6 +38,7 @@ struct task_struct *xe_pm_read_callback_task(struct xe_device *xe);
>>>> int xe_pm_block_on_suspend(struct xe_device *xe);
>>>> void xe_pm_might_block_on_suspend(void);
>>>> int xe_pm_module_init(void);
>>>> +int xe_pm_check_runtime_idle(struct xe_device *xe);
>>>> static inline void __xe_pm_runtime_noop(struct xe_device *xe) {}
>>>> --
>>>> 2.38.1
>>>>
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-09-11 23:03 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-10 21:28 [PATCH v2 1/2] drm/xe: Inspect all forcewake bits for runtime idleness Vinay Belgaumkar
2026-09-10 21:28 ` [PATCH v2 2/2] drm/xe: Poll GT for C6 before D3 Vinay Belgaumkar
2026-09-10 21:41 ` sashiko-bot
2026-09-10 22:23 ` Rodrigo Vivi
2026-09-10 21:41 ` ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Inspect all forcewake bits for runtime idleness Patchwork
2026-09-10 21:45 ` [PATCH v2 1/2] " sashiko-bot
2026-09-10 21:53 ` Belgaumkar, Vinay
2026-09-10 22:17 ` Rodrigo Vivi
2026-09-10 23:00 ` Belgaumkar, Vinay
2026-09-11 21:58 ` Rodrigo Vivi
2026-09-11 23:02 ` Belgaumkar, Vinay
2026-09-10 22:35 ` ✓ Xe.CI.BAT: success for series starting with [v2,1/2] " Patchwork
2026-09-11 7:03 ` ✗ Xe.CI.FULL: failure " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.