All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] drm/i915: Clean up GPIO pin stuff
@ 2026-06-23 12:51 Ville Syrjala
  2026-06-23 12:51 ` [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins Ville Syrjala
                   ` (12 more replies)
  0 siblings, 13 replies; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

Our GPIO pin naming is confusing. Clean it up a bit.

Ville Syrjälä (6):
  drm/i915/gmbus: Rename GPIO pins
  drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/
  drm/i915/gmbus: Add gmbus_pins_lpt_lp[]
  drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/
  drm/i915/gmbus: Drop the platform suffixes from GMBUS pins
  drm/i915/hdmi: Remove CNP port F leftovers

 drivers/gpu/drm/i915/display/intel_bios.c  |  62 ++++-----
 drivers/gpu/drm/i915/display/intel_gmbus.c | 148 +++++++++++----------
 drivers/gpu/drm/i915/display/intel_gmbus.h |  22 +--
 drivers/gpu/drm/i915/display/intel_hdmi.c  |  43 +++---
 4 files changed, 140 insertions(+), 135 deletions(-)

-- 
2.53.0


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

* [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
@ 2026-06-23 12:51 ` Ville Syrjala
  2026-06-23 14:43   ` Michał Grzelak
  2026-06-23 12:51 ` [PATCH 2/6] drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/ Ville Syrjala
                   ` (11 subsequent siblings)
  12 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

Replace the alphabetical GPIOA,GPIOB,... with numeric
GPIO_0,GPIO_1,... This makes the naming scheme agree with
BSpec. No idea why the alphabetical naming was originally
chosen as BSpec never used that convention for the GPIO pins.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_gmbus.c | 124 ++++++++++-----------
 1 file changed, 62 insertions(+), 62 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 049157c41fe2..9990e6391b03 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -54,21 +54,21 @@ struct intel_gmbus {
 };
 
 enum gmbus_gpio {
-	GPIOA,
-	GPIOB,
-	GPIOC,
-	GPIOD,
-	GPIOE,
-	GPIOF,
-	GPIOG,
-	GPIOH,
-	__GPIOI_UNUSED,
-	GPIOJ,
-	GPIOK,
-	GPIOL,
-	GPIOM,
-	GPION,
-	GPIOO,
+	GPIO_0,
+	GPIO_1,
+	GPIO_2,
+	GPIO_3,
+	GPIO_4,
+	GPIO_5,
+	GPIO_6,
+	GPIO_7,
+	GPIO_8,
+	GPIO_9,
+	GPIO_10,
+	GPIO_11,
+	GPIO_12,
+	GPIO_13,
+	GPIO_14,
 };
 
 struct gmbus_pin {
@@ -78,77 +78,77 @@ struct gmbus_pin {
 
 /* Map gmbus pin pairs to names and registers. */
 static const struct gmbus_pin gmbus_pins[] = {
-	[GMBUS_PIN_SSC] = { "ssc", GPIOB },
-	[GMBUS_PIN_VGADDC] = { "vga", GPIOA },
-	[GMBUS_PIN_PANEL] = { "panel", GPIOC },
-	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
-	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
-	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
+	[GMBUS_PIN_SSC] = { "ssc", GPIO_1 },
+	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
+	[GMBUS_PIN_PANEL] = { "panel", GPIO_2 },
+	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
+	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
 };
 
 static const struct gmbus_pin gmbus_pins_bdw[] = {
-	[GMBUS_PIN_VGADDC] = { "vga", GPIOA },
-	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
-	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
-	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
+	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
+	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
+	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
 };
 
 static const struct gmbus_pin gmbus_pins_skl[] = {
-	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
-	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
-	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
+	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
+	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
 };
 
 static const struct gmbus_pin gmbus_pins_bxt[] = {
-	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
-	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
-	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
+	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
+	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
+	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
 };
 
 static const struct gmbus_pin gmbus_pins_cnp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
-	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
-	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
+	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
+	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
+	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
+	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
 };
 
 static const struct gmbus_pin gmbus_pins_icp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
-	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIOK },
-	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIOL },
-	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIOM },
-	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPION },
-	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIOO },
+	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
+	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
+	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
+	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPIO_13 },
+	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIO_14 },
 };
 
 static const struct gmbus_pin gmbus_pins_dg1[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
+	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
 };
 
 static const struct gmbus_pin gmbus_pins_dg2[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
+	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
 };
 
 static const struct gmbus_pin gmbus_pins_mtp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
-	[GMBUS_PIN_5_MTP] = { "dpe", GPIOF },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
-	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIOK },
-	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIOL },
-	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIOM },
+	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_5_MTP] = { "dpe", GPIO_5 },
+	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
+	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
+	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
 };
 
 static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
-- 
2.53.0


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

* [PATCH 2/6] drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
  2026-06-23 12:51 ` [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins Ville Syrjala
@ 2026-06-23 12:51 ` Ville Syrjala
  2026-06-23 14:43   ` Michał Grzelak
  2026-06-23 12:51 ` [PATCH 3/6] drm/i915/gmbus: Add gmbus_pins_lpt_lp[] Ville Syrjala
                   ` (10 subsequent siblings)
  12 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The GMBUS pin pair <-> GPIO mapping is purely a property
of the PCH (on the platforms where GMBUS lives in the PCH).
So rename gmbus_pins_bdw[] to gmbus_pins_lpt[] and extend
it to cover all platforms with LPT/WPT PCHs.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_gmbus.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 9990e6391b03..2869ec23e1ec 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -86,7 +86,7 @@ static const struct gmbus_pin gmbus_pins[] = {
 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
 };
 
-static const struct gmbus_pin gmbus_pins_bdw[] = {
+static const struct gmbus_pin gmbus_pins_lpt[] = {
 	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
@@ -178,9 +178,9 @@ static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
 	} else if (DISPLAY_VER(display) == 9) {
 		pins = gmbus_pins_skl;
 		size = ARRAY_SIZE(gmbus_pins_skl);
-	} else if (display->platform.broadwell) {
-		pins = gmbus_pins_bdw;
-		size = ARRAY_SIZE(gmbus_pins_bdw);
+	} else if (HAS_PCH_LPT(display)) {
+		pins = gmbus_pins_lpt;
+		size = ARRAY_SIZE(gmbus_pins_lpt);
 	} else {
 		pins = gmbus_pins;
 		size = ARRAY_SIZE(gmbus_pins);
-- 
2.53.0


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

* [PATCH 3/6] drm/i915/gmbus: Add gmbus_pins_lpt_lp[]
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
  2026-06-23 12:51 ` [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins Ville Syrjala
  2026-06-23 12:51 ` [PATCH 2/6] drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/ Ville Syrjala
@ 2026-06-23 12:51 ` Ville Syrjala
  2026-06-23 14:45   ` Michał Grzelak
  2026-06-23 12:51 ` [PATCH 4/6] drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/ Ville Syrjala
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

LPT/WPT-LP don't have as many GOIO pins as the -H variants.
Add proper mapping for the -LP PCHs so that we can't end up
poking at non-existent GPIOs.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_gmbus.c | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 2869ec23e1ec..f69b8841c5dd 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -86,13 +86,18 @@ static const struct gmbus_pin gmbus_pins[] = {
 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
 };
 
-static const struct gmbus_pin gmbus_pins_lpt[] = {
+static const struct gmbus_pin gmbus_pins_lpt_h[] = {
 	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
 };
 
+static const struct gmbus_pin gmbus_pins_lpt_lp[] = {
+	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
+};
+
 static const struct gmbus_pin gmbus_pins_skl[] = {
 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
@@ -178,9 +183,12 @@ static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
 	} else if (DISPLAY_VER(display) == 9) {
 		pins = gmbus_pins_skl;
 		size = ARRAY_SIZE(gmbus_pins_skl);
+	} else if (HAS_PCH_LPT_LP(display)) {
+		pins = gmbus_pins_lpt_lp;
+		size = ARRAY_SIZE(gmbus_pins_lpt_lp);
 	} else if (HAS_PCH_LPT(display)) {
-		pins = gmbus_pins_lpt;
-		size = ARRAY_SIZE(gmbus_pins_lpt);
+		pins = gmbus_pins_lpt_h;
+		size = ARRAY_SIZE(gmbus_pins_lpt_h);
 	} else {
 		pins = gmbus_pins;
 		size = ARRAY_SIZE(gmbus_pins);
-- 
2.53.0


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

* [PATCH 4/6] drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (2 preceding siblings ...)
  2026-06-23 12:51 ` [PATCH 3/6] drm/i915/gmbus: Add gmbus_pins_lpt_lp[] Ville Syrjala
@ 2026-06-23 12:51 ` Ville Syrjala
  2026-06-23 14:45   ` Michał Grzelak
  2026-06-23 12:51 ` [PATCH 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins Ville Syrjala
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The GMBUS pin pair <-> GPIO mapping is purely a property
of the PCH (on the platforms where GMBUS lives in the PCH).
So rename gmbus_pins_skl[] to gmbus_pins_spt[] and apply
it based on the presence of the correct PCH type.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_gmbus.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index f69b8841c5dd..dec0f66f756f 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -98,7 +98,7 @@ static const struct gmbus_pin gmbus_pins_lpt_lp[] = {
 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
 };
 
-static const struct gmbus_pin gmbus_pins_skl[] = {
+static const struct gmbus_pin gmbus_pins_spt[] = {
 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
@@ -180,9 +180,9 @@ static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
 	} else if (display->platform.geminilake || display->platform.broxton) {
 		pins = gmbus_pins_bxt;
 		size = ARRAY_SIZE(gmbus_pins_bxt);
-	} else if (DISPLAY_VER(display) == 9) {
-		pins = gmbus_pins_skl;
-		size = ARRAY_SIZE(gmbus_pins_skl);
+	} else if (HAS_PCH_SPT(display)) {
+		pins = gmbus_pins_spt;
+		size = ARRAY_SIZE(gmbus_pins_spt);
 	} else if (HAS_PCH_LPT_LP(display)) {
 		pins = gmbus_pins_lpt_lp;
 		size = ARRAY_SIZE(gmbus_pins_lpt_lp);
-- 
2.53.0


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

* [PATCH 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (3 preceding siblings ...)
  2026-06-23 12:51 ` [PATCH 4/6] drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/ Ville Syrjala
@ 2026-06-23 12:51 ` Ville Syrjala
  2026-06-23 14:11   ` [PATCH v2 " Ville Syrjala
  2026-06-23 12:51 ` [PATCH 6/6] drm/i915/hdmi: Remove CNP port F leftovers Ville Syrjala
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The modern GMBUS pin numbers are just a sequential set of
numbers, so the platform suffixes don't really buy us anything.
Let's just drop them. We'll keep the _TCx suffixes for pins
9+ since that's the way they always get used.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_bios.c  | 62 ++++++++++----------
 drivers/gpu/drm/i915/display/intel_gmbus.c | 68 +++++++++++-----------
 drivers/gpu/drm/i915/display/intel_gmbus.h | 22 +++----
 drivers/gpu/drm/i915/display/intel_hdmi.c  | 42 ++++++-------
 4 files changed, 97 insertions(+), 97 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index b6fe87c29aa7..15ebadc72b88 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -2197,52 +2197,52 @@ static u8 translate_iboost(struct intel_display *display, u8 val)
 
 static const u8 cnp_ddc_pin_map[] = {
 	[0] = 0, /* N/A */
-	[GMBUS_PIN_1_BXT] = DDC_BUS_DDI_B,
-	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_C,
-	[GMBUS_PIN_4_CNP] = DDC_BUS_DDI_D, /* sic */
-	[GMBUS_PIN_3_BXT] = DDC_BUS_DDI_F, /* sic */
+	[GMBUS_PIN_1] = DDC_BUS_DDI_B,
+	[GMBUS_PIN_2] = DDC_BUS_DDI_C,
+	[GMBUS_PIN_4] = DDC_BUS_DDI_D, /* sic */
+	[GMBUS_PIN_3] = DDC_BUS_DDI_F, /* sic */
 };
 
 static const u8 icp_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
-	[GMBUS_PIN_3_BXT] = TGL_DDC_BUS_DDI_C,
-	[GMBUS_PIN_9_TC1_ICP] = ICL_DDC_BUS_PORT_1,
-	[GMBUS_PIN_10_TC2_ICP] = ICL_DDC_BUS_PORT_2,
-	[GMBUS_PIN_11_TC3_ICP] = ICL_DDC_BUS_PORT_3,
-	[GMBUS_PIN_12_TC4_ICP] = ICL_DDC_BUS_PORT_4,
-	[GMBUS_PIN_13_TC5_TGP] = TGL_DDC_BUS_PORT_5,
-	[GMBUS_PIN_14_TC6_TGP] = TGL_DDC_BUS_PORT_6,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
+	[GMBUS_PIN_3] = TGL_DDC_BUS_DDI_C,
+	[GMBUS_PIN_9_TC1] = ICL_DDC_BUS_PORT_1,
+	[GMBUS_PIN_10_TC2] = ICL_DDC_BUS_PORT_2,
+	[GMBUS_PIN_11_TC3] = ICL_DDC_BUS_PORT_3,
+	[GMBUS_PIN_12_TC4] = ICL_DDC_BUS_PORT_4,
+	[GMBUS_PIN_13_TC5] = TGL_DDC_BUS_PORT_5,
+	[GMBUS_PIN_14_TC6] = TGL_DDC_BUS_PORT_6,
 };
 
 static const u8 rkl_pch_tgp_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
-	[GMBUS_PIN_9_TC1_ICP] = RKL_DDC_BUS_DDI_D,
-	[GMBUS_PIN_10_TC2_ICP] = RKL_DDC_BUS_DDI_E,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
+	[GMBUS_PIN_9_TC1] = RKL_DDC_BUS_DDI_D,
+	[GMBUS_PIN_10_TC2] = RKL_DDC_BUS_DDI_E,
 };
 
 static const u8 adls_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_9_TC1_ICP] = ADLS_DDC_BUS_PORT_TC1,
-	[GMBUS_PIN_10_TC2_ICP] = ADLS_DDC_BUS_PORT_TC2,
-	[GMBUS_PIN_11_TC3_ICP] = ADLS_DDC_BUS_PORT_TC3,
-	[GMBUS_PIN_12_TC4_ICP] = ADLS_DDC_BUS_PORT_TC4,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_9_TC1] = ADLS_DDC_BUS_PORT_TC1,
+	[GMBUS_PIN_10_TC2] = ADLS_DDC_BUS_PORT_TC2,
+	[GMBUS_PIN_11_TC3] = ADLS_DDC_BUS_PORT_TC3,
+	[GMBUS_PIN_12_TC4] = ADLS_DDC_BUS_PORT_TC4,
 };
 
 static const u8 gen9bc_tgp_ddc_pin_map[] = {
-	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_B,
-	[GMBUS_PIN_9_TC1_ICP] = DDC_BUS_DDI_C,
-	[GMBUS_PIN_10_TC2_ICP] = DDC_BUS_DDI_D,
+	[GMBUS_PIN_2] = DDC_BUS_DDI_B,
+	[GMBUS_PIN_9_TC1] = DDC_BUS_DDI_C,
+	[GMBUS_PIN_10_TC2] = DDC_BUS_DDI_D,
 };
 
 static const u8 adlp_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
-	[GMBUS_PIN_9_TC1_ICP] = ADLP_DDC_BUS_PORT_TC1,
-	[GMBUS_PIN_10_TC2_ICP] = ADLP_DDC_BUS_PORT_TC2,
-	[GMBUS_PIN_11_TC3_ICP] = ADLP_DDC_BUS_PORT_TC3,
-	[GMBUS_PIN_12_TC4_ICP] = ADLP_DDC_BUS_PORT_TC4,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
+	[GMBUS_PIN_9_TC1] = ADLP_DDC_BUS_PORT_TC1,
+	[GMBUS_PIN_10_TC2] = ADLP_DDC_BUS_PORT_TC2,
+	[GMBUS_PIN_11_TC3] = ADLP_DDC_BUS_PORT_TC3,
+	[GMBUS_PIN_12_TC4] = ADLP_DDC_BUS_PORT_TC4,
 };
 
 static u8 map_ddc_pin(struct intel_display *display, u8 vbt_pin)
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index dec0f66f756f..60a70dea5d85 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -105,55 +105,55 @@ static const struct gmbus_pin gmbus_pins_spt[] = {
 };
 
 static const struct gmbus_pin gmbus_pins_bxt[] = {
-	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
+	[GMBUS_PIN_1] = { "dpb", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpc", GPIO_2 },
+	[GMBUS_PIN_3] = { "misc", GPIO_3 },
 };
 
 static const struct gmbus_pin gmbus_pins_cnp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_1] = { "dpb", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpc", GPIO_2 },
+	[GMBUS_PIN_3] = { "misc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
 };
 
 static const struct gmbus_pin gmbus_pins_icp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
-	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
-	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
-	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
-	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPIO_13 },
-	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIO_14 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_10_TC2] = { "tc2", GPIO_10 },
+	[GMBUS_PIN_11_TC3] = { "tc3", GPIO_11 },
+	[GMBUS_PIN_12_TC4] = { "tc4", GPIO_12 },
+	[GMBUS_PIN_13_TC5] = { "tc5", GPIO_13 },
+	[GMBUS_PIN_14_TC6] = { "tc6", GPIO_14 },
 };
 
 static const struct gmbus_pin gmbus_pins_dg1[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
 };
 
 static const struct gmbus_pin gmbus_pins_dg2[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
 };
 
 static const struct gmbus_pin gmbus_pins_mtp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
-	[GMBUS_PIN_5_MTP] = { "dpe", GPIO_5 },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
-	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
-	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
-	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_5] = { "dpe", GPIO_5 },
+	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_10_TC2] = { "tc2", GPIO_10 },
+	[GMBUS_PIN_11_TC3] = { "tc3", GPIO_11 },
+	[GMBUS_PIN_12_TC4] = { "tc4", GPIO_12 },
 };
 
 static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.h b/drivers/gpu/drm/i915/display/intel_gmbus.h
index 35a200a9efc0..5fdeab1aa794 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.h
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.h
@@ -20,17 +20,17 @@ struct intel_display;
 #define GMBUS_PIN_DPB		5 /* SDVO, HDMIB */
 #define GMBUS_PIN_DPD		6 /* HDMID */
 #define GMBUS_PIN_RESERVED	7 /* 7 reserved */
-#define GMBUS_PIN_1_BXT		1 /* BXT+ (atom) and CNP+ (big core) */
-#define GMBUS_PIN_2_BXT		2
-#define GMBUS_PIN_3_BXT		3
-#define GMBUS_PIN_4_CNP		4
-#define GMBUS_PIN_5_MTP		5
-#define GMBUS_PIN_9_TC1_ICP	9
-#define GMBUS_PIN_10_TC2_ICP	10
-#define GMBUS_PIN_11_TC3_ICP	11
-#define GMBUS_PIN_12_TC4_ICP	12
-#define GMBUS_PIN_13_TC5_TGP	13
-#define GMBUS_PIN_14_TC6_TGP	14
+#define GMBUS_PIN_1		1 /* BXT+ (atom) and CNP+ (big core) */
+#define GMBUS_PIN_2		2
+#define GMBUS_PIN_3		3
+#define GMBUS_PIN_4		4
+#define GMBUS_PIN_5		5
+#define GMBUS_PIN_9_TC1		9 /* ICP+ */
+#define GMBUS_PIN_10_TC2	10
+#define GMBUS_PIN_11_TC3	11
+#define GMBUS_PIN_12_TC4	12
+#define GMBUS_PIN_13_TC5	13
+#define GMBUS_PIN_14_TC6	14
 
 #define GMBUS_NUM_PINS	15 /* including 0 */
 
diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index beca0ff5a5b4..f046918fd4bc 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -2825,14 +2825,14 @@ static u8 bxt_encoder_to_ddc_pin(struct intel_encoder *encoder)
 
 	switch (port) {
 	case PORT_B:
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	case PORT_C:
-		ddc_pin = GMBUS_PIN_2_BXT;
+		ddc_pin = GMBUS_PIN_2;
 		break;
 	default:
 		MISSING_CASE(port);
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	}
 	return ddc_pin;
@@ -2845,20 +2845,20 @@ static u8 cnp_encoder_to_ddc_pin(struct intel_encoder *encoder)
 
 	switch (port) {
 	case PORT_B:
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	case PORT_C:
-		ddc_pin = GMBUS_PIN_2_BXT;
+		ddc_pin = GMBUS_PIN_2;
 		break;
 	case PORT_D:
-		ddc_pin = GMBUS_PIN_4_CNP;
+		ddc_pin = GMBUS_PIN_4;
 		break;
 	case PORT_F:
-		ddc_pin = GMBUS_PIN_3_BXT;
+		ddc_pin = GMBUS_PIN_3;
 		break;
 	default:
 		MISSING_CASE(port);
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	}
 	return ddc_pin;
@@ -2870,12 +2870,12 @@ static u8 icl_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	enum port port = encoder->port;
 
 	if (intel_encoder_is_combo(encoder))
-		return GMBUS_PIN_1_BXT + port;
+		return GMBUS_PIN_1 + port;
 	else if (intel_encoder_is_tc(encoder))
-		return GMBUS_PIN_9_TC1_ICP + intel_encoder_to_tc(encoder);
+		return GMBUS_PIN_9_TC1 + intel_encoder_to_tc(encoder);
 
 	drm_WARN(display->drm, 1, "Unknown port:%c\n", port_name(port));
-	return GMBUS_PIN_2_BXT;
+	return GMBUS_PIN_2;
 }
 
 static u8 mcc_encoder_to_ddc_pin(struct intel_encoder *encoder)
@@ -2885,17 +2885,17 @@ static u8 mcc_encoder_to_ddc_pin(struct intel_encoder *encoder)
 
 	switch (phy) {
 	case PHY_A:
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	case PHY_B:
-		ddc_pin = GMBUS_PIN_2_BXT;
+		ddc_pin = GMBUS_PIN_2;
 		break;
 	case PHY_C:
-		ddc_pin = GMBUS_PIN_9_TC1_ICP;
+		ddc_pin = GMBUS_PIN_9_TC1;
 		break;
 	default:
 		MISSING_CASE(phy);
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	}
 	return ddc_pin;
@@ -2915,9 +2915,9 @@ static u8 rkl_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	 * all outputs.
 	 */
 	if (INTEL_PCH_TYPE(display) >= PCH_TGP && phy >= PHY_C)
-		return GMBUS_PIN_9_TC1_ICP + phy - PHY_C;
+		return GMBUS_PIN_9_TC1 + phy - PHY_C;
 
-	return GMBUS_PIN_1_BXT + phy;
+	return GMBUS_PIN_1 + phy;
 }
 
 static u8 gen9bc_tgp_encoder_to_ddc_pin(struct intel_encoder *encoder)
@@ -2934,9 +2934,9 @@ static u8 gen9bc_tgp_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	 * all outputs.
 	 */
 	if (INTEL_PCH_TYPE(display) >= PCH_TGP && phy >= PHY_C)
-		return GMBUS_PIN_9_TC1_ICP + phy - PHY_C;
+		return GMBUS_PIN_9_TC1 + phy - PHY_C;
 
-	return GMBUS_PIN_1_BXT + phy;
+	return GMBUS_PIN_1 + phy;
 }
 
 static u8 dg1_encoder_to_ddc_pin(struct intel_encoder *encoder)
@@ -2955,9 +2955,9 @@ static u8 adls_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	 * except first combo output.
 	 */
 	if (phy == PHY_A)
-		return GMBUS_PIN_1_BXT;
+		return GMBUS_PIN_1;
 
-	return GMBUS_PIN_9_TC1_ICP + phy - PHY_B;
+	return GMBUS_PIN_9_TC1 + phy - PHY_B;
 }
 
 static u8 g4x_encoder_to_ddc_pin(struct intel_encoder *encoder)
-- 
2.53.0


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

* [PATCH 6/6] drm/i915/hdmi: Remove CNP port F leftovers
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (4 preceding siblings ...)
  2026-06-23 12:51 ` [PATCH 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins Ville Syrjala
@ 2026-06-23 12:51 ` Ville Syrjala
  2026-06-23 14:45   ` Michał Grzelak
  2026-06-23 13:30 ` ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff Patchwork
                   ` (6 subsequent siblings)
  12 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 12:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

Since CNL got nuked cnp_encoder_to_ddc_pin() will never
see a port F. Remove the leftovers.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_hdmi.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index f046918fd4bc..8a019d3574df 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -2853,9 +2853,6 @@ static u8 cnp_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	case PORT_D:
 		ddc_pin = GMBUS_PIN_4;
 		break;
-	case PORT_F:
-		ddc_pin = GMBUS_PIN_3;
-		break;
 	default:
 		MISSING_CASE(port);
 		ddc_pin = GMBUS_PIN_1;
-- 
2.53.0


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

* ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (5 preceding siblings ...)
  2026-06-23 12:51 ` [PATCH 6/6] drm/i915/hdmi: Remove CNP port F leftovers Ville Syrjala
