Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
@ 2025-12-09 11:11 Ville Syrjala
  2025-12-09 11:17 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (11 more replies)
  0 siblings, 12 replies; 16+ messages in thread
From: Ville Syrjala @ 2025-12-09 11:11 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

We use forcewake to prevent the SoC from actually entering
PC8 while performing the PC8 disable sequence. Hide that
behind a new parent interface to eliminate the naked
forcewake/uncore usage from the display power code.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/Makefile                 |  1 +
 .../drm/i915/display/intel_display_power.c    |  8 ++---
 drivers/gpu/drm/i915/display/intel_parent.c   | 10 +++++++
 drivers/gpu/drm/i915/display/intel_parent.h   |  3 ++
 drivers/gpu/drm/i915/i915_display_pc8.c       | 30 +++++++++++++++++++
 drivers/gpu/drm/i915/i915_display_pc8.h       |  9 ++++++
 drivers/gpu/drm/i915/i915_driver.c            |  2 ++
 include/drm/intel/display_parent_interface.h  |  8 +++++
 8 files changed, 67 insertions(+), 4 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.c
 create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.h

diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 175bd99e1d0d..b57e51d626b1 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
 
 # core display adaptation
 i915-y += \
+	i915_display_pc8.o \
 	i915_hdcp_gsc.o
 
 # "Graphics Technology" (aka we talk to the gpu)
diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index 9f323c39d798..47042a4c3a30 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
 		return;
 
 	/*
-	 * Make sure we're not on PC8 state before disabling PC8, otherwise
-	 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
+	 * Make sure we're not on PC8 state before disabling
+	 * PC8, otherwise we'll hang the machine.
 	 */
-	intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
+	intel_parent_pc8_block(display);
 
 	if (val & LCPLL_POWER_DOWN_ALLOW) {
 		val &= ~LCPLL_POWER_DOWN_ALLOW;
@@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
 				"Switching back to LCPLL failed\n");
 	}
 
-	intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
+	intel_parent_pc8_unblock(display);
 
 	intel_update_cdclk(display);
 	intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index 2ea310cc3509..9201d506c851 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -56,6 +56,16 @@ void intel_parent_irq_synchronize(struct intel_display *display)
 	display->parent->irq->synchronize(display->drm);
 }
 
