* [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
` (11 more replies)
0 siblings, 12 replies; 20+ 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] 20+ 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
` (10 subsequent siblings)
11 siblings, 1 reply; 20+ 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] 20+ 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
` (9 subsequent siblings)
11 siblings, 1 reply; 20+ 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] 20+ 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
` (8 subsequent siblings)
11 siblings, 1 reply; 20+ 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] 20+ 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
` (7 subsequent siblings)
11 siblings, 1 reply; 20+ 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] 20+ 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
` (6 subsequent siblings)
11 siblings, 1 reply; 20+ 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] 20+ 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
` (5 subsequent siblings)
11 siblings, 1 reply; 20+ 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] 20+ 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
` (4 subsequent siblings)
11 siblings, 0 replies; 20+ 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] 20+ 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
` (3 subsequent siblings)
11 siblings, 0 replies; 20+ 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] 20+ 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; 20+ 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] 20+ 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
` (2 subsequent siblings)
11 siblings, 0 replies; 20+ 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] 20+ 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; 20+ 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] 20+ 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; 20+ 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] 20+ 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; 20+ 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] 20+ 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; 20+ 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] 20+ 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; 20+ 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] 20+ 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; 20+ 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] 20+ 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
2026-06-23 20:12 ` ✗ Xe.CI.FULL: failure " Patchwork
11 siblings, 0 replies; 20+ 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] 20+ 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
11 siblings, 0 replies; 20+ 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] 20+ 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
11 siblings, 0 replies; 20+ 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] 20+ messages in thread
end of thread, other threads:[~2026-06-23 20:12 UTC | newest]
Thread overview: 20+ 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
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.