@ 2026-06-23 13:30 ` Patchwork
  2026-06-23 13:50 ` ✗ Fi.CI.BUILD: failure " Patchwork
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 13:30 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff
URL   : https://patchwork.freedesktop.org/series/169023/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:27:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:28:08] 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=25
[13:29:03] Starting KUnit Kernel (1/1)...
[13:29:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:29:03] ================== guc_buf (11 subtests) ===================
[13:29:03] [PASSED] test_smallest
[13:29:03] [PASSED] test_largest
[13:29:03] [PASSED] test_granular
[13:29:03] [PASSED] test_unique
[13:29:03] [PASSED] test_overlap
[13:29:03] [PASSED] test_reusable
[13:29:03] [PASSED] test_too_big
[13:29:03] [PASSED] test_flush
[13:29:03] [PASSED] test_lookup
[13:29:03] [PASSED] test_data
[13:29:03] [PASSED] test_class
[13:29:03] ===================== [PASSED] guc_buf =====================
[13:29:03] =================== guc_dbm (7 subtests) ===================
[13:29:03] [PASSED] test_empty
[13:29:03] [PASSED] test_default
[13:29:03] ======================== test_size  ========================
[13:29:03] [PASSED] 4
[13:29:03] [PASSED] 8
[13:29:03] [PASSED] 32
[13:29:03] [PASSED] 256
[13:29:03] ==================== [PASSED] test_size ====================
[13:29:03] ======================= test_reuse  ========================
[13:29:03] [PASSED] 4
[13:29:03] [PASSED] 8
[13:29:03] [PASSED] 32
[13:29:03] [PASSED] 256
[13:29:03] =================== [PASSED] test_reuse ====================
[13:29:03] =================== test_range_overlap  ====================
[13:29:03] [PASSED] 4
[13:29:03] [PASSED] 8
[13:29:03] [PASSED] 32
[13:29:03] [PASSED] 256
[13:29:03] =============== [PASSED] test_range_overlap ================
[13:29:03] =================== test_range_compact  ====================
[13:29:03] [PASSED] 4
[13:29:03] [PASSED] 8
[13:29:03] [PASSED] 32
[13:29:03] [PASSED] 256
[13:29:03] =============== [PASSED] test_range_compact ================
[13:29:03] ==================== test_range_spare  =====================
[13:29:03] [PASSED] 4
[13:29:03] [PASSED] 8
[13:29:03] [PASSED] 32
[13:29:03] [PASSED] 256
[13:29:03] ================ [PASSED] test_range_spare =================
[13:29:03] ===================== [PASSED] guc_dbm =====================
[13:29:03] =================== guc_idm (6 subtests) ===================
[13:29:03] [PASSED] bad_init
[13:29:03] [PASSED] no_init
[13:29:03] [PASSED] init_fini
[13:29:03] [PASSED] check_used
[13:29:03] [PASSED] check_quota
[13:29:03] [PASSED] check_all
[13:29:03] ===================== [PASSED] guc_idm =====================
[13:29:03] ================== no_relay (3 subtests) ===================
[13:29:03] [PASSED] xe_drops_guc2pf_if_not_ready
[13:29:03] [PASSED] xe_drops_guc2vf_if_not_ready
[13:29:03] [PASSED] xe_rejects_send_if_not_ready
[13:29:03] ==================== [PASSED] no_relay =====================
[13:29:03] ================== pf_relay (14 subtests) ==================
[13:29:03] [PASSED] pf_rejects_guc2pf_too_short
[13:29:03] [PASSED] pf_rejects_guc2pf_too_long
[13:29:03] [PASSED] pf_rejects_guc2pf_no_payload
[13:29:03] [PASSED] pf_fails_no_payload
[13:29:03] [PASSED] pf_fails_bad_origin
[13:29:03] [PASSED] pf_fails_bad_type
[13:29:03] [PASSED] pf_txn_reports_error
[13:29:03] [PASSED] pf_txn_sends_pf2guc
[13:29:03] [PASSED] pf_sends_pf2guc
[13:29:03] [SKIPPED] pf_loopback_nop
[13:29:03] [SKIPPED] pf_loopback_echo
[13:29:03] [SKIPPED] pf_loopback_fail
[13:29:03] [SKIPPED] pf_loopback_busy
[13:29:03] [SKIPPED] pf_loopback_retry
[13:29:03] ==================== [PASSED] pf_relay =====================
[13:29:03] ================== vf_relay (3 subtests) ===================
[13:29:03] [PASSED] vf_rejects_guc2vf_too_short
[13:29:03] [PASSED] vf_rejects_guc2vf_too_long
[13:29:03] [PASSED] vf_rejects_guc2vf_no_payload
[13:29:03] ==================== [PASSED] vf_relay =====================
[13:29:03] ================ pf_gt_config (9 subtests) =================
[13:29:03] [PASSED] fair_contexts_1vf
[13:29:03] [PASSED] fair_doorbells_1vf
[13:29:03] [PASSED] fair_ggtt_1vf
[13:29:03] ====================== fair_vram_1vf  ======================
[13:29:03] [PASSED] 3.50 GiB
[13:29:03] [PASSED] 11.5 GiB
[13:29:03] [PASSED] 15.5 GiB
[13:29:03] [PASSED] 31.5 GiB
[13:29:03] [PASSED] 63.5 GiB
[13:29:03] [PASSED] 1.91 GiB
[13:29:03] ================== [PASSED] fair_vram_1vf ==================
[13:29:03] ================ fair_vram_1vf_admin_only  =================
[13:29:03] [PASSED] 3.50 GiB
[13:29:03] [PASSED] 11.5 GiB
[13:29:03] [PASSED] 15.5 GiB
[13:29:03] [PASSED] 31.5 GiB
[13:29:03] [PASSED] 63.5 GiB
[13:29:03] [PASSED] 1.91 GiB
[13:29:03] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:29:03] ====================== fair_contexts  ======================
[13:29:03] [PASSED] 1 VF
[13:29:03] [PASSED] 2 VFs
[13:29:03] [PASSED] 3 VFs
[13:29:03] [PASSED] 4 VFs
[13:29:03] [PASSED] 5 VFs
[13:29:03] [PASSED] 6 VFs
[13:29:03] [PASSED] 7 VFs
[13:29:03] [PASSED] 8 VFs
[13:29:03] [PASSED] 9 VFs
[13:29:03] [PASSED] 10 VFs
[13:29:03] [PASSED] 11 VFs
[13:29:03] [PASSED] 12 VFs
[13:29:03] [PASSED] 13 VFs
[13:29:03] [PASSED] 14 VFs
[13:29:03] [PASSED] 15 VFs
[13:29:03] [PASSED] 16 VFs
[13:29:03] [PASSED] 17 VFs
[13:29:03] [PASSED] 18 VFs
[13:29:03] [PASSED] 19 VFs
[13:29:03] [PASSED] 20 VFs
[13:29:03] [PASSED] 21 VFs
[13:29:03] [PASSED] 22 VFs
[13:29:03] [PASSED] 23 VFs
[13:29:03] [PASSED] 24 VFs
[13:29:03] [PASSED] 25 VFs
[13:29:03] [PASSED] 26 VFs
[13:29:03] [PASSED] 27 VFs
[13:29:03] [PASSED] 28 VFs
[13:29:03] [PASSED] 29 VFs
[13:29:04] [PASSED] 30 VFs
[13:29:04] [PASSED] 31 VFs
[13:29:04] [PASSED] 32 VFs
[13:29:04] [PASSED] 33 VFs
[13:29:04] [PASSED] 34 VFs
[13:29:04] [PASSED] 35 VFs
[13:29:04] [PASSED] 36 VFs
[13:29:04] [PASSED] 37 VFs
[13:29:04] [PASSED] 38 VFs
[13:29:04] [PASSED] 39 VFs
[13:29:04] [PASSED] 40 VFs
[13:29:04] [PASSED] 41 VFs
[13:29:04] [PASSED] 42 VFs
[13:29:04] [PASSED] 43 VFs
[13:29:04] [PASSED] 44 VFs
[13:29:04] [PASSED] 45 VFs
[13:29:04] [PASSED] 46 VFs
[13:29:04] [PASSED] 47 VFs
[13:29:04] [PASSED] 48 VFs
[13:29:04] [PASSED] 49 VFs
[13:29:04] [PASSED] 50 VFs
[13:29:04] [PASSED] 51 VFs
[13:29:04] [PASSED] 52 VFs
[13:29:04] [PASSED] 53 VFs
[13:29:04] [PASSED] 54 VFs
[13:29:04] [PASSED] 55 VFs
[13:29:04] [PASSED] 56 VFs
[13:29:04] [PASSED] 57 VFs
[13:29:04] [PASSED] 58 VFs
[13:29:04] [PASSED] 59 VFs
[13:29:04] [PASSED] 60 VFs
[13:29:04] [PASSED] 61 VFs
[13:29:04] [PASSED] 62 VFs
[13:29:04] [PASSED] 63 VFs
[13:29:04] ================== [PASSED] fair_contexts ==================
[13:29:04] ===================== fair_doorbells  ======================
[13:29:04] [PASSED] 1 VF
[13:29:04] [PASSED] 2 VFs
[13:29:04] [PASSED] 3 VFs
[13:29:04] [PASSED] 4 VFs
[13:29:04] [PASSED] 5 VFs
[13:29:04] [PASSED] 6 VFs
[13:29:04] [PASSED] 7 VFs
[13:29:04] [PASSED] 8 VFs
[13:29:04] [PASSED] 9 VFs
[13:29:04] [PASSED] 10 VFs
[13:29:04] [PASSED] 11 VFs
[13:29:04] [PASSED] 12 VFs
[13:29:04] [PASSED] 13 VFs
[13:29:04] [PASSED] 14 VFs
[13:29:04] [PASSED] 15 VFs
[13:29:04] [PASSED] 16 VFs
[13:29:04] [PASSED] 17 VFs
[13:29:04] [PASSED] 18 VFs
[13:29:04] [PASSED] 19 VFs
[13:29:04] [PASSED] 20 VFs
[13:29:04] [PASSED] 21 VFs
[13:29:04] [PASSED] 22 VFs
[13:29:04] [PASSED] 23 VFs
[13:29:04] [PASSED] 24 VFs
[13:29:04] [PASSED] 25 VFs
[13:29:04] [PASSED] 26 VFs
[13:29:04] [PASSED] 27 VFs
[13:29:04] [PASSED] 28 VFs
[13:29:04] [PASSED] 29 VFs
[13:29:04] [PASSED] 30 VFs
[13:29:04] [PASSED] 31 VFs
[13:29:04] [PASSED] 32 VFs
[13:29:04] [PASSED] 33 VFs
[13:29:04] [PASSED] 34 VFs
[13:29:04] [PASSED] 35 VFs
[13:29:04] [PASSED] 36 VFs
[13:29:04] [PASSED] 37 VFs
[13:29:04] [PASSED] 38 VFs
[13:29:04] [PASSED] 39 VFs
[13:29:04] [PASSED] 40 VFs
[13:29:04] [PASSED] 41 VFs
[13:29:04] [PASSED] 42 VFs
[13:29:04] [PASSED] 43 VFs
[13:29:04] [PASSED] 44 VFs
[13:29:04] [PASSED] 45 VFs
[13:29:04] [PASSED] 46 VFs
[13:29:04] [PASSED] 47 VFs
[13:29:04] [PASSED] 48 VFs
[13:29:04] [PASSED] 49 VFs
[13:29:04] [PASSED] 50 VFs
[13:29:04] [PASSED] 51 VFs
[13:29:04] [PASSED] 52 VFs
[13:29:04] [PASSED] 53 VFs
[13:29:04] [PASSED] 54 VFs
[13:29:04] [PASSED] 55 VFs
[13:29:04] [PASSED] 56 VFs
[13:29:04] [PASSED] 57 VFs
[13:29:04] [PASSED] 58 VFs
[13:29:04] [PASSED] 59 VFs
[13:29:04] [PASSED] 60 VFs
[13:29:04] [PASSED] 61 VFs
[13:29:04] [PASSED] 62 VFs
[13:29:04] [PASSED] 63 VFs
[13:29:04] ================= [PASSED] fair_doorbells ==================
[13:29:04] ======================== fair_ggtt  ========================
[13:29:04] [PASSED] 1 VF
[13:29:04] [PASSED] 2 VFs
[13:29:04] [PASSED] 3 VFs
[13:29:04] [PASSED] 4 VFs
[13:29:04] [PASSED] 5 VFs
[13:29:04] [PASSED] 6 VFs
[13:29:04] [PASSED] 7 VFs
[13:29:04] [PASSED] 8 VFs
[13:29:04] [PASSED] 9 VFs
[13:29:04] [PASSED] 10 VFs
[13:29:04] [PASSED] 11 VFs
[13:29:04] [PASSED] 12 VFs
[13:29:04] [PASSED] 13 VFs
[13:29:04] [PASSED] 14 VFs
[13:29:04] [PASSED] 15 VFs
[13:29:04] [PASSED] 16 VFs
[13:29:04] [PASSED] 17 VFs
[13:29:04] [PASSED] 18 VFs
[13:29:04] [PASSED] 19 VFs
[13:29:04] [PASSED] 20 VFs
[13:29:04] [PASSED] 21 VFs
[13:29:04] [PASSED] 22 VFs
[13:29:04] [PASSED] 23 VFs
[13:29:04] [PASSED] 24 VFs
[13:29:04] [PASSED] 25 VFs
[13:29:04] [PASSED] 26 VFs
[13:29:04] [PASSED] 27 VFs
[13:29:04] [PASSED] 28 VFs
[13:29:04] [PASSED] 29 VFs
[13:29:04] [PASSED] 30 VFs
[13:29:04] [PASSED] 31 VFs
[13:29:04] [PASSED] 32 VFs
[13:29:04] [PASSED] 33 VFs
[13:29:04] [PASSED] 34 VFs
[13:29:04] [PASSED] 35 VFs
[13:29:04] [PASSED] 36 VFs
[13:29:04] [PASSED] 37 VFs
[13:29:04] [PASSED] 38 VFs
[13:29:04] [PASSED] 39 VFs
[13:29:04] [PASSED] 40 VFs
[13:29:04] [PASSED] 41 VFs
[13:29:04] [PASSED] 42 VFs
[13:29:04] [PASSED] 43 VFs
[13:29:04] [PASSED] 44 VFs
[13:29:04] [PASSED] 45 VFs
[13:29:04] [PASSED] 46 VFs
[13:29:04] [PASSED] 47 VFs
[13:29:04] [PASSED] 48 VFs
[13:29:04] [PASSED] 49 VFs
[13:29:04] [PASSED] 50 VFs
[13:29:04] [PASSED] 51 VFs
[13:29:04] [PASSED] 52 VFs
[13:29:04] [PASSED] 53 VFs
[13:29:04] [PASSED] 54 VFs
[13:29:04] [PASSED] 55 VFs
[13:29:04] [PASSED] 56 VFs
[13:29:04] [PASSED] 57 VFs
[13:29:04] [PASSED] 58 VFs
[13:29:04] [PASSED] 59 VFs
[13:29:04] [PASSED] 60 VFs
[13:29:04] [PASSED] 61 VFs
[13:29:04] [PASSED] 62 VFs
[13:29:04] [PASSED] 63 VFs
[13:29:04] ==================== [PASSED] fair_ggtt ====================
[13:29:04] ======================== fair_vram  ========================
[13:29:04] [PASSED] 1 VF
[13:29:04] [PASSED] 2 VFs
[13:29:04] [PASSED] 3 VFs
[13:29:04] [PASSED] 4 VFs
[13:29:04] [PASSED] 5 VFs
[13:29:04] [PASSED] 6 VFs
[13:29:04] [PASSED] 7 VFs
[13:29:04] [PASSED] 8 VFs
[13:29:04] [PASSED] 9 VFs
[13:29:04] [PASSED] 10 VFs
[13:29:04] [PASSED] 11 VFs
[13:29:04] [PASSED] 12 VFs
[13:29:04] [PASSED] 13 VFs
[13:29:04] [PASSED] 14 VFs
[13:29:04] [PASSED] 15 VFs
[13:29:04] [PASSED] 16 VFs
[13:29:04] [PASSED] 17 VFs
[13:29:04] [PASSED] 18 VFs
[13:29:04] [PASSED] 19 VFs
[13:29:04] [PASSED] 20 VFs
[13:29:04] [PASSED] 21 VFs
[13:29:04] [PASSED] 22 VFs
[13:29:04] [PASSED] 23 VFs
[13:29:04] [PASSED] 24 VFs
[13:29:04] [PASSED] 25 VFs
[13:29:04] [PASSED] 26 VFs
[13:29:04] [PASSED] 27 VFs
[13:29:04] [PASSED] 28 VFs
[13:29:04] [PASSED] 29 VFs
[13:29:04] [PASSED] 30 VFs
[13:29:04] [PASSED] 31 VFs
[13:29:04] [PASSED] 32 VFs
[13:29:04] [PASSED] 33 VFs
[13:29:04] [PASSED] 34 VFs
[13:29:04] [PASSED] 35 VFs
[13:29:04] [PASSED] 36 VFs
[13:29:04] [PASSED] 37 VFs
[13:29:04] [PASSED] 38 VFs
[13:29:04] [PASSED] 39 VFs
[13:29:04] [PASSED] 40 VFs
[13:29:04] [PASSED] 41 VFs
[13:29:04] [PASSED] 42 VFs
[13:29:04] [PASSED] 43 VFs
[13:29:04] [PASSED] 44 VFs
[13:29:04] [PASSED] 45 VFs
[13:29:04] [PASSED] 46 VFs
[13:29:04] [PASSED] 47 VFs
[13:29:04] [PASSED] 48 VFs
[13:29:04] [PASSED] 49 VFs
[13:29:04] [PASSED] 50 VFs
[13:29:04] [PASSED] 51 VFs
[13:29:04] [PASSED] 52 VFs
[13:29:04] [PASSED] 53 VFs
[13:29:04] [PASSED] 54 VFs
[13:29:04] [PASSED] 55 VFs
[13:29:04] [PASSED] 56 VFs
[13:29:04] [PASSED] 57 VFs
[13:29:04] [PASSED] 58 VFs
[13:29:04] [PASSED] 59 VFs
[13:29:04] [PASSED] 60 VFs
[13:29:04] [PASSED] 61 VFs
[13:29:04] [PASSED] 62 VFs
[13:29:04] [PASSED] 63 VFs
[13:29:04] ==================== [PASSED] fair_vram ====================
[13:29:04] ================== [PASSED] pf_gt_config ===================
[13:29:04] ===================== lmtt (1 subtest) =====================
[13:29:04] ======================== test_ops  =========================
[13:29:04] [PASSED] 2-level
[13:29:04] [PASSED] multi-level
[13:29:04] ==================== [PASSED] test_ops =====================
[13:29:04] ====================== [PASSED] lmtt =======================
[13:29:04] ================= pf_service (11 subtests) =================
[13:29:04] [PASSED] pf_negotiate_any
[13:29:04] [PASSED] pf_negotiate_base_match
[13:29:04] [PASSED] pf_negotiate_base_newer
[13:29:04] [PASSED] pf_negotiate_base_next
[13:29:04] [SKIPPED] pf_negotiate_base_older
[13:29:04] [PASSED] pf_negotiate_base_prev
[13:29:04] [PASSED] pf_negotiate_latest_match
[13:29:04] [PASSED] pf_negotiate_latest_newer
[13:29:04] [PASSED] pf_negotiate_latest_next
[13:29:04] [SKIPPED] pf_negotiate_latest_older
[13:29:04] [SKIPPED] pf_negotiate_latest_prev
[13:29:04] =================== [PASSED] pf_service ====================
[13:29:04] ================= xe_guc_g2g (2 subtests) ==================
[13:29:04] ============== xe_live_guc_g2g_kunit_default  ==============
[13:29:04] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:29:04] ============== xe_live_guc_g2g_kunit_allmem  ===============
[13:29:04] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:29:04] =================== [SKIPPED] xe_guc_g2g ===================
[13:29:04] =================== xe_mocs (2 subtests) ===================
[13:29:04] ================ xe_live_mocs_kernel_kunit  ================
[13:29:04] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:29:04] ================ xe_live_mocs_reset_kunit  =================
[13:29:04] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:29:04] ==================== [SKIPPED] xe_mocs =====================
[13:29:04] ================= xe_migrate (2 subtests) ==================
[13:29:04] ================= xe_migrate_sanity_kunit  =================
[13:29:04] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:29:04] ================== xe_validate_ccs_kunit  ==================
[13:29:04] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:29:04] =================== [SKIPPED] xe_migrate ===================
[13:29:04] ================== xe_dma_buf (1 subtest) ==================
[13:29:04] ==================== xe_dma_buf_kunit  =====================
[13:29:04] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:29:04] =================== [SKIPPED] xe_dma_buf ===================
[13:29:04] ================= xe_bo_shrink (1 subtest) =================
[13:29:04] =================== xe_bo_shrink_kunit  ====================
[13:29:04] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:29:04] ================== [SKIPPED] xe_bo_shrink ==================
[13:29:04] ==================== xe_bo (2 subtests) ====================
[13:29:04] ================== xe_ccs_migrate_kunit  ===================
[13:29:04] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:29:04] ==================== xe_bo_evict_kunit  ====================
[13:29:04] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:29:04] ===================== [SKIPPED] xe_bo ======================
[13:29:04] ==================== args (13 subtests) ====================
[13:29:04] [PASSED] count_args_test
[13:29:04] [PASSED] call_args_example
[13:29:04] [PASSED] call_args_test
[13:29:04] [PASSED] drop_first_arg_example
[13:29:04] [PASSED] drop_first_arg_test
[13:29:04] [PASSED] first_arg_example
[13:29:04] [PASSED] first_arg_test
[13:29:04] [PASSED] last_arg_example
[13:29:04] [PASSED] last_arg_test
[13:29:04] [PASSED] pick_arg_example
[13:29:04] [PASSED] if_args_example
[13:29:04] [PASSED] if_args_test
[13:29:04] [PASSED] sep_comma_example
[13:29:04] ====================== [PASSED] args =======================
[13:29:04] =================== xe_pci (3 subtests) ====================
[13:29:04] ==================== check_graphics_ip  ====================
[13:29:04] [PASSED] 12.00 Xe_LP
[13:29:04] [PASSED] 12.10 Xe_LP+
[13:29:04] [PASSED] 12.55 Xe_HPG
[13:29:04] [PASSED] 12.60 Xe_HPC
[13:29:04] [PASSED] 12.70 Xe_LPG
[13:29:04] [PASSED] 12.71 Xe_LPG
[13:29:04] [PASSED] 12.74 Xe_LPG+
[13:29:04] [PASSED] 20.01 Xe2_HPG
[13:29:04] [PASSED] 20.02 Xe2_HPG
[13:29:04] [PASSED] 20.04 Xe2_LPG
[13:29:04] [PASSED] 30.00 Xe3_LPG
[13:29:04] [PASSED] 30.01 Xe3_LPG
[13:29:04] [PASSED] 30.03 Xe3_LPG
[13:29:04] [PASSED] 30.04 Xe3_LPG
[13:29:04] [PASSED] 30.05 Xe3_LPG
[13:29:04] [PASSED] 35.10 Xe3p_LPG
[13:29:04] [PASSED] 35.11 Xe3p_XPC
[13:29:04] ================ [PASSED] check_graphics_ip ================
[13:29:04] ===================== check_media_ip  ======================
[13:29:04] [PASSED] 12.00 Xe_M
[13:29:04] [PASSED] 12.55 Xe_HPM
[13:29:04] [PASSED] 13.00 Xe_LPM+
[13:29:04] [PASSED] 13.01 Xe2_HPM
[13:29:04] [PASSED] 20.00 Xe2_LPM
[13:29:04] [PASSED] 30.00 Xe3_LPM
[13:29:04] [PASSED] 30.02 Xe3_LPM
[13:29:04] [PASSED] 35.00 Xe3p_LPM
[13:29:04] [PASSED] 35.03 Xe3p_HPM
[13:29:04] ================= [PASSED] check_media_ip ==================
[13:29:04] =================== check_platform_desc  ===================
[13:29:04] [PASSED] 0x9A60 (TIGERLAKE)
[13:29:04] [PASSED] 0x9A68 (TIGERLAKE)
[13:29:04] [PASSED] 0x9A70 (TIGERLAKE)
[13:29:04] [PASSED] 0x9A40 (TIGERLAKE)
[13:29:04] [PASSED] 0x9A49 (TIGERLAKE)
[13:29:04] [PASSED] 0x9A59 (TIGERLAKE)
[13:29:04] [PASSED] 0x9A78 (TIGERLAKE)
[13:29:04] [PASSED] 0x9AC0 (TIGERLAKE)
[13:29:04] [PASSED] 0x9AC9 (TIGERLAKE)
[13:29:04] [PASSED] 0x9AD9 (TIGERLAKE)
[13:29:04] [PASSED] 0x9AF8 (TIGERLAKE)
[13:29:04] [PASSED] 0x4C80 (ROCKETLAKE)
[13:29:04] [PASSED] 0x4C8A (ROCKETLAKE)
[13:29:04] [PASSED] 0x4C8B (ROCKETLAKE)
[13:29:04] [PASSED] 0x4C8C (ROCKETLAKE)
[13:29:04] [PASSED] 0x4C90 (ROCKETLAKE)
[13:29:04] [PASSED] 0x4C9A (ROCKETLAKE)
[13:29:04] [PASSED] 0x4680 (ALDERLAKE_S)
[13:29:04] [PASSED] 0x4682 (ALDERLAKE_S)
[13:29:04] [PASSED] 0x4688 (ALDERLAKE_S)
[13:29:04] [PASSED] 0x468A (ALDERLAKE_S)
[13:29:04] [PASSED] 0x468B (ALDERLAKE_S)
[13:29:04] [PASSED] 0x4690 (ALDERLAKE_S)
[13:29:04] [PASSED] 0x4692 (ALDERLAKE_S)
[13:29:04] [PASSED] 0x4693 (ALDERLAKE_S)
[13:29:04] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46AA (ALDERLAKE_P)
[13:29:04] [PASSED] 0x462A (ALDERLAKE_P)
[13:29:04] [PASSED] 0x4626 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x4628 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:29:04] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:29:04] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:29:04] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:29:04] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:29:04] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:29:04] [PASSED] 0xA721 (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA720 (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:29:04] [PASSED] 0xA780 (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA781 (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA782 (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA783 (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA788 (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA789 (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA78A (ALDERLAKE_S)
[13:29:04] [PASSED] 0xA78B (ALDERLAKE_S)
[13:29:04] [PASSED] 0x4905 (DG1)
[13:29:04] [PASSED] 0x4906 (DG1)
[13:29:04] [PASSED] 0x4907 (DG1)
[13:29:04] [PASSED] 0x4908 (DG1)
[13:29:04] [PASSED] 0x4909 (DG1)
[13:29:04] [PASSED] 0x56C0 (DG2)
[13:29:04] [PASSED] 0x56C2 (DG2)
[13:29:04] [PASSED] 0x56C1 (DG2)
[13:29:04] [PASSED] 0x7D51 (METEORLAKE)
[13:29:04] [PASSED] 0x7DD1 (METEORLAKE)
[13:29:04] [PASSED] 0x7D41 (METEORLAKE)
[13:29:04] [PASSED] 0x7D67 (METEORLAKE)
[13:29:04] [PASSED] 0xB640 (METEORLAKE)
[13:29:04] [PASSED] 0x56A0 (DG2)
[13:29:04] [PASSED] 0x56A1 (DG2)
[13:29:04] [PASSED] 0x56A2 (DG2)
[13:29:04] [PASSED] 0x56BE (DG2)
[13:29:04] [PASSED] 0x56BF (DG2)
[13:29:04] [PASSED] 0x5690 (DG2)
[13:29:04] [PASSED] 0x5691 (DG2)
[13:29:04] [PASSED] 0x5692 (DG2)
[13:29:04] [PASSED] 0x56A5 (DG2)
[13:29:04] [PASSED] 0x56A6 (DG2)
[13:29:04] [PASSED] 0x56B0 (DG2)
[13:29:04] [PASSED] 0x56B1 (DG2)
[13:29:04] [PASSED] 0x56BA (DG2)
[13:29:04] [PASSED] 0x56BB (DG2)
[13:29:04] [PASSED] 0x56BC (DG2)
[13:29:04] [PASSED] 0x56BD (DG2)
[13:29:04] [PASSED] 0x5693 (DG2)
[13:29:04] [PASSED] 0x5694 (DG2)
[13:29:04] [PASSED] 0x5695 (DG2)
[13:29:04] [PASSED] 0x56A3 (DG2)
[13:29:04] [PASSED] 0x56A4 (DG2)
[13:29:04] [PASSED] 0x56B2 (DG2)
[13:29:04] [PASSED] 0x56B3 (DG2)
[13:29:04] [PASSED] 0x5696 (DG2)
[13:29:04] [PASSED] 0x5697 (DG2)
[13:29:04] [PASSED] 0xB69 (PVC)
[13:29:04] [PASSED] 0xB6E (PVC)
[13:29:04] [PASSED] 0xBD4 (PVC)
[13:29:04] [PASSED] 0xBD5 (PVC)
[13:29:04] [PASSED] 0xBD6 (PVC)
[13:29:04] [PASSED] 0xBD7 (PVC)
[13:29:04] [PASSED] 0xBD8 (PVC)
[13:29:04] [PASSED] 0xBD9 (PVC)
[13:29:04] [PASSED] 0xBDA (PVC)
[13:29:04] [PASSED] 0xBDB (PVC)
[13:29:04] [PASSED] 0xBE0 (PVC)
[13:29:04] [PASSED] 0xBE1 (PVC)
[13:29:04] [PASSED] 0xBE5 (PVC)
[13:29:04] [PASSED] 0x7D40 (METEORLAKE)
[13:29:04] [PASSED] 0x7D45 (METEORLAKE)
[13:29:04] [PASSED] 0x7D55 (METEORLAKE)
[13:29:04] [PASSED] 0x7D60 (METEORLAKE)
[13:29:04] [PASSED] 0x7DD5 (METEORLAKE)
[13:29:04] [PASSED] 0x6420 (LUNARLAKE)
[13:29:04] [PASSED] 0x64A0 (LUNARLAKE)
[13:29:04] [PASSED] 0x64B0 (LUNARLAKE)
[13:29:04] [PASSED] 0xE202 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE209 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE20B (BATTLEMAGE)
[13:29:04] [PASSED] 0xE20C (BATTLEMAGE)
[13:29:04] [PASSED] 0xE20D (BATTLEMAGE)
[13:29:04] [PASSED] 0xE210 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE211 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE212 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE216 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE220 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE221 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE222 (BATTLEMAGE)
[13:29:04] [PASSED] 0xE223 (BATTLEMAGE)
[13:29:04] [PASSED] 0xB080 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB081 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB082 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB083 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB084 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB085 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB086 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB087 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB08F (PANTHERLAKE)
[13:29:04] [PASSED] 0xB090 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:29:04] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:29:04] [PASSED] 0xFD80 (PANTHERLAKE)
[13:29:04] [PASSED] 0xFD81 (PANTHERLAKE)
[13:29:04] [PASSED] 0xD740 (NOVALAKE_S)
[13:29:04] [PASSED] 0xD741 (NOVALAKE_S)
[13:29:04] [PASSED] 0xD742 (NOVALAKE_S)
[13:29:04] [PASSED] 0xD743 (NOVALAKE_S)
[13:29:04] [PASSED] 0xD745 (NOVALAKE_S)
[13:29:04] [PASSED] 0xD74A (NOVALAKE_S)
[13:29:04] [PASSED] 0xD74B (NOVALAKE_S)
[13:29:04] [PASSED] 0x674C (CRESCENTISLAND)
[13:29:04] [PASSED] 0x674D (CRESCENTISLAND)
[13:29:04] [PASSED] 0x674E (CRESCENTISLAND)
[13:29:04] [PASSED] 0x674F (CRESCENTISLAND)
[13:29:04] [PASSED] 0x6750 (CRESCENTISLAND)
[13:29:04] [PASSED] 0xD750 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD751 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD752 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD753 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD754 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD755 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD756 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD757 (NOVALAKE_P)
[13:29:04] [PASSED] 0xD75F (NOVALAKE_P)
[13:29:04] =============== [PASSED] check_platform_desc ===============
[13:29:04] ===================== [PASSED] xe_pci ======================
[13:29:04] ============= xe_rtp_tables_test (4 subtests) ==============
[13:29:04] ================== xe_rtp_table_gt_test  ===================
[13:29:04] [PASSED] gt_was/14011060649
[13:29:04] [PASSED] gt_was/14011059788
[13:29:04] [PASSED] gt_was/14015795083
[13:29:04] [PASSED] gt_was/16021867713
[13:29:04] [PASSED] gt_was/14019449301
[13:29:04] [PASSED] gt_was/16028005424
[13:29:04] [PASSED] gt_was/14026578760
[13:29:04] [PASSED] gt_was/1409420604
[13:29:04] [PASSED] gt_was/1408615072
[13:29:04] [PASSED] gt_was/22010523718
[13:29:04] [PASSED] gt_was/14011006942
[13:29:04] [PASSED] gt_was/14014830051
[13:29:04] [PASSED] gt_was/18018781329
[13:29:04] [PASSED] gt_was/1509235366
[13:29:04] [PASSED] gt_was/18018781329
[13:29:04] [PASSED] gt_was/16016694945
[13:29:04] [PASSED] gt_was/14018575942
[13:29:04] [PASSED] gt_was/22016670082
[13:29:04] [PASSED] gt_was/22016670082
[13:29:04] [PASSED] gt_was/14017421178
[13:29:04] [PASSED] gt_was/16025250150
[13:29:04] [PASSED] gt_was/14021871409
[13:29:04] [PASSED] gt_was/16021865536
[13:29:04] [PASSED] gt_was/14021486841
[13:29:04] [PASSED] gt_was/14025160223
[13:29:04] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:29:04] [PASSED] gt_was/14025635424
[13:29:04] [PASSED] gt_was/16028005424
[13:29:04] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:29:04] ================== xe_rtp_table_gt_test  ===================
[13:29:04] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:29:04] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:29:04] [PASSED] gt_tunings/Tuning: L3 cache
[13:29:04] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:29:04] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:29:04] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:29:04] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:29:04] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:29:04] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:29:04] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:29:04] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:29:04] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:29:04] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:29:04] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:29:04] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:29:04] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:29:04] ================== xe_rtp_table_oob_test  ==================
[13:29:04] [PASSED] oob_was/1607983814
[13:29:04] [PASSED] oob_was/16010904313
[13:29:04] [PASSED] oob_was/18022495364
[13:29:04] [PASSED] oob_was/22012773006
[13:29:04] [PASSED] oob_was/14014475959
[13:29:04] [PASSED] oob_was/22011391025
[13:29:04] [PASSED] oob_was/22012727170
[13:29:04] [PASSED] oob_was/22012727685
[13:29:04] [PASSED] oob_was/22016596838
[13:29:04] [PASSED] oob_was/18020744125
[13:29:04] [PASSED] oob_was/1409600907
[13:29:04] [PASSED] oob_was/22014953428
[13:29:04] [PASSED] oob_was/16017236439
[13:29:04] [PASSED] oob_was/14019821291
[13:29:04] [PASSED] oob_was/14015076503
[13:29:04] [PASSED] oob_was/14018913170
[13:29:04] [PASSED] oob_was/14018094691
[13:29:04] [PASSED] oob_was/18024947630
[13:29:04] [PASSED] oob_was/16022287689
[13:29:04] [PASSED] oob_was/13011645652
[13:29:04] [PASSED] oob_was/14022293748
[13:29:04] [PASSED] oob_was/22019794406
[13:29:04] [PASSED] oob_was/22019338487
[13:29:04] [PASSED] oob_was/16023588340
[13:29:04] [PASSED] oob_was/14019789679
[13:29:04] [PASSED] oob_was/14022866841
[13:29:04] [PASSED] oob_was/16021333562
[13:29:04] [PASSED] oob_was/14016712196
[13:29:04] [PASSED] oob_was/14015568240
[13:29:04] [PASSED] oob_was/18013179988
[13:29:04] [PASSED] oob_was/1508761755
[13:29:04] [PASSED] oob_was/16023105232
[13:29:04] [PASSED] oob_was/16026508708
[13:29:04] [PASSED] oob_was/14020001231
[13:29:04] [PASSED] oob_was/16023683509
[13:29:04] [PASSED] oob_was/14025515070
[13:29:04] [PASSED] oob_was/15015404425_disable
[13:29:04] [PASSED] oob_was/16026007364
[13:29:04] [PASSED] oob_was/14020316580
[13:29:04] [PASSED] oob_was/14025883347
[13:29:04] [PASSED] oob_was/16029380221
[13:29:04] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:29:04] ================ xe_rtp_table_dev_oob_test  ================
[13:29:04] [PASSED] device_oob_was/22010954014
[13:29:04] [PASSED] device_oob_was/15015404425
[13:29:04] [PASSED] device_oob_was/22019338487_display
[13:29:04] [PASSED] device_oob_was/14022085890
[13:29:04] [PASSED] device_oob_was/14026539277
[13:29:04] [PASSED] device_oob_was/14026633728
[13:29:04] [PASSED] device_oob_was/14026746987
[13:29:04] [PASSED] device_oob_was/14026779378
[13:29:04] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:29:04] =============== [PASSED] xe_rtp_tables_test ================
[13:29:04] =================== xe_rtp (3 subtests) ====================
[13:29:04] =================== xe_rtp_rules_tests  ====================
[13:29:04] [PASSED] no
[13:29:04] [PASSED] yes
[13:29:04] [PASSED] no-and-no
[13:29:04] [PASSED] no-and-yes
[13:29:04] [PASSED] yes-and-no
[13:29:04] [PASSED] yes-and-yes
[13:29:04] [PASSED] no-or-no
[13:29:04] [PASSED] no-or-yes
[13:29:04] [PASSED] yes-or-no
[13:29:04] [PASSED] yes-or-yes
[13:29:04] [PASSED] no-yes-or-yes-no
[13:29:04] [PASSED] no-yes-or-yes-yes
[13:29:04] [PASSED] yes-yes-or-no-yes
[13:29:04] [PASSED] yes-yes-or-yes-yes
[13:29:04] [PASSED] no-no-or-yes-or-no
[13:29:04] [PASSED] or
[13:29:04] [PASSED] or-yes
[13:29:04] [PASSED] or-no
[13:29:04] [PASSED] yes-or
[13:29:04] [PASSED] no-or
[13:29:04] [PASSED] no-or-or-yes
[13:29:04] [PASSED] yes-or-or-no
[13:29:04] [PASSED] no-or-or-no
[13:29:04] [PASSED] missing-context-engine-class
[13:29:04] [PASSED] missing-context-engine-class-or-yes
[13:29:04] [PASSED] missing-context-engine-class-or-or-yes
[13:29:04] =============== [PASSED] xe_rtp_rules_tests ================
[13:29:04] =============== xe_rtp_process_to_sr_tests  ================
[13:29:04] [PASSED] coalesce-same-reg
[13:29:04] [PASSED] coalesce-same-reg-literal-and-func
[13:29:04] [PASSED] no-match-no-add
[13:29:04] [PASSED] two-regs-two-entries
[13:29:04] [PASSED] clr-one-set-other
[13:29:04] [PASSED] set-field
[13:29:04] [PASSED] conflict-duplicate
[13:29:04] [PASSED] conflict-not-disjoint
[13:29:04] [PASSED] conflict-not-disjoint-literal-and-func
[13:29:04] [PASSED] conflict-reg-type
[13:29:04] [PASSED] bad-mcr-reg-forced-to-regular
[13:29:04] [PASSED] bad-regular-reg-forced-to-mcr
[13:29:04] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:29:04] ================== xe_rtp_process_tests  ===================
[13:29:04] [PASSED] active1
[13:29:04] [PASSED] active2
[13:29:04] [PASSED] active-inactive
[13:29:04] [PASSED] inactive-active
[13:29:04] [PASSED] inactive-active-inactive
[13:29:04] [PASSED] inactive-inactive-inactive
[13:29:04] ============== [PASSED] xe_rtp_process_tests ===============
[13:29:04] ===================== [PASSED] xe_rtp ======================
[13:29:04] ==================== xe_wa (1 subtest) =====================
[13:29:04] ======================== xe_wa_gt  =========================
[13:29:04] [PASSED] TIGERLAKE B0
[13:29:04] [PASSED] DG1 A0
[13:29:04] [PASSED] DG1 B0
[13:29:04] [PASSED] ALDERLAKE_S A0
[13:29:04] [PASSED] ALDERLAKE_S B0
[13:29:04] [PASSED] ALDERLAKE_S C0
[13:29:04] [PASSED] ALDERLAKE_S D0
[13:29:04] [PASSED] ALDERLAKE_P A0
[13:29:04] [PASSED] ALDERLAKE_P B0
[13:29:04] [PASSED] ALDERLAKE_P C0
[13:29:04] [PASSED] ALDERLAKE_S RPLS D0
[13:29:04] [PASSED] ALDERLAKE_P RPLU E0
[13:29:04] [PASSED] DG2 G10 C0
[13:29:04] [PASSED] DG2 G11 B1
[13:29:04] [PASSED] DG2 G12 A1
[13:29:04] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:29:04] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:29:04] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:29:04] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:29:04] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:29:04] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:29:04] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:29:04] ==================== [PASSED] xe_wa_gt =====================
[13:29:04] ====================== [PASSED] xe_wa ======================
[13:29:04] ============================================================
[13:29:04] Testing complete. Ran 719 tests: passed: 701, skipped: 18
[13:29:04] Elapsed time: 67.096s total, 11.284s configuring, 54.389s building, 1.366s running

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

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

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



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