+void intel_parent_pc8_block(struct intel_display *display)
+{
+	display->parent->pc8->block(display->drm);
+}
+
+void intel_parent_pc8_unblock(struct intel_display *display)
+{
+	display->parent->pc8->unblock(display->drm);
+}
+
 bool intel_parent_rps_available(struct intel_display *display)
 {
 	return display->parent->rps;
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 8f91a6f75c53..974a016ab3be 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -22,6 +22,9 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
 bool intel_parent_irq_enabled(struct intel_display *display);
 void intel_parent_irq_synchronize(struct intel_display *display);
 
+void intel_parent_pc8_block(struct intel_display *display);
+void intel_parent_pc8_unblock(struct intel_display *display);
+
 bool intel_parent_rps_available(struct intel_display *display);
 void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
 void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
new file mode 100644
index 000000000000..443935d282e3
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_display_pc8.c
@@ -0,0 +1,30 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2025, Intel Corporation.
+ */
+
+#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
+
+#include "i915_drv.h"
+#include "intel_uncore.h"
+
+static void i915_display_pc8_block(struct drm_device *drm)
+{
+	struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+	/* to prevent PC8 state, just enable force_wake */
+	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
+}
+
+static void i915_display_pc8_unblock(struct drm_device *drm)
+{
+	struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
+}
+
+const struct intel_display_pc8_interface i915_display_pc8_interface = {
+	.block = i915_display_pc8_block,
+	.unblock = i915_display_pc8_unblock,
+};
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
new file mode 100644
index 000000000000..717f313d2a21
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_display_pc8.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2025 Intel Corporation */
+
+#ifndef __I915_DISPLAY_PC8_H__
+#define __I915_DISPLAY_PC8_H__
+
+extern const struct intel_display_pc8_interface i915_display_pc8_interface;
+
+#endif /* __I915_DISPLAY_PC8_H__ */
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index d98839427ef9..723cb424b2ba 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -89,6 +89,7 @@
 #include "pxp/intel_pxp_pm.h"
 
 #include "i915_debugfs.h"
+#include "i915_display_pc8.h"
 #include "i915_driver.h"
 #include "i915_drm_client.h"
 #include "i915_drv.h"
@@ -761,6 +762,7 @@ static const struct intel_display_parent_interface parent = {
 	.hdcp = &i915_display_hdcp_interface,
 	.rpm = &i915_display_rpm_interface,
 	.irq = &i915_display_irq_interface,
+	.pc8 = &i915_display_pc8_interface,
 	.rps = &i915_display_rps_interface,
 	.vgpu_active = vgpu_active,
 	.has_fenced_regions = has_fenced_regions,
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 61d1b22adc83..af43b213eafa 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -41,6 +41,11 @@ struct intel_display_irq_interface {
 	void (*synchronize)(struct drm_device *drm);
 };
 
+struct intel_display_pc8_interface {
+	void (*block)(struct drm_device *drm);
+	void (*unblock)(struct drm_device *drm);
+};
+
 struct intel_display_rps_interface {
 	void (*boost_if_not_started)(struct dma_fence *fence);
 	void (*mark_interactive)(struct drm_device *drm, bool interactive);
@@ -69,6 +74,9 @@ struct intel_display_parent_interface {
 	/** @irq: IRQ interface */
 	const struct intel_display_irq_interface *irq;
 
+	/** @pc8: PC8 interface */
+	const struct intel_display_pc8_interface *pc8;
+
 	/** @rpm: RPS interface. Optional. */
 	const struct intel_display_rps_interface *rps;
 
-- 
2.51.2


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

* ✗ CI.checkpatch: warning for drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
@ 2025-12-09 11:17 ` Patchwork
  2025-12-09 11:18 ` ✓ CI.KUnit: success " Patchwork
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-09 11:17 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks
URL   : https://patchwork.freedesktop.org/series/158685/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
8f50e69d0ce3656564bbdf8b3e213d61470d463f
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 9714537f4df7e222e81391b01f7cac6be0425d87
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date:   Tue Dec 9 13:11:50 2025 +0200

    drm/i915/pc8: Add parent interface for PC8 forcewake tricks
    
    We use forcewake to prevent the SoC from actually entering
    PC8 while performing the PC8 disable sequence. Hide that
    behind a new parent interface to eliminate the naked
    forcewake/uncore usage from the display power code.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
+ /mt/dim checkpatch 48deab361d3b570e2210875fdc8ffb29627d054f drm-intel
9714537f4df7 drm/i915/pc8: Add parent interface for PC8 forcewake tricks
-:91: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#91: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 126 lines checked



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

* ✓ CI.KUnit: success for drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
  2025-12-09 11:17 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-12-09 11:18 ` Patchwork
  2025-12-09 11:33 ` ✗ CI.checksparse: warning " Patchwork
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-09 11:18 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks
URL   : https://patchwork.freedesktop.org/series/158685/
State : success

== Summary ==

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

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

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

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



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

* ✗ CI.checksparse: warning for drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
  2025-12-09 11:17 ` ✗ CI.checkpatch: warning for " Patchwork
  2025-12-09 11:18 ` ✓ CI.KUnit: success " Patchwork
@ 2025-12-09 11:33 ` Patchwork
  2025-12-09 12:13 ` [PATCH] " Jani Nikula
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-09 11:33 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks
URL   : https://patchwork.freedesktop.org/series/158685/
State : warning

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 48deab361d3b570e2210875fdc8ffb29627d054f
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/i915_display_pc8.c:27:42: warning: symbol 'i915_display_pc8_interface' was not declared. Should it be static?

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



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

* Re: [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (2 preceding siblings ...)
  2025-12-09 11:33 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-12-09 12:13 ` Jani Nikula
  2025-12-09 12:23   ` Jani Nikula
  2025-12-09 19:59   ` Ville Syrjälä
  2025-12-09 12:24 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (7 subsequent siblings)
  11 siblings, 2 replies; 16+ messages in thread
From: Jani Nikula @ 2025-12-09 12:13 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Tue, 09 Dec 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> We use forcewake to prevent the SoC from actually entering
> PC8 while performing the PC8 disable sequence. Hide that
> behind a new parent interface to eliminate the naked
> forcewake/uncore usage from the display power code.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  drivers/gpu/drm/i915/Makefile                 |  1 +
>  .../drm/i915/display/intel_display_power.c    |  8 ++---
>  drivers/gpu/drm/i915/display/intel_parent.c   | 10 +++++++
>  drivers/gpu/drm/i915/display/intel_parent.h   |  3 ++
>  drivers/gpu/drm/i915/i915_display_pc8.c       | 30 +++++++++++++++++++
>  drivers/gpu/drm/i915/i915_display_pc8.h       |  9 ++++++
>  drivers/gpu/drm/i915/i915_driver.c            |  2 ++
>  include/drm/intel/display_parent_interface.h  |  8 +++++
>  8 files changed, 67 insertions(+), 4 deletions(-)
>  create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.c
>  create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.h
>
> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
> index 175bd99e1d0d..b57e51d626b1 100644
> --- a/drivers/gpu/drm/i915/Makefile
> +++ b/drivers/gpu/drm/i915/Makefile
> @@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
>  
>  # core display adaptation
>  i915-y += \
> +	i915_display_pc8.o \
>  	i915_hdcp_gsc.o
>  
>  # "Graphics Technology" (aka we talk to the gpu)
> diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
> index 9f323c39d798..47042a4c3a30 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_power.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_power.c
> @@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
>  		return;
>  
>  	/*
> -	 * Make sure we're not on PC8 state before disabling PC8, otherwise
> -	 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
> +	 * Make sure we're not on PC8 state before disabling
> +	 * PC8, otherwise we'll hang the machine.
>  	 */
> -	intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
> +	intel_parent_pc8_block(display);
>  
>  	if (val & LCPLL_POWER_DOWN_ALLOW) {
>  		val &= ~LCPLL_POWER_DOWN_ALLOW;
> @@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
>  				"Switching back to LCPLL failed\n");
>  	}
>  
> -	intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
> +	intel_parent_pc8_unblock(display);
>  
>  	intel_update_cdclk(display);
>  	intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
> index 2ea310cc3509..9201d506c851 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.c
> +++ b/drivers/gpu/drm/i915/display/intel_parent.c
> @@ -56,6 +56,16 @@ void intel_parent_irq_synchronize(struct intel_display *display)
>  	display->parent->irq->synchronize(display->drm);
>  }
>  
> +void intel_parent_pc8_block(struct intel_display *display)
> +{
> +	display->parent->pc8->block(display->drm);
> +}
> +
> +void intel_parent_pc8_unblock(struct intel_display *display)
> +{
> +	display->parent->pc8->unblock(display->drm);
> +}

I think I'd like either:

- A substruct is mandatory, always initialized by parent, will never be
  NULL, and there are no checks here.

- A substruct is optional, may be initialized by parent, may be NULL,
  and there's a NULL check here.

I think it makes the interface easier to reason about. Even if I
understand that this particular interface will only be called for
platforms supported by i915.

So this should have the display->parent->pc8 != NULL check, and
"optional" mentioned in display_parent_interface.h.

> +
>  bool intel_parent_rps_available(struct intel_display *display)
>  {
>  	return display->parent->rps;
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
> index 8f91a6f75c53..974a016ab3be 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.h
> +++ b/drivers/gpu/drm/i915/display/intel_parent.h
> @@ -22,6 +22,9 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
>  bool intel_parent_irq_enabled(struct intel_display *display);
>  void intel_parent_irq_synchronize(struct intel_display *display);
>  
> +void intel_parent_pc8_block(struct intel_display *display);
> +void intel_parent_pc8_unblock(struct intel_display *display);
> +
>  bool intel_parent_rps_available(struct intel_display *display);
>  void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
>  void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
> diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
> new file mode 100644
> index 000000000000..443935d282e3
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/i915_display_pc8.c
> @@ -0,0 +1,30 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright 2025, Intel Corporation.
> + */
> +
> +#include <drm/drm_print.h>
> +#include <drm/intel/display_parent_interface.h>
> +
> +#include "i915_drv.h"
> +#include "intel_uncore.h"

For completeness, I think this should include i915_display_pc8.h. I'm a
bit surprised the compilers only warn about non-static functions without
declarations, not about non-static variables.

> +
> +static void i915_display_pc8_block(struct drm_device *drm)
> +{
> +	struct intel_uncore *uncore = &to_i915(drm)->uncore;
> +
> +	/* to prevent PC8 state, just enable force_wake */
> +	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
> +}
> +
> +static void i915_display_pc8_unblock(struct drm_device *drm)
> +{
> +	struct intel_uncore *uncore = &to_i915(drm)->uncore;
> +
> +	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
> +}
> +
> +const struct intel_display_pc8_interface i915_display_pc8_interface = {
> +	.block = i915_display_pc8_block,
> +	.unblock = i915_display_pc8_unblock,
> +};
> diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
> new file mode 100644
> index 000000000000..717f313d2a21
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/i915_display_pc8.h
> @@ -0,0 +1,9 @@
> +/* SPDX-License-Identifier: MIT */
> +/* Copyright © 2025 Intel Corporation */
> +
> +#ifndef __I915_DISPLAY_PC8_H__
> +#define __I915_DISPLAY_PC8_H__
> +
> +extern const struct intel_display_pc8_interface i915_display_pc8_interface;
> +
> +#endif /* __I915_DISPLAY_PC8_H__ */
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index d98839427ef9..723cb424b2ba 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -89,6 +89,7 @@
>  #include "pxp/intel_pxp_pm.h"
>  
>  #include "i915_debugfs.h"
> +#include "i915_display_pc8.h"
>  #include "i915_driver.h"
>  #include "i915_drm_client.h"
>  #include "i915_drv.h"
> @@ -761,6 +762,7 @@ static const struct intel_display_parent_interface parent = {
>  	.hdcp = &i915_display_hdcp_interface,
>  	.rpm = &i915_display_rpm_interface,
>  	.irq = &i915_display_irq_interface,
> +	.pc8 = &i915_display_pc8_interface,
>  	.rps = &i915_display_rps_interface,
>  	.vgpu_active = vgpu_active,
>  	.has_fenced_regions = has_fenced_regions,
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index 61d1b22adc83..af43b213eafa 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -41,6 +41,11 @@ struct intel_display_irq_interface {
>  	void (*synchronize)(struct drm_device *drm);
>  };
>  
> +struct intel_display_pc8_interface {
> +	void (*block)(struct drm_device *drm);
> +	void (*unblock)(struct drm_device *drm);
> +};
> +
>  struct intel_display_rps_interface {
>  	void (*boost_if_not_started)(struct dma_fence *fence);
>  	void (*mark_interactive)(struct drm_device *drm, bool interactive);
> @@ -69,6 +74,9 @@ struct intel_display_parent_interface {
>  	/** @irq: IRQ interface */
>  	const struct intel_display_irq_interface *irq;
>  
> +	/** @pc8: PC8 interface */

I think this should have "Optional" in there.

> +	const struct intel_display_pc8_interface *pc8;
> +
>  	/** @rpm: RPS interface. Optional. */
>  	const struct intel_display_rps_interface *rps;

-- 
Jani Nikula, Intel

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

* Re: [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 12:13 ` [PATCH] " Jani Nikula
@ 2025-12-09 12:23   ` Jani Nikula
  2025-12-09 19:59   ` Ville Syrjälä
  1 sibling, 0 replies; 16+ messages in thread
From: Jani Nikula @ 2025-12-09 12:23 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Tue, 09 Dec 2025, Jani Nikula <jani.nikula@linux.intel.com> wrote:
> On Tue, 09 Dec 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
>> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>>
>> We use forcewake to prevent the SoC from actually entering
>> PC8 while performing the PC8 disable sequence. Hide that
>> behind a new parent interface to eliminate the naked
>> forcewake/uncore usage from the display power code.
>>
>> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> ---
>>  drivers/gpu/drm/i915/Makefile                 |  1 +
>>  .../drm/i915/display/intel_display_power.c    |  8 ++---
>>  drivers/gpu/drm/i915/display/intel_parent.c   | 10 +++++++
>>  drivers/gpu/drm/i915/display/intel_parent.h   |  3 ++
>>  drivers/gpu/drm/i915/i915_display_pc8.c       | 30 +++++++++++++++++++
>>  drivers/gpu/drm/i915/i915_display_pc8.h       |  9 ++++++
>>  drivers/gpu/drm/i915/i915_driver.c            |  2 ++
>>  include/drm/intel/display_parent_interface.h  |  8 +++++
>>  8 files changed, 67 insertions(+), 4 deletions(-)
>>  create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.c
>>  create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.h
>>
>> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
>> index 175bd99e1d0d..b57e51d626b1 100644
>> --- a/drivers/gpu/drm/i915/Makefile
>> +++ b/drivers/gpu/drm/i915/Makefile
>> @@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
>>  
>>  # core display adaptation
>>  i915-y += \
>> +	i915_display_pc8.o \
>>  	i915_hdcp_gsc.o
>>  
>>  # "Graphics Technology" (aka we talk to the gpu)
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
>> index 9f323c39d798..47042a4c3a30 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_power.c
>> +++ b/drivers/gpu/drm/i915/display/intel_display_power.c
>> @@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
>>  		return;
>>  
>>  	/*
>> -	 * Make sure we're not on PC8 state before disabling PC8, otherwise
>> -	 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
>> +	 * Make sure we're not on PC8 state before disabling
>> +	 * PC8, otherwise we'll hang the machine.
>>  	 */
>> -	intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
>> +	intel_parent_pc8_block(display);
>>  
>>  	if (val & LCPLL_POWER_DOWN_ALLOW) {
>>  		val &= ~LCPLL_POWER_DOWN_ALLOW;
>> @@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
>>  				"Switching back to LCPLL failed\n");
>>  	}
>>  
>> -	intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
>> +	intel_parent_pc8_unblock(display);
>>  
>>  	intel_update_cdclk(display);
>>  	intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
>> diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
>> index 2ea310cc3509..9201d506c851 100644
>> --- a/drivers/gpu/drm/i915/display/intel_parent.c
>> +++ b/drivers/gpu/drm/i915/display/intel_parent.c
>> @@ -56,6 +56,16 @@ void intel_parent_irq_synchronize(struct intel_display *display)
>>  	display->parent->irq->synchronize(display->drm);
>>  }
>>  
>> +void intel_parent_pc8_block(struct intel_display *display)
>> +{
>> +	display->parent->pc8->block(display->drm);
>> +}
>> +
>> +void intel_parent_pc8_unblock(struct intel_display *display)
>> +{
>> +	display->parent->pc8->unblock(display->drm);
>> +}
>
> I think I'd like either:
>
> - A substruct is mandatory, always initialized by parent, will never be
>   NULL, and there are no checks here.
>
> - A substruct is optional, may be initialized by parent, may be NULL,
>   and there's a NULL check here.
>
> I think it makes the interface easier to reason about. Even if I
> understand that this particular interface will only be called for
> platforms supported by i915.
>
> So this should have the display->parent->pc8 != NULL check, and
> "optional" mentioned in display_parent_interface.h.

Oh, I also used this in [1]:

  int intel_parent_stolen_insert_node(struct intel_display *display, struct intel_stolen_node *node, u64 size,
				     unsigned int align)
  {
 +	if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen->insert_node))
 +		return -ENODEV;
 +
	 return display->parent->stolen->insert_node(node, size, align);
  }

It's optional, but using it when it's not there gives a warning splat.


BR,
Jani.


[1] https://lore.kernel.org/r/0dbb460e8bd1df29df98862d08fcdfda03912673.1764930576.git.jani.nikula@intel.com


>
>> +
>>  bool intel_parent_rps_available(struct intel_display *display)
>>  {
>>  	return display->parent->rps;
>> diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
>> index 8f91a6f75c53..974a016ab3be 100644
>> --- a/drivers/gpu/drm/i915/display/intel_parent.h
>> +++ b/drivers/gpu/drm/i915/display/intel_parent.h
>> @@ -22,6 +22,9 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
>>  bool intel_parent_irq_enabled(struct intel_display *display);
>>  void intel_parent_irq_synchronize(struct intel_display *display);
>>  
>> +void intel_parent_pc8_block(struct intel_display *display);
>> +void intel_parent_pc8_unblock(struct intel_display *display);
>> +
>>  bool intel_parent_rps_available(struct intel_display *display);
>>  void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
>>  void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
>> diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
>> new file mode 100644
>> index 000000000000..443935d282e3
>> --- /dev/null
>> +++ b/drivers/gpu/drm/i915/i915_display_pc8.c
>> @@ -0,0 +1,30 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright 2025, Intel Corporation.
>> + */
>> +
>> +#include <drm/drm_print.h>
>> +#include <drm/intel/display_parent_interface.h>
>> +
>> +#include "i915_drv.h"
>> +#include "intel_uncore.h"
>
> For completeness, I think this should include i915_display_pc8.h. I'm a
> bit surprised the compilers only warn about non-static functions without
> declarations, not about non-static variables.
>
>> +
>> +static void i915_display_pc8_block(struct drm_device *drm)
>> +{
>> +	struct intel_uncore *uncore = &to_i915(drm)->uncore;
>> +
>> +	/* to prevent PC8 state, just enable force_wake */
>> +	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
>> +}
>> +
>> +static void i915_display_pc8_unblock(struct drm_device *drm)
>> +{
>> +	struct intel_uncore *uncore = &to_i915(drm)->uncore;
>> +
>> +	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
>> +}
>> +
>> +const struct intel_display_pc8_interface i915_display_pc8_interface = {
>> +	.block = i915_display_pc8_block,
>> +	.unblock = i915_display_pc8_unblock,
>> +};
>> diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
>> new file mode 100644
>> index 000000000000..717f313d2a21
>> --- /dev/null
>> +++ b/drivers/gpu/drm/i915/i915_display_pc8.h
>> @@ -0,0 +1,9 @@
>> +/* SPDX-License-Identifier: MIT */
>> +/* Copyright © 2025 Intel Corporation */
>> +
>> +#ifndef __I915_DISPLAY_PC8_H__
>> +#define __I915_DISPLAY_PC8_H__
>> +
>> +extern const struct intel_display_pc8_interface i915_display_pc8_interface;
>> +
>> +#endif /* __I915_DISPLAY_PC8_H__ */
>> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
>> index d98839427ef9..723cb424b2ba 100644
>> --- a/drivers/gpu/drm/i915/i915_driver.c
>> +++ b/drivers/gpu/drm/i915/i915_driver.c
>> @@ -89,6 +89,7 @@
>>  #include "pxp/intel_pxp_pm.h"
>>  
>>  #include "i915_debugfs.h"
>> +#include "i915_display_pc8.h"
>>  #include "i915_driver.h"
>>  #include "i915_drm_client.h"
>>  #include "i915_drv.h"
>> @@ -761,6 +762,7 @@ static const struct intel_display_parent_interface parent = {
>>  	.hdcp = &i915_display_hdcp_interface,
>>  	.rpm = &i915_display_rpm_interface,
>>  	.irq = &i915_display_irq_interface,
>> +	.pc8 = &i915_display_pc8_interface,
>>  	.rps = &i915_display_rps_interface,
>>  	.vgpu_active = vgpu_active,
>>  	.has_fenced_regions = has_fenced_regions,
>> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
>> index 61d1b22adc83..af43b213eafa 100644
>> --- a/include/drm/intel/display_parent_interface.h
>> +++ b/include/drm/intel/display_parent_interface.h
>> @@ -41,6 +41,11 @@ struct intel_display_irq_interface {
>>  	void (*synchronize)(struct drm_device *drm);
>>  };
>>  
>> +struct intel_display_pc8_interface {
>> +	void (*block)(struct drm_device *drm);
>> +	void (*unblock)(struct drm_device *drm);
>> +};
>> +
>>  struct intel_display_rps_interface {
>>  	void (*boost_if_not_started)(struct dma_fence *fence);
>>  	void (*mark_interactive)(struct drm_device *drm, bool interactive);
>> @@ -69,6 +74,9 @@ struct intel_display_parent_interface {
>>  	/** @irq: IRQ interface */
>>  	const struct intel_display_irq_interface *irq;
>>  
>> +	/** @pc8: PC8 interface */
>
> I think this should have "Optional" in there.
>
>> +	const struct intel_display_pc8_interface *pc8;
>> +
>>  	/** @rpm: RPS interface. Optional. */
>>  	const struct intel_display_rps_interface *rps;

-- 
Jani Nikula, Intel

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

* ✓ Xe.CI.BAT: success for drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (3 preceding siblings ...)
  2025-12-09 12:13 ` [PATCH] " Jani Nikula
@ 2025-12-09 12:24 ` Patchwork
  2025-12-09 17:39 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-09 12:24 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks
URL   : https://patchwork.freedesktop.org/series/158685/
State : success

== Summary ==

CI Bug Log - changes from xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f_BAT -> xe-pw-158685v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f -> xe-pw-158685v1

  IGT_8659: 8659
  xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f: 48deab361d3b570e2210875fdc8ffb29627d054f
  xe-pw-158685v1: 158685v1

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (4 preceding siblings ...)
  2025-12-09 12:24 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-12-09 17:39 ` Patchwork
  2025-12-10 17:26 ` [PATCH v2] " Ville Syrjala
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-09 17:39 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks
URL   : https://patchwork.freedesktop.org/series/158685/
State : failure

== Summary ==

CI Bug Log - changes from xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f_FULL -> xe-pw-158685v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-158685v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-158685v1_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 (4 -> 4)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-158685v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][1] -> [TIMEOUT][2] +1 other test timeout
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-bmg:          [PASS][3] -> [DMESG-FAIL][4] +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html

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

  Here are the changes found in xe-pw-158685v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [PASS][5] -> [FAIL][6] ([Intel XE#6054])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-adlp:         [PASS][8] -> [DMESG-WARN][9] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-9/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-8/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#1124]) +5 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][11] -> [FAIL][12] ([Intel XE#1231])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#1124])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#787]) +6 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html

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

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +5 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2:
    - shard-bmg:          [PASS][19] -> [FAIL][20] ([Intel XE#6173]) +2 other tests fail
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#3432]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345]) +1 other test incomplete
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2724])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2252]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

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

  * igt@kms_colorop@plane-xr24-xr24-multiply_inv_125:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#6704]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_colorop@plane-xr24-xr24-multiply_inv_125.html

  * igt@kms_colorop@plane-xr30-xr30-srgb_inv_eotf_lut-srgb_eotf_lut:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#6704]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_colorop@plane-xr30-xr30-srgb_inv_eotf_lut-srgb_eotf_lut.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2341])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#308])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2321])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2320]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2:
    - shard-bmg:          [PASS][33] -> [FAIL][34] ([Intel XE#6747])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][35] -> [DMESG-WARN][36] ([Intel XE#5354])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#323])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2244])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_flip@plain-flip-fb-recreate:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][39] ([Intel XE#5545]) +1 other test dmesg-fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2293] / [Intel XE#2380])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2293]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x:
    - shard-adlp:         [PASS][42] -> [FAIL][43] ([Intel XE#1874])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#651])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2311]) +13 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#4141]) +4 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#653]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#6312])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2313]) +16 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#2925])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#4090] / [Intel XE#6590])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2387])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#1122] / [Intel XE#1406])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr2-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_psr@fbc-psr2-suspend.html

  * igt@kms_psr@psr2-no-drrs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_psr@psr2-no-drrs.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#3414] / [Intel XE#3904])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2330])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_sharpness_filter@filter-toggle:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#455])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_sharpness_filter@filter-toggle.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaler:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#6503])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaler.html

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

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2504])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#4837]) +4 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-extended.html

  * igt@xe_eudebug@discovery-empty-clients:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#4837])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@xe_eudebug@discovery-empty-clients.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#5793])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][67] ([Intel XE#6321])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2322]) +3 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html

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

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [PASS][70] -> [FAIL][71] ([Intel XE#5625])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_exec_system_allocator@threads-many-large-malloc-fork-read-after:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#6557] / [Intel XE#6703])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-malloc-fork-read-after.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#4915]) +30 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#4943]) +12 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html

  * igt@xe_exec_threads@threads-cm-fd-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#6703]) +7 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_exec_threads@threads-cm-fd-userptr.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#6281])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_oa@privileged-forked-access-vaddr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#3573])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@xe_oa@privileged-forked-access-vaddr.html

  * igt@xe_pm@s2idle-mocs:
    - shard-bmg:          [PASS][78] -> [DMESG-WARN][79] ([Intel XE#4504])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@xe_pm@s2idle-mocs.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-5/igt@xe_pm@s2idle-mocs.html

  * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#4733]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#944])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  
#### Possible fixes ####

  * igt@core_getversion@all-cards:
    - shard-bmg:          [FAIL][82] -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@core_getversion@all-cards.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@core_getversion@all-cards.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-bmg:          [DMESG-FAIL][84] ([Intel XE#5545]) -> [PASS][85] +1 other test pass
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [FAIL][86] ([Intel XE#3908]) -> [PASS][87] +1 other test pass
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [FAIL][88] ([Intel XE#1231]) -> [PASS][89] +1 other test pass
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][90] ([Intel XE#367]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][92] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][94] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_color@invalid-gamma-lut-sizes:
    - shard-adlp:         [DMESG-WARN][96] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][97] +1 other test pass
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-6/igt@kms_color@invalid-gamma-lut-sizes.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-9/igt@kms_color@invalid-gamma-lut-sizes.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][98] ([Intel XE#5299]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][100] ([Intel XE#301]) -> [PASS][101] +1 other test pass
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][102] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#6766]) -> [PASS][103] +1 other test pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][104] ([Intel XE#6766]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
    - shard-adlp:         [FAIL][106] ([Intel XE#1874]) -> [PASS][107] +1 other test pass
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html

  * igt@kms_hdr@bpc-switch:
    - shard-bmg:          [ABORT][108] ([Intel XE#6740]) -> [PASS][109] +3 other tests pass
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-8/igt@kms_hdr@bpc-switch.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-2/igt@kms_hdr@bpc-switch.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-dg2-set2:     [FAIL][110] ([Intel XE#4741]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][112] ([Intel XE#2142]) -> [PASS][113] +1 other test pass
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_exec_system_allocator@many-64k-mmap-file-nomemset:
    - shard-bmg:          [SKIP][114] ([Intel XE#6703]) -> [PASS][115] +44 other tests pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-file-nomemset.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-file-nomemset.html

  * igt@xe_exec_system_allocator@partial-atomic-munmap-cpu-fault:
    - shard-bmg:          [SKIP][116] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_exec_system_allocator@partial-atomic-munmap-cpu-fault.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_exec_system_allocator@partial-atomic-munmap-cpu-fault.html

  * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0:
    - shard-lnl:          [FAIL][118] ([Intel XE#6251]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html

  * igt@xe_vm@bind-array-enobufs:
    - shard-dg2-set2:     [FAIL][120] ([Intel XE#6774]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-434/igt@xe_vm@bind-array-enobufs.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
    - shard-lnl:          [FAIL][122] ([Intel XE#6676]) -> [FAIL][123] ([Intel XE#6054] / [Intel XE#6676])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][124] ([Intel XE#6703]) -> [SKIP][125] ([Intel XE#2887]) +1 other test skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-bmg:          [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2321])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          [FAIL][128] ([Intel XE#6793]) -> [SKIP][129] ([Intel XE#4354])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-bmg:          [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#2293] / [Intel XE#2380])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#2311]) +2 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-slowdraw:
    - shard-bmg:          [SKIP][134] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][135] ([Intel XE#2311])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#4141]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2313]) +2 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [ABORT][140] ([Intel XE#6740]) -> [SKIP][141] ([Intel XE#1503])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-4/igt@kms_hdr@invalid-hdr.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][142] ([Intel XE#2426]) -> [FAIL][143] ([Intel XE#1729])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#362]) -> [FAIL][145] ([Intel XE#1729])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][146] ([Intel XE#2426]) -> [SKIP][147] ([Intel XE#2509])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_eudebug_online@reset-with-attention:
    - shard-bmg:          [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#4837] / [Intel XE#6665])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_eudebug_online@reset-with-attention.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_eudebug_online@reset-with-attention.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-new-huge-nomemset:
    - shard-bmg:          [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#4943])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-new-huge-nomemset.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-new-huge-nomemset.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#2248])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][154] ([Intel XE#6703]) -> [SKIP][155] ([Intel XE#2284])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#944])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v1/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

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

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [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#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6173
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [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#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
  [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766
  [Intel XE#6774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6774
  [Intel XE#6793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6793
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f -> xe-pw-158685v1

  IGT_8659: 8659
  xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f: 48deab361d3b570e2210875fdc8ffb29627d054f
  xe-pw-158685v1: 158685v1

== Logs ==

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

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

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

* Re: [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 12:13 ` [PATCH] " Jani Nikula
  2025-12-09 12:23   ` Jani Nikula
@ 2025-12-09 19:59   ` Ville Syrjälä
  1 sibling, 0 replies; 16+ messages in thread
From: Ville Syrjälä @ 2025-12-09 19:59 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx, intel-xe

On Tue, Dec 09, 2025 at 02:13:47PM +0200, Jani Nikula wrote:
> On Tue, 09 Dec 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
<snip>
> > diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
> > index 8f91a6f75c53..974a016ab3be 100644
> > --- a/drivers/gpu/drm/i915/display/intel_parent.h
> > +++ b/drivers/gpu/drm/i915/display/intel_parent.h
> > @@ -22,6 +22,9 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
> >  bool intel_parent_irq_enabled(struct intel_display *display);
> >  void intel_parent_irq_synchronize(struct intel_display *display);
> >  
> > +void intel_parent_pc8_block(struct intel_display *display);
> > +void intel_parent_pc8_unblock(struct intel_display *display);
> > +
> >  bool intel_parent_rps_available(struct intel_display *display);
> >  void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
> >  void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
> > diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
> > new file mode 100644
> > index 000000000000..443935d282e3
> > --- /dev/null
> > +++ b/drivers/gpu/drm/i915/i915_display_pc8.c
> > @@ -0,0 +1,30 @@
> > +// SPDX-License-Identifier: MIT
> > +/*
> > + * Copyright 2025, Intel Corporation.
> > + */
> > +
> > +#include <drm/drm_print.h>
> > +#include <drm/intel/display_parent_interface.h>
> > +
> > +#include "i915_drv.h"
> > +#include "intel_uncore.h"
> 
> For completeness, I think this should include i915_display_pc8.h. I'm a
> bit surprised the compilers only warn about non-static functions without
> declarations, not about non-static variables.

A bit of googling gave me, among other things, this:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110947

And indeed enabling -Wmissing-variable-declarations still
triggers on 'current_stack_pointer'. So I guess no progress
on that since 2023 :(

The other surprising thing here is that the extern decalaration
doesn't seem to need the type definition. Or at least HDRTEST
passses w/o including display_parent_interface.h in
i915_display_pc8.h.

-- 
Ville Syrjälä
Intel

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

* [PATCH v2] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (5 preceding siblings ...)
  2025-12-09 17:39 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-12-10 17:26 ` Ville Syrjala
  2025-12-11  8:42   ` Jani Nikula
  2025-12-18 18:20 ` [PATCH v3] " Ville Syrjala
                   ` (4 subsequent siblings)
  11 siblings, 1 reply; 16+ messages in thread
From: Ville Syrjala @ 2025-12-10 17:26 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe, Jani Nikula

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

We use forcewake to prevent the SoC from actually entering
PC8 while performing the PC8 disable sequence. Hide that
behind a new parent interface to eliminate the naked
forcewake/uncore usage from the display power code.

v2: Mark the interface optional and warn if
    someone calls it when not provided (Jani)
    Include the header to make sure the extern
    declaration matches the definition (Jani)

Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/Makefile                 |  1 +
 .../drm/i915/display/intel_display_power.c    |  8 ++---
 drivers/gpu/drm/i915/display/intel_parent.c   | 17 ++++++++++
 drivers/gpu/drm/i915/display/intel_parent.h   |  3 ++
 drivers/gpu/drm/i915/i915_display_pc8.c       | 31 +++++++++++++++++++
 drivers/gpu/drm/i915/i915_display_pc8.h       |  9 ++++++
 drivers/gpu/drm/i915/i915_driver.c            |  2 ++
 include/drm/intel/display_parent_interface.h  |  8 +++++
 8 files changed, 75 insertions(+), 4 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.c
 create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.h

diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 175bd99e1d0d..b57e51d626b1 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
 
 # core display adaptation
 i915-y += \
+	i915_display_pc8.o \
 	i915_hdcp_gsc.o
 
 # "Graphics Technology" (aka we talk to the gpu)
diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index 9f323c39d798..47042a4c3a30 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
 		return;
 
 	/*
-	 * Make sure we're not on PC8 state before disabling PC8, otherwise
-	 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
+	 * Make sure we're not on PC8 state before disabling
+	 * PC8, otherwise we'll hang the machine.
 	 */
-	intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
+	intel_parent_pc8_block(display);
 
 	if (val & LCPLL_POWER_DOWN_ALLOW) {
 		val &= ~LCPLL_POWER_DOWN_ALLOW;
@@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
 				"Switching back to LCPLL failed\n");
 	}
 
-	intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
+	intel_parent_pc8_unblock(display);
 
 	intel_update_cdclk(display);
 	intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index 2ea310cc3509..ceb8ceea4ba4 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -17,6 +17,7 @@
  * function pointer interface.
  */
 
+#include <drm/drm_print.h>
 #include <drm/intel/display_parent_interface.h>
 
 #include "intel_display_core.h"
@@ -56,6 +57,22 @@ void intel_parent_irq_synchronize(struct intel_display *display)
 	display->parent->irq->synchronize(display->drm);
 }
 
+void intel_parent_pc8_block(struct intel_display *display)
+{
+	if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
+		return;
+
+	display->parent->pc8->block(display->drm);
+}
+
+void intel_parent_pc8_unblock(struct intel_display *display)
+{
+	if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
+		return;
+
+	display->parent->pc8->unblock(display->drm);
+}
+
 bool intel_parent_rps_available(struct intel_display *display)
 {
 	return display->parent->rps;
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 8f91a6f75c53..974a016ab3be 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -22,6 +22,9 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
 bool intel_parent_irq_enabled(struct intel_display *display);
 void intel_parent_irq_synchronize(struct intel_display *display);
 
+void intel_parent_pc8_block(struct intel_display *display);
+void intel_parent_pc8_unblock(struct intel_display *display);
+
 bool intel_parent_rps_available(struct intel_display *display);
 void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
 void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
new file mode 100644
index 000000000000..2af5dbab20ef
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_display_pc8.c
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2025, Intel Corporation.
+ */
+
+#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
+
+#include "i915_display_pc8.h"
+#include "i915_drv.h"
+#include "intel_uncore.h"
+
+static void i915_display_pc8_block(struct drm_device *drm)
+{
+	struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+	/* to prevent PC8 state, just enable force_wake */
+	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
+}
+
+static void i915_display_pc8_unblock(struct drm_device *drm)
+{
+	struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
+}
+
+const struct intel_display_pc8_interface i915_display_pc8_interface = {
+	.block = i915_display_pc8_block,
+	.unblock = i915_display_pc8_unblock,
+};
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
new file mode 100644
index 000000000000..717f313d2a21
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_display_pc8.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2025 Intel Corporation */
+
+#ifndef __I915_DISPLAY_PC8_H__
+#define __I915_DISPLAY_PC8_H__
+
+extern const struct intel_display_pc8_interface i915_display_pc8_interface;
+
+#endif /* __I915_DISPLAY_PC8_H__ */
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index d98839427ef9..723cb424b2ba 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -89,6 +89,7 @@
 #include "pxp/intel_pxp_pm.h"
 
 #include "i915_debugfs.h"
+#include "i915_display_pc8.h"
 #include "i915_driver.h"
 #include "i915_drm_client.h"
 #include "i915_drv.h"
@@ -761,6 +762,7 @@ static const struct intel_display_parent_interface parent = {
 	.hdcp = &i915_display_hdcp_interface,
 	.rpm = &i915_display_rpm_interface,
 	.irq = &i915_display_irq_interface,
+	.pc8 = &i915_display_pc8_interface,
 	.rps = &i915_display_rps_interface,
 	.vgpu_active = vgpu_active,
 	.has_fenced_regions = has_fenced_regions,
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 61d1b22adc83..f07d265e90e5 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -41,6 +41,11 @@ struct intel_display_irq_interface {
 	void (*synchronize)(struct drm_device *drm);
 };
 
+struct intel_display_pc8_interface {
+	void (*block)(struct drm_device *drm);
+	void (*unblock)(struct drm_device *drm);
+};
+
 struct intel_display_rps_interface {
 	void (*boost_if_not_started)(struct dma_fence *fence);
 	void (*mark_interactive)(struct drm_device *drm, bool interactive);
@@ -69,6 +74,9 @@ struct intel_display_parent_interface {
 	/** @irq: IRQ interface */
 	const struct intel_display_irq_interface *irq;
 
+	/** @pc8: PC8 interface. Optional. */
+	const struct intel_display_pc8_interface *pc8;
+
 	/** @rpm: RPS interface. Optional. */
 	const struct intel_display_rps_interface *rps;
 
-- 
2.51.2


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

* Re: [PATCH v2] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-10 17:26 ` [PATCH v2] " Ville Syrjala
@ 2025-12-11  8:42   ` Jani Nikula
  0 siblings, 0 replies; 16+ messages in thread
From: Jani Nikula @ 2025-12-11  8:42 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Wed, 10 Dec 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> We use forcewake to prevent the SoC from actually entering
> PC8 while performing the PC8 disable sequence. Hide that
> behind a new parent interface to eliminate the naked
> forcewake/uncore usage from the display power code.
>
> v2: Mark the interface optional and warn if
>     someone calls it when not provided (Jani)
>     Include the header to make sure the extern
>     declaration matches the definition (Jani)
>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Reviewed-by: Jani Nikula <jani.nikula@intel.com>

> ---
>  drivers/gpu/drm/i915/Makefile                 |  1 +
>  .../drm/i915/display/intel_display_power.c    |  8 ++---
>  drivers/gpu/drm/i915/display/intel_parent.c   | 17 ++++++++++
>  drivers/gpu/drm/i915/display/intel_parent.h   |  3 ++
>  drivers/gpu/drm/i915/i915_display_pc8.c       | 31 +++++++++++++++++++
>  drivers/gpu/drm/i915/i915_display_pc8.h       |  9 ++++++
>  drivers/gpu/drm/i915/i915_driver.c            |  2 ++
>  include/drm/intel/display_parent_interface.h  |  8 +++++
>  8 files changed, 75 insertions(+), 4 deletions(-)
>  create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.c
>  create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.h
>
> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
> index 175bd99e1d0d..b57e51d626b1 100644
> --- a/drivers/gpu/drm/i915/Makefile
> +++ b/drivers/gpu/drm/i915/Makefile
> @@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
>  
>  # core display adaptation
>  i915-y += \
> +	i915_display_pc8.o \
>  	i915_hdcp_gsc.o
>  
>  # "Graphics Technology" (aka we talk to the gpu)
> diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
> index 9f323c39d798..47042a4c3a30 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_power.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_power.c
> @@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
>  		return;
>  
>  	/*
> -	 * Make sure we're not on PC8 state before disabling PC8, otherwise
> -	 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
> +	 * Make sure we're not on PC8 state before disabling
> +	 * PC8, otherwise we'll hang the machine.
>  	 */
> -	intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
> +	intel_parent_pc8_block(display);
>  
>  	if (val & LCPLL_POWER_DOWN_ALLOW) {
>  		val &= ~LCPLL_POWER_DOWN_ALLOW;
> @@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
>  				"Switching back to LCPLL failed\n");
>  	}
>  
> -	intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
> +	intel_parent_pc8_unblock(display);
>  
>  	intel_update_cdclk(display);
>  	intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
> index 2ea310cc3509..ceb8ceea4ba4 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.c
> +++ b/drivers/gpu/drm/i915/display/intel_parent.c
> @@ -17,6 +17,7 @@
>   * function pointer interface.
>   */
>  
> +#include <drm/drm_print.h>
>  #include <drm/intel/display_parent_interface.h>
>  
>  #include "intel_display_core.h"
> @@ -56,6 +57,22 @@ void intel_parent_irq_synchronize(struct intel_display *display)
>  	display->parent->irq->synchronize(display->drm);
>  }
>  
> +void intel_parent_pc8_block(struct intel_display *display)
> +{
> +	if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
> +		return;
> +
> +	display->parent->pc8->block(display->drm);
> +}
> +
> +void intel_parent_pc8_unblock(struct intel_display *display)
> +{
> +	if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
> +		return;
> +
> +	display->parent->pc8->unblock(display->drm);
> +}
> +
>  bool intel_parent_rps_available(struct intel_display *display)
>  {
>  	return display->parent->rps;
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
> index 8f91a6f75c53..974a016ab3be 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.h
> +++ b/drivers/gpu/drm/i915/display/intel_parent.h
> @@ -22,6 +22,9 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
>  bool intel_parent_irq_enabled(struct intel_display *display);
>  void intel_parent_irq_synchronize(struct intel_display *display);
>  
> +void intel_parent_pc8_block(struct intel_display *display);
> +void intel_parent_pc8_unblock(struct intel_display *display);
> +
>  bool intel_parent_rps_available(struct intel_display *display);
>  void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
>  void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
> diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
> new file mode 100644
> index 000000000000..2af5dbab20ef
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/i915_display_pc8.c
> @@ -0,0 +1,31 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright 2025, Intel Corporation.
> + */
> +
> +#include <drm/drm_print.h>
> +#include <drm/intel/display_parent_interface.h>
> +
> +#include "i915_display_pc8.h"
> +#include "i915_drv.h"
> +#include "intel_uncore.h"
> +
> +static void i915_display_pc8_block(struct drm_device *drm)
> +{
> +	struct intel_uncore *uncore = &to_i915(drm)->uncore;
> +
> +	/* to prevent PC8 state, just enable force_wake */
> +	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
> +}
> +
> +static void i915_display_pc8_unblock(struct drm_device *drm)
> +{
> +	struct intel_uncore *uncore = &to_i915(drm)->uncore;
> +
> +	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
> +}
> +
> +const struct intel_display_pc8_interface i915_display_pc8_interface = {
> +	.block = i915_display_pc8_block,
> +	.unblock = i915_display_pc8_unblock,
> +};
> diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
> new file mode 100644
> index 000000000000..717f313d2a21
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/i915_display_pc8.h
> @@ -0,0 +1,9 @@
> +/* SPDX-License-Identifier: MIT */
> +/* Copyright © 2025 Intel Corporation */
> +
> +#ifndef __I915_DISPLAY_PC8_H__
> +#define __I915_DISPLAY_PC8_H__
> +
> +extern const struct intel_display_pc8_interface i915_display_pc8_interface;
> +
> +#endif /* __I915_DISPLAY_PC8_H__ */
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index d98839427ef9..723cb424b2ba 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -89,6 +89,7 @@
>  #include "pxp/intel_pxp_pm.h"
>  
>  #include "i915_debugfs.h"
> +#include "i915_display_pc8.h"
>  #include "i915_driver.h"
>  #include "i915_drm_client.h"
>  #include "i915_drv.h"
> @@ -761,6 +762,7 @@ static const struct intel_display_parent_interface parent = {
>  	.hdcp = &i915_display_hdcp_interface,
>  	.rpm = &i915_display_rpm_interface,
>  	.irq = &i915_display_irq_interface,
> +	.pc8 = &i915_display_pc8_interface,
>  	.rps = &i915_display_rps_interface,
>  	.vgpu_active = vgpu_active,
>  	.has_fenced_regions = has_fenced_regions,
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index 61d1b22adc83..f07d265e90e5 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -41,6 +41,11 @@ struct intel_display_irq_interface {
>  	void (*synchronize)(struct drm_device *drm);
>  };
>  
> +struct intel_display_pc8_interface {
> +	void (*block)(struct drm_device *drm);
> +	void (*unblock)(struct drm_device *drm);
> +};
> +
>  struct intel_display_rps_interface {
>  	void (*boost_if_not_started)(struct dma_fence *fence);
>  	void (*mark_interactive)(struct drm_device *drm, bool interactive);
> @@ -69,6 +74,9 @@ struct intel_display_parent_interface {
>  	/** @irq: IRQ interface */
>  	const struct intel_display_irq_interface *irq;
>  
> +	/** @pc8: PC8 interface. Optional. */
> +	const struct intel_display_pc8_interface *pc8;
> +
>  	/** @rpm: RPS interface. Optional. */
>  	const struct intel_display_rps_interface *rps;

-- 
Jani Nikula, Intel

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

* [PATCH v3] drm/i915/pc8: Add parent interface for PC8 forcewake tricks
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (6 preceding siblings ...)
  2025-12-10 17:26 ` [PATCH v2] " Ville Syrjala
@ 2025-12-18 18:20 ` Ville Syrjala
  2025-12-18 19:33 ` ✗ CI.checkpatch: warning for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3) Patchwork
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Ville Syrjala @ 2025-12-18 18:20 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe, Jani Nikula

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

We use forcewake to prevent the SoC from actually entering
PC8 while performing the PC8 disable sequence. Hide that
behind a new parent interface to eliminate the naked
forcewake/uncore usage from the display power code.

v2: Mark the interface optional and warn if
    someone calls it when not provided (Jani)
    Include the header to make sure the extern
    declaration matches the definition (Jani)
v3: Rebase due to shuffling

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/Makefile                 |  1 +
 .../drm/i915/display/intel_display_power.c    |  8 ++---
 drivers/gpu/drm/i915/display/intel_parent.c   | 17 ++++++++++
 drivers/gpu/drm/i915/display/intel_parent.h   |  4 +++
 drivers/gpu/drm/i915/i915_display_pc8.c       | 31 +++++++++++++++++++
 drivers/gpu/drm/i915/i915_display_pc8.h       |  9 ++++++
 drivers/gpu/drm/i915/i915_driver.c            |  2 ++
 include/drm/intel/display_parent_interface.h  |  8 +++++
 8 files changed, 76 insertions(+), 4 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.c
 create mode 100644 drivers/gpu/drm/i915/i915_display_pc8.h

diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index f01b5d8a07c7..5f7b2bbe448c 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
 
 # core display adaptation
 i915-y += \
+	i915_display_pc8.o \
 	i915_hdcp_gsc.o \
 	i915_panic.o
 
diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index 9f323c39d798..47042a4c3a30 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
 		return;
 
 	/*
-	 * Make sure we're not on PC8 state before disabling PC8, otherwise
-	 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
+	 * Make sure we're not on PC8 state before disabling
+	 * PC8, otherwise we'll hang the machine.
 	 */
-	intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
+	intel_parent_pc8_block(display);
 
 	if (val & LCPLL_POWER_DOWN_ALLOW) {
 		val &= ~LCPLL_POWER_DOWN_ALLOW;
@@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
 				"Switching back to LCPLL failed\n");
 	}
 
-	intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
+	intel_parent_pc8_unblock(display);
 
 	intel_update_cdclk(display);
 	intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index 9b1a84a439e9..72ae553f79a4 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -75,6 +75,23 @@ void intel_parent_panic_finish(struct intel_display *display, struct intel_panic
 	display->parent->panic->finish(panic);
 }
 
+/* pc8 */
+void intel_parent_pc8_block(struct intel_display *display)
+{
+	if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
+		return;
+
+	display->parent->pc8->block(display->drm);
+}
+
+void intel_parent_pc8_unblock(struct intel_display *display)
+{
+	if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
+		return;
+
+	display->parent->pc8->unblock(display->drm);
+}
+
 /* rps */
 bool intel_parent_rps_available(struct intel_display *display)
 {
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index a2a631fba118..47cdc14f9aa2 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -32,6 +32,10 @@ struct intel_panic *intel_parent_panic_alloc(struct intel_display *display);
 int intel_parent_panic_setup(struct intel_display *display, struct intel_panic *panic, struct drm_scanout_buffer *sb);
 void intel_parent_panic_finish(struct intel_display *display, struct intel_panic *panic);
 
+/* pc8 */
+void intel_parent_pc8_block(struct intel_display *display);
+void intel_parent_pc8_unblock(struct intel_display *display);
+
 /* rps */
 bool intel_parent_rps_available(struct intel_display *display);
 void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
new file mode 100644
index 000000000000..2af5dbab20ef
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_display_pc8.c
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2025, Intel Corporation.
+ */
+
+#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
+
+#include "i915_display_pc8.h"
+#include "i915_drv.h"
+#include "intel_uncore.h"
+
+static void i915_display_pc8_block(struct drm_device *drm)
+{
+	struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+	/* to prevent PC8 state, just enable force_wake */
+	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
+}
+
+static void i915_display_pc8_unblock(struct drm_device *drm)
+{
+	struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
+}
+
+const struct intel_display_pc8_interface i915_display_pc8_interface = {
+	.block = i915_display_pc8_block,
+	.unblock = i915_display_pc8_unblock,
+};
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
new file mode 100644
index 000000000000..717f313d2a21
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_display_pc8.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2025 Intel Corporation */
+
+#ifndef __I915_DISPLAY_PC8_H__
+#define __I915_DISPLAY_PC8_H__
+
+extern const struct intel_display_pc8_interface i915_display_pc8_interface;
+
+#endif /* __I915_DISPLAY_PC8_H__ */
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index 75f503e52e70..e025273e9ab1 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -89,6 +89,7 @@
 #include "pxp/intel_pxp_pm.h"
 
 #include "i915_debugfs.h"
+#include "i915_display_pc8.h"
 #include "i915_driver.h"
 #include "i915_drm_client.h"
 #include "i915_drv.h"
@@ -765,6 +766,7 @@ static const struct intel_display_parent_interface parent = {
 	.hdcp = &i915_display_hdcp_interface,
 	.irq = &i915_display_irq_interface,
 	.panic = &i915_display_panic_interface,
+	.pc8 = &i915_display_pc8_interface,
 	.rpm = &i915_display_rpm_interface,
 	.rps = &i915_display_rps_interface,
 	.stolen = &i915_display_stolen_interface,
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 55d4df714645..10c50b42844e 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -36,6 +36,11 @@ struct intel_display_panic_interface {
 	void (*finish)(struct intel_panic *panic);
 };
 
+struct intel_display_pc8_interface {
+	void (*block)(struct drm_device *drm);
+	void (*unblock)(struct drm_device *drm);
+};
+
 struct intel_display_rpm_interface {
 	struct ref_tracker *(*get)(const struct drm_device *drm);
 	struct ref_tracker *(*get_raw)(const struct drm_device *drm);
@@ -96,6 +101,9 @@ struct intel_display_parent_interface {
 	/** @panic: Panic interface */
 	const struct intel_display_panic_interface *panic;
 
+	/** @pc8: PC8 interface. Optional. */
+	const struct intel_display_pc8_interface *pc8;
+
 	/** @rpm: Runtime PM functions */
 	const struct intel_display_rpm_interface *rpm;
 
-- 
2.51.2


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

* ✗ CI.checkpatch: warning for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (7 preceding siblings ...)
  2025-12-18 18:20 ` [PATCH v3] " Ville Syrjala
@ 2025-12-18 19:33 ` Patchwork
  2025-12-18 19:34 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-18 19:33 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
URL   : https://patchwork.freedesktop.org/series/158685/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
5f54f403acc61a45ad2b4d68dfd74b336dce1968
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit c05cb76a4995b5b3c089e35e6b9529c0051a9a03
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date:   Thu Dec 18 20:20:52 2025 +0200

    drm/i915/pc8: Add parent interface for PC8 forcewake tricks
    
    We use forcewake to prevent the SoC from actually entering
    PC8 while performing the PC8 disable sequence. Hide that
    behind a new parent interface to eliminate the naked
    forcewake/uncore usage from the display power code.
    
    v2: Mark the interface optional and warn if
        someone calls it when not provided (Jani)
        Include the header to make sure the extern
        declaration matches the definition (Jani)
    v3: Rebase due to shuffling
    
    Reviewed-by: Jani Nikula <jani.nikula@intel.com>
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
+ /mt/dim checkpatch c25fd3953a459143758264a6c4dab32107bb48c4 drm-intel
c05cb76a4995 drm/i915/pc8: Add parent interface for PC8 forcewake tricks
-:106: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#106: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 135 lines checked



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

* ✓ CI.KUnit: success for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (8 preceding siblings ...)
  2025-12-18 19:33 ` ✗ CI.checkpatch: warning for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3) Patchwork
@ 2025-12-18 19:34 ` Patchwork
  2025-12-18 20:24 ` ✓ Xe.CI.BAT: " Patchwork
  2025-12-19 18:33 ` ✓ Xe.CI.Full: " Patchwork
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-18 19:34 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
URL   : https://patchwork.freedesktop.org/series/158685/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (9 preceding siblings ...)
  2025-12-18 19:34 ` ✓ CI.KUnit: success " Patchwork
@ 2025-12-18 20:24 ` Patchwork
  2025-12-19 18:33 ` ✓ Xe.CI.Full: " Patchwork
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-18 20:24 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
URL   : https://patchwork.freedesktop.org/series/158685/
State : success

== Summary ==

CI Bug Log - changes from xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7_BAT -> xe-pw-158685v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-158685v3_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#6519])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/bat-dg2-oem2/igt@xe_waitfence@engine.html

  
#### Possible fixes ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [FAIL][3] ([Intel XE#6520]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/bat-dg2-oem2/igt@xe_waitfence@reltime.html

  
  [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
  [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520


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

  * Linux: xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7 -> xe-pw-158685v3

  IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7: e0eb6ad399f8369d978ca40f07cbf5c6c16647d7
  xe-pw-158685v3: 158685v3

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
  2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
                   ` (10 preceding siblings ...)
  2025-12-18 20:24 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-19 18:33 ` Patchwork
  11 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-12-19 18:33 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3)
URL   : https://patchwork.freedesktop.org/series/158685/
State : success

== Summary ==

CI Bug Log - changes from xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7_FULL -> xe-pw-158685v3_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-158685v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_getversion@basic:
    - shard-bmg:          [PASS][1] -> [FAIL][2] ([Intel XE#6914]) +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@core_getversion@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@core_getversion@basic.html

  * igt@core_hotunplug@unbind-rebind:
    - shard-bmg:          [PASS][3] -> [SKIP][4] ([Intel XE#6779]) +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@core_hotunplug@unbind-rebind.html

  * igt@fbdev@nullptr:
    - shard-bmg:          [PASS][5] -> [SKIP][6] ([Intel XE#2134]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@fbdev@nullptr.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@fbdev@nullptr.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2327])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#1124]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#367])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2325])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2252])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][14] ([Intel XE#1178]) +1 other test fail
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2320]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-64x21.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [PASS][16] -> [SKIP][17] ([Intel XE#2291])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#1340])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2244])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][20] -> [SKIP][21] ([Intel XE#2373])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-10/igt@kms_feature_discovery@display-2x.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-4/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-bmg:          [PASS][22] -> [SKIP][23] ([Intel XE#2316]) +5 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3:
    - shard-bmg:          [PASS][24] -> [DMESG-FAIL][25] ([Intel XE#5545]) +1 other test dmesg-fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#6703]) +324 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2293]) +4 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2311]) +9 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#4141]) +6 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2313]) +7 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#5020])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#6886]) +7 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2505])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#6693]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#6693]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_pm_rpm@system-suspend-modeset.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1406] / [Intel XE#6703]) +8 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2413])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#1499])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_vrr@flip-basic.html

  * igt@testdisplay:
    - shard-bmg:          [PASS][43] -> [ABORT][44] ([Intel XE#6740])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@testdisplay.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@testdisplay.html

  * igt@xe_compute@eu-busy-10s:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#6599])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_compute@eu-busy-10s.html

  * igt@xe_eudebug@basic-read-event:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#4837]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@xe_eudebug@basic-read-event.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#6665] / [Intel XE#6681])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_eudebug_online@pagefault-write-stress.html

  * igt@xe_exec_basic@many-bindexecqueue-rebind:
    - shard-bmg:          [PASS][48] -> [SKIP][49] ([Intel XE#6703]) +619 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2322]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_compute_mode@twice-basic:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#6557] / [Intel XE#6703]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_compute_mode@twice-basic.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#6874]) +5 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#4943]) +12 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch:
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#6557] / [Intel XE#6703]) +7 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          NOTRUN -> [FAIL][56] ([Intel XE#6913])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_module_load@reload-no-display.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2284])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#944])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_sriov_scheduling@equal-throughput@numvfs-random:
    - shard-bmg:          NOTRUN -> [FAIL][59] ([Intel XE#5937]) +1 other test fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_sriov_scheduling@equal-throughput@numvfs-random.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotreplug-lateclose:
    - shard-bmg:          [SKIP][60] ([Intel XE#6779]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@core_hotunplug@hotreplug-lateclose.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@core_hotunplug@hotreplug-lateclose.html

  * igt@device_reset@unbind-reset-rebind:
    - shard-bmg:          [SKIP][62] ([Intel XE#6815]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@device_reset@unbind-reset-rebind.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@device_reset@unbind-reset-rebind.html

  * igt@fbdev@pan:
    - shard-bmg:          [SKIP][64] ([Intel XE#2134]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@fbdev@pan.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@fbdev@pan.html

  * igt@kms_addfb_basic@unused-handle:
    - shard-bmg:          [SKIP][66] ([Intel XE#6703]) -> [PASS][67] +606 other tests pass
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_addfb_basic@unused-handle.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_addfb_basic@unused-handle.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][68] ([Intel XE#2316]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][70] ([Intel XE#301]) -> [PASS][71] +1 other test pass
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2:
    - shard-bmg:          [ABORT][72] ([Intel XE#6740]) -> [PASS][73] +1 other test pass
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [SKIP][74] ([Intel XE#6693]) -> [PASS][75] +2 other tests pass
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_pm_rpm@i2c.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_pm_rpm@i2c.html

  * igt@xe_exec_system_allocator@once-mmap-race-nomemset:
    - shard-bmg:          [SKIP][76] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][77] +5 other tests pass
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][78] ([Intel XE#2229]) -> [PASS][79] +1 other test pass
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@xe_live_ktest@xe_bo.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
    - shard-lnl:          [FAIL][80] ([Intel XE#6251]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html

  
#### Warnings ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][82] ([Intel XE#2370]) -> [SKIP][83] ([Intel XE#6703])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-bmg:          [SKIP][84] ([Intel XE#6703]) -> [SKIP][85] ([Intel XE#2327]) +3 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][86] ([Intel XE#2327]) -> [SKIP][87] ([Intel XE#6703]) +7 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][88] ([Intel XE#1124]) -> [SKIP][89] ([Intel XE#6703]) +8 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-bmg:          [SKIP][90] ([Intel XE#6703]) -> [SKIP][91] ([Intel XE#1124]) +8 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          [SKIP][92] ([Intel XE#2328]) -> [SKIP][93] ([Intel XE#6703])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][94] ([Intel XE#6703]) -> [SKIP][95] ([Intel XE#607])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][96] ([Intel XE#6703]) -> [SKIP][97] ([Intel XE#610])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][98] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][99] ([Intel XE#6703]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          [SKIP][100] ([Intel XE#6703]) -> [SKIP][101] ([Intel XE#2314] / [Intel XE#2894])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-bmg:          [SKIP][102] ([Intel XE#6703]) -> [SKIP][103] ([Intel XE#367]) +2 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][104] ([Intel XE#367]) -> [SKIP][105] ([Intel XE#6703]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][106] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][107] ([Intel XE#6703]) +2 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
    - shard-bmg:          [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#3432]) +2 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][110] ([Intel XE#2887]) -> [SKIP][111] ([Intel XE#6703]) +16 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2887]) +14 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][114] ([Intel XE#2724]) -> [SKIP][115] ([Intel XE#6703])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          [SKIP][116] ([Intel XE#6703]) -> [SKIP][117] ([Intel XE#2724]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          [SKIP][118] ([Intel XE#2325]) -> [SKIP][119] ([Intel XE#6703]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_color@gamma:
    - shard-bmg:          [SKIP][120] ([Intel XE#6703]) -> [SKIP][121] ([Intel XE#2325])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_chamelium_color@gamma.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][122] ([Intel XE#6703]) -> [SKIP][123] ([Intel XE#2252]) +8 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-bmg:          [SKIP][124] ([Intel XE#2252]) -> [SKIP][125] ([Intel XE#6703]) +10 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][126] ([Intel XE#2341]) -> [SKIP][127] ([Intel XE#6703]) +2 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_content_protection@content-type-change.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#2390])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][130] ([Intel XE#6707]) -> [SKIP][131] ([Intel XE#6703])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_content_protection@uevent.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-bmg:          [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#2321]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-bmg:          [SKIP][134] ([Intel XE#2320]) -> [SKIP][135] ([Intel XE#6703]) +2 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#2320]) +4 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          [SKIP][138] ([Intel XE#2321]) -> [SKIP][139] ([Intel XE#6703]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-bmg:          [SKIP][140] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][141] ([Intel XE#2320])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][142] ([Intel XE#2291]) -> [SKIP][143] ([Intel XE#6703])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#2286])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-bmg:          [SKIP][146] ([Intel XE#6703]) -> [SKIP][147] ([Intel XE#4354])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          [SKIP][148] ([Intel XE#4354]) -> [SKIP][149] ([Intel XE#6703]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][150] ([Intel XE#4331]) -> [SKIP][151] ([Intel XE#6703])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#2244]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          [SKIP][154] ([Intel XE#2244]) -> [SKIP][155] ([Intel XE#6703])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-bmg:          [SKIP][156] ([Intel XE#4422]) -> [SKIP][157] ([Intel XE#6703]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          [SKIP][158] ([Intel XE#776]) -> [SKIP][159] ([Intel XE#6703])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_fbcon_fbt@psr.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          [SKIP][160] ([Intel XE#6703]) -> [SKIP][161] ([Intel XE#776])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          [SKIP][162] ([Intel XE#2372]) -> [SKIP][163] ([Intel XE#6703])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_feature_discovery@chamelium.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          [SKIP][164] ([Intel XE#1138]) -> [SKIP][165] ([Intel XE#6703])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_feature_discovery@display-4x.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#2374])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_feature_discovery@psr2.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [SKIP][168] ([Intel XE#2316]) -> [SKIP][169] ([Intel XE#6703])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-bmg:          [SKIP][172] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][173] ([Intel XE#6703]) +3 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][174] ([Intel XE#2311]) -> [SKIP][175] ([Intel XE#2312]) +8 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#2311]) +26 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][178] ([Intel XE#6703]) -> [SKIP][179] ([Intel XE#4141]) +10 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][180] ([Intel XE#4141]) -> [SKIP][181] ([Intel XE#6703]) +11 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][182] ([Intel XE#4141]) -> [SKIP][183] ([Intel XE#2312]) +4 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][184] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][185] ([Intel XE#4141])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          [SKIP][186] ([Intel XE#2352]) -> [SKIP][187] ([Intel XE#6703])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][188] ([Intel XE#2311]) -> [SKIP][189] ([Intel XE#6703]) +29 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          [SKIP][190] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][191] ([Intel XE#2311])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][192] ([Intel XE#6703]) -> [SKIP][193] ([Intel XE#2313]) +32 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][194] ([Intel XE#2313]) -> [SKIP][195] ([Intel XE#2312]) +6 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-bmg:          [SKIP][196] ([Intel XE#2313]) -> [SKIP][197] ([Intel XE#6703]) +24 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][198] ([Intel XE#2312]) -> [SKIP][199] ([Intel XE#6703]) +11 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][200] ([Intel XE#2312]) -> [SKIP][201] ([Intel XE#2313]) +2 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-bmg:          [ABORT][202] ([Intel XE#6740]) -> [SKIP][203] ([Intel XE#6703])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_hdr@bpc-switch-suspend.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [ABORT][204] ([Intel XE#6740]) -> [SKIP][205] ([Intel XE#1503])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][206] ([Intel XE#6703]) -> [SKIP][207] ([Intel XE#6901])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          [SKIP][208] ([Intel XE#6911]) -> [SKIP][209] ([Intel XE#6703])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          [SKIP][210] ([Intel XE#4298]) -> [SKIP][211] ([Intel XE#6703])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][212] ([Intel XE#6703]) -> [SKIP][213] ([Intel XE#6911])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][214] ([Intel XE#6703]) -> [SKIP][215] ([Intel XE#2486])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_panel_fitting@legacy.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          [SKIP][216] ([Intel XE#6703]) -> [SKIP][217] ([Intel XE#4329])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          [SKIP][218] ([Intel XE#6703]) -> [SKIP][219] ([Intel XE#2393])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][220] ([Intel XE#2393]) -> [SKIP][221] ([Intel XE#6703])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][222] ([Intel XE#4596]) -> [SKIP][223] ([Intel XE#5021])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][224] ([Intel XE#6703]) -> [SKIP][225] ([Intel XE#5020])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-bmg:          [SKIP][226] ([Intel XE#6703]) -> [SKIP][227] ([Intel XE#6886]) +1 other test skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [SKIP][228] ([Intel XE#6886]) -> [SKIP][229] ([Intel XE#6703]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][230] ([Intel XE#6703]) -> [SKIP][231] ([Intel XE#2938])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          [SKIP][232] ([Intel XE#870]) -> [SKIP][233] ([Intel XE#6703])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-bmg:          [SKIP][234] ([Intel XE#6703]) -> [SKIP][235] ([Intel XE#870])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-7/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][236] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][237] ([Intel XE#6693])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][238] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][239] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][240] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][241] ([Intel XE#1406] / [Intel XE#6703]) +6 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          [SKIP][242] ([Intel XE#1406] / [Intel XE#2387]) -> [SKIP][243] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          [SKIP][244] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][245] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr2-primary-page-flip:
    - shard-bmg:          [SKIP][246] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][247] ([Intel XE#1406] / [Intel XE#6703]) +11 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_psr@psr2-primary-page-flip.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_psr@psr2-primary-page-flip.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][248] ([Intel XE#1406] / [Intel XE#2414]) -> [SKIP][249] ([Intel XE#1406] / [Intel XE#6703])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][250] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][251] ([Intel XE#6703]) +4 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@kms_rotation_crc@bad-pixel-format.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          [SKIP][252] ([Intel XE#6703]) -> [SKIP][253] ([Intel XE#3414] / [Intel XE#3904])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][254] ([Intel XE#6703]) -> [SKIP][255] ([Intel XE#1435])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-tap:
    - shard-bmg:          [SKIP][256] ([Intel XE#6703]) -> [SKIP][257] ([Intel XE#6503]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_sharpness_filter@filter-tap.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@kms_sharpness_filter@filter-tap.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          [SKIP][258] ([Intel XE#6503]) -> [SKIP][259] ([Intel XE#6703]) +2 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][260] ([Intel XE#1729]) -> [SKIP][261] ([Intel XE#6703])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][262] ([Intel XE#2426]) -> [SKIP][263] ([Intel XE#2509])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][264] ([Intel XE#6703]) -> [SKIP][265] ([Intel XE#1499]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@kms_vrr@flip-suspend.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@flipline:
    - shard-bmg:          [SKIP][266] ([Intel XE#1499]) -> [SKIP][267] ([Intel XE#6703]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@kms_vrr@flipline.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@kms_vrr@flipline.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          [SKIP][268] ([Intel XE#6599]) -> [SKIP][269] ([Intel XE#6703]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@xe_compute@ccs-mode-basic.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          [SKIP][270] ([Intel XE#2504]) -> [SKIP][271] ([Intel XE#6703])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          [SKIP][272] ([Intel XE#6703]) -> [SKIP][273] ([Intel XE#4837]) +10 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_eudebug@basic-vm-access-userptr.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          [SKIP][274] ([Intel XE#4837]) -> [SKIP][275] ([Intel XE#6703]) +5 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug_online@pagefault-read-stress:
    - shard-bmg:          [SKIP][276] ([Intel XE#6665] / [Intel XE#6681]) -> [SKIP][277] ([Intel XE#6703])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@xe_eudebug_online@pagefault-read-stress.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-bmg:          [SKIP][278] ([Intel XE#6703]) -> [SKIP][279] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          [SKIP][280] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][281] ([Intel XE#6703]) +3 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@xe_eudebug_online@single-step.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_eudebug_online@single-step.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][282] ([Intel XE#6321]) -> [SKIP][283] ([Intel XE#6703])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][284] ([Intel XE#2322]) -> [SKIP][285] ([Intel XE#6703]) +8 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-bmg:          [SKIP][286] ([Intel XE#6703]) -> [SKIP][287] ([Intel XE#2322]) +6 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
    - shard-bmg:          [SKIP][288] ([Intel XE#6874]) -> [SKIP][289] ([Intel XE#6703]) +29 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html

  * igt@xe_exec_multi_queue@one-queue-priority-smem:
    - shard-bmg:          [SKIP][290] ([Intel XE#6703]) -> [SKIP][291] ([Intel XE#6874]) +27 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-priority-smem.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-7/igt@xe_exec_multi_queue@one-queue-priority-smem.html

  * igt@xe_exec_system_allocator@many-64k-mmap-huge:
    - shard-bmg:          [SKIP][292] ([Intel XE#6703]) -> [SKIP][293] ([Intel XE#5007])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-huge.html

  * igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][294] ([Intel XE#5007]) -> [SKIP][295] ([Intel XE#6703])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-9/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][296] ([Intel XE#6703]) -> [SKIP][297] ([Intel XE#4943]) +24 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@prefetch-sys-benchmark:
    - shard-bmg:          [ABORT][298] ([Intel XE#5545]) -> [SKIP][299] ([Intel XE#6703])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@xe_exec_system_allocator@prefetch-sys-benchmark.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_exec_system_allocator@prefetch-sys-benchmark.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge:
    - shard-bmg:          [SKIP][300] ([Intel XE#4943]) -> [SKIP][301] ([Intel XE#6703]) +21 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          [SKIP][302] ([Intel XE#6703]) -> [SKIP][303] ([Intel XE#6281])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          [SKIP][304] ([Intel XE#6703]) -> [SKIP][305] ([Intel XE#1420])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3hot-i2c:
    - shard-bmg:          [SKIP][306] ([Intel XE#6703]) -> [SKIP][307] ([Intel XE#5742])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_pm@d3hot-i2c.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-2/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          [SKIP][308] ([Intel XE#4733]) -> [SKIP][309] ([Intel XE#6703]) +3 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@xe_pxp@display-pxp-fb.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          [SKIP][310] ([Intel XE#6703]) -> [SKIP][311] ([Intel XE#4733]) +3 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          [SKIP][312] ([Intel XE#944]) -> [SKIP][313] ([Intel XE#6703]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-bmg:          [SKIP][314] ([Intel XE#6703]) -> [SKIP][315] ([Intel XE#944]) +1 other test skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7/shard-bmg-5/igt@xe_query@multigpu-query-invalid-size.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158685v3/shard-bmg-8/igt@xe_query@multigpu-query-invalid-size.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#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#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [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#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6815
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6913]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6913
  [Intel XE#6914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6914
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7 -> xe-pw-158685v3

  IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4267-e0eb6ad399f8369d978ca40f07cbf5c6c16647d7: e0eb6ad399f8369d978ca40f07cbf5c6c16647d7
  xe-pw-158685v3: 158685v3

== Logs ==

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

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

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

end of thread, other threads:[~2025-12-19 18:33 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-09 11:11 [PATCH] drm/i915/pc8: Add parent interface for PC8 forcewake tricks Ville Syrjala
2025-12-09 11:17 ` ✗ CI.checkpatch: warning for " Patchwork
2025-12-09 11:18 ` ✓ CI.KUnit: success " Patchwork
2025-12-09 11:33 ` ✗ CI.checksparse: warning " Patchwork
2025-12-09 12:13 ` [PATCH] " Jani Nikula
2025-12-09 12:23   ` Jani Nikula
2025-12-09 19:59   ` Ville Syrjälä
2025-12-09 12:24 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-12-09 17:39 ` ✗ Xe.CI.Full: failure " Patchwork
2025-12-10 17:26 ` [PATCH v2] " Ville Syrjala
2025-12-11  8:42   ` Jani Nikula
2025-12-18 18:20 ` [PATCH v3] " Ville Syrjala
2025-12-18 19:33 ` ✗ CI.checkpatch: warning for drm/i915/pc8: Add parent interface for PC8 forcewake tricks (rev3) Patchwork
2025-12-18 19:34 ` ✓ CI.KUnit: success " Patchwork
2025-12-18 20:24 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-19 18:33 ` ✓ Xe.CI.Full: " Patchwork

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