* ✗ Fi.CI.BUILD: failure for drm/i915: Clean up GPIO pin stuff
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (6 preceding siblings ...)
  2026-06-23 13:30 ` ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff Patchwork
@ 2026-06-23 13:50 ` Patchwork
  2026-06-23 14:18 ` ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff (rev2) Patchwork
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 13:50 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff
URL   : https://patchwork.freedesktop.org/series/169024/
State : failure

== Summary ==

Error: make failed
  DESCEND objtool
  INSTALL libsubcmd_headers
  LD [M]  drivers/gpu/drm/i915/i915.o
  CC [M]  drivers/gpu/drm/i915/gvt/edid.o
drivers/gpu/drm/i915/gvt/edid.c: In function ‘cnp_get_port_from_gmbus0’:
drivers/gpu/drm/i915/gvt/edid.c:93:28: error: ‘GMBUS_PIN_1_BXT’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_10_TC2’?
   93 |         if (port_select == GMBUS_PIN_1_BXT)
      |                            ^~~~~~~~~~~~~~~
      |                            GMBUS_PIN_10_TC2
drivers/gpu/drm/i915/gvt/edid.c:93:28: note: each undeclared identifier is reported only once for each function it appears in
drivers/gpu/drm/i915/gvt/edid.c:95:33: error: ‘GMBUS_PIN_2_BXT’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_DPB’?
   95 |         else if (port_select == GMBUS_PIN_2_BXT)
      |                                 ^~~~~~~~~~~~~~~
      |                                 GMBUS_PIN_DPB
drivers/gpu/drm/i915/gvt/edid.c:97:33: error: ‘GMBUS_PIN_3_BXT’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_13_TC5’?
   97 |         else if (port_select == GMBUS_PIN_3_BXT)
      |                                 ^~~~~~~~~~~~~~~
      |                                 GMBUS_PIN_13_TC5
drivers/gpu/drm/i915/gvt/edid.c:99:33: error: ‘GMBUS_PIN_4_CNP’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_DPC’?
   99 |         else if (port_select == GMBUS_PIN_4_CNP)
      |                                 ^~~~~~~~~~~~~~~
      |                                 GMBUS_PIN_DPC
drivers/gpu/drm/i915/gvt/edid.c: In function ‘bxt_get_port_from_gmbus0’:
drivers/gpu/drm/i915/gvt/edid.c:109:28: error: ‘GMBUS_PIN_1_BXT’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_10_TC2’?
  109 |         if (port_select == GMBUS_PIN_1_BXT)
      |                            ^~~~~~~~~~~~~~~
      |                            GMBUS_PIN_10_TC2
drivers/gpu/drm/i915/gvt/edid.c:111:33: error: ‘GMBUS_PIN_2_BXT’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_DPB’?
  111 |         else if (port_select == GMBUS_PIN_2_BXT)
      |                                 ^~~~~~~~~~~~~~~
      |                                 GMBUS_PIN_DPB
drivers/gpu/drm/i915/gvt/edid.c:113:33: error: ‘GMBUS_PIN_3_BXT’ undeclared (first use in this function); did you mean ‘GMBUS_PIN_13_TC5’?
  113 |         else if (port_select == GMBUS_PIN_3_BXT)
      |                                 ^~~~~~~~~~~~~~~
      |                                 GMBUS_PIN_13_TC5
make[6]: *** [scripts/Makefile.build:289: drivers/gpu/drm/i915/gvt/edid.o] Error 1
make[5]: *** [scripts/Makefile.build:548: drivers/gpu/drm/i915] Error 2
make[4]: *** [scripts/Makefile.build:548: drivers/gpu/drm] Error 2
make[3]: *** [scripts/Makefile.build:548: drivers/gpu] Error 2
make[2]: *** [scripts/Makefile.build:548: drivers] Error 2
make[1]: *** [/home/kbuild2/kernel/Makefile:2144: .] Error 2
make: *** [Makefile:248: __sub-make] Error 2
Build failed, no error log produced



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

* [PATCH v2 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins
  2026-06-23 12:51 ` [PATCH 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins Ville Syrjala
@ 2026-06-23 14:11   ` Ville Syrjala
  2026-06-23 14:45     ` Michał Grzelak
  0 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjala @ 2026-06-23 14:11 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The modern GMBUS pin numbers are just a sequential set of
numbers, so the platform suffixes don't really buy us anything.
Let's just drop them. We'll keep the _TCx suffixes for pins
9+ since that's the way they always get used.

v2: Deal with gvt

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_bios.c  | 62 ++++++++++----------
 drivers/gpu/drm/i915/display/intel_gmbus.c | 68 +++++++++++-----------
 drivers/gpu/drm/i915/display/intel_gmbus.h | 22 +++----
 drivers/gpu/drm/i915/display/intel_hdmi.c  | 42 ++++++-------
 drivers/gpu/drm/i915/gvt/edid.c            | 14 ++---
 5 files changed, 104 insertions(+), 104 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index b6fe87c29aa7..15ebadc72b88 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -2197,52 +2197,52 @@ static u8 translate_iboost(struct intel_display *display, u8 val)
 
 static const u8 cnp_ddc_pin_map[] = {
 	[0] = 0, /* N/A */
-	[GMBUS_PIN_1_BXT] = DDC_BUS_DDI_B,
-	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_C,
-	[GMBUS_PIN_4_CNP] = DDC_BUS_DDI_D, /* sic */
-	[GMBUS_PIN_3_BXT] = DDC_BUS_DDI_F, /* sic */
+	[GMBUS_PIN_1] = DDC_BUS_DDI_B,
+	[GMBUS_PIN_2] = DDC_BUS_DDI_C,
+	[GMBUS_PIN_4] = DDC_BUS_DDI_D, /* sic */
+	[GMBUS_PIN_3] = DDC_BUS_DDI_F, /* sic */
 };
 
 static const u8 icp_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
-	[GMBUS_PIN_3_BXT] = TGL_DDC_BUS_DDI_C,
-	[GMBUS_PIN_9_TC1_ICP] = ICL_DDC_BUS_PORT_1,
-	[GMBUS_PIN_10_TC2_ICP] = ICL_DDC_BUS_PORT_2,
-	[GMBUS_PIN_11_TC3_ICP] = ICL_DDC_BUS_PORT_3,
-	[GMBUS_PIN_12_TC4_ICP] = ICL_DDC_BUS_PORT_4,
-	[GMBUS_PIN_13_TC5_TGP] = TGL_DDC_BUS_PORT_5,
-	[GMBUS_PIN_14_TC6_TGP] = TGL_DDC_BUS_PORT_6,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
+	[GMBUS_PIN_3] = TGL_DDC_BUS_DDI_C,
+	[GMBUS_PIN_9_TC1] = ICL_DDC_BUS_PORT_1,
+	[GMBUS_PIN_10_TC2] = ICL_DDC_BUS_PORT_2,
+	[GMBUS_PIN_11_TC3] = ICL_DDC_BUS_PORT_3,
+	[GMBUS_PIN_12_TC4] = ICL_DDC_BUS_PORT_4,
+	[GMBUS_PIN_13_TC5] = TGL_DDC_BUS_PORT_5,
+	[GMBUS_PIN_14_TC6] = TGL_DDC_BUS_PORT_6,
 };
 
 static const u8 rkl_pch_tgp_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
-	[GMBUS_PIN_9_TC1_ICP] = RKL_DDC_BUS_DDI_D,
-	[GMBUS_PIN_10_TC2_ICP] = RKL_DDC_BUS_DDI_E,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
+	[GMBUS_PIN_9_TC1] = RKL_DDC_BUS_DDI_D,
+	[GMBUS_PIN_10_TC2] = RKL_DDC_BUS_DDI_E,
 };
 
 static const u8 adls_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_9_TC1_ICP] = ADLS_DDC_BUS_PORT_TC1,
-	[GMBUS_PIN_10_TC2_ICP] = ADLS_DDC_BUS_PORT_TC2,
-	[GMBUS_PIN_11_TC3_ICP] = ADLS_DDC_BUS_PORT_TC3,
-	[GMBUS_PIN_12_TC4_ICP] = ADLS_DDC_BUS_PORT_TC4,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_9_TC1] = ADLS_DDC_BUS_PORT_TC1,
+	[GMBUS_PIN_10_TC2] = ADLS_DDC_BUS_PORT_TC2,
+	[GMBUS_PIN_11_TC3] = ADLS_DDC_BUS_PORT_TC3,
+	[GMBUS_PIN_12_TC4] = ADLS_DDC_BUS_PORT_TC4,
 };
 
 static const u8 gen9bc_tgp_ddc_pin_map[] = {
-	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_B,
-	[GMBUS_PIN_9_TC1_ICP] = DDC_BUS_DDI_C,
-	[GMBUS_PIN_10_TC2_ICP] = DDC_BUS_DDI_D,
+	[GMBUS_PIN_2] = DDC_BUS_DDI_B,
+	[GMBUS_PIN_9_TC1] = DDC_BUS_DDI_C,
+	[GMBUS_PIN_10_TC2] = DDC_BUS_DDI_D,
 };
 
 static const u8 adlp_ddc_pin_map[] = {
-	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
-	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
-	[GMBUS_PIN_9_TC1_ICP] = ADLP_DDC_BUS_PORT_TC1,
-	[GMBUS_PIN_10_TC2_ICP] = ADLP_DDC_BUS_PORT_TC2,
-	[GMBUS_PIN_11_TC3_ICP] = ADLP_DDC_BUS_PORT_TC3,
-	[GMBUS_PIN_12_TC4_ICP] = ADLP_DDC_BUS_PORT_TC4,
+	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
+	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
+	[GMBUS_PIN_9_TC1] = ADLP_DDC_BUS_PORT_TC1,
+	[GMBUS_PIN_10_TC2] = ADLP_DDC_BUS_PORT_TC2,
+	[GMBUS_PIN_11_TC3] = ADLP_DDC_BUS_PORT_TC3,
+	[GMBUS_PIN_12_TC4] = ADLP_DDC_BUS_PORT_TC4,
 };
 
 static u8 map_ddc_pin(struct intel_display *display, u8 vbt_pin)
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index dec0f66f756f..60a70dea5d85 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -105,55 +105,55 @@ static const struct gmbus_pin gmbus_pins_spt[] = {
 };
 
 static const struct gmbus_pin gmbus_pins_bxt[] = {
-	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
+	[GMBUS_PIN_1] = { "dpb", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpc", GPIO_2 },
+	[GMBUS_PIN_3] = { "misc", GPIO_3 },
 };
 
 static const struct gmbus_pin gmbus_pins_cnp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_1] = { "dpb", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpc", GPIO_2 },
+	[GMBUS_PIN_3] = { "misc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
 };
 
 static const struct gmbus_pin gmbus_pins_icp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
-	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
-	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
-	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
-	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPIO_13 },
-	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIO_14 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_10_TC2] = { "tc2", GPIO_10 },
+	[GMBUS_PIN_11_TC3] = { "tc3", GPIO_11 },
+	[GMBUS_PIN_12_TC4] = { "tc4", GPIO_12 },
+	[GMBUS_PIN_13_TC5] = { "tc5", GPIO_13 },
+	[GMBUS_PIN_14_TC6] = { "tc6", GPIO_14 },
 };
 
 static const struct gmbus_pin gmbus_pins_dg1[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
 };
 
 static const struct gmbus_pin gmbus_pins_dg2[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
 };
 
 static const struct gmbus_pin gmbus_pins_mtp[] = {
-	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
-	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
-	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
-	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
-	[GMBUS_PIN_5_MTP] = { "dpe", GPIO_5 },
-	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
-	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
-	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
-	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
+	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
+	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
+	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
+	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
+	[GMBUS_PIN_5] = { "dpe", GPIO_5 },
+	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
+	[GMBUS_PIN_10_TC2] = { "tc2", GPIO_10 },
+	[GMBUS_PIN_11_TC3] = { "tc3", GPIO_11 },
+	[GMBUS_PIN_12_TC4] = { "tc4", GPIO_12 },
 };
 
 static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.h b/drivers/gpu/drm/i915/display/intel_gmbus.h
index 35a200a9efc0..5fdeab1aa794 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.h
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.h
@@ -20,17 +20,17 @@ struct intel_display;
 #define GMBUS_PIN_DPB		5 /* SDVO, HDMIB */
 #define GMBUS_PIN_DPD		6 /* HDMID */
 #define GMBUS_PIN_RESERVED	7 /* 7 reserved */
-#define GMBUS_PIN_1_BXT		1 /* BXT+ (atom) and CNP+ (big core) */
-#define GMBUS_PIN_2_BXT		2
-#define GMBUS_PIN_3_BXT		3
-#define GMBUS_PIN_4_CNP		4
-#define GMBUS_PIN_5_MTP		5
-#define GMBUS_PIN_9_TC1_ICP	9
-#define GMBUS_PIN_10_TC2_ICP	10
-#define GMBUS_PIN_11_TC3_ICP	11
-#define GMBUS_PIN_12_TC4_ICP	12
-#define GMBUS_PIN_13_TC5_TGP	13
-#define GMBUS_PIN_14_TC6_TGP	14
+#define GMBUS_PIN_1		1 /* BXT+ (atom) and CNP+ (big core) */
+#define GMBUS_PIN_2		2
+#define GMBUS_PIN_3		3
+#define GMBUS_PIN_4		4
+#define GMBUS_PIN_5		5
+#define GMBUS_PIN_9_TC1		9 /* ICP+ */
+#define GMBUS_PIN_10_TC2	10
+#define GMBUS_PIN_11_TC3	11
+#define GMBUS_PIN_12_TC4	12
+#define GMBUS_PIN_13_TC5	13
+#define GMBUS_PIN_14_TC6	14
 
 #define GMBUS_NUM_PINS	15 /* including 0 */
 
diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index beca0ff5a5b4..f046918fd4bc 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -2825,14 +2825,14 @@ static u8 bxt_encoder_to_ddc_pin(struct intel_encoder *encoder)
 
 	switch (port) {
 	case PORT_B:
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	case PORT_C:
-		ddc_pin = GMBUS_PIN_2_BXT;
+		ddc_pin = GMBUS_PIN_2;
 		break;
 	default:
 		MISSING_CASE(port);
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	}
 	return ddc_pin;
@@ -2845,20 +2845,20 @@ static u8 cnp_encoder_to_ddc_pin(struct intel_encoder *encoder)
 
 	switch (port) {
 	case PORT_B:
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	case PORT_C:
-		ddc_pin = GMBUS_PIN_2_BXT;
+		ddc_pin = GMBUS_PIN_2;
 		break;
 	case PORT_D:
-		ddc_pin = GMBUS_PIN_4_CNP;
+		ddc_pin = GMBUS_PIN_4;
 		break;
 	case PORT_F:
-		ddc_pin = GMBUS_PIN_3_BXT;
+		ddc_pin = GMBUS_PIN_3;
 		break;
 	default:
 		MISSING_CASE(port);
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	}
 	return ddc_pin;
@@ -2870,12 +2870,12 @@ static u8 icl_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	enum port port = encoder->port;
 
 	if (intel_encoder_is_combo(encoder))
-		return GMBUS_PIN_1_BXT + port;
+		return GMBUS_PIN_1 + port;
 	else if (intel_encoder_is_tc(encoder))
-		return GMBUS_PIN_9_TC1_ICP + intel_encoder_to_tc(encoder);
+		return GMBUS_PIN_9_TC1 + intel_encoder_to_tc(encoder);
 
 	drm_WARN(display->drm, 1, "Unknown port:%c\n", port_name(port));
-	return GMBUS_PIN_2_BXT;
+	return GMBUS_PIN_2;
 }
 
 static u8 mcc_encoder_to_ddc_pin(struct intel_encoder *encoder)
@@ -2885,17 +2885,17 @@ static u8 mcc_encoder_to_ddc_pin(struct intel_encoder *encoder)
 
 	switch (phy) {
 	case PHY_A:
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	case PHY_B:
-		ddc_pin = GMBUS_PIN_2_BXT;
+		ddc_pin = GMBUS_PIN_2;
 		break;
 	case PHY_C:
-		ddc_pin = GMBUS_PIN_9_TC1_ICP;
+		ddc_pin = GMBUS_PIN_9_TC1;
 		break;
 	default:
 		MISSING_CASE(phy);
-		ddc_pin = GMBUS_PIN_1_BXT;
+		ddc_pin = GMBUS_PIN_1;
 		break;
 	}
 	return ddc_pin;
@@ -2915,9 +2915,9 @@ static u8 rkl_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	 * all outputs.
 	 */
 	if (INTEL_PCH_TYPE(display) >= PCH_TGP && phy >= PHY_C)
-		return GMBUS_PIN_9_TC1_ICP + phy - PHY_C;
+		return GMBUS_PIN_9_TC1 + phy - PHY_C;
 
-	return GMBUS_PIN_1_BXT + phy;
+	return GMBUS_PIN_1 + phy;
 }
 
 static u8 gen9bc_tgp_encoder_to_ddc_pin(struct intel_encoder *encoder)
@@ -2934,9 +2934,9 @@ static u8 gen9bc_tgp_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	 * all outputs.
 	 */
 	if (INTEL_PCH_TYPE(display) >= PCH_TGP && phy >= PHY_C)
-		return GMBUS_PIN_9_TC1_ICP + phy - PHY_C;
+		return GMBUS_PIN_9_TC1 + phy - PHY_C;
 
-	return GMBUS_PIN_1_BXT + phy;
+	return GMBUS_PIN_1 + phy;
 }
 
 static u8 dg1_encoder_to_ddc_pin(struct intel_encoder *encoder)
@@ -2955,9 +2955,9 @@ static u8 adls_encoder_to_ddc_pin(struct intel_encoder *encoder)
 	 * except first combo output.
 	 */
 	if (phy == PHY_A)
-		return GMBUS_PIN_1_BXT;
+		return GMBUS_PIN_1;
 
-	return GMBUS_PIN_9_TC1_ICP + phy - PHY_B;
+	return GMBUS_PIN_9_TC1 + phy - PHY_B;
 }
 
 static u8 g4x_encoder_to_ddc_pin(struct intel_encoder *encoder)
diff --git a/drivers/gpu/drm/i915/gvt/edid.c b/drivers/gpu/drm/i915/gvt/edid.c
index ca5b54466a65..dc9ef98ff51b 100644
--- a/drivers/gpu/drm/i915/gvt/edid.c
+++ b/drivers/gpu/drm/i915/gvt/edid.c
@@ -90,13 +90,13 @@ static inline int cnp_get_port_from_gmbus0(u32 gmbus0)
 	int port_select = gmbus0 & _GMBUS_PIN_SEL_MASK;
 	int port = -EINVAL;
 
-	if (port_select == GMBUS_PIN_1_BXT)
+	if (port_select == GMBUS_PIN_1)
 		port = PORT_B;
-	else if (port_select == GMBUS_PIN_2_BXT)
+	else if (port_select == GMBUS_PIN_2)
 		port = PORT_C;
-	else if (port_select == GMBUS_PIN_3_BXT)
+	else if (port_select == GMBUS_PIN_3)
 		port = PORT_D;
-	else if (port_select == GMBUS_PIN_4_CNP)
+	else if (port_select == GMBUS_PIN_4)
 		port = PORT_E;
 	return port;
 }
@@ -106,11 +106,11 @@ static inline int bxt_get_port_from_gmbus0(u32 gmbus0)
 	int port_select = gmbus0 & _GMBUS_PIN_SEL_MASK;
 	int port = -EINVAL;
 
-	if (port_select == GMBUS_PIN_1_BXT)
+	if (port_select == GMBUS_PIN_1)
 		port = PORT_B;
-	else if (port_select == GMBUS_PIN_2_BXT)
+	else if (port_select == GMBUS_PIN_2)
 		port = PORT_C;
-	else if (port_select == GMBUS_PIN_3_BXT)
+	else if (port_select == GMBUS_PIN_3)
 		port = PORT_D;
 	return port;
 }
-- 
2.53.0


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

* ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff (rev2)
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (7 preceding siblings ...)
  2026-06-23 13:50 ` ✗ Fi.CI.BUILD: failure " Patchwork
@ 2026-06-23 14:18 ` Patchwork
  2026-06-23 15:04 ` ✓ i915.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 14:18 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff (rev2)
URL   : https://patchwork.freedesktop.org/series/169023/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:16:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:17:01] 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
[14:17:32] Starting KUnit Kernel (1/1)...
[14:17:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:17:32] ================== guc_buf (11 subtests) ===================
[14:17:32] [PASSED] test_smallest
[14:17:32] [PASSED] test_largest
[14:17:32] [PASSED] test_granular
[14:17:32] [PASSED] test_unique
[14:17:32] [PASSED] test_overlap
[14:17:32] [PASSED] test_reusable
[14:17:32] [PASSED] test_too_big
[14:17:32] [PASSED] test_flush
[14:17:32] [PASSED] test_lookup
[14:17:32] [PASSED] test_data
[14:17:32] [PASSED] test_class
[14:17:32] ===================== [PASSED] guc_buf =====================
[14:17:32] =================== guc_dbm (7 subtests) ===================
[14:17:32] [PASSED] test_empty
[14:17:32] [PASSED] test_default
[14:17:32] ======================== test_size  ========================
[14:17:32] [PASSED] 4
[14:17:32] [PASSED] 8
[14:17:32] [PASSED] 32
[14:17:32] [PASSED] 256
[14:17:32] ==================== [PASSED] test_size ====================
[14:17:32] ======================= test_reuse  ========================
[14:17:32] [PASSED] 4
[14:17:32] [PASSED] 8
[14:17:32] [PASSED] 32
[14:17:32] [PASSED] 256
[14:17:32] =================== [PASSED] test_reuse ====================
[14:17:32] =================== test_range_overlap  ====================
[14:17:32] [PASSED] 4
[14:17:32] [PASSED] 8
[14:17:32] [PASSED] 32
[14:17:32] [PASSED] 256
[14:17:32] =============== [PASSED] test_range_overlap ================
[14:17:32] =================== test_range_compact  ====================
[14:17:32] [PASSED] 4
[14:17:32] [PASSED] 8
[14:17:32] [PASSED] 32
[14:17:32] [PASSED] 256
[14:17:32] =============== [PASSED] test_range_compact ================
[14:17:32] ==================== test_range_spare  =====================
[14:17:32] [PASSED] 4
[14:17:32] [PASSED] 8
[14:17:32] [PASSED] 32
[14:17:32] [PASSED] 256
[14:17:32] ================ [PASSED] test_range_spare =================
[14:17:32] ===================== [PASSED] guc_dbm =====================
[14:17:32] =================== guc_idm (6 subtests) ===================
[14:17:32] [PASSED] bad_init
[14:17:32] [PASSED] no_init
[14:17:32] [PASSED] init_fini
[14:17:32] [PASSED] check_used
[14:17:32] [PASSED] check_quota
[14:17:32] [PASSED] check_all
[14:17:32] ===================== [PASSED] guc_idm =====================
[14:17:32] ================== no_relay (3 subtests) ===================
[14:17:32] [PASSED] xe_drops_guc2pf_if_not_ready
[14:17:32] [PASSED] xe_drops_guc2vf_if_not_ready
[14:17:32] [PASSED] xe_rejects_send_if_not_ready
[14:17:32] ==================== [PASSED] no_relay =====================
[14:17:32] ================== pf_relay (14 subtests) ==================
[14:17:32] [PASSED] pf_rejects_guc2pf_too_short
[14:17:32] [PASSED] pf_rejects_guc2pf_too_long
[14:17:32] [PASSED] pf_rejects_guc2pf_no_payload
[14:17:32] [PASSED] pf_fails_no_payload
[14:17:32] [PASSED] pf_fails_bad_origin
[14:17:32] [PASSED] pf_fails_bad_type
[14:17:32] [PASSED] pf_txn_reports_error
[14:17:32] [PASSED] pf_txn_sends_pf2guc
[14:17:32] [PASSED] pf_sends_pf2guc
[14:17:32] [SKIPPED] pf_loopback_nop
[14:17:32] [SKIPPED] pf_loopback_echo
[14:17:32] [SKIPPED] pf_loopback_fail
[14:17:32] [SKIPPED] pf_loopback_busy
[14:17:32] [SKIPPED] pf_loopback_retry
[14:17:32] ==================== [PASSED] pf_relay =====================
[14:17:32] ================== vf_relay (3 subtests) ===================
[14:17:32] [PASSED] vf_rejects_guc2vf_too_short
[14:17:32] [PASSED] vf_rejects_guc2vf_too_long
[14:17:32] [PASSED] vf_rejects_guc2vf_no_payload
[14:17:32] ==================== [PASSED] vf_relay =====================
[14:17:32] ================ pf_gt_config (9 subtests) =================
[14:17:32] [PASSED] fair_contexts_1vf
[14:17:32] [PASSED] fair_doorbells_1vf
[14:17:32] [PASSED] fair_ggtt_1vf
[14:17:32] ====================== fair_vram_1vf  ======================
[14:17:32] [PASSED] 3.50 GiB
[14:17:32] [PASSED] 11.5 GiB
[14:17:32] [PASSED] 15.5 GiB
[14:17:32] [PASSED] 31.5 GiB
[14:17:32] [PASSED] 63.5 GiB
[14:17:32] [PASSED] 1.91 GiB
[14:17:32] ================== [PASSED] fair_vram_1vf ==================
[14:17:32] ================ fair_vram_1vf_admin_only  =================
[14:17:32] [PASSED] 3.50 GiB
[14:17:32] [PASSED] 11.5 GiB
[14:17:32] [PASSED] 15.5 GiB
[14:17:32] [PASSED] 31.5 GiB
[14:17:32] [PASSED] 63.5 GiB
[14:17:32] [PASSED] 1.91 GiB
[14:17:32] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:17:32] ====================== fair_contexts  ======================
[14:17:32] [PASSED] 1 VF
[14:17:32] [PASSED] 2 VFs
[14:17:32] [PASSED] 3 VFs
[14:17:32] [PASSED] 4 VFs
[14:17:32] [PASSED] 5 VFs
[14:17:32] [PASSED] 6 VFs
[14:17:32] [PASSED] 7 VFs
[14:17:32] [PASSED] 8 VFs
[14:17:32] [PASSED] 9 VFs
[14:17:32] [PASSED] 10 VFs
[14:17:32] [PASSED] 11 VFs
[14:17:32] [PASSED] 12 VFs
[14:17:32] [PASSED] 13 VFs
[14:17:32] [PASSED] 14 VFs
[14:17:32] [PASSED] 15 VFs
[14:17:32] [PASSED] 16 VFs
[14:17:32] [PASSED] 17 VFs
[14:17:32] [PASSED] 18 VFs
[14:17:32] [PASSED] 19 VFs
[14:17:32] [PASSED] 20 VFs
[14:17:32] [PASSED] 21 VFs
[14:17:32] [PASSED] 22 VFs
[14:17:32] [PASSED] 23 VFs
[14:17:32] [PASSED] 24 VFs
[14:17:33] [PASSED] 25 VFs
[14:17:33] [PASSED] 26 VFs
[14:17:33] [PASSED] 27 VFs
[14:17:33] [PASSED] 28 VFs
[14:17:33] [PASSED] 29 VFs
[14:17:33] [PASSED] 30 VFs
[14:17:33] [PASSED] 31 VFs
[14:17:33] [PASSED] 32 VFs
[14:17:33] [PASSED] 33 VFs
[14:17:33] [PASSED] 34 VFs
[14:17:33] [PASSED] 35 VFs
[14:17:33] [PASSED] 36 VFs
[14:17:33] [PASSED] 37 VFs
[14:17:33] [PASSED] 38 VFs
[14:17:33] [PASSED] 39 VFs
[14:17:33] [PASSED] 40 VFs
[14:17:33] [PASSED] 41 VFs
[14:17:33] [PASSED] 42 VFs
[14:17:33] [PASSED] 43 VFs
[14:17:33] [PASSED] 44 VFs
[14:17:33] [PASSED] 45 VFs
[14:17:33] [PASSED] 46 VFs
[14:17:33] [PASSED] 47 VFs
[14:17:33] [PASSED] 48 VFs
[14:17:33] [PASSED] 49 VFs
[14:17:33] [PASSED] 50 VFs
[14:17:33] [PASSED] 51 VFs
[14:17:33] [PASSED] 52 VFs
[14:17:33] [PASSED] 53 VFs
[14:17:33] [PASSED] 54 VFs
[14:17:33] [PASSED] 55 VFs
[14:17:33] [PASSED] 56 VFs
[14:17:33] [PASSED] 57 VFs
[14:17:33] [PASSED] 58 VFs
[14:17:33] [PASSED] 59 VFs
[14:17:33] [PASSED] 60 VFs
[14:17:33] [PASSED] 61 VFs
[14:17:33] [PASSED] 62 VFs
[14:17:33] [PASSED] 63 VFs
[14:17:33] ================== [PASSED] fair_contexts ==================
[14:17:33] ===================== fair_doorbells  ======================
[14:17:33] [PASSED] 1 VF
[14:17:33] [PASSED] 2 VFs
[14:17:33] [PASSED] 3 VFs
[14:17:33] [PASSED] 4 VFs
[14:17:33] [PASSED] 5 VFs
[14:17:33] [PASSED] 6 VFs
[14:17:33] [PASSED] 7 VFs
[14:17:33] [PASSED] 8 VFs
[14:17:33] [PASSED] 9 VFs
[14:17:33] [PASSED] 10 VFs
[14:17:33] [PASSED] 11 VFs
[14:17:33] [PASSED] 12 VFs
[14:17:33] [PASSED] 13 VFs
[14:17:33] [PASSED] 14 VFs
[14:17:33] [PASSED] 15 VFs
[14:17:33] [PASSED] 16 VFs
[14:17:33] [PASSED] 17 VFs
[14:17:33] [PASSED] 18 VFs
[14:17:33] [PASSED] 19 VFs
[14:17:33] [PASSED] 20 VFs
[14:17:33] [PASSED] 21 VFs
[14:17:33] [PASSED] 22 VFs
[14:17:33] [PASSED] 23 VFs
[14:17:33] [PASSED] 24 VFs
[14:17:33] [PASSED] 25 VFs
[14:17:33] [PASSED] 26 VFs
[14:17:33] [PASSED] 27 VFs
[14:17:33] [PASSED] 28 VFs
[14:17:33] [PASSED] 29 VFs
[14:17:33] [PASSED] 30 VFs
[14:17:33] [PASSED] 31 VFs
[14:17:33] [PASSED] 32 VFs
[14:17:33] [PASSED] 33 VFs
[14:17:33] [PASSED] 34 VFs
[14:17:33] [PASSED] 35 VFs
[14:17:33] [PASSED] 36 VFs
[14:17:33] [PASSED] 37 VFs
[14:17:33] [PASSED] 38 VFs
[14:17:33] [PASSED] 39 VFs
[14:17:33] [PASSED] 40 VFs
[14:17:33] [PASSED] 41 VFs
[14:17:33] [PASSED] 42 VFs
[14:17:33] [PASSED] 43 VFs
[14:17:33] [PASSED] 44 VFs
[14:17:33] [PASSED] 45 VFs
[14:17:33] [PASSED] 46 VFs
[14:17:33] [PASSED] 47 VFs
[14:17:33] [PASSED] 48 VFs
[14:17:33] [PASSED] 49 VFs
[14:17:33] [PASSED] 50 VFs
[14:17:33] [PASSED] 51 VFs
[14:17:33] [PASSED] 52 VFs
[14:17:33] [PASSED] 53 VFs
[14:17:33] [PASSED] 54 VFs
[14:17:33] [PASSED] 55 VFs
[14:17:33] [PASSED] 56 VFs
[14:17:33] [PASSED] 57 VFs
[14:17:33] [PASSED] 58 VFs
[14:17:33] [PASSED] 59 VFs
[14:17:33] [PASSED] 60 VFs
[14:17:33] [PASSED] 61 VFs
[14:17:33] [PASSED] 62 VFs
[14:17:33] [PASSED] 63 VFs
[14:17:33] ================= [PASSED] fair_doorbells ==================
[14:17:33] ======================== fair_ggtt  ========================
[14:17:33] [PASSED] 1 VF
[14:17:33] [PASSED] 2 VFs
[14:17:33] [PASSED] 3 VFs
[14:17:33] [PASSED] 4 VFs
[14:17:33] [PASSED] 5 VFs
[14:17:33] [PASSED] 6 VFs
[14:17:33] [PASSED] 7 VFs
[14:17:33] [PASSED] 8 VFs
[14:17:33] [PASSED] 9 VFs
[14:17:33] [PASSED] 10 VFs
[14:17:33] [PASSED] 11 VFs
[14:17:33] [PASSED] 12 VFs
[14:17:33] [PASSED] 13 VFs
[14:17:33] [PASSED] 14 VFs
[14:17:33] [PASSED] 15 VFs
[14:17:33] [PASSED] 16 VFs
[14:17:33] [PASSED] 17 VFs
[14:17:33] [PASSED] 18 VFs
[14:17:33] [PASSED] 19 VFs
[14:17:33] [PASSED] 20 VFs
[14:17:33] [PASSED] 21 VFs
[14:17:33] [PASSED] 22 VFs
[14:17:33] [PASSED] 23 VFs
[14:17:33] [PASSED] 24 VFs
[14:17:33] [PASSED] 25 VFs
[14:17:33] [PASSED] 26 VFs
[14:17:33] [PASSED] 27 VFs
[14:17:33] [PASSED] 28 VFs
[14:17:33] [PASSED] 29 VFs
[14:17:33] [PASSED] 30 VFs
[14:17:33] [PASSED] 31 VFs
[14:17:33] [PASSED] 32 VFs
[14:17:33] [PASSED] 33 VFs
[14:17:33] [PASSED] 34 VFs
[14:17:33] [PASSED] 35 VFs
[14:17:33] [PASSED] 36 VFs
[14:17:33] [PASSED] 37 VFs
[14:17:33] [PASSED] 38 VFs
[14:17:33] [PASSED] 39 VFs
[14:17:33] [PASSED] 40 VFs
[14:17:33] [PASSED] 41 VFs
[14:17:33] [PASSED] 42 VFs
[14:17:33] [PASSED] 43 VFs
[14:17:33] [PASSED] 44 VFs
[14:17:33] [PASSED] 45 VFs
[14:17:33] [PASSED] 46 VFs
[14:17:33] [PASSED] 47 VFs
[14:17:33] [PASSED] 48 VFs
[14:17:33] [PASSED] 49 VFs
[14:17:33] [PASSED] 50 VFs
[14:17:33] [PASSED] 51 VFs
[14:17:33] [PASSED] 52 VFs
[14:17:33] [PASSED] 53 VFs
[14:17:33] [PASSED] 54 VFs
[14:17:33] [PASSED] 55 VFs
[14:17:33] [PASSED] 56 VFs
[14:17:33] [PASSED] 57 VFs
[14:17:33] [PASSED] 58 VFs
[14:17:33] [PASSED] 59 VFs
[14:17:33] [PASSED] 60 VFs
[14:17:33] [PASSED] 61 VFs
[14:17:33] [PASSED] 62 VFs
[14:17:33] [PASSED] 63 VFs
[14:17:33] ==================== [PASSED] fair_ggtt ====================
[14:17:33] ======================== fair_vram  ========================
[14:17:33] [PASSED] 1 VF
[14:17:33] [PASSED] 2 VFs
[14:17:33] [PASSED] 3 VFs
[14:17:33] [PASSED] 4 VFs
[14:17:33] [PASSED] 5 VFs
[14:17:33] [PASSED] 6 VFs
[14:17:33] [PASSED] 7 VFs
[14:17:33] [PASSED] 8 VFs
[14:17:33] [PASSED] 9 VFs
[14:17:33] [PASSED] 10 VFs
[14:17:33] [PASSED] 11 VFs
[14:17:33] [PASSED] 12 VFs
[14:17:33] [PASSED] 13 VFs
[14:17:33] [PASSED] 14 VFs
[14:17:33] [PASSED] 15 VFs
[14:17:33] [PASSED] 16 VFs
[14:17:33] [PASSED] 17 VFs
[14:17:33] [PASSED] 18 VFs
[14:17:33] [PASSED] 19 VFs
[14:17:33] [PASSED] 20 VFs
[14:17:33] [PASSED] 21 VFs
[14:17:33] [PASSED] 22 VFs
[14:17:33] [PASSED] 23 VFs
[14:17:33] [PASSED] 24 VFs
[14:17:33] [PASSED] 25 VFs
[14:17:33] [PASSED] 26 VFs
[14:17:33] [PASSED] 27 VFs
[14:17:33] [PASSED] 28 VFs
[14:17:33] [PASSED] 29 VFs
[14:17:33] [PASSED] 30 VFs
[14:17:33] [PASSED] 31 VFs
[14:17:33] [PASSED] 32 VFs
[14:17:33] [PASSED] 33 VFs
[14:17:33] [PASSED] 34 VFs
[14:17:33] [PASSED] 35 VFs
[14:17:33] [PASSED] 36 VFs
[14:17:33] [PASSED] 37 VFs
[14:17:33] [PASSED] 38 VFs
[14:17:33] [PASSED] 39 VFs
[14:17:33] [PASSED] 40 VFs
[14:17:33] [PASSED] 41 VFs
[14:17:33] [PASSED] 42 VFs
[14:17:33] [PASSED] 43 VFs
[14:17:33] [PASSED] 44 VFs
[14:17:33] [PASSED] 45 VFs
[14:17:33] [PASSED] 46 VFs
[14:17:33] [PASSED] 47 VFs
[14:17:33] [PASSED] 48 VFs
[14:17:33] [PASSED] 49 VFs
[14:17:33] [PASSED] 50 VFs
[14:17:33] [PASSED] 51 VFs
[14:17:33] [PASSED] 52 VFs
[14:17:33] [PASSED] 53 VFs
[14:17:33] [PASSED] 54 VFs
[14:17:33] [PASSED] 55 VFs
[14:17:33] [PASSED] 56 VFs
[14:17:33] [PASSED] 57 VFs
[14:17:33] [PASSED] 58 VFs
[14:17:33] [PASSED] 59 VFs
[14:17:33] [PASSED] 60 VFs
[14:17:33] [PASSED] 61 VFs
[14:17:33] [PASSED] 62 VFs
[14:17:33] [PASSED] 63 VFs
[14:17:33] ==================== [PASSED] fair_vram ====================
[14:17:33] ================== [PASSED] pf_gt_config ===================
[14:17:33] ===================== lmtt (1 subtest) =====================
[14:17:33] ======================== test_ops  =========================
[14:17:33] [PASSED] 2-level
[14:17:33] [PASSED] multi-level
[14:17:33] ==================== [PASSED] test_ops =====================
[14:17:33] ====================== [PASSED] lmtt =======================
[14:17:33] ================= pf_service (11 subtests) =================
[14:17:33] [PASSED] pf_negotiate_any
[14:17:33] [PASSED] pf_negotiate_base_match
[14:17:33] [PASSED] pf_negotiate_base_newer
[14:17:33] [PASSED] pf_negotiate_base_next
[14:17:33] [SKIPPED] pf_negotiate_base_older
[14:17:33] [PASSED] pf_negotiate_base_prev
[14:17:33] [PASSED] pf_negotiate_latest_match
[14:17:33] [PASSED] pf_negotiate_latest_newer
[14:17:33] [PASSED] pf_negotiate_latest_next
[14:17:33] [SKIPPED] pf_negotiate_latest_older
[14:17:33] [SKIPPED] pf_negotiate_latest_prev
[14:17:33] =================== [PASSED] pf_service ====================
[14:17:33] ================= xe_guc_g2g (2 subtests) ==================
[14:17:33] ============== xe_live_guc_g2g_kunit_default  ==============
[14:17:33] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:17:33] ============== xe_live_guc_g2g_kunit_allmem  ===============
[14:17:33] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:17:33] =================== [SKIPPED] xe_guc_g2g ===================
[14:17:33] =================== xe_mocs (2 subtests) ===================
[14:17:33] ================ xe_live_mocs_kernel_kunit  ================
[14:17:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:17:33] ================ xe_live_mocs_reset_kunit  =================
[14:17:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:17:33] ==================== [SKIPPED] xe_mocs =====================
[14:17:33] ================= xe_migrate (2 subtests) ==================
[14:17:33] ================= xe_migrate_sanity_kunit  =================
[14:17:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:17:33] ================== xe_validate_ccs_kunit  ==================
[14:17:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:17:33] =================== [SKIPPED] xe_migrate ===================
[14:17:33] ================== xe_dma_buf (1 subtest) ==================
[14:17:33] ==================== xe_dma_buf_kunit  =====================
[14:17:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:17:33] =================== [SKIPPED] xe_dma_buf ===================
[14:17:33] ================= xe_bo_shrink (1 subtest) =================
[14:17:33] =================== xe_bo_shrink_kunit  ====================
[14:17:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:17:33] ================== [SKIPPED] xe_bo_shrink ==================
[14:17:33] ==================== xe_bo (2 subtests) ====================
[14:17:33] ================== xe_ccs_migrate_kunit  ===================
[14:17:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:17:33] ==================== xe_bo_evict_kunit  ====================
[14:17:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:17:33] ===================== [SKIPPED] xe_bo ======================
[14:17:33] ==================== args (13 subtests) ====================
[14:17:33] [PASSED] count_args_test
[14:17:33] [PASSED] call_args_example
[14:17:33] [PASSED] call_args_test
[14:17:33] [PASSED] drop_first_arg_example
[14:17:33] [PASSED] drop_first_arg_test
[14:17:33] [PASSED] first_arg_example
[14:17:33] [PASSED] first_arg_test
[14:17:33] [PASSED] last_arg_example
[14:17:33] [PASSED] last_arg_test
[14:17:33] [PASSED] pick_arg_example
[14:17:33] [PASSED] if_args_example
[14:17:33] [PASSED] if_args_test
[14:17:33] [PASSED] sep_comma_example
[14:17:33] ====================== [PASSED] args =======================
[14:17:33] =================== xe_pci (3 subtests) ====================
[14:17:33] ==================== check_graphics_ip  ====================
[14:17:33] [PASSED] 12.00 Xe_LP
[14:17:33] [PASSED] 12.10 Xe_LP+
[14:17:33] [PASSED] 12.55 Xe_HPG
[14:17:33] [PASSED] 12.60 Xe_HPC
[14:17:33] [PASSED] 12.70 Xe_LPG
[14:17:33] [PASSED] 12.71 Xe_LPG
[14:17:33] [PASSED] 12.74 Xe_LPG+
[14:17:33] [PASSED] 20.01 Xe2_HPG
[14:17:33] [PASSED] 20.02 Xe2_HPG
[14:17:33] [PASSED] 20.04 Xe2_LPG
[14:17:33] [PASSED] 30.00 Xe3_LPG
[14:17:33] [PASSED] 30.01 Xe3_LPG
[14:17:33] [PASSED] 30.03 Xe3_LPG
[14:17:33] [PASSED] 30.04 Xe3_LPG
[14:17:33] [PASSED] 30.05 Xe3_LPG
[14:17:33] [PASSED] 35.10 Xe3p_LPG
[14:17:33] [PASSED] 35.11 Xe3p_XPC
[14:17:33] ================ [PASSED] check_graphics_ip ================
[14:17:33] ===================== check_media_ip  ======================
[14:17:33] [PASSED] 12.00 Xe_M
[14:17:33] [PASSED] 12.55 Xe_HPM
[14:17:33] [PASSED] 13.00 Xe_LPM+
[14:17:33] [PASSED] 13.01 Xe2_HPM
[14:17:33] [PASSED] 20.00 Xe2_LPM
[14:17:33] [PASSED] 30.00 Xe3_LPM
[14:17:33] [PASSED] 30.02 Xe3_LPM
[14:17:33] [PASSED] 35.00 Xe3p_LPM
[14:17:33] [PASSED] 35.03 Xe3p_HPM
[14:17:33] ================= [PASSED] check_media_ip ==================
[14:17:33] =================== check_platform_desc  ===================
[14:17:33] [PASSED] 0x9A60 (TIGERLAKE)
[14:17:33] [PASSED] 0x9A68 (TIGERLAKE)
[14:17:33] [PASSED] 0x9A70 (TIGERLAKE)
[14:17:33] [PASSED] 0x9A40 (TIGERLAKE)
[14:17:33] [PASSED] 0x9A49 (TIGERLAKE)
[14:17:33] [PASSED] 0x9A59 (TIGERLAKE)
[14:17:33] [PASSED] 0x9A78 (TIGERLAKE)
[14:17:33] [PASSED] 0x9AC0 (TIGERLAKE)
[14:17:33] [PASSED] 0x9AC9 (TIGERLAKE)
[14:17:33] [PASSED] 0x9AD9 (TIGERLAKE)
[14:17:33] [PASSED] 0x9AF8 (TIGERLAKE)
[14:17:33] [PASSED] 0x4C80 (ROCKETLAKE)
[14:17:33] [PASSED] 0x4C8A (ROCKETLAKE)
[14:17:33] [PASSED] 0x4C8B (ROCKETLAKE)
[14:17:33] [PASSED] 0x4C8C (ROCKETLAKE)
[14:17:33] [PASSED] 0x4C90 (ROCKETLAKE)
[14:17:33] [PASSED] 0x4C9A (ROCKETLAKE)
[14:17:33] [PASSED] 0x4680 (ALDERLAKE_S)
[14:17:33] [PASSED] 0x4682 (ALDERLAKE_S)
[14:17:33] [PASSED] 0x4688 (ALDERLAKE_S)
[14:17:33] [PASSED] 0x468A (ALDERLAKE_S)
[14:17:33] [PASSED] 0x468B (ALDERLAKE_S)
[14:17:33] [PASSED] 0x4690 (ALDERLAKE_S)
[14:17:33] [PASSED] 0x4692 (ALDERLAKE_S)
[14:17:33] [PASSED] 0x4693 (ALDERLAKE_S)
[14:17:33] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46AA (ALDERLAKE_P)
[14:17:33] [PASSED] 0x462A (ALDERLAKE_P)
[14:17:33] [PASSED] 0x4626 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x4628 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:17:33] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:17:33] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:17:33] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:17:33] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:17:33] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:17:33] [PASSED] 0xA721 (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA720 (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:17:33] [PASSED] 0xA780 (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA781 (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA782 (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA783 (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA788 (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA789 (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA78A (ALDERLAKE_S)
[14:17:33] [PASSED] 0xA78B (ALDERLAKE_S)
[14:17:33] [PASSED] 0x4905 (DG1)
[14:17:33] [PASSED] 0x4906 (DG1)
[14:17:33] [PASSED] 0x4907 (DG1)
[14:17:33] [PASSED] 0x4908 (DG1)
[14:17:33] [PASSED] 0x4909 (DG1)
[14:17:33] [PASSED] 0x56C0 (DG2)
[14:17:33] [PASSED] 0x56C2 (DG2)
[14:17:33] [PASSED] 0x56C1 (DG2)
[14:17:33] [PASSED] 0x7D51 (METEORLAKE)
[14:17:33] [PASSED] 0x7DD1 (METEORLAKE)
[14:17:33] [PASSED] 0x7D41 (METEORLAKE)
[14:17:33] [PASSED] 0x7D67 (METEORLAKE)
[14:17:33] [PASSED] 0xB640 (METEORLAKE)
[14:17:33] [PASSED] 0x56A0 (DG2)
[14:17:33] [PASSED] 0x56A1 (DG2)
[14:17:33] [PASSED] 0x56A2 (DG2)
[14:17:33] [PASSED] 0x56BE (DG2)
[14:17:33] [PASSED] 0x56BF (DG2)
[14:17:33] [PASSED] 0x5690 (DG2)
[14:17:33] [PASSED] 0x5691 (DG2)
[14:17:33] [PASSED] 0x5692 (DG2)
[14:17:33] [PASSED] 0x56A5 (DG2)
[14:17:33] [PASSED] 0x56A6 (DG2)
[14:17:33] [PASSED] 0x56B0 (DG2)
[14:17:33] [PASSED] 0x56B1 (DG2)
[14:17:33] [PASSED] 0x56BA (DG2)
[14:17:33] [PASSED] 0x56BB (DG2)
[14:17:33] [PASSED] 0x56BC (DG2)
[14:17:33] [PASSED] 0x56BD (DG2)
[14:17:33] [PASSED] 0x5693 (DG2)
[14:17:33] [PASSED] 0x5694 (DG2)
[14:17:33] [PASSED] 0x5695 (DG2)
[14:17:33] [PASSED] 0x56A3 (DG2)
[14:17:33] [PASSED] 0x56A4 (DG2)
[14:17:33] [PASSED] 0x56B2 (DG2)
[14:17:33] [PASSED] 0x56B3 (DG2)
[14:17:33] [PASSED] 0x5696 (DG2)
[14:17:33] [PASSED] 0x5697 (DG2)
[14:17:33] [PASSED] 0xB69 (PVC)
[14:17:33] [PASSED] 0xB6E (PVC)
[14:17:33] [PASSED] 0xBD4 (PVC)
[14:17:33] [PASSED] 0xBD5 (PVC)
[14:17:33] [PASSED] 0xBD6 (PVC)
[14:17:33] [PASSED] 0xBD7 (PVC)
[14:17:33] [PASSED] 0xBD8 (PVC)
[14:17:33] [PASSED] 0xBD9 (PVC)
[14:17:33] [PASSED] 0xBDA (PVC)
[14:17:33] [PASSED] 0xBDB (PVC)
[14:17:33] [PASSED] 0xBE0 (PVC)
[14:17:33] [PASSED] 0xBE1 (PVC)
[14:17:33] [PASSED] 0xBE5 (PVC)
[14:17:33] [PASSED] 0x7D40 (METEORLAKE)
[14:17:33] [PASSED] 0x7D45 (METEORLAKE)
[14:17:33] [PASSED] 0x7D55 (METEORLAKE)
[14:17:33] [PASSED] 0x7D60 (METEORLAKE)
[14:17:33] [PASSED] 0x7DD5 (METEORLAKE)
[14:17:33] [PASSED] 0x6420 (LUNARLAKE)
[14:17:33] [PASSED] 0x64A0 (LUNARLAKE)
[14:17:33] [PASSED] 0x64B0 (LUNARLAKE)
[14:17:33] [PASSED] 0xE202 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE209 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE20B (BATTLEMAGE)
[14:17:33] [PASSED] 0xE20C (BATTLEMAGE)
[14:17:33] [PASSED] 0xE20D (BATTLEMAGE)
[14:17:33] [PASSED] 0xE210 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE211 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE212 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE216 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE220 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE221 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE222 (BATTLEMAGE)
[14:17:33] [PASSED] 0xE223 (BATTLEMAGE)
[14:17:33] [PASSED] 0xB080 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB081 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB082 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB083 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB084 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB085 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB086 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB087 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB08F (PANTHERLAKE)
[14:17:33] [PASSED] 0xB090 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:17:33] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:17:33] [PASSED] 0xFD80 (PANTHERLAKE)
[14:17:33] [PASSED] 0xFD81 (PANTHERLAKE)
[14:17:33] [PASSED] 0xD740 (NOVALAKE_S)
[14:17:33] [PASSED] 0xD741 (NOVALAKE_S)
[14:17:33] [PASSED] 0xD742 (NOVALAKE_S)
[14:17:33] [PASSED] 0xD743 (NOVALAKE_S)
[14:17:33] [PASSED] 0xD745 (NOVALAKE_S)
[14:17:33] [PASSED] 0xD74A (NOVALAKE_S)
[14:17:33] [PASSED] 0xD74B (NOVALAKE_S)
[14:17:33] [PASSED] 0x674C (CRESCENTISLAND)
[14:17:33] [PASSED] 0x674D (CRESCENTISLAND)
[14:17:33] [PASSED] 0x674E (CRESCENTISLAND)
[14:17:33] [PASSED] 0x674F (CRESCENTISLAND)
[14:17:33] [PASSED] 0x6750 (CRESCENTISLAND)
[14:17:33] [PASSED] 0xD750 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD751 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD752 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD753 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD754 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD755 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD756 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD757 (NOVALAKE_P)
[14:17:33] [PASSED] 0xD75F (NOVALAKE_P)
[14:17:33] =============== [PASSED] check_platform_desc ===============
[14:17:33] ===================== [PASSED] xe_pci ======================
[14:17:33] ============= xe_rtp_tables_test (4 subtests) ==============
[14:17:33] ================== xe_rtp_table_gt_test  ===================
[14:17:33] [PASSED] gt_was/14011060649
[14:17:33] [PASSED] gt_was/14011059788
[14:17:33] [PASSED] gt_was/14015795083
[14:17:33] [PASSED] gt_was/16021867713
[14:17:33] [PASSED] gt_was/14019449301
[14:17:33] [PASSED] gt_was/16028005424
[14:17:33] [PASSED] gt_was/14026578760
[14:17:33] [PASSED] gt_was/1409420604
[14:17:33] [PASSED] gt_was/1408615072
[14:17:33] [PASSED] gt_was/22010523718
[14:17:33] [PASSED] gt_was/14011006942
[14:17:33] [PASSED] gt_was/14014830051
[14:17:33] [PASSED] gt_was/18018781329
[14:17:33] [PASSED] gt_was/1509235366
[14:17:33] [PASSED] gt_was/18018781329
[14:17:33] [PASSED] gt_was/16016694945
[14:17:33] [PASSED] gt_was/14018575942
[14:17:33] [PASSED] gt_was/22016670082
[14:17:33] [PASSED] gt_was/22016670082
[14:17:33] [PASSED] gt_was/14017421178
[14:17:33] [PASSED] gt_was/16025250150
[14:17:33] [PASSED] gt_was/14021871409
[14:17:33] [PASSED] gt_was/16021865536
[14:17:33] [PASSED] gt_was/14021486841
[14:17:33] [PASSED] gt_was/14025160223
[14:17:33] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[14:17:33] [PASSED] gt_was/14025635424
[14:17:33] [PASSED] gt_was/16028005424
[14:17:33] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:17:33] ================== xe_rtp_table_gt_test  ===================
[14:17:33] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[14:17:33] [PASSED] gt_tunings/Tuning: 32B Access Enable
[14:17:33] [PASSED] gt_tunings/Tuning: L3 cache
[14:17:33] [PASSED] gt_tunings/Tuning: L3 cache - media
[14:17:33] [PASSED] gt_tunings/Tuning: Compression Overfetch
[14:17:33] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[14:17:33] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[14:17:33] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[14:17:33] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[14:17:33] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[14:17:33] [PASSED] gt_tunings/Tuning: Stateless compression control
[14:17:33] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[14:17:33] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[14:17:33] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[14:17:33] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[14:17:33] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:17:33] ================== xe_rtp_table_oob_test  ==================
[14:17:33] [PASSED] oob_was/1607983814
[14:17:33] [PASSED] oob_was/16010904313
[14:17:33] [PASSED] oob_was/18022495364
[14:17:33] [PASSED] oob_was/22012773006
[14:17:33] [PASSED] oob_was/14014475959
[14:17:33] [PASSED] oob_was/22011391025
[14:17:33] [PASSED] oob_was/22012727170
[14:17:33] [PASSED] oob_was/22012727685
[14:17:33] [PASSED] oob_was/22016596838
[14:17:33] [PASSED] oob_was/18020744125
[14:17:33] [PASSED] oob_was/1409600907
[14:17:33] [PASSED] oob_was/22014953428
[14:17:33] [PASSED] oob_was/16017236439
[14:17:33] [PASSED] oob_was/14019821291
[14:17:33] [PASSED] oob_was/14015076503
[14:17:33] [PASSED] oob_was/14018913170
[14:17:33] [PASSED] oob_was/14018094691
[14:17:33] [PASSED] oob_was/18024947630
[14:17:33] [PASSED] oob_was/16022287689
[14:17:33] [PASSED] oob_was/13011645652
[14:17:33] [PASSED] oob_was/14022293748
[14:17:33] [PASSED] oob_was/22019794406
[14:17:33] [PASSED] oob_was/22019338487
[14:17:33] [PASSED] oob_was/16023588340
[14:17:33] [PASSED] oob_was/14019789679
[14:17:33] [PASSED] oob_was/14022866841
[14:17:33] [PASSED] oob_was/16021333562
[14:17:33] [PASSED] oob_was/14016712196
[14:17:33] [PASSED] oob_was/14015568240
[14:17:33] [PASSED] oob_was/18013179988
[14:17:33] [PASSED] oob_was/1508761755
[14:17:33] [PASSED] oob_was/16023105232
[14:17:33] [PASSED] oob_was/16026508708
[14:17:33] [PASSED] oob_was/14020001231
[14:17:33] [PASSED] oob_was/16023683509
[14:17:33] [PASSED] oob_was/14025515070
[14:17:33] [PASSED] oob_was/15015404425_disable
[14:17:33] [PASSED] oob_was/16026007364
[14:17:33] [PASSED] oob_was/14020316580
[14:17:33] [PASSED] oob_was/14025883347
[14:17:33] [PASSED] oob_was/16029380221
[14:17:33] ============== [PASSED] xe_rtp_table_oob_test ==============
[14:17:33] ================ xe_rtp_table_dev_oob_test  ================
[14:17:33] [PASSED] device_oob_was/22010954014
[14:17:33] [PASSED] device_oob_was/15015404425
[14:17:33] [PASSED] device_oob_was/22019338487_display
[14:17:33] [PASSED] device_oob_was/14022085890
[14:17:33] [PASSED] device_oob_was/14026539277
[14:17:33] [PASSED] device_oob_was/14026633728
[14:17:33] [PASSED] device_oob_was/14026746987
[14:17:33] [PASSED] device_oob_was/14026779378
[14:17:33] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[14:17:33] =============== [PASSED] xe_rtp_tables_test ================
[14:17:33] =================== xe_rtp (3 subtests) ====================
[14:17:33] =================== xe_rtp_rules_tests  ====================
[14:17:33] [PASSED] no
[14:17:33] [PASSED] yes
[14:17:33] [PASSED] no-and-no
[14:17:33] [PASSED] no-and-yes
[14:17:33] [PASSED] yes-and-no
[14:17:33] [PASSED] yes-and-yes
[14:17:33] [PASSED] no-or-no
[14:17:33] [PASSED] no-or-yes
[14:17:33] [PASSED] yes-or-no
[14:17:33] [PASSED] yes-or-yes
[14:17:33] [PASSED] no-yes-or-yes-no
[14:17:33] [PASSED] no-yes-or-yes-yes
[14:17:33] [PASSED] yes-yes-or-no-yes
[14:17:33] [PASSED] yes-yes-or-yes-yes
[14:17:33] [PASSED] no-no-or-yes-or-no
[14:17:33] [PASSED] or
[14:17:33] [PASSED] or-yes
[14:17:33] [PASSED] or-no
[14:17:33] [PASSED] yes-or
[14:17:33] [PASSED] no-or
[14:17:33] [PASSED] no-or-or-yes
[14:17:33] [PASSED] yes-or-or-no
[14:17:33] [PASSED] no-or-or-no
[14:17:33] [PASSED] missing-context-engine-class
[14:17:33] [PASSED] missing-context-engine-class-or-yes
[14:17:33] [PASSED] missing-context-engine-class-or-or-yes
[14:17:33] =============== [PASSED] xe_rtp_rules_tests ================
[14:17:33] =============== xe_rtp_process_to_sr_tests  ================
[14:17:33] [PASSED] coalesce-same-reg
[14:17:33] [PASSED] coalesce-same-reg-literal-and-func
[14:17:33] [PASSED] no-match-no-add
[14:17:33] [PASSED] two-regs-two-entries
[14:17:33] [PASSED] clr-one-set-other
[14:17:33] [PASSED] set-field
[14:17:33] [PASSED] conflict-duplicate
[14:17:33] [PASSED] conflict-not-disjoint
[14:17:33] [PASSED] conflict-not-disjoint-literal-and-func
[14:17:33] [PASSED] conflict-reg-type
[14:17:33] [PASSED] bad-mcr-reg-forced-to-regular
[14:17:33] [PASSED] bad-regular-reg-forced-to-mcr
[14:17:33] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:17:33] ================== xe_rtp_process_tests  ===================
[14:17:33] [PASSED] active1
[14:17:33] [PASSED] active2
[14:17:33] [PASSED] active-inactive
[14:17:33] [PASSED] inactive-active
[14:17:33] [PASSED] inactive-active-inactive
[14:17:33] [PASSED] inactive-inactive-inactive
[14:17:33] ============== [PASSED] xe_rtp_process_tests ===============
[14:17:33] ===================== [PASSED] xe_rtp ======================
[14:17:33] ==================== xe_wa (1 subtest) =====================
[14:17:33] ======================== xe_wa_gt  =========================
[14:17:33] [PASSED] TIGERLAKE B0
[14:17:33] [PASSED] DG1 A0
[14:17:33] [PASSED] DG1 B0
[14:17:33] [PASSED] ALDERLAKE_S A0
[14:17:33] [PASSED] ALDERLAKE_S B0
[14:17:33] [PASSED] ALDERLAKE_S C0
[14:17:33] [PASSED] ALDERLAKE_S D0
[14:17:33] [PASSED] ALDERLAKE_P A0
[14:17:33] [PASSED] ALDERLAKE_P B0
[14:17:33] [PASSED] ALDERLAKE_P C0
[14:17:33] [PASSED] ALDERLAKE_S RPLS D0
[14:17:33] [PASSED] ALDERLAKE_P RPLU E0
[14:17:33] [PASSED] DG2 G10 C0
[14:17:33] [PASSED] DG2 G11 B1
[14:17:33] [PASSED] DG2 G12 A1
[14:17:33] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:17:33] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:17:33] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:17:33] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:17:33] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:17:33] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:17:33] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:17:33] ==================== [PASSED] xe_wa_gt =====================
[14:17:33] ====================== [PASSED] xe_wa ======================
[14:17:33] ============================================================
[14:17:33] Testing complete. Ran 719 tests: passed: 701, skipped: 18
[14:17:33] Elapsed time: 36.314s total, 4.316s configuring, 31.333s building, 0.653s running

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

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

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



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

* Re: [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins
  2026-06-23 12:51 ` [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins Ville Syrjala
@ 2026-06-23 14:43   ` Michał Grzelak
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Grzelak @ 2026-06-23 14:43 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx, intel-xe

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

On Tue, 23 Jun 2026, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Replace the alphabetical GPIOA,GPIOB,... with numeric
> GPIO_0,GPIO_1,... This makes the naming scheme agree with
> BSpec. No idea why the alphabetical naming was originally
> chosen as BSpec never used that convention for the GPIO pins.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

How do you see in general adding BSpec no. into trailers, here eg.
49306, 49311 or 68971? Does it make sense, or not really?

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_gmbus.c | 124 ++++++++++-----------
> 1 file changed, 62 insertions(+), 62 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
> index 049157c41fe2..9990e6391b03 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
> @@ -54,21 +54,21 @@ struct intel_gmbus {
> };
>
> enum gmbus_gpio {
> -	GPIOA,
> -	GPIOB,
> -	GPIOC,
> -	GPIOD,
> -	GPIOE,
> -	GPIOF,
> -	GPIOG,
> -	GPIOH,
> -	__GPIOI_UNUSED,
> -	GPIOJ,
> -	GPIOK,
> -	GPIOL,
> -	GPIOM,
> -	GPION,
> -	GPIOO,
> +	GPIO_0,
> +	GPIO_1,
> +	GPIO_2,
> +	GPIO_3,
> +	GPIO_4,
> +	GPIO_5,
> +	GPIO_6,
> +	GPIO_7,
> +	GPIO_8,
> +	GPIO_9,
> +	GPIO_10,
> +	GPIO_11,
> +	GPIO_12,
> +	GPIO_13,
> +	GPIO_14,
> };
>
> struct gmbus_pin {
> @@ -78,77 +78,77 @@ struct gmbus_pin {
>
> /* Map gmbus pin pairs to names and registers. */
> static const struct gmbus_pin gmbus_pins[] = {
> -	[GMBUS_PIN_SSC] = { "ssc", GPIOB },
> -	[GMBUS_PIN_VGADDC] = { "vga", GPIOA },
> -	[GMBUS_PIN_PANEL] = { "panel", GPIOC },
> -	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
> -	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
> -	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
> +	[GMBUS_PIN_SSC] = { "ssc", GPIO_1 },
> +	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
> +	[GMBUS_PIN_PANEL] = { "panel", GPIO_2 },
> +	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> +	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> };
>
> static const struct gmbus_pin gmbus_pins_bdw[] = {
> -	[GMBUS_PIN_VGADDC] = { "vga", GPIOA },
> -	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
> -	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
> -	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
> +	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
> +	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> +	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> };
>
> static const struct gmbus_pin gmbus_pins_skl[] = {
> -	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
> -	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
> -	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
> +	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> +	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> };
>
> static const struct gmbus_pin gmbus_pins_bxt[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
> -	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
> -	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
> +	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
> +	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
> +	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
> };
>
> static const struct gmbus_pin gmbus_pins_cnp[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
> -	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
> -	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
> +	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
> +	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
> +	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
> +	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> };
>
> static const struct gmbus_pin gmbus_pins_icp[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
> -	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
> -	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIOK },
> -	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIOL },
> -	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIOM },
> -	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPION },
> -	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIOO },
> +	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
> +	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
> +	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
> +	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
> +	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPIO_13 },
> +	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIO_14 },
> };
>
> static const struct gmbus_pin gmbus_pins_dg1[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
> +	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> };
>
> static const struct gmbus_pin gmbus_pins_dg2[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
> -	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
> +	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> +	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
> };
>
> static const struct gmbus_pin gmbus_pins_mtp[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
> -	[GMBUS_PIN_5_MTP] = { "dpe", GPIOF },
> -	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
> -	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIOK },
> -	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIOL },
> -	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIOM },
> +	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> +	[GMBUS_PIN_5_MTP] = { "dpe", GPIO_5 },
> +	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
> +	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
> +	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
> +	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
> };
>
> static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
> -- 
> 2.53.0
>
>

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

* Re: [PATCH 2/6] drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/
  2026-06-23 12:51 ` [PATCH 2/6] drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/ Ville Syrjala
@ 2026-06-23 14:43   ` Michał Grzelak
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Grzelak @ 2026-06-23 14:43 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx, intel-xe

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

On Tue, 23 Jun 2026, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The GMBUS pin pair <-> GPIO mapping is purely a property
> of the PCH (on the platforms where GMBUS lives in the PCH).
> So rename gmbus_pins_bdw[] to gmbus_pins_lpt[] and extend
> it to cover all platforms with LPT/WPT PCHs.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_gmbus.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
> index 9990e6391b03..2869ec23e1ec 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
> @@ -86,7 +86,7 @@ static const struct gmbus_pin gmbus_pins[] = {
> 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> };
>
> -static const struct gmbus_pin gmbus_pins_bdw[] = {
> +static const struct gmbus_pin gmbus_pins_lpt[] = {
> 	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
> 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> @@ -178,9 +178,9 @@ static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
> 	} else if (DISPLAY_VER(display) == 9) {
> 		pins = gmbus_pins_skl;
> 		size = ARRAY_SIZE(gmbus_pins_skl);
> -	} else if (display->platform.broadwell) {
> -		pins = gmbus_pins_bdw;
> -		size = ARRAY_SIZE(gmbus_pins_bdw);
> +	} else if (HAS_PCH_LPT(display)) {
> +		pins = gmbus_pins_lpt;
> +		size = ARRAY_SIZE(gmbus_pins_lpt);
> 	} else {
> 		pins = gmbus_pins;
> 		size = ARRAY_SIZE(gmbus_pins);
> -- 
> 2.53.0
>
>

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

* Re: [PATCH 3/6] drm/i915/gmbus: Add gmbus_pins_lpt_lp[]
  2026-06-23 12:51 ` [PATCH 3/6] drm/i915/gmbus: Add gmbus_pins_lpt_lp[] Ville Syrjala
@ 2026-06-23 14:45   ` Michał Grzelak
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Grzelak @ 2026-06-23 14:45 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx, intel-xe

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

On Tue, 23 Jun 2026, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> LPT/WPT-LP don't have as many GOIO pins as the -H variants.

nit: s/GOIO/GPIO/

> Add proper mapping for the -LP PCHs so that we can't end up
> poking at non-existent GPIOs.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_gmbus.c | 14 +++++++++++---
> 1 file changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
> index 2869ec23e1ec..f69b8841c5dd 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
> @@ -86,13 +86,18 @@ static const struct gmbus_pin gmbus_pins[] = {
> 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> };
>
> -static const struct gmbus_pin gmbus_pins_lpt[] = {
> +static const struct gmbus_pin gmbus_pins_lpt_h[] = {
> 	[GMBUS_PIN_VGADDC] = { "vga", GPIO_0 },
> 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> };
>
> +static const struct gmbus_pin gmbus_pins_lpt_lp[] = {
> +	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> +};
> +
> static const struct gmbus_pin gmbus_pins_skl[] = {
> 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> @@ -178,9 +183,12 @@ static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
> 	} else if (DISPLAY_VER(display) == 9) {
> 		pins = gmbus_pins_skl;
> 		size = ARRAY_SIZE(gmbus_pins_skl);
> +	} else if (HAS_PCH_LPT_LP(display)) {
> +		pins = gmbus_pins_lpt_lp;
> +		size = ARRAY_SIZE(gmbus_pins_lpt_lp);
> 	} else if (HAS_PCH_LPT(display)) {
> -		pins = gmbus_pins_lpt;
> -		size = ARRAY_SIZE(gmbus_pins_lpt);
> +		pins = gmbus_pins_lpt_h;
> +		size = ARRAY_SIZE(gmbus_pins_lpt_h);
> 	} else {
> 		pins = gmbus_pins;
> 		size = ARRAY_SIZE(gmbus_pins);
> -- 
> 2.53.0
>
>

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

* Re: [PATCH 4/6] drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/
  2026-06-23 12:51 ` [PATCH 4/6] drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/ Ville Syrjala
@ 2026-06-23 14:45   ` Michał Grzelak
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Grzelak @ 2026-06-23 14:45 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx, intel-xe

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

On Tue, 23 Jun 2026, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The GMBUS pin pair <-> GPIO mapping is purely a property
> of the PCH (on the platforms where GMBUS lives in the PCH).
> So rename gmbus_pins_skl[] to gmbus_pins_spt[] and apply
> it based on the presence of the correct PCH type.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_gmbus.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
> index f69b8841c5dd..dec0f66f756f 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
> @@ -98,7 +98,7 @@ static const struct gmbus_pin gmbus_pins_lpt_lp[] = {
> 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> };
>
> -static const struct gmbus_pin gmbus_pins_skl[] = {
> +static const struct gmbus_pin gmbus_pins_spt[] = {
> 	[GMBUS_PIN_DPC] = { "dpc", GPIO_3 },
> 	[GMBUS_PIN_DPB] = { "dpb", GPIO_4 },
> 	[GMBUS_PIN_DPD] = { "dpd", GPIO_5 },
> @@ -180,9 +180,9 @@ static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
> 	} else if (display->platform.geminilake || display->platform.broxton) {
> 		pins = gmbus_pins_bxt;
> 		size = ARRAY_SIZE(gmbus_pins_bxt);
> -	} else if (DISPLAY_VER(display) == 9) {
> -		pins = gmbus_pins_skl;
> -		size = ARRAY_SIZE(gmbus_pins_skl);
> +	} else if (HAS_PCH_SPT(display)) {
> +		pins = gmbus_pins_spt;
> +		size = ARRAY_SIZE(gmbus_pins_spt);
> 	} else if (HAS_PCH_LPT_LP(display)) {
> 		pins = gmbus_pins_lpt_lp;
> 		size = ARRAY_SIZE(gmbus_pins_lpt_lp);
> -- 
> 2.53.0
>
>

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

* Re: [PATCH v2 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins
  2026-06-23 14:11   ` [PATCH v2 " Ville Syrjala
@ 2026-06-23 14:45     ` Michał Grzelak
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Grzelak @ 2026-06-23 14:45 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx, intel-xe

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

On Tue, 23 Jun 2026, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The modern GMBUS pin numbers are just a sequential set of
> numbers, so the platform suffixes don't really buy us anything.
> Let's just drop them. We'll keep the _TCx suffixes for pins
> 9+ since that's the way they always get used.
>
> v2: Deal with gvt
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_bios.c  | 62 ++++++++++----------
> drivers/gpu/drm/i915/display/intel_gmbus.c | 68 +++++++++++-----------
> drivers/gpu/drm/i915/display/intel_gmbus.h | 22 +++----
> drivers/gpu/drm/i915/display/intel_hdmi.c  | 42 ++++++-------
> drivers/gpu/drm/i915/gvt/edid.c            | 14 ++---
> 5 files changed, 104 insertions(+), 104 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
> index b6fe87c29aa7..15ebadc72b88 100644
> --- a/drivers/gpu/drm/i915/display/intel_bios.c
> +++ b/drivers/gpu/drm/i915/display/intel_bios.c
> @@ -2197,52 +2197,52 @@ static u8 translate_iboost(struct intel_display *display, u8 val)
>
> static const u8 cnp_ddc_pin_map[] = {
> 	[0] = 0, /* N/A */
> -	[GMBUS_PIN_1_BXT] = DDC_BUS_DDI_B,
> -	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_C,
> -	[GMBUS_PIN_4_CNP] = DDC_BUS_DDI_D, /* sic */
> -	[GMBUS_PIN_3_BXT] = DDC_BUS_DDI_F, /* sic */
> +	[GMBUS_PIN_1] = DDC_BUS_DDI_B,
> +	[GMBUS_PIN_2] = DDC_BUS_DDI_C,
> +	[GMBUS_PIN_4] = DDC_BUS_DDI_D, /* sic */
> +	[GMBUS_PIN_3] = DDC_BUS_DDI_F, /* sic */
> };
>
> static const u8 icp_ddc_pin_map[] = {
> -	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
> -	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
> -	[GMBUS_PIN_3_BXT] = TGL_DDC_BUS_DDI_C,
> -	[GMBUS_PIN_9_TC1_ICP] = ICL_DDC_BUS_PORT_1,
> -	[GMBUS_PIN_10_TC2_ICP] = ICL_DDC_BUS_PORT_2,
> -	[GMBUS_PIN_11_TC3_ICP] = ICL_DDC_BUS_PORT_3,
> -	[GMBUS_PIN_12_TC4_ICP] = ICL_DDC_BUS_PORT_4,
> -	[GMBUS_PIN_13_TC5_TGP] = TGL_DDC_BUS_PORT_5,
> -	[GMBUS_PIN_14_TC6_TGP] = TGL_DDC_BUS_PORT_6,
> +	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
> +	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
> +	[GMBUS_PIN_3] = TGL_DDC_BUS_DDI_C,
> +	[GMBUS_PIN_9_TC1] = ICL_DDC_BUS_PORT_1,
> +	[GMBUS_PIN_10_TC2] = ICL_DDC_BUS_PORT_2,
> +	[GMBUS_PIN_11_TC3] = ICL_DDC_BUS_PORT_3,
> +	[GMBUS_PIN_12_TC4] = ICL_DDC_BUS_PORT_4,
> +	[GMBUS_PIN_13_TC5] = TGL_DDC_BUS_PORT_5,
> +	[GMBUS_PIN_14_TC6] = TGL_DDC_BUS_PORT_6,
> };
>
> static const u8 rkl_pch_tgp_ddc_pin_map[] = {
> -	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
> -	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
> -	[GMBUS_PIN_9_TC1_ICP] = RKL_DDC_BUS_DDI_D,
> -	[GMBUS_PIN_10_TC2_ICP] = RKL_DDC_BUS_DDI_E,
> +	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
> +	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
> +	[GMBUS_PIN_9_TC1] = RKL_DDC_BUS_DDI_D,
> +	[GMBUS_PIN_10_TC2] = RKL_DDC_BUS_DDI_E,
> };
>
> static const u8 adls_ddc_pin_map[] = {
> -	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
> -	[GMBUS_PIN_9_TC1_ICP] = ADLS_DDC_BUS_PORT_TC1,
> -	[GMBUS_PIN_10_TC2_ICP] = ADLS_DDC_BUS_PORT_TC2,
> -	[GMBUS_PIN_11_TC3_ICP] = ADLS_DDC_BUS_PORT_TC3,
> -	[GMBUS_PIN_12_TC4_ICP] = ADLS_DDC_BUS_PORT_TC4,
> +	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
> +	[GMBUS_PIN_9_TC1] = ADLS_DDC_BUS_PORT_TC1,
> +	[GMBUS_PIN_10_TC2] = ADLS_DDC_BUS_PORT_TC2,
> +	[GMBUS_PIN_11_TC3] = ADLS_DDC_BUS_PORT_TC3,
> +	[GMBUS_PIN_12_TC4] = ADLS_DDC_BUS_PORT_TC4,
> };
>
> static const u8 gen9bc_tgp_ddc_pin_map[] = {
> -	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_B,
> -	[GMBUS_PIN_9_TC1_ICP] = DDC_BUS_DDI_C,
> -	[GMBUS_PIN_10_TC2_ICP] = DDC_BUS_DDI_D,
> +	[GMBUS_PIN_2] = DDC_BUS_DDI_B,
> +	[GMBUS_PIN_9_TC1] = DDC_BUS_DDI_C,
> +	[GMBUS_PIN_10_TC2] = DDC_BUS_DDI_D,
> };
>
> static const u8 adlp_ddc_pin_map[] = {
> -	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
> -	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
> -	[GMBUS_PIN_9_TC1_ICP] = ADLP_DDC_BUS_PORT_TC1,
> -	[GMBUS_PIN_10_TC2_ICP] = ADLP_DDC_BUS_PORT_TC2,
> -	[GMBUS_PIN_11_TC3_ICP] = ADLP_DDC_BUS_PORT_TC3,
> -	[GMBUS_PIN_12_TC4_ICP] = ADLP_DDC_BUS_PORT_TC4,
> +	[GMBUS_PIN_1] = ICL_DDC_BUS_DDI_A,
> +	[GMBUS_PIN_2] = ICL_DDC_BUS_DDI_B,
> +	[GMBUS_PIN_9_TC1] = ADLP_DDC_BUS_PORT_TC1,
> +	[GMBUS_PIN_10_TC2] = ADLP_DDC_BUS_PORT_TC2,
> +	[GMBUS_PIN_11_TC3] = ADLP_DDC_BUS_PORT_TC3,
> +	[GMBUS_PIN_12_TC4] = ADLP_DDC_BUS_PORT_TC4,
> };
>
> static u8 map_ddc_pin(struct intel_display *display, u8 vbt_pin)
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
> index dec0f66f756f..60a70dea5d85 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
> @@ -105,55 +105,55 @@ static const struct gmbus_pin gmbus_pins_spt[] = {
> };
>
> static const struct gmbus_pin gmbus_pins_bxt[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
> -	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
> -	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
> +	[GMBUS_PIN_1] = { "dpb", GPIO_1 },
> +	[GMBUS_PIN_2] = { "dpc", GPIO_2 },
> +	[GMBUS_PIN_3] = { "misc", GPIO_3 },
> };
>
> static const struct gmbus_pin gmbus_pins_cnp[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpb", GPIO_1 },
> -	[GMBUS_PIN_2_BXT] = { "dpc", GPIO_2 },
> -	[GMBUS_PIN_3_BXT] = { "misc", GPIO_3 },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> +	[GMBUS_PIN_1] = { "dpb", GPIO_1 },
> +	[GMBUS_PIN_2] = { "dpc", GPIO_2 },
> +	[GMBUS_PIN_3] = { "misc", GPIO_3 },
> +	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
> };
>
> static const struct gmbus_pin gmbus_pins_icp[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> -	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
> -	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
> -	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
> -	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
> -	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPIO_13 },
> -	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIO_14 },
> +	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
> +	[GMBUS_PIN_10_TC2] = { "tc2", GPIO_10 },
> +	[GMBUS_PIN_11_TC3] = { "tc3", GPIO_11 },
> +	[GMBUS_PIN_12_TC4] = { "tc4", GPIO_12 },
> +	[GMBUS_PIN_13_TC5] = { "tc5", GPIO_13 },
> +	[GMBUS_PIN_14_TC6] = { "tc6", GPIO_14 },
> };
>
> static const struct gmbus_pin gmbus_pins_dg1[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> +	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
> };
>
> static const struct gmbus_pin gmbus_pins_dg2[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> -	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
> +	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
> +	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
> };
>
> static const struct gmbus_pin gmbus_pins_mtp[] = {
> -	[GMBUS_PIN_1_BXT] = { "dpa", GPIO_1 },
> -	[GMBUS_PIN_2_BXT] = { "dpb", GPIO_2 },
> -	[GMBUS_PIN_3_BXT] = { "dpc", GPIO_3 },
> -	[GMBUS_PIN_4_CNP] = { "dpd", GPIO_4 },
> -	[GMBUS_PIN_5_MTP] = { "dpe", GPIO_5 },
> -	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIO_9 },
> -	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIO_10 },
> -	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIO_11 },
> -	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIO_12 },
> +	[GMBUS_PIN_1] = { "dpa", GPIO_1 },
> +	[GMBUS_PIN_2] = { "dpb", GPIO_2 },
> +	[GMBUS_PIN_3] = { "dpc", GPIO_3 },
> +	[GMBUS_PIN_4] = { "dpd", GPIO_4 },
> +	[GMBUS_PIN_5] = { "dpe", GPIO_5 },
> +	[GMBUS_PIN_9_TC1] = { "tc1", GPIO_9 },
> +	[GMBUS_PIN_10_TC2] = { "tc2", GPIO_10 },
> +	[GMBUS_PIN_11_TC3] = { "tc3", GPIO_11 },
> +	[GMBUS_PIN_12_TC4] = { "tc4", GPIO_12 },
> };
>
> static const struct gmbus_pin *get_gmbus_pin(struct intel_display *display,
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.h b/drivers/gpu/drm/i915/display/intel_gmbus.h
> index 35a200a9efc0..5fdeab1aa794 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.h
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.h
> @@ -20,17 +20,17 @@ struct intel_display;
> #define GMBUS_PIN_DPB		5 /* SDVO, HDMIB */
> #define GMBUS_PIN_DPD		6 /* HDMID */
> #define GMBUS_PIN_RESERVED	7 /* 7 reserved */
> -#define GMBUS_PIN_1_BXT		1 /* BXT+ (atom) and CNP+ (big core) */
> -#define GMBUS_PIN_2_BXT		2
> -#define GMBUS_PIN_3_BXT		3
> -#define GMBUS_PIN_4_CNP		4
> -#define GMBUS_PIN_5_MTP		5
> -#define GMBUS_PIN_9_TC1_ICP	9
> -#define GMBUS_PIN_10_TC2_ICP	10
> -#define GMBUS_PIN_11_TC3_ICP	11
> -#define GMBUS_PIN_12_TC4_ICP	12
> -#define GMBUS_PIN_13_TC5_TGP	13
> -#define GMBUS_PIN_14_TC6_TGP	14
> +#define GMBUS_PIN_1		1 /* BXT+ (atom) and CNP+ (big core) */
> +#define GMBUS_PIN_2		2
> +#define GMBUS_PIN_3		3
> +#define GMBUS_PIN_4		4
> +#define GMBUS_PIN_5		5
> +#define GMBUS_PIN_9_TC1		9 /* ICP+ */
> +#define GMBUS_PIN_10_TC2	10
> +#define GMBUS_PIN_11_TC3	11
> +#define GMBUS_PIN_12_TC4	12
> +#define GMBUS_PIN_13_TC5	13
> +#define GMBUS_PIN_14_TC6	14
>
> #define GMBUS_NUM_PINS	15 /* including 0 */
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index beca0ff5a5b4..f046918fd4bc 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -2825,14 +2825,14 @@ static u8 bxt_encoder_to_ddc_pin(struct intel_encoder *encoder)
>
> 	switch (port) {
> 	case PORT_B:
> -		ddc_pin = GMBUS_PIN_1_BXT;
> +		ddc_pin = GMBUS_PIN_1;
> 		break;
> 	case PORT_C:
> -		ddc_pin = GMBUS_PIN_2_BXT;
> +		ddc_pin = GMBUS_PIN_2;
> 		break;
> 	default:
> 		MISSING_CASE(port);
> -		ddc_pin = GMBUS_PIN_1_BXT;
> +		ddc_pin = GMBUS_PIN_1;
> 		break;
> 	}
> 	return ddc_pin;
> @@ -2845,20 +2845,20 @@ static u8 cnp_encoder_to_ddc_pin(struct intel_encoder *encoder)
>
> 	switch (port) {
> 	case PORT_B:
> -		ddc_pin = GMBUS_PIN_1_BXT;
> +		ddc_pin = GMBUS_PIN_1;
> 		break;
> 	case PORT_C:
> -		ddc_pin = GMBUS_PIN_2_BXT;
> +		ddc_pin = GMBUS_PIN_2;
> 		break;
> 	case PORT_D:
> -		ddc_pin = GMBUS_PIN_4_CNP;
> +		ddc_pin = GMBUS_PIN_4;
> 		break;
> 	case PORT_F:
> -		ddc_pin = GMBUS_PIN_3_BXT;
> +		ddc_pin = GMBUS_PIN_3;
> 		break;
> 	default:
> 		MISSING_CASE(port);
> -		ddc_pin = GMBUS_PIN_1_BXT;
> +		ddc_pin = GMBUS_PIN_1;
> 		break;
> 	}
> 	return ddc_pin;
> @@ -2870,12 +2870,12 @@ static u8 icl_encoder_to_ddc_pin(struct intel_encoder *encoder)
> 	enum port port = encoder->port;
>
> 	if (intel_encoder_is_combo(encoder))
> -		return GMBUS_PIN_1_BXT + port;
> +		return GMBUS_PIN_1 + port;
> 	else if (intel_encoder_is_tc(encoder))
> -		return GMBUS_PIN_9_TC1_ICP + intel_encoder_to_tc(encoder);
> +		return GMBUS_PIN_9_TC1 + intel_encoder_to_tc(encoder);
>
> 	drm_WARN(display->drm, 1, "Unknown port:%c\n", port_name(port));
> -	return GMBUS_PIN_2_BXT;
> +	return GMBUS_PIN_2;
> }
>
> static u8 mcc_encoder_to_ddc_pin(struct intel_encoder *encoder)
> @@ -2885,17 +2885,17 @@ static u8 mcc_encoder_to_ddc_pin(struct intel_encoder *encoder)
>
> 	switch (phy) {
> 	case PHY_A:
> -		ddc_pin = GMBUS_PIN_1_BXT;
> +		ddc_pin = GMBUS_PIN_1;
> 		break;
> 	case PHY_B:
> -		ddc_pin = GMBUS_PIN_2_BXT;
> +		ddc_pin = GMBUS_PIN_2;
> 		break;
> 	case PHY_C:
> -		ddc_pin = GMBUS_PIN_9_TC1_ICP;
> +		ddc_pin = GMBUS_PIN_9_TC1;
> 		break;
> 	default:
> 		MISSING_CASE(phy);
> -		ddc_pin = GMBUS_PIN_1_BXT;
> +		ddc_pin = GMBUS_PIN_1;
> 		break;
> 	}
> 	return ddc_pin;
> @@ -2915,9 +2915,9 @@ static u8 rkl_encoder_to_ddc_pin(struct intel_encoder *encoder)
> 	 * all outputs.
> 	 */
> 	if (INTEL_PCH_TYPE(display) >= PCH_TGP && phy >= PHY_C)
> -		return GMBUS_PIN_9_TC1_ICP + phy - PHY_C;
> +		return GMBUS_PIN_9_TC1 + phy - PHY_C;
>
> -	return GMBUS_PIN_1_BXT + phy;
> +	return GMBUS_PIN_1 + phy;
> }
>
> static u8 gen9bc_tgp_encoder_to_ddc_pin(struct intel_encoder *encoder)
> @@ -2934,9 +2934,9 @@ static u8 gen9bc_tgp_encoder_to_ddc_pin(struct intel_encoder *encoder)
> 	 * all outputs.
> 	 */
> 	if (INTEL_PCH_TYPE(display) >= PCH_TGP && phy >= PHY_C)
> -		return GMBUS_PIN_9_TC1_ICP + phy - PHY_C;
> +		return GMBUS_PIN_9_TC1 + phy - PHY_C;
>
> -	return GMBUS_PIN_1_BXT + phy;
> +	return GMBUS_PIN_1 + phy;
> }
>
> static u8 dg1_encoder_to_ddc_pin(struct intel_encoder *encoder)
> @@ -2955,9 +2955,9 @@ static u8 adls_encoder_to_ddc_pin(struct intel_encoder *encoder)
> 	 * except first combo output.
> 	 */
> 	if (phy == PHY_A)
> -		return GMBUS_PIN_1_BXT;
> +		return GMBUS_PIN_1;
>
> -	return GMBUS_PIN_9_TC1_ICP + phy - PHY_B;
> +	return GMBUS_PIN_9_TC1 + phy - PHY_B;
> }
>
> static u8 g4x_encoder_to_ddc_pin(struct intel_encoder *encoder)
> diff --git a/drivers/gpu/drm/i915/gvt/edid.c b/drivers/gpu/drm/i915/gvt/edid.c
> index ca5b54466a65..dc9ef98ff51b 100644
> --- a/drivers/gpu/drm/i915/gvt/edid.c
> +++ b/drivers/gpu/drm/i915/gvt/edid.c
> @@ -90,13 +90,13 @@ static inline int cnp_get_port_from_gmbus0(u32 gmbus0)
> 	int port_select = gmbus0 & _GMBUS_PIN_SEL_MASK;
> 	int port = -EINVAL;
>
> -	if (port_select == GMBUS_PIN_1_BXT)
> +	if (port_select == GMBUS_PIN_1)
> 		port = PORT_B;
> -	else if (port_select == GMBUS_PIN_2_BXT)
> +	else if (port_select == GMBUS_PIN_2)
> 		port = PORT_C;
> -	else if (port_select == GMBUS_PIN_3_BXT)
> +	else if (port_select == GMBUS_PIN_3)
> 		port = PORT_D;
> -	else if (port_select == GMBUS_PIN_4_CNP)
> +	else if (port_select == GMBUS_PIN_4)
> 		port = PORT_E;
> 	return port;
> }
> @@ -106,11 +106,11 @@ static inline int bxt_get_port_from_gmbus0(u32 gmbus0)
> 	int port_select = gmbus0 & _GMBUS_PIN_SEL_MASK;
> 	int port = -EINVAL;
>
> -	if (port_select == GMBUS_PIN_1_BXT)
> +	if (port_select == GMBUS_PIN_1)
> 		port = PORT_B;
> -	else if (port_select == GMBUS_PIN_2_BXT)
> +	else if (port_select == GMBUS_PIN_2)
> 		port = PORT_C;
> -	else if (port_select == GMBUS_PIN_3_BXT)
> +	else if (port_select == GMBUS_PIN_3)
> 		port = PORT_D;
> 	return port;
> }
> -- 
> 2.53.0
>
>

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

* Re: [PATCH 6/6] drm/i915/hdmi: Remove CNP port F leftovers
  2026-06-23 12:51 ` [PATCH 6/6] drm/i915/hdmi: Remove CNP port F leftovers Ville Syrjala
@ 2026-06-23 14:45   ` Michał Grzelak
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Grzelak @ 2026-06-23 14:45 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-gfx, intel-xe

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

On Tue, 23 Jun 2026, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Since CNL got nuked cnp_encoder_to_ddc_pin() will never
> see a port F. Remove the leftovers.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_hdmi.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index f046918fd4bc..8a019d3574df 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -2853,9 +2853,6 @@ static u8 cnp_encoder_to_ddc_pin(struct intel_encoder *encoder)
> 	case PORT_D:
> 		ddc_pin = GMBUS_PIN_4;
> 		break;
> -	case PORT_F:
> -		ddc_pin = GMBUS_PIN_3;
> -		break;
> 	default:
> 		MISSING_CASE(port);
> 		ddc_pin = GMBUS_PIN_1;
> -- 
> 2.53.0
>
>

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

* ✓ i915.CI.BAT: success for drm/i915: Clean up GPIO pin stuff (rev2)
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (8 preceding siblings ...)
  2026-06-23 14:18 ` ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff (rev2) Patchwork
@ 2026-06-23 15:04 ` Patchwork
  2026-06-23 15:14 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 15:04 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx

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

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff (rev2)
URL   : https://patchwork.freedesktop.org/series/169024/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_18709 -> Patchwork_169024v2
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/index.html

Participating hosts (42 -> 40)
------------------------------

  Missing    (2): bat-dg2-13 fi-snb-2520m 

New tests
---------

  New tests have been introduced between CI_DRM_18709 and Patchwork_169024v2:

### New IGT tests (25) ###

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1:
    - Statuses : 8 pass(s)
    - Exec time: [2.09, 3.11] s

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-2:
    - Statuses : 2 pass(s)
    - Exec time: [1.21, 1.39] s

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [2.79, 3.34] s

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [2.76, 3.15] s

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1:
    - Statuses : 3 pass(s)
    - Exec time: [2.81, 3.01] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-edp-1:
    - Statuses : 8 pass(s)
    - Exec time: [0.73, 1.71] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2:
    - Statuses : 2 pass(s)
    - Exec time: [0.63, 0.69] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.51, 1.83] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.44, 1.71] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-edp-1:
    - Statuses : 3 pass(s)
    - Exec time: [1.47, 1.51] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-edp-1:
    - Statuses : 8 pass(s)
    - Exec time: [0.74, 1.67] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-dp-2:
    - Statuses : 2 pass(s)
    - Exec time: [0.64, 0.67] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.49, 1.73] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.43, 1.72] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-edp-1:
    - Statuses : 3 pass(s)
    - Exec time: [1.46, 1.51] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1:
    - Statuses : 8 pass(s)
    - Exec time: [0.70, 1.69] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-2:
    - Statuses : 2 pass(s)
    - Exec time: [0.56, 0.61] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.39, 1.63] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.44, 1.59] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - Statuses : 3 pass(s)
    - Exec time: [1.38, 1.49] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-edp-1:
    - Statuses : 8 pass(s)
    - Exec time: [0.69, 1.70] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-2:
    - Statuses : 2 pass(s)
    - Exec time: [0.57, 0.61] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.42, 1.78] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-c-edp-1:
    - Statuses : 6 pass(s)
    - Exec time: [1.36, 1.58] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-d-edp-1:
    - Statuses : 3 pass(s)
    - Exec time: [1.39, 1.59] s

  


Changes
-------

  No changes found


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

  * Linux: CI_DRM_18709 -> Patchwork_169024v2

  CI-20190529: 20190529
  CI_DRM_18709: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8979: 8979
  Patchwork_169024v2: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/index.html

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

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

* ✓ Xe.CI.BAT: success for drm/i915: Clean up GPIO pin stuff (rev2)
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (9 preceding siblings ...)
  2026-06-23 15:04 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-23 15:14 ` Patchwork
  2026-06-23 20:12 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-06-23 22:38 ` ✗ i915.CI.Full: " Patchwork
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 15:14 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff (rev2)
URL   : https://patchwork.freedesktop.org/series/169023/
State : success

== Summary ==

CI Bug Log - changes from xe-5288-60326b17f877e12846167bf8ef83680b9875218a_BAT -> xe-pw-169023v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-ptl-vm 

New tests
---------

  New tests have been introduced between xe-5288-60326b17f877e12846167bf8ef83680b9875218a_BAT and xe-pw-169023v2_BAT:

### New IGT tests (5) ###

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [2.79, 2.98] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.40, 1.51] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.40, 1.50] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.43, 1.49] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-d-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.39, 1.52] s

  


Changes
-------

  No changes found


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

  * IGT: IGT_8979 -> IGT_8980
  * Linux: xe-5288-60326b17f877e12846167bf8ef83680b9875218a -> xe-pw-169023v2

  IGT_8979: 8979
  IGT_8980: 65d820119e86b017bf801c8f2bb500e557b29d1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5288-60326b17f877e12846167bf8ef83680b9875218a: 60326b17f877e12846167bf8ef83680b9875218a
  xe-pw-169023v2: 169023v2

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/i915: Clean up GPIO pin stuff (rev2)
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (10 preceding siblings ...)
  2026-06-23 15:14 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-23 20:12 ` Patchwork
  2026-06-23 22:38 ` ✗ i915.CI.Full: " Patchwork
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 20:12 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff (rev2)
URL   : https://patchwork.freedesktop.org/series/169023/
State : failure

== Summary ==

CI Bug Log - changes from xe-5288-60326b17f877e12846167bf8ef83680b9875218a_FULL -> xe-pw-169023v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-169023v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@asahi/asahi_get_time@get-time-compare:
    - shard-lnl:          NOTRUN -> [SKIP][1] +8 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-lnl-5/igt@asahi/asahi_get_time@get-time-compare.html

  * igt@asahi/asahi_get_time@get-time-flags-1:
    - shard-bmg:          NOTRUN -> [SKIP][2] +8 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-9/igt@asahi/asahi_get_time@get-time-flags-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-lnl:          [PASS][3] -> [FAIL][4] ([i915#4767])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-lnl-6/igt@kms_fbcon_fbt@fbc-suspend.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-lnl-4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][5] -> [FAIL][6] ([Intel XE#301])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-lnl:          [PASS][7] -> [SKIP][8] ([Intel XE#8361])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-lnl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [PASS][9] -> [FAIL][10] ([Intel XE#6361]) +1 other test fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-4/igt@kms_setmode@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-6/igt@kms_setmode@basic.html

  * igt@xe_eudebug@basic-close:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#7636])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-2/igt@xe_eudebug@basic-close.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2322] / [Intel XE#7372])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html

  * igt@xe_exec_reset@multi-queue-cat-error:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#8369])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-4/igt@xe_exec_reset@multi-queue-cat-error.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][14] ([Intel XE#7571]) -> [PASS][15] +1 other test pass
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [FAIL][16] ([Intel XE#301]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [INCOMPLETE][18] ([Intel XE#4760] / [Intel XE#8155]) -> [PASS][19] +1 other test pass
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-2/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][20] ([Intel XE#1503]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-6/igt@kms_hdr@invalid-hdr.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [FAIL][22] ([Intel XE#7992]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          [FAIL][24] ([Intel XE#6569]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-7/igt@xe_sriov_flr@flr-vfs-parallel.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html

  
#### Warnings ####

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][26] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][27] ([Intel XE#3544])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][28] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][29] ([Intel XE#2426] / [Intel XE#5848])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][30] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][31] ([Intel XE#2426] / [Intel XE#5848])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5288-60326b17f877e12846167bf8ef83680b9875218a/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169023v2/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
  [Intel XE#8155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8155
  [Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767


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

  * IGT: IGT_8979 -> IGT_8980
  * Linux: xe-5288-60326b17f877e12846167bf8ef83680b9875218a -> xe-pw-169023v2

  IGT_8979: 8979
  IGT_8980: 65d820119e86b017bf801c8f2bb500e557b29d1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5288-60326b17f877e12846167bf8ef83680b9875218a: 60326b17f877e12846167bf8ef83680b9875218a
  xe-pw-169023v2: 169023v2

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for drm/i915: Clean up GPIO pin stuff (rev2)
  2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
                   ` (11 preceding siblings ...)
  2026-06-23 20:12 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-06-23 22:38 ` Patchwork
  12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-06-23 22:38 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx

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

== Series Details ==

Series: drm/i915: Clean up GPIO pin stuff (rev2)
URL   : https://patchwork.freedesktop.org/series/169024/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18709_full -> Patchwork_169024v2_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_169024v2_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_169024v2_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 (10 -> 10)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in Patchwork_169024v2_full:

### IGT changes ###

#### Possible regressions ####

  * igt@perf_pmu@semaphore-busy@rcs0:
    - shard-mtlp:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-mtlp-5/igt@perf_pmu@semaphore-busy@rcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-8/igt@perf_pmu@semaphore-busy@rcs0.html

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

  Here are the changes found in Patchwork_169024v2_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-tglu:         NOTRUN -> [SKIP][3] ([i915#6230])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@api_intel_bb@crc32.html

  * igt@device_reset@cold-reset-bound:
    - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#11078])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@device_reset@cold-reset-bound.html

  * igt@dmabuf@all-tests:
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#15931])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@dmabuf@all-tests.html
    - shard-tglu-1:       NOTRUN -> [SKIP][6] ([i915#15931])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@dmabuf@all-tests.html

  * igt@gem_bad_reloc@negative-reloc-bltcopy:
    - shard-mtlp:         NOTRUN -> [SKIP][7] ([i915#3281]) +5 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gem_bad_reloc@negative-reloc-bltcopy.html

  * igt@gem_caching@reads:
    - shard-mtlp:         NOTRUN -> [SKIP][8] ([i915#4873])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gem_caching@reads.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][9] ([i915#13356] / [i915#16348]) +1 other test incomplete
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-1/igt@gem_ccs@suspend-resume.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          NOTRUN -> [SKIP][10] ([i915#5882]) +7 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_sseu@engines:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#280])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_ctx_sseu@engines.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-rkl:          NOTRUN -> [SKIP][12] ([i915#280])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#280])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#4771])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@parallel:
    - shard-tglu:         NOTRUN -> [SKIP][15] ([i915#4525]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-tglu-1:       NOTRUN -> [SKIP][16] ([i915#4525])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-rkl:          NOTRUN -> [SKIP][17] ([i915#6334]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-tglu:         NOTRUN -> [SKIP][18] ([i915#6334]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglu-1:       NOTRUN -> [SKIP][19] ([i915#6344])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_flush@basic-batch-kernel-default-wb:
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-rkl:          NOTRUN -> [SKIP][21] ([i915#3281]) +7 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_exec_reloc@basic-wc:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#3281]) +6 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_exec_reloc@basic-wc.html

  * igt@gem_exec_schedule@preempt-queue:
    - shard-mtlp:         NOTRUN -> [SKIP][23] ([i915#4537] / [i915#4812])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#4613] / [i915#7582])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-rkl:          NOTRUN -> [SKIP][25] ([i915#4613])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@massive-random:
    - shard-glk:          NOTRUN -> [SKIP][26] ([i915#4613]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk4/igt@gem_lmem_swapping@massive-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][27] ([i915#4613])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_mmap@basic-small-bo:
    - shard-dg2:          NOTRUN -> [SKIP][28] ([i915#4083]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@gem_mmap@basic-small-bo.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#4077]) +6 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_partial_pwrite_pread@write:
    - shard-mtlp:         NOTRUN -> [SKIP][30] ([i915#3282])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gem_partial_pwrite_pread@write.html

  * igt@gem_partial_pwrite_pread@write-display:
    - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#3282]) +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@gem_partial_pwrite_pread@write-display.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-rkl:          NOTRUN -> [SKIP][32] ([i915#3282]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk11:        NOTRUN -> [WARN][33] ([i915#14702] / [i915#2658])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk11/igt@gem_pwrite@basic-exhaustion.html
    - shard-tglu:         NOTRUN -> [WARN][34] ([i915#2658])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#4270])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#13717])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html
    - shard-tglu-1:       NOTRUN -> [SKIP][37] ([i915#13398])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> [SKIP][38] +361 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][39] ([i915#8428]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html

  * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#5190] / [i915#8428]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4079])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglu-1:       NOTRUN -> [SKIP][42] ([i915#3297]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#3297]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][44] ([i915#3297]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#3297])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          [PASS][46] -> [INCOMPLETE][47] ([i915#13356])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
    - shard-glk11:        NOTRUN -> [INCOMPLETE][48] ([i915#13356] / [i915#14586])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk11/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#2527]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
    - shard-tglu-1:       NOTRUN -> [SKIP][50] ([i915#2527] / [i915#2856]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@bb-start-far:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#2856]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-tglu:         NOTRUN -> [SKIP][52] ([i915#2527] / [i915#2856]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@gen9_exec_parse@bb-start-param.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#2856])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_drm_fdinfo@all-busy-idle-check-all:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#14123])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@i915_drm_fdinfo@all-busy-idle-check-all.html

  * igt@i915_drm_fdinfo@isolation@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#14073]) +6 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@i915_drm_fdinfo@isolation@rcs0.html

  * igt@i915_drm_fdinfo@virtual-busy-hang:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#14118])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy-hang.html

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-tglu-1:       NOTRUN -> [SKIP][57] ([i915#15479]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-tglu-1:       NOTRUN -> [ABORT][58] ([i915#15342]) +1 other test abort
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][59] ([i915#13029] / [i915#14545])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu:         NOTRUN -> [SKIP][60] ([i915#8399])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-dg2:          NOTRUN -> [FAIL][61] ([i915#12964]) +1 other test fail
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rps@thresholds-idle:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#11681])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#11681])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_pm_sseu@full-enable:
    - shard-rkl:          NOTRUN -> [SKIP][64] ([i915#4387])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
    - shard-tglu:         NOTRUN -> [SKIP][65] ([i915#4387])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#8437])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html

  * igt@i915_suspend@forcewake:
    - shard-rkl:          [PASS][67] -> [INCOMPLETE][68] ([i915#4817]) +1 other test incomplete
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@i915_suspend@forcewake.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@i915_suspend@forcewake.html

  * igt@i915_suspend@sysfs-reader:
    - shard-glk:          [PASS][69] -> [INCOMPLETE][70] ([i915#16182] / [i915#4817])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk3/igt@i915_suspend@sysfs-reader.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk3/igt@i915_suspend@sysfs-reader.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-dg1:          [PASS][71] -> [FAIL][72] ([i915#14888])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][73] ([i915#14888])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-4.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][74] ([i915#12761]) +1 other test incomplete
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
    - shard-tglu:         NOTRUN -> [SKIP][75] ([i915#5286]) +4 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-tglu-1:       NOTRUN -> [SKIP][76] ([i915#5286]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][77] ([i915#5286]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][78] ([i915#3638])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-mtlp:         NOTRUN -> [SKIP][79] ([i915#6187])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-mtlp:         NOTRUN -> [SKIP][80] +4 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][81] +52 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#4538] / [i915#5190]) +6 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
    - shard-glk10:        NOTRUN -> [SKIP][83] +122 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#12313]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][85] ([i915#12313])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][86] ([i915#10307] / [i915#6095]) +122 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#12805])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#14098] / [i915#6095]) +32 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#6095]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#6095]) +14 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][91] ([i915#6095]) +39 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][92] ([i915#15582]) +1 other test incomplete
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][93] ([i915#12313])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][94] ([i915#12313]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][95] ([i915#6095]) +19 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][96] ([i915#6095]) +207 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][97] ([i915#6095]) +55 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][98] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu:         NOTRUN -> [SKIP][99] ([i915#3742])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][100] ([i915#13781]) +3 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#16471])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#11151] / [i915#7828]) +6 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-tglu-1:       NOTRUN -> [SKIP][103] ([i915#11151] / [i915#7828]) +4 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-mtlp:         NOTRUN -> [SKIP][104] ([i915#11151] / [i915#7828]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#11151] / [i915#7828]) +6 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-tglu:         NOTRUN -> [SKIP][106] ([i915#11151] / [i915#7828]) +7 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#15865]) +2 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#15330])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#15330] / [i915#3299])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][110] ([i915#15330] / [i915#3116] / [i915#3299])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#15330])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
    - shard-rkl:          NOTRUN -> [SKIP][112] ([i915#15330])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-mtlp:         NOTRUN -> [SKIP][113] ([i915#15865])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#15865])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_content_protection@lic-type-1.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][115] ([i915#13049])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#3555]) +3 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-tglu:         NOTRUN -> [SKIP][117] ([i915#3555]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#13049])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-tglu-1:       NOTRUN -> [SKIP][119] ([i915#13049])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][120] ([i915#12358] / [i915#14152] / [i915#7882])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html
    - shard-rkl:          [PASS][121] -> [INCOMPLETE][122] ([i915#12358] / [i915#14152])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-2/igt@kms_cursor_crc@cursor-suspend.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][123] ([i915#12358] / [i915#14152])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][124] ([i915#12358] / [i915#14152])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#13046] / [i915#5354]) +3 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#4103]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-tglu:         NOTRUN -> [SKIP][127] ([i915#9723])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-mtlp:         NOTRUN -> [SKIP][128] ([i915#9833])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-rkl:          NOTRUN -> [SKIP][129] ([i915#3555] / [i915#3804])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
    - shard-tglu:         NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555] / [i915#3804])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#3804])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
    - shard-tglu:         NOTRUN -> [SKIP][132] ([i915#3804])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html

  * igt@kms_dp_aux_dev@basic:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#1257])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-1/igt@kms_dp_aux_dev@basic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-dg2:          NOTRUN -> [SKIP][134] ([i915#13749])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-tglu-1:       NOTRUN -> [SKIP][135] ([i915#13748])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-basic:
    - shard-dg2:          NOTRUN -> [SKIP][136] ([i915#16361]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#16361]) +3 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-bpc-bigjoiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][138] ([i915#16361]) +3 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-bigjoiner.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#16361]) +2 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
    - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#16361]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][141] ([i915#9878])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#3955])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-2x:
    - shard-tglu:         NOTRUN -> [SKIP][143] ([i915#16081])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@psr2:
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#658])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_feature_discovery@psr2.html
    - shard-rkl:          NOTRUN -> [SKIP][145] ([i915#658])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][146] ([i915#3637] / [i915#9934]) +5 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][147] ([i915#9934]) +3 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][148] ([i915#3637] / [i915#9934]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-tglu-1:       NOTRUN -> [SKIP][149] ([i915#3637] / [i915#9934]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][150] ([i915#9934]) +4 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][151] ([i915#15643]) +2 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][152] ([i915#15643]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][153] ([i915#15643])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#15643]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][155] ([i915#15643]) +1 other test skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#15643] / [i915#5190]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-mtlp:         [PASS][157] -> [SKIP][158] ([i915#15672])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-mtlp-8/igt@kms_force_connector_basic@force-connector-state.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#1825]) +4 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#15990] / [i915#8708])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#15991] / [i915#5354]) +13 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#15990] / [i915#8708]) +15 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][163] ([i915#5439])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-tglu-1:       NOTRUN -> [SKIP][164] ([i915#5439])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
    - shard-rkl:          [PASS][165] -> [SKIP][166] ([i915#15989]) +10 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          [PASS][167] -> [SKIP][168] ([i915#15989]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][169] ([i915#15990]) +3 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#15991]) +22 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][171] ([i915#15989]) +11 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-rkl:          NOTRUN -> [SKIP][172] ([i915#15102] / [i915#3023]) +11 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][173] ([i915#15102]) +27 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-glk11:        NOTRUN -> [SKIP][174] +59 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary:
    - shard-mtlp:         NOTRUN -> [SKIP][175] ([i915#15989]) +9 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][176] ([i915#15102]) +17 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-glk:          [PASS][177] -> [SKIP][178] +5 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][179] ([i915#15989]) +15 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#15990]) +16 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-2p-rte:
    - shard-tglu-1:       NOTRUN -> [SKIP][181] +53 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-rte.html

  * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#15991]) +9 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@hdr-modesetfrombusy:
    - shard-tglu-1:       NOTRUN -> [SKIP][183] ([i915#15989]) +10 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#15989]) +13 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@hdr-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][185] ([i915#16056])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk11/igt@kms_frontbuffer_tracking@hdr-suspend.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-tglu:         NOTRUN -> [SKIP][186] ([i915#9766])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][187] ([i915#15104] / [i915#15990]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-tglu:         NOTRUN -> [SKIP][188] ([i915#15102]) +33 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][189] +77 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#15991] / [i915#1825]) +6 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#15102]) +17 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_hdr@bpc-switch:
    - shard-rkl:          [PASS][192] -> [SKIP][193] ([i915#3555] / [i915#8228])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_hdr@bpc-switch.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html
    - shard-tglu-1:       NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][196] ([i915#13688])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][197] ([i915#15459])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
    - shard-tglu-1:       NOTRUN -> [SKIP][198] ([i915#15459])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          NOTRUN -> [SKIP][199] ([i915#6301])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-dg2:          NOTRUN -> [SKIP][200] +6 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#15709]) +4 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#15709]) +1 other test skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
    - shard-tglu:         NOTRUN -> [SKIP][203] ([i915#16386]) +1 other test skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
    - shard-dg2:          NOTRUN -> [SKIP][204] ([i915#15709]) +1 other test skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#15709]) +2 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
    - shard-tglu-1:       NOTRUN -> [SKIP][206] ([i915#15709]) +2 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-glk:          NOTRUN -> [FAIL][207] ([i915#12178])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][208] ([i915#7862]) +1 other test fail
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][209] ([i915#3555]) +3 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-rkl:          NOTRUN -> [SKIP][210] ([i915#13958])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-tglu-1:       NOTRUN -> [SKIP][211] ([i915#13958])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-dg2:          NOTRUN -> [SKIP][212] ([i915#13958])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-tglu-1:       NOTRUN -> [SKIP][213] ([i915#15329]) +4 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
    - shard-mtlp:         NOTRUN -> [SKIP][214] ([i915#15329]) +1 other test skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][215] ([i915#12343] / [i915#5354])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
    - shard-tglu:         NOTRUN -> [SKIP][216] ([i915#12343] / [i915#9812])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#12343])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][218] ([i915#12343] / [i915#9812])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][219] ([i915#12343] / [i915#5354])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#15948])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html
    - shard-tglu:         NOTRUN -> [SKIP][221] ([i915#15948])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#8430])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@cursor:
    - shard-mtlp:         NOTRUN -> [SKIP][223] ([i915#4077]) +6 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_pm_rpm@cursor.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [PASS][224] -> [SKIP][225] ([i915#15073])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][226] ([i915#15073]) +2 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-glk10:        NOTRUN -> [FAIL][227] ([i915#8717])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-rkl:          [PASS][228] -> [SKIP][229] ([i915#15073]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg1:          [PASS][230] -> [SKIP][231] ([i915#15073])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][232] ([i915#15073])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#15073])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-rkl:          NOTRUN -> [SKIP][234] ([i915#15403])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_pm_rpm@package-g7.html
    - shard-tglu-1:       NOTRUN -> [SKIP][235] ([i915#15403])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#11520]) +4 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
    - shard-glk11:        NOTRUN -> [SKIP][237] ([i915#11520]) +2 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-dg2:          NOTRUN -> [SKIP][238] ([i915#11520]) +4 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-glk10:        NOTRUN -> [SKIP][239] ([i915#11520]) +3 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][240] ([i915#11520]) +4 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][241] ([i915#11520]) +3 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][242] ([i915#11520]) +7 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-suspend@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][243] ([i915#9688]) +3 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_psr@fbc-psr-suspend@edp-1.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-tglu-1:       NOTRUN -> [SKIP][244] ([i915#9732]) +10 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@psr-cursor-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +12 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_psr@psr-cursor-mmap-cpu.html

  * igt@kms_psr@psr-sprite-blt:
    - shard-tglu:         NOTRUN -> [SKIP][246] ([i915#9732]) +16 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@kms_psr@psr-sprite-blt.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-rkl:          NOTRUN -> [SKIP][247] ([i915#1072] / [i915#9732]) +10 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-rkl:          NOTRUN -> [SKIP][248] ([i915#5289])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-tglu:         NOTRUN -> [SKIP][249] ([i915#5289]) +1 other test skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#5289])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][251] ([i915#5289])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#3555]) +2 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-glk:          NOTRUN -> [ABORT][253] ([i915#13179]) +1 other test abort
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk5/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk10:        NOTRUN -> [FAIL][254] ([i915#10959])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#8623])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#15243] / [i915#3555])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@max-min:
    - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#9906])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-tglu-1:       NOTRUN -> [SKIP][258] ([i915#9906])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          NOTRUN -> [SKIP][259] ([i915#9906]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-tglu:         NOTRUN -> [SKIP][260] ([i915#9906])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@global-sseu-config:
    - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#7387])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@perf@global-sseu-config.html

  * igt@perf@mi-rpc:
    - shard-dg2:          NOTRUN -> [SKIP][262] ([i915#2434])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@perf@mi-rpc.html

  * igt@perf_pmu@module-unload:
    - shard-glk10:        NOTRUN -> [ABORT][263] ([i915#15778])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk10/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@semaphore-busy@vcs1:
    - shard-mtlp:         [PASS][264] -> [FAIL][265] ([i915#4349]) +4 other tests fail
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vcs1.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs1.html

  * igt@prime_vgem@coherency-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#3708] / [i915#4077]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> [SKIP][267] ([i915#3708])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@prime_vgem@fence-flip-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#9917])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-off.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - shard-glk:          [INCOMPLETE][269] ([i915#13196] / [i915#13356]) -> [PASS][270] +1 other test pass
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk8/igt@gem_exec_suspend@basic-s3.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk3/igt@gem_exec_suspend@basic-s3.html
    - shard-rkl:          [INCOMPLETE][271] ([i915#13356]) -> [PASS][272] +1 other test pass
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-rkl:          [ABORT][273] ([i915#15131]) -> [PASS][274]
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [INCOMPLETE][275] ([i915#13356] / [i915#13820]) -> [PASS][276] +1 other test pass
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-tglu:         [FAIL][277] ([i915#15662]) -> [PASS][278] +1 other test pass
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-rkl:          [INCOMPLETE][279] ([i915#15582]) -> [PASS][280]
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-dg2:          [ABORT][281] ([i915#15132]) -> [PASS][282]
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-10/igt@kms_fbcon_fbt@fbc-suspend.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2:          [INCOMPLETE][283] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
    - shard-dg2:          [INCOMPLETE][285] ([i915#12314] / [i915#6113]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-glk:          [SKIP][287] -> [PASS][288] +6 other tests pass
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
    - shard-rkl:          [SKIP][289] ([i915#15989]) -> [PASS][290] +9 other tests pass
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-mtlp:         [SKIP][291] ([i915#15725]) -> [PASS][292]
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-rkl:          [SKIP][293] ([i915#3555] / [i915#8228]) -> [PASS][294]
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [SKIP][295] ([i915#15073]) -> [PASS][296]
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-dg2:          [SKIP][297] ([i915#15073]) -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-7/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg1:          [SKIP][299] ([i915#15073]) -> [PASS][300]
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  
#### Warnings ####

  * igt@gem_basic@multigpu-create-close:
    - shard-rkl:          [SKIP][301] ([i915#14544] / [i915#7697]) -> [SKIP][302] ([i915#7697])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          [SKIP][303] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][304] ([i915#3555] / [i915#9323])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_create@create-ext-set-pat:
    - shard-rkl:          [SKIP][305] ([i915#14544] / [i915#8562]) -> [SKIP][306] ([i915#8562])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@gem_create@create-ext-set-pat.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-rkl:          [SKIP][307] ([i915#14544] / [i915#4525]) -> [SKIP][308] ([i915#4525])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          [SKIP][309] ([i915#4525]) -> [SKIP][310] ([i915#14544] / [i915#4525])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_reloc@basic-gtt:
    - shard-rkl:          [SKIP][311] ([i915#3281]) -> [SKIP][312] ([i915#14544] / [i915#3281])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@gem_exec_reloc@basic-gtt.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@gem_exec_reloc@basic-gtt.html

  * igt@gem_exec_reloc@basic-write-wc-noreloc:
    - shard-rkl:          [SKIP][313] ([i915#14544] / [i915#3281]) -> [SKIP][314] ([i915#3281]) +4 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@gem_exec_reloc@basic-write-wc-noreloc.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          [SKIP][315] ([i915#4613] / [i915#7582]) -> [SKIP][316] ([i915#14544] / [i915#4613] / [i915#7582])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@massive-random:
    - shard-rkl:          [SKIP][317] ([i915#14544] / [i915#4613]) -> [SKIP][318] ([i915#4613]) +1 other test skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@gem_lmem_swapping@massive-random.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-rkl:          [SKIP][319] ([i915#4613]) -> [SKIP][320] ([i915#14544] / [i915#4613])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@gem_lmem_swapping@verify-random-ccs.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
    - shard-rkl:          [SKIP][321] ([i915#14544] / [i915#3282]) -> [SKIP][322] ([i915#3282]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html

  * igt@gem_pwrite@basic-random:
    - shard-rkl:          [SKIP][323] ([i915#3282]) -> [SKIP][324] ([i915#14544] / [i915#3282]) +1 other test skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@gem_pwrite@basic-random.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@gem_pwrite@basic-random.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          [SKIP][325] ([i915#14544] / [i915#8411]) -> [SKIP][326] ([i915#8411])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          [SKIP][327] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][328] ([i915#3282] / [i915#3297])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-rkl:          [SKIP][329] ([i915#14544] / [i915#3297]) -> [SKIP][330] ([i915#3297])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-rkl:          [SKIP][331] ([i915#14544] / [i915#2527]) -> [SKIP][332] ([i915#2527]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@gen9_exec_parse@bb-secure.html

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-rkl:          [SKIP][333] ([i915#15479]) -> [SKIP][334] ([i915#14544] / [i915#15479]) +4 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          [SKIP][335] ([i915#6412]) -> [SKIP][336] ([i915#14544] / [i915#6412])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@i915_module_load@resize-bar.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@i915_module_load@resize-bar.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-rkl:          [SKIP][337] ([i915#16109]) -> [SKIP][338] ([i915#14544] / [i915#16109])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@i915_query@query-topology-known-pci-ids.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_query@query-topology-unsupported:
    - shard-rkl:          [SKIP][339] ([i915#14544] / [i915#16079]) -> [SKIP][340] ([i915#16079])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@i915_query@query-topology-unsupported.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@i915_query@query-topology-unsupported.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          [SKIP][341] ([i915#7707]) -> [SKIP][342] ([i915#14544] / [i915#7707])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@intel_hwmon@hwmon-read.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          [SKIP][343] ([i915#14544] / [i915#7707]) -> [SKIP][344] ([i915#7707])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          [SKIP][345] ([i915#12454] / [i915#12712]) -> [SKIP][346] ([i915#12454] / [i915#12712] / [i915#14544])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-rkl:          [SKIP][347] ([i915#9531]) -> [SKIP][348] ([i915#14544] / [i915#9531])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-rkl:          [SKIP][349] ([i915#14544] / [i915#5286]) -> [SKIP][350] ([i915#5286])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][351] ([i915#5286]) -> [SKIP][352] ([i915#14544] / [i915#5286]) +1 other test skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-dg1:          [SKIP][353] ([i915#3638] / [i915#4423]) -> [SKIP][354] ([i915#3638])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          [SKIP][355] ([i915#14544] / [i915#3828]) -> [SKIP][356] ([i915#3828])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-rkl:          [SKIP][357] ([i915#3638]) -> [SKIP][358] ([i915#14544] / [i915#3638])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][359] ([i915#14098] / [i915#6095]) -> [SKIP][360] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][361] ([i915#12313] / [i915#14544]) -> [SKIP][362] ([i915#12313])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][363] ([i915#14544] / [i915#6095]) -> [SKIP][364] ([i915#6095]) +8 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][365] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][366] ([i915#14098] / [i915#6095]) +11 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][367] ([i915#15582]) -> [INCOMPLETE][368] ([i915#14694] / [i915#15582]) +1 other test incomplete
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][369] ([i915#6095]) -> [SKIP][370] ([i915#14544] / [i915#6095]) +5 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][371] ([i915#12313]) -> [SKIP][372] ([i915#12313] / [i915#14544])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          [SKIP][373] ([i915#14544] / [i915#3742]) -> [SKIP][374] ([i915#3742])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_cdclk@mode-transition.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
    - shard-rkl:          [SKIP][375] ([i915#14544] / [i915#16471]) -> [SKIP][376] ([i915#16471]) +1 other test skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-rkl:          [SKIP][377] ([i915#11151] / [i915#7828]) -> [SKIP][378] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          [SKIP][379] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][380] ([i915#11151] / [i915#7828]) +2 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-rkl:          [SKIP][381] ([i915#15865]) -> [SKIP][382] ([i915#14544] / [i915#15865]) +1 other test skip
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_content_protection@legacy-hdcp14.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@srm:
    - shard-rkl:          [SKIP][383] ([i915#14544] / [i915#15865]) -> [SKIP][384] ([i915#15865])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_content_protection@srm.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-rkl:          [SKIP][385] ([i915#13049]) -> [SKIP][386] ([i915#13049] / [i915#14544]) +1 other test skip
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-rkl:          [SKIP][387] ([i915#14544] / [i915#3555]) -> [SKIP][388] ([i915#3555]) +4 other tests skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-rkl:          [SKIP][389] ([i915#14544] / [i915#9067]) -> [SKIP][390] ([i915#9067])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-rkl:          [SKIP][391] ([i915#14544] / [i915#4103]) -> [SKIP][392] ([i915#4103])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-rkl:          [SKIP][393] ([i915#13748]) -> [SKIP][394] ([i915#13748] / [i915#14544])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-basic-ultrajoiner:
    - shard-rkl:          [SKIP][395] ([i915#16361]) -> [SKIP][396] ([i915#14544] / [i915#16361])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_dsc@dsc-basic-ultrajoiner.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_dsc@dsc-basic-ultrajoiner.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-rkl:          [SKIP][397] ([i915#14544] / [i915#16361]) -> [SKIP][398] ([i915#16361])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][399] ([i915#3955]) -> [SKIP][400] ([i915#14544] / [i915#3955])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-4x:
    - shard-rkl:          [SKIP][401] ([i915#14544] / [i915#16081]) -> [SKIP][402] ([i915#16081])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          [SKIP][403] ([i915#14544] / [i915#9934]) -> [SKIP][404] ([i915#9934]) +4 other tests skip
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-rkl:          [SKIP][405] ([i915#9934]) -> [SKIP][406] ([i915#14544] / [i915#9934]) +1 other test skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [INCOMPLETE][407] ([i915#16276] / [i915#6113]) -> [ABORT][408] ([i915#15132]) +1 other test abort
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html
    - shard-glk:          [INCOMPLETE][409] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][410] ([i915#12314] / [i915#12745] / [i915#4839])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk3/igt@kms_flip@flip-vs-suspend.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk8/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          [INCOMPLETE][411] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][412] ([i915#12745] / [i915#4839] / [i915#6113])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk:          [INCOMPLETE][413] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][414] ([i915#12745])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          [INCOMPLETE][415] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][416] ([i915#12314] / [i915#12745])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-rkl:          [SKIP][417] ([i915#14544] / [i915#15643]) -> [SKIP][418] ([i915#15643]) +2 other tests skip
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-rkl:          [SKIP][419] ([i915#15643]) -> [SKIP][420] ([i915#14544] / [i915#15643])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][421] ([i915#14544] / [i915#1825]) -> [SKIP][422] ([i915#1825]) +2 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-rkl:          [SKIP][423] ([i915#15102] / [i915#3023]) -> [SKIP][424] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][425] ([i915#1825]) -> [SKIP][426] ([i915#14544] / [i915#1825]) +1 other test skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg1:          [SKIP][427] -> [SKIP][428] ([i915#4423]) +1 other test skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][429] ([i915#14544]) -> [SKIP][430] +45 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-rkl:          [SKIP][431] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][432] ([i915#15102] / [i915#3023]) +8 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
    - shard-rkl:          [SKIP][433] -> [SKIP][434] ([i915#14544]) +37 other tests skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu:
    - shard-rkl:          [SKIP][435] ([i915#14544] / [i915#15102]) -> [SKIP][436] ([i915#15102]) +9 other tests skip
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-wc:
    - shard-dg1:          [SKIP][437] ([i915#15990]) -> [SKIP][438] ([i915#15990] / [i915#4423])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-wc.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear:
    - shard-rkl:          [SKIP][439] ([i915#15102]) -> [SKIP][440] ([i915#14544] / [i915#15102]) +8 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][441] ([i915#15102]) -> [SKIP][442] ([i915#10433] / [i915#15102]) +2 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [SKIP][443] ([i915#10433] / [i915#15102]) -> [SKIP][444] ([i915#15102])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-rkl:          [SKIP][445] ([i915#14544] / [i915#15460]) -> [SKIP][446] ([i915#15460])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          [SKIP][447] ([i915#15458]) -> [SKIP][448] ([i915#14544] / [i915#15458])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_mst@mst-suspend-read-crc:
    - shard-rkl:          [SKIP][449] ([i915#14544] / [i915#16451]) -> [SKIP][450] ([i915#16451])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_mst@mst-suspend-read-crc.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_mst@mst-suspend-read-crc.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][451] ([i915#15709]) -> [SKIP][452] ([i915#14544] / [i915#15709]) +1 other test skip
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-rkl:          [SKIP][453] ([i915#14544] / [i915#15709]) -> [SKIP][454] ([i915#15709]) +2 other tests skip
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-rkl:          [SKIP][455] ([i915#13958] / [i915#14544]) -> [SKIP][456] ([i915#13958])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-rkl:          [SKIP][457] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][458] ([i915#15329] / [i915#3555])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-rkl:          [SKIP][459] ([i915#14544] / [i915#15329]) -> [SKIP][460] ([i915#15329]) +2 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][461] ([i915#15329]) -> [SKIP][462] ([i915#14544] / [i915#15329]) +7 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          [SKIP][463] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][464] ([i915#12343] / [i915#5354])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_pm_backlight@fade.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-8/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          [SKIP][465] ([i915#12343] / [i915#5354]) -> [SKIP][466] ([i915#12343] / [i915#14544] / [i915#5354])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][467] ([i915#3828]) -> [SKIP][468] ([i915#9340])
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          [SKIP][469] ([i915#6524]) -> [SKIP][470] ([i915#14544] / [i915#6524])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          [SKIP][471] ([i915#11520]) -> [SKIP][472] ([i915#11520] / [i915#14544]) +2 other tests skip
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][473] ([i915#11520] / [i915#14544]) -> [SKIP][474] ([i915#11520]) +4 other tests skip
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-rkl:          [SKIP][475] ([i915#9683]) -> [SKIP][476] ([i915#14544] / [i915#9683])
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          [SKIP][477] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][478] ([i915#1072] / [i915#9732]) +8 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@psr2-cursor-plane-move:
    - shard-rkl:          [SKIP][479] ([i915#1072] / [i915#9732]) -> [SKIP][480] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-4/igt@kms_psr@psr2-cursor-plane-move.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html

  * igt@perf_pmu@module-unload:
    - shard-tglu:         [INCOMPLETE][481] ([i915#13520]) -> [ABORT][482] ([i915#15778])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-tglu-2/igt@perf_pmu@module-unload.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-tglu-4/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@basic-read:
    - shard-rkl:          [SKIP][483] ([i915#3291] / [i915#3708]) -> [SKIP][484] ([i915#14544] / [i915#3291] / [i915#3708])
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18709/shard-rkl-7/igt@prime_vgem@basic-read.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/shard-rkl-6/igt@prime_vgem@basic-read.html

  
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
  [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
  [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
  [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
  [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
  [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
  [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
  [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
  [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
  [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
  [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
  [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
  [i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451
  [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * Linux: CI_DRM_18709 -> Patchwork_169024v2

  CI-20190529: 20190529
  CI_DRM_18709: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8979: 8979
  Patchwork_169024v2: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169024v2/index.html

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

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

end of thread, other threads:[~2026-06-23 22:38 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-23 12:51 [PATCH 0/6] drm/i915: Clean up GPIO pin stuff Ville Syrjala
2026-06-23 12:51 ` [PATCH 1/6] drm/i915/gmbus: Rename GPIO pins Ville Syrjala
2026-06-23 14:43   ` Michał Grzelak
2026-06-23 12:51 ` [PATCH 2/6] drm/i915/gmbus: s/gmbus_pins_bdw/gmbus_pins_lpt/ Ville Syrjala
2026-06-23 14:43   ` Michał Grzelak
2026-06-23 12:51 ` [PATCH 3/6] drm/i915/gmbus: Add gmbus_pins_lpt_lp[] Ville Syrjala
2026-06-23 14:45   ` Michał Grzelak
2026-06-23 12:51 ` [PATCH 4/6] drm/i915/gmbus: s/gmbus_pins_skl/gmbus_pins_spt/ Ville Syrjala
2026-06-23 14:45   ` Michał Grzelak
2026-06-23 12:51 ` [PATCH 5/6] drm/i915/gmbus: Drop the platform suffixes from GMBUS pins Ville Syrjala
2026-06-23 14:11   ` [PATCH v2 " Ville Syrjala
2026-06-23 14:45     ` Michał Grzelak
2026-06-23 12:51 ` [PATCH 6/6] drm/i915/hdmi: Remove CNP port F leftovers Ville Syrjala
2026-06-23 14:45   ` Michał Grzelak
2026-06-23 13:30 ` ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff Patchwork
2026-06-23 13:50 ` ✗ Fi.CI.BUILD: failure " Patchwork
2026-06-23 14:18 ` ✓ CI.KUnit: success for drm/i915: Clean up GPIO pin stuff (rev2) Patchwork
2026-06-23 15:04 ` ✓ i915.CI.BAT: " Patchwork
2026-06-23 15:14 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-23 20:12 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-06-23 22:38 ` ✗ i915.CI.Full: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.