public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff
@ 2026-04-10 15:04 Ville Syrjala
  2026-04-10 15:04 ` [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing Ville Syrjala
                   ` (12 more replies)
  0 siblings, 13 replies; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

While doing trying to add decent abstractions for the FB
pinning I ran into the BIOS FB takeover code, and it didn't
exactly impress me.

Here's a prep series trying to cover some of the issues
I saw that aren't really directly related to the FB pinning
topic.

Ville Syrjälä (10):
  drm/i915: Introduce sanity to the plane_config pointer vs. array thing
  drm/i915: Remove 'mem' and 'phy_base' from struct
    intel_initial_plane_config
  drm/i915: Don't pass the whole plane_config to initial_plane_phys()
  drm/i915: Make plane_config->fb a struct drm_framebuffer*
  drm/i915: Move initial plane vblank wait into display code
  drm/i915: Use a 1 second timeout for the polling vblank wait
  drm/i915: Reject tile4 BIOS FB
  drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions
  drm/i915: Completely reject DPT BIOS FBs.
  drm/i915: Reject BIOS FB rotation in common code

 drivers/gpu/drm/i915/display/i9xx_plane.c     |  2 +-
 .../drm/i915/display/intel_display_types.h    |  4 +-
 .../drm/i915/display/intel_initial_plane.c    | 79 +++++++++++++++----
 .../drm/i915/display/skl_universal_plane.c    |  8 +-
 drivers/gpu/drm/i915/i915_initial_plane.c     | 27 +++----
 drivers/gpu/drm/xe/display/xe_initial_plane.c | 21 +----
 include/drm/intel/display_parent_interface.h  |  4 +-
 7 files changed, 77 insertions(+), 68 deletions(-)

-- 
2.52.0


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

* [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:40   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 02/10] drm/i915: Remove 'mem' and 'phy_base' from struct intel_initial_plane_config Ville Syrjala
                   ` (11 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The "plane_config" vs. "plane_configs" naming difference is very
subtle, making it far too easy to use the wrong thing by accident.
Introduce a separate type for the array, making it impossible to
pass in the wrong thing. And while at it name the variable
"all_plane_configs" to help the poor reader make sense of things.

The .config_fini() prototype also mistakenly used the plural
form despite only taking in a singular plane_config. So fix that
one up as well.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 .../drm/i915/display/intel_initial_plane.c    | 21 ++++++++++++-------
 include/drm/intel/display_parent_interface.h  |  2 +-
 2 files changed, 14 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index ee545c033da6..4f51083dbd11 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -11,6 +11,10 @@
 #include "intel_initial_plane.h"
 #include "intel_plane.h"
 
+struct intel_initial_plane_configs {
+	struct intel_initial_plane_config config[I915_MAX_PIPES];
+};
+
 void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
 {
 	struct intel_display *display = to_intel_display(crtc);
@@ -20,7 +24,7 @@ void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
 
 static const struct intel_plane_state *
 intel_reuse_initial_plane_obj(struct intel_crtc *this,
-			      const struct intel_initial_plane_config plane_configs[])
+			      const struct intel_initial_plane_configs *all_plane_configs)
 {
 	struct intel_display *display = to_intel_display(this);
 	struct intel_crtc *crtc;
@@ -39,7 +43,8 @@ intel_reuse_initial_plane_obj(struct intel_crtc *this,
 		if (!plane_state->ggtt_vma)
 			continue;
 
-		if (plane_configs[this->pipe].base == plane_configs[crtc->pipe].base)
+		if (all_plane_configs->config[this->pipe].base ==
+		    all_plane_configs->config[crtc->pipe].base)
 			return plane_state;
 	}
 
@@ -69,10 +74,10 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
 
 static void
 intel_find_initial_plane_obj(struct intel_crtc *crtc,
-			     struct intel_initial_plane_config plane_configs[])
+			     struct intel_initial_plane_configs *all_plane_configs)
 {
 	struct intel_display *display = to_intel_display(crtc);
-	struct intel_initial_plane_config *plane_config = &plane_configs[crtc->pipe];
+	struct intel_initial_plane_config *plane_config = &all_plane_configs->config[crtc->pipe];
 	struct intel_plane *plane = to_intel_plane(crtc->base.primary);
 	struct intel_plane_state *plane_state = to_intel_plane_state(plane->base.state);
 	struct drm_framebuffer *fb;
@@ -93,7 +98,7 @@ intel_find_initial_plane_obj(struct intel_crtc *crtc,
 	} else {
 		const struct intel_plane_state *other_plane_state;
 
-		other_plane_state = intel_reuse_initial_plane_obj(crtc, plane_configs);
+		other_plane_state = intel_reuse_initial_plane_obj(crtc, all_plane_configs);
 		if (!other_plane_state)
 			goto nofb;
 
@@ -158,14 +163,14 @@ static void plane_config_fini(struct intel_display *display,
 
 void intel_initial_plane_config(struct intel_display *display)
 {
-	struct intel_initial_plane_config plane_configs[I915_MAX_PIPES] = {};
+	struct intel_initial_plane_configs all_plane_configs = {};
 	struct intel_crtc *crtc;
 
 	for_each_intel_crtc(display->drm, crtc) {
 		const struct intel_crtc_state *crtc_state =
 			to_intel_crtc_state(crtc->base.state);
 		struct intel_initial_plane_config *plane_config =
-			&plane_configs[crtc->pipe];
+			&all_plane_configs.config[crtc->pipe];
 
 		if (!crtc_state->hw.active)
 			continue;
@@ -183,7 +188,7 @@ void intel_initial_plane_config(struct intel_display *display)
 		 * If the fb is shared between multiple heads, we'll
 		 * just get the first one.
 		 */
-		intel_find_initial_plane_obj(crtc, plane_configs);
+		intel_find_initial_plane_obj(crtc, &all_plane_configs);
 
 		if (display->funcs.display->fixup_initial_plane_config(crtc, plane_config))
 			intel_initial_plane_vblank_wait(crtc);
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 258e6388ef77..9041897c772e 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -91,7 +91,7 @@ struct intel_display_initial_plane_interface {
 	struct drm_gem_object *(*alloc_obj)(struct drm_device *drm, struct intel_initial_plane_config *plane_config);
 	int (*setup)(struct drm_plane_state *plane_state, struct intel_initial_plane_config *plane_config,
 		     struct drm_framebuffer *fb, struct i915_vma *vma);
-	void (*config_fini)(struct intel_initial_plane_config *plane_configs);
+	void (*config_fini)(struct intel_initial_plane_config *plane_config);
 };
 
 struct intel_display_irq_interface {
-- 
2.52.0


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

* [PATCH 02/10] drm/i915: Remove 'mem' and 'phy_base' from struct intel_initial_plane_config
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
  2026-04-10 15:04 ` [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:43   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 03/10] drm/i915: Don't pass the whole plane_config to initial_plane_phys() Ville Syrjala
                   ` (10 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The 'mem' and 'phy_base' members or struct intel_initial_plane_config
only exist to be passed from initial_plane_phys() to its sole caller.
Just return them via function arguments.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_display_types.h |  2 --
 drivers/gpu/drm/i915/i915_initial_plane.c          | 13 ++++++-------
 2 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index ca2581fb7bbd..eaa37b8d9584 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -756,8 +756,6 @@ struct intel_plane_state {
 
 struct intel_initial_plane_config {
 	struct intel_framebuffer *fb;
-	struct intel_memory_region *mem;
-	resource_size_t phys_base;
 	struct i915_vma *vma;
 	int size;
 	u32 base;
diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
index c1a12bf6b66c..060aa0388c39 100644
--- a/drivers/gpu/drm/i915/i915_initial_plane.c
+++ b/drivers/gpu/drm/i915/i915_initial_plane.c
@@ -34,7 +34,9 @@ initial_plane_memory_type(struct drm_i915_private *i915)
 
 static bool
 initial_plane_phys(struct drm_i915_private *i915,
-		   struct intel_initial_plane_config *plane_config)
+		   struct intel_initial_plane_config *plane_config,
+		   resource_size_t *out_phys_base,
+		   struct intel_memory_region **out_mem)
 {
 	struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
 	struct intel_memory_region *mem;
@@ -77,8 +79,8 @@ initial_plane_phys(struct drm_i915_private *i915,
 	drm_dbg(&i915->drm, "Using dma_addr=%pa, based on initial plane programming\n",
 		&dma_addr);
 
-	plane_config->phys_base = dma_addr - mem->region.start;
-	plane_config->mem = mem;
+	*out_phys_base = dma_addr - mem->region.start;
+	*out_mem = mem;
 
 	return true;
 }
@@ -99,12 +101,9 @@ initial_plane_vma(struct drm_i915_private *i915,
 	if (plane_config->size == 0)
 		return NULL;
 
-	if (!initial_plane_phys(i915, plane_config))
+	if (!initial_plane_phys(i915, plane_config, &phys_base, &mem))
 		return NULL;
 
-	phys_base = plane_config->phys_base;
-	mem = plane_config->mem;
-
 	base = round_down(plane_config->base, I915_GTT_MIN_ALIGNMENT);
 	size = round_up(plane_config->base + plane_config->size,
 			mem->min_page_size);
-- 
2.52.0


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

* [PATCH 03/10] drm/i915: Don't pass the whole plane_config to initial_plane_phys()
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
  2026-04-10 15:04 ` [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing Ville Syrjala
  2026-04-10 15:04 ` [PATCH 02/10] drm/i915: Remove 'mem' and 'phy_base' from struct intel_initial_plane_config Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:45   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 04/10] drm/i915: Make plane_config->fb a struct drm_framebuffer* Ville Syrjala
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

initial_plane_phys() only needs the 'base' (== ggtt virtual address)
from the plane_config. Stop passing the whole plane_config and just
pass the 'base'.

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

diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
index 060aa0388c39..6df57db9b62a 100644
--- a/drivers/gpu/drm/i915/i915_initial_plane.c
+++ b/drivers/gpu/drm/i915/i915_initial_plane.c
@@ -34,8 +34,7 @@ initial_plane_memory_type(struct drm_i915_private *i915)
 
 static bool
 initial_plane_phys(struct drm_i915_private *i915,
-		   struct intel_initial_plane_config *plane_config,
-		   resource_size_t *out_phys_base,
+		   u32 base, resource_size_t *out_phys_base,
 		   struct intel_memory_region **out_mem)
 {
 	struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
@@ -43,7 +42,6 @@ initial_plane_phys(struct drm_i915_private *i915,
 	enum intel_memory_type mem_type;
 	bool is_present, is_local;
 	dma_addr_t dma_addr;
-	u32 base;
 
 	mem_type = initial_plane_memory_type(i915);
 	mem = intel_memory_region_by_type(i915, mem_type);
@@ -54,7 +52,7 @@ initial_plane_phys(struct drm_i915_private *i915,
 		return false;
 	}
 
-	base = round_down(plane_config->base, I915_GTT_MIN_ALIGNMENT);
+	base = round_down(base, I915_GTT_MIN_ALIGNMENT);
 
 	dma_addr = intel_ggtt_read_entry(&ggtt->vm, base, &is_present, &is_local);
 
@@ -101,7 +99,7 @@ initial_plane_vma(struct drm_i915_private *i915,
 	if (plane_config->size == 0)
 		return NULL;
 
-	if (!initial_plane_phys(i915, plane_config, &phys_base, &mem))
+	if (!initial_plane_phys(i915, plane_config->base, &phys_base, &mem))
 		return NULL;
 
 	base = round_down(plane_config->base, I915_GTT_MIN_ALIGNMENT);
-- 
2.52.0


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

* [PATCH 04/10] drm/i915: Make plane_config->fb a struct drm_framebuffer*
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (2 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 03/10] drm/i915: Don't pass the whole plane_config to initial_plane_phys() Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:48   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 05/10] drm/i915: Move initial plane vblank wait into display code Ville Syrjala
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

There's no need to use the intel specific struct intel_framebuffer*
type in the initial plane_config structure. Just make it a
struct drm_framebuffer*.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/i9xx_plane.c          |  2 +-
 drivers/gpu/drm/i915/display/intel_display_types.h |  2 +-
 drivers/gpu/drm/i915/display/intel_initial_plane.c | 10 +++++-----
 drivers/gpu/drm/i915/display/skl_universal_plane.c |  2 +-
 drivers/gpu/drm/i915/i915_initial_plane.c          |  6 +++---
 drivers/gpu/drm/xe/display/xe_initial_plane.c      |  2 +-
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
index 9c16753a1f3b..70734d32a409 100644
--- a/drivers/gpu/drm/i915/display/i9xx_plane.c
+++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
@@ -1240,7 +1240,7 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
 		    fb->width, fb->height, fb->format->cpp[0] * 8,
 		    base, fb->pitches[0], plane_config->size);
 
-	plane_config->fb = intel_fb;
+	plane_config->fb = &intel_fb->base;
 }
 
 bool i9xx_fixup_initial_plane_config(struct intel_crtc *crtc,
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index eaa37b8d9584..82c7e03427ff 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -755,7 +755,7 @@ struct intel_plane_state {
 };
 
 struct intel_initial_plane_config {
-	struct intel_framebuffer *fb;
+	struct drm_framebuffer *fb;
 	struct i915_vma *vma;
 	int size;
 	u32 base;
diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index 4f51083dbd11..911d67dceba9 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -55,9 +55,9 @@ static struct drm_gem_object *
 intel_alloc_initial_plane_obj(struct intel_display *display,
 			      struct intel_initial_plane_config *plane_config)
 {
-	struct intel_framebuffer *fb = plane_config->fb;
+	struct drm_framebuffer *fb = plane_config->fb;
 
-	switch (fb->base.modifier) {
+	switch (fb->modifier) {
 	case DRM_FORMAT_MOD_LINEAR:
 	case I915_FORMAT_MOD_X_TILED:
 	case I915_FORMAT_MOD_Y_TILED:
@@ -65,7 +65,7 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
 		break;
 	default:
 		drm_dbg_kms(display->drm, "Unsupported modifier for initial FB: 0x%llx\n",
-			    fb->base.modifier);
+			    fb->modifier);
 		return NULL;
 	}
 
@@ -93,7 +93,7 @@ intel_find_initial_plane_obj(struct intel_crtc *crtc,
 		return;
 
 	if (intel_alloc_initial_plane_obj(display, plane_config)) {
-		fb = &plane_config->fb->base;
+		fb = plane_config->fb;
 		vma = plane_config->vma;
 	} else {
 		const struct intel_plane_state *other_plane_state;
@@ -149,7 +149,7 @@ static void plane_config_fini(struct intel_display *display,
 			      struct intel_initial_plane_config *plane_config)
 {
 	if (plane_config->fb) {
-		struct drm_framebuffer *fb = &plane_config->fb->base;
+		struct drm_framebuffer *fb = plane_config->fb;
 
 		/* We may only have the stub and not a full framebuffer */
 		if (drm_framebuffer_read_refcount(fb))
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 7a9d494334b5..00c863e378a1 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -3206,7 +3206,7 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
 		    fb->width, fb->height, fb->format->cpp[0] * 8,
 		    base, fb->pitches[0], plane_config->size);
 
-	plane_config->fb = intel_fb;
+	plane_config->fb = &intel_fb->base;
 	return;
 
 error:
diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
index 6df57db9b62a..5cb1adde67b6 100644
--- a/drivers/gpu/drm/i915/i915_initial_plane.c
+++ b/drivers/gpu/drm/i915/i915_initial_plane.c
@@ -137,7 +137,7 @@ initial_plane_vma(struct drm_i915_private *i915,
 	i915_gem_object_set_cache_coherency(obj, HAS_WT(i915) ?
 					    I915_CACHE_WT : I915_CACHE_NONE);
 
-	tiling = intel_fb_modifier_to_tiling(plane_config->fb->base.modifier);
+	tiling = intel_fb_modifier_to_tiling(plane_config->fb->modifier);
 
 	switch (tiling) {
 	case I915_TILING_NONE:
@@ -145,7 +145,7 @@ initial_plane_vma(struct drm_i915_private *i915,
 	case I915_TILING_X:
 	case I915_TILING_Y:
 		obj->tiling_and_stride =
-			plane_config->fb->base.pitches[0] |
+			plane_config->fb->pitches[0] |
 			tiling;
 		break;
 	default:
@@ -223,7 +223,7 @@ i915_alloc_initial_plane_obj(struct drm_device *drm,
 {
 	struct drm_i915_private *i915 = to_i915(drm);
 	struct drm_mode_fb_cmd2 mode_cmd = {};
-	struct drm_framebuffer *fb = &plane_config->fb->base;
+	struct drm_framebuffer *fb = plane_config->fb;
 	struct i915_vma *vma;
 
 	vma = initial_plane_vma(i915, plane_config);
diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
index 1c7a4e8c390c..8f2d0244c03f 100644
--- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
+++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
@@ -115,7 +115,7 @@ xe_alloc_initial_plane_obj(struct drm_device *drm,
 {
 	struct xe_device *xe = to_xe_device(drm);
 	struct drm_mode_fb_cmd2 mode_cmd = { 0 };
-	struct drm_framebuffer *fb = &plane_config->fb->base;
+	struct drm_framebuffer *fb = plane_config->fb;
 	struct xe_bo *bo;
 
 	mode_cmd.pixel_format = fb->format->format;
-- 
2.52.0


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

* [PATCH 05/10] drm/i915: Move initial plane vblank wait into display code
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (3 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 04/10] drm/i915: Make plane_config->fb a struct drm_framebuffer* Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:53   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 06/10] drm/i915: Use a 1 second timeout for the polling vblank wait Ville Syrjala
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The initial plane vblank wait operates on display registers,
so it really belongs in the display code proper. Move it there.

We can use intel_parent_irq_enabled() to determine if we can
rely on interrupts or not.

On average we should end up waiting half a frame here, so the
polling interval can be fairly long. 1 ms (which actually
makes poll_timeout_us() use ~250-1000 usec) seems good enough
to me.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 .../drm/i915/display/intel_initial_plane.c    | 22 ++++++++++++++++++-
 drivers/gpu/drm/i915/i915_initial_plane.c     |  6 -----
 drivers/gpu/drm/xe/display/xe_initial_plane.c | 19 ----------------
 include/drm/intel/display_parent_interface.h  |  2 --
 4 files changed, 21 insertions(+), 28 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index 911d67dceba9..74e10d34c63c 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -1,14 +1,20 @@
 // SPDX-License-Identifier: MIT
 /* Copyright © 2025 Intel Corporation */
 
+#include <linux/iopoll.h>
+
 #include <drm/drm_print.h>
 #include <drm/intel/display_parent_interface.h>
 
+#include "intel_crtc.h"
+#include "intel_de.h"
 #include "intel_display_core.h"
+#include "intel_display_regs.h"
 #include "intel_display_types.h"
 #include "intel_fb.h"
 #include "intel_frontbuffer.h"
 #include "intel_initial_plane.h"
+#include "intel_parent.h"
 #include "intel_plane.h"
 
 struct intel_initial_plane_configs {
@@ -18,8 +24,22 @@ struct intel_initial_plane_configs {
 void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
 {
 	struct intel_display *display = to_intel_display(crtc);
+	u32 start_ts, end_ts;
+	int ret;
 
-	display->parent->initial_plane->vblank_wait(&crtc->base);
+	/* xe doesn't have interrupts enabled this early */
+	if (intel_parent_irq_enabled(display)) {
+		intel_crtc_wait_for_next_vblank(crtc);
+		return;
+	}
+
+	start_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe));
+
+	ret = poll_timeout_us(end_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe)),
+			      end_ts != start_ts, 1000, 40 * 1000, false);
+	if (ret)
+		drm_warn(display->drm, "[CRTC:%d:%s] early vblank wait timed out\n",
+			 crtc->base.base.id, crtc->base.name);
 }
 
 static const struct intel_plane_state *
diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
index 5cb1adde67b6..7775e657271b 100644
--- a/drivers/gpu/drm/i915/i915_initial_plane.c
+++ b/drivers/gpu/drm/i915/i915_initial_plane.c
@@ -16,11 +16,6 @@
 #include "i915_drv.h"
 #include "i915_initial_plane.h"
 
-static void i915_initial_plane_vblank_wait(struct drm_crtc *crtc)
-{
-	intel_crtc_wait_for_next_vblank(to_intel_crtc(crtc));
-}
-
 static enum intel_memory_type
 initial_plane_memory_type(struct drm_i915_private *i915)
 {
@@ -282,7 +277,6 @@ static void i915_plane_config_fini(struct intel_initial_plane_config *plane_conf
 }
 
 const struct intel_display_initial_plane_interface i915_display_initial_plane_interface = {
-	.vblank_wait = i915_initial_plane_vblank_wait,
 	.alloc_obj = i915_alloc_initial_plane_obj,
 	.setup = i915_initial_plane_setup,
 	.config_fini = i915_plane_config_fini,
diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
index 8f2d0244c03f..37bd15d12169 100644
--- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
+++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
@@ -7,8 +7,6 @@
 
 #include "regs/xe_gtt_defs.h"
 
-#include "intel_crtc.h"
-#include "intel_display_regs.h"
 #include "intel_display_types.h"
 #include "intel_fb.h"
 #include "intel_fb_pin.h"
@@ -19,22 +17,6 @@
 #include "xe_mmio.h"
 #include "xe_vram_types.h"
 
-/* Early xe has no irq */
-static void xe_initial_plane_vblank_wait(struct drm_crtc *_crtc)
-{
-	struct intel_crtc *crtc = to_intel_crtc(_crtc);
-	struct xe_device *xe = to_xe_device(crtc->base.dev);
-	struct xe_reg pipe_frmtmstmp = XE_REG(i915_mmio_reg_offset(PIPE_FRMTMSTMP(crtc->pipe)));
-	u32 timestamp;
-	int ret;
-
-	timestamp = xe_mmio_read32(xe_root_tile_mmio(xe), pipe_frmtmstmp);
-
-	ret = xe_mmio_wait32_not(xe_root_tile_mmio(xe), pipe_frmtmstmp, ~0U, timestamp, 40000U, &timestamp, false);
-	if (ret < 0)
-		drm_warn(&xe->drm, "waiting for early vblank failed with %i\n", ret);
-}
-
 static struct xe_bo *
 initial_plane_bo(struct xe_device *xe,
 		 struct intel_initial_plane_config *plane_config)
@@ -172,7 +154,6 @@ static void xe_plane_config_fini(struct intel_initial_plane_config *plane_config
 }
 
 const struct intel_display_initial_plane_interface xe_display_initial_plane_interface = {
-	.vblank_wait = xe_initial_plane_vblank_wait,
 	.alloc_obj = xe_alloc_initial_plane_obj,
 	.setup = xe_initial_plane_setup,
 	.config_fini = xe_plane_config_fini,
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 9041897c772e..b513e3f9924d 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -8,7 +8,6 @@
 
 enum vlv_iosf_sb_unit;
 struct dma_fence;
-struct drm_crtc;
 struct drm_device;
 struct drm_file;
 struct drm_framebuffer;
@@ -87,7 +86,6 @@ struct intel_display_hdcp_interface {
 };
 
 struct intel_display_initial_plane_interface {
-	void (*vblank_wait)(struct drm_crtc *crtc);
 	struct drm_gem_object *(*alloc_obj)(struct drm_device *drm, struct intel_initial_plane_config *plane_config);
 	int (*setup)(struct drm_plane_state *plane_state, struct intel_initial_plane_config *plane_config,
 		     struct drm_framebuffer *fb, struct i915_vma *vma);
-- 
2.52.0


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

* [PATCH 06/10] drm/i915: Use a 1 second timeout for the polling vblank wait
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (4 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 05/10] drm/i915: Move initial plane vblank wait into display code Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:54   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 07/10] drm/i915: Reject tile4 BIOS FB Ville Syrjala
                   ` (6 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

40 msec seems like a very random number for a vblank wait timeout.
Considering ~24Hz display modes are definitely a thing this seems
way too low. Just bump it to a full second to match what we've been
using for normal vblank waits.

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

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index 74e10d34c63c..4f1591b55752 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -36,7 +36,7 @@ void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
 	start_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe));
 
 	ret = poll_timeout_us(end_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe)),
-			      end_ts != start_ts, 1000, 40 * 1000, false);
+			      end_ts != start_ts, 1000, 1000 * 1000, false);
 	if (ret)
 		drm_warn(display->drm, "[CRTC:%d:%s] early vblank wait timed out\n",
 			 crtc->base.base.id, crtc->base.name);
-- 
2.52.0


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

* [PATCH 07/10] drm/i915: Reject tile4 BIOS FB
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (5 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 06/10] drm/i915: Use a 1 second timeout for the polling vblank wait Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:55   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 08/10] drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions Ville Syrjala
                   ` (5 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

There is no such thing as tile4 fenced region, so there is no
way to have a linear view of the tile4 framebuffer for the CPU.
Thus we should never encounter a tile4 BIOS FB, but if we somehow
do, then reject it.

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

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index 4f1591b55752..5a5adf738d4a 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -81,7 +81,6 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
 	case DRM_FORMAT_MOD_LINEAR:
 	case I915_FORMAT_MOD_X_TILED:
 	case I915_FORMAT_MOD_Y_TILED:
-	case I915_FORMAT_MOD_4_TILED:
 		break;
 	default:
 		drm_dbg_kms(display->drm, "Unsupported modifier for initial FB: 0x%llx\n",
-- 
2.52.0


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

* [PATCH 08/10] drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (6 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 07/10] drm/i915: Reject tile4 BIOS FB Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 15:56   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 09/10] drm/i915: Completely reject DPT BIOS FBs Ville Syrjala
                   ` (4 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

The CPU always needs linear view into the BIOS FB, and for X/Y tiled
buffers that is achieved by the use of a fenced region. If the
underlying driver doesn't support fenced regions then we can't keep
the X/Y tiled BIOS FB. i915 has fenced regions, xe does not.

Probably not a big deal since I don't think we've seen tiled BIOS
FBs outside of some MacBooks. See eg. commit d9a515867bdb
("drm/i915/gen9+: Fix initial readout for Y tiled framebuffers").

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

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index 5a5adf738d4a..55b6cdded126 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -79,9 +79,13 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
 
 	switch (fb->modifier) {
 	case DRM_FORMAT_MOD_LINEAR:
+		break;
 	case I915_FORMAT_MOD_X_TILED:
 	case I915_FORMAT_MOD_Y_TILED:
-		break;
+		/* fenced region needed for linear CPU access to tiled FB */
+		if (intel_parent_has_fenced_regions(display))
+			break;
+		fallthrough;
 	default:
 		drm_dbg_kms(display->drm, "Unsupported modifier for initial FB: 0x%llx\n",
 			    fb->modifier);
-- 
2.52.0


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

* [PATCH 09/10] drm/i915: Completely reject DPT BIOS FBs.
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (7 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 08/10] drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 16:00   ` Jani Nikula
  2026-04-10 15:04 ` [PATCH 10/10] drm/i915: Reject BIOS FB rotation in common code Ville Syrjala
                   ` (3 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

Our BIOS FB handling can't deal with DPT, and instead everything
just assumes a direct GGTT mapping. Reject any BIOS FB using DPT.
Most likely this should never happen anyway.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_initial_plane.c | 9 +++++++++
 drivers/gpu/drm/i915/display/skl_universal_plane.c | 6 ------
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index 55b6cdded126..e3d1b2d1669c 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -92,6 +92,15 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
 		return NULL;
 	}
 
+	/*
+	 * Would need to preserve the DPT, its GGTT
+	 * mapping, and the actual FB memory.
+	 */
+	if (intel_fb_modifier_uses_dpt(display, fb->modifier)) {
+		drm_dbg_kms(display->drm, "DPT not supported for initial FB\n");
+		return NULL;
+	}
+
 	return display->parent->initial_plane->alloc_obj(display->drm, plane_config);
 }
 
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 00c863e378a1..5aef8123d8b8 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -3148,12 +3148,6 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
 
 	fb->format = drm_get_format_info(display->drm, fourcc, fb->modifier);
 
-	if (!display->params.enable_dpt &&
-	    intel_fb_modifier_uses_dpt(display, fb->modifier)) {
-		drm_dbg_kms(display->drm, "DPT disabled, skipping initial FB\n");
-		goto error;
-	}
-
 	/*
 	 * DRM_MODE_ROTATE_ is counter clockwise to stay compatible with Xrandr
 	 * while i915 HW rotation is clockwise, that's why this swapping.
-- 
2.52.0


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

* [PATCH 10/10] drm/i915: Reject BIOS FB rotation in common code
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (8 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 09/10] drm/i915: Completely reject DPT BIOS FBs Ville Syrjala
@ 2026-04-10 15:04 ` Ville Syrjala
  2026-04-10 16:01   ` Jani Nikula
  2026-04-10 15:12 ` ✓ CI.KUnit: success for drm/i915: Some fixes/cleanups to the BIOS FB stuff Patchwork
                   ` (2 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjala @ 2026-04-10 15:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe

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

Reject 90/270 degree rotated BIOS framebuffers in common
code. Currently skl_get_initial_plane_config() already rejects
these, but we may want to implement the missing parts there
so that skl_get_initial_plane_config() could be reused for
general plane state verification purposes.

90/270 degree rotated framebuffers require two completely
separate GGTT mappings (0 degree for the CPU, 270 degree
for the display engine), and the rest of the BIOS FB
takeover code is not prepared for that.

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

diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
index e3d1b2d1669c..0e5cd45f01cc 100644
--- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
@@ -3,6 +3,7 @@
 
 #include <linux/iopoll.h>
 
+#include <drm/drm_blend.h>
 #include <drm/drm_print.h>
 #include <drm/intel/display_parent_interface.h>
 
@@ -101,6 +102,15 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
 		return NULL;
 	}
 
+	/*
+	 * Would need to preserve the 270 degree rotated
+	 * GGTT mapping used by the display hardware.
+	 */
+	if (drm_rotation_90_or_270(plane_config->rotation)) {
+		drm_dbg_kms(display->drm, "90/270 degree rotation not supported for initial FB\n");
+		return NULL;
+	}
+
 	return display->parent->initial_plane->alloc_obj(display->drm, plane_config);
 }
 
-- 
2.52.0


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

* ✓ CI.KUnit: success for drm/i915: Some fixes/cleanups to the BIOS FB stuff
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (9 preceding siblings ...)
  2026-04-10 15:04 ` [PATCH 10/10] drm/i915: Reject BIOS FB rotation in common code Ville Syrjala
@ 2026-04-10 15:12 ` Patchwork
  2026-04-10 16:41 ` ✓ Xe.CI.BAT: " Patchwork
  2026-04-11  3:46 ` ✓ Xe.CI.FULL: " Patchwork
  12 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2026-04-10 15:12 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

== Series Details ==

Series: drm/i915: Some fixes/cleanups to the BIOS FB stuff
URL   : https://patchwork.freedesktop.org/series/164701/
State : success

== Summary ==

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

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

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

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



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

* Re: [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing
  2026-04-10 15:04 ` [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing Ville Syrjala
@ 2026-04-10 15:40   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:40 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The "plane_config" vs. "plane_configs" naming difference is very
> subtle, making it far too easy to use the wrong thing by accident.
> Introduce a separate type for the array, making it impossible to
> pass in the wrong thing. And while at it name the variable
> "all_plane_configs" to help the poor reader make sense of things.
>
> The .config_fini() prototype also mistakenly used the plural
> form despite only taking in a singular plane_config. So fix that
> one up as well.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Nice!

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


> ---
>  .../drm/i915/display/intel_initial_plane.c    | 21 ++++++++++++-------
>  include/drm/intel/display_parent_interface.h  |  2 +-
>  2 files changed, 14 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index ee545c033da6..4f51083dbd11 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -11,6 +11,10 @@
>  #include "intel_initial_plane.h"
>  #include "intel_plane.h"
>  
> +struct intel_initial_plane_configs {
> +	struct intel_initial_plane_config config[I915_MAX_PIPES];
> +};
> +
>  void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
>  {
>  	struct intel_display *display = to_intel_display(crtc);
> @@ -20,7 +24,7 @@ void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
>  
>  static const struct intel_plane_state *
>  intel_reuse_initial_plane_obj(struct intel_crtc *this,
> -			      const struct intel_initial_plane_config plane_configs[])
> +			      const struct intel_initial_plane_configs *all_plane_configs)
>  {
>  	struct intel_display *display = to_intel_display(this);
>  	struct intel_crtc *crtc;
> @@ -39,7 +43,8 @@ intel_reuse_initial_plane_obj(struct intel_crtc *this,
>  		if (!plane_state->ggtt_vma)
>  			continue;
>  
> -		if (plane_configs[this->pipe].base == plane_configs[crtc->pipe].base)
> +		if (all_plane_configs->config[this->pipe].base ==
> +		    all_plane_configs->config[crtc->pipe].base)
>  			return plane_state;
>  	}
>  
> @@ -69,10 +74,10 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
>  
>  static void
>  intel_find_initial_plane_obj(struct intel_crtc *crtc,
> -			     struct intel_initial_plane_config plane_configs[])
> +			     struct intel_initial_plane_configs *all_plane_configs)
>  {
>  	struct intel_display *display = to_intel_display(crtc);
> -	struct intel_initial_plane_config *plane_config = &plane_configs[crtc->pipe];
> +	struct intel_initial_plane_config *plane_config = &all_plane_configs->config[crtc->pipe];
>  	struct intel_plane *plane = to_intel_plane(crtc->base.primary);
>  	struct intel_plane_state *plane_state = to_intel_plane_state(plane->base.state);
>  	struct drm_framebuffer *fb;
> @@ -93,7 +98,7 @@ intel_find_initial_plane_obj(struct intel_crtc *crtc,
>  	} else {
>  		const struct intel_plane_state *other_plane_state;
>  
> -		other_plane_state = intel_reuse_initial_plane_obj(crtc, plane_configs);
> +		other_plane_state = intel_reuse_initial_plane_obj(crtc, all_plane_configs);
>  		if (!other_plane_state)
>  			goto nofb;
>  
> @@ -158,14 +163,14 @@ static void plane_config_fini(struct intel_display *display,
>  
>  void intel_initial_plane_config(struct intel_display *display)
>  {
> -	struct intel_initial_plane_config plane_configs[I915_MAX_PIPES] = {};
> +	struct intel_initial_plane_configs all_plane_configs = {};
>  	struct intel_crtc *crtc;
>  
>  	for_each_intel_crtc(display->drm, crtc) {
>  		const struct intel_crtc_state *crtc_state =
>  			to_intel_crtc_state(crtc->base.state);
>  		struct intel_initial_plane_config *plane_config =
> -			&plane_configs[crtc->pipe];
> +			&all_plane_configs.config[crtc->pipe];
>  
>  		if (!crtc_state->hw.active)
>  			continue;
> @@ -183,7 +188,7 @@ void intel_initial_plane_config(struct intel_display *display)
>  		 * If the fb is shared between multiple heads, we'll
>  		 * just get the first one.
>  		 */
> -		intel_find_initial_plane_obj(crtc, plane_configs);
> +		intel_find_initial_plane_obj(crtc, &all_plane_configs);
>  
>  		if (display->funcs.display->fixup_initial_plane_config(crtc, plane_config))
>  			intel_initial_plane_vblank_wait(crtc);
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index 258e6388ef77..9041897c772e 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -91,7 +91,7 @@ struct intel_display_initial_plane_interface {
>  	struct drm_gem_object *(*alloc_obj)(struct drm_device *drm, struct intel_initial_plane_config *plane_config);
>  	int (*setup)(struct drm_plane_state *plane_state, struct intel_initial_plane_config *plane_config,
>  		     struct drm_framebuffer *fb, struct i915_vma *vma);
> -	void (*config_fini)(struct intel_initial_plane_config *plane_configs);
> +	void (*config_fini)(struct intel_initial_plane_config *plane_config);
>  };
>  
>  struct intel_display_irq_interface {

-- 
Jani Nikula, Intel

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

* Re: [PATCH 02/10] drm/i915: Remove 'mem' and 'phy_base' from struct intel_initial_plane_config
  2026-04-10 15:04 ` [PATCH 02/10] drm/i915: Remove 'mem' and 'phy_base' from struct intel_initial_plane_config Ville Syrjala
@ 2026-04-10 15:43   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:43 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The 'mem' and 'phy_base' members or struct intel_initial_plane_config

*of

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

> only exist to be passed from initial_plane_phys() to its sole caller.
> Just return them via function arguments.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_display_types.h |  2 --
>  drivers/gpu/drm/i915/i915_initial_plane.c          | 13 ++++++-------
>  2 files changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
> index ca2581fb7bbd..eaa37b8d9584 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -756,8 +756,6 @@ struct intel_plane_state {
>  
>  struct intel_initial_plane_config {
>  	struct intel_framebuffer *fb;
> -	struct intel_memory_region *mem;
> -	resource_size_t phys_base;
>  	struct i915_vma *vma;
>  	int size;
>  	u32 base;
> diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
> index c1a12bf6b66c..060aa0388c39 100644
> --- a/drivers/gpu/drm/i915/i915_initial_plane.c
> +++ b/drivers/gpu/drm/i915/i915_initial_plane.c
> @@ -34,7 +34,9 @@ initial_plane_memory_type(struct drm_i915_private *i915)
>  
>  static bool
>  initial_plane_phys(struct drm_i915_private *i915,
> -		   struct intel_initial_plane_config *plane_config)
> +		   struct intel_initial_plane_config *plane_config,
> +		   resource_size_t *out_phys_base,
> +		   struct intel_memory_region **out_mem)
>  {
>  	struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
>  	struct intel_memory_region *mem;
> @@ -77,8 +79,8 @@ initial_plane_phys(struct drm_i915_private *i915,
>  	drm_dbg(&i915->drm, "Using dma_addr=%pa, based on initial plane programming\n",
>  		&dma_addr);
>  
> -	plane_config->phys_base = dma_addr - mem->region.start;
> -	plane_config->mem = mem;
> +	*out_phys_base = dma_addr - mem->region.start;
> +	*out_mem = mem;
>  
>  	return true;
>  }
> @@ -99,12 +101,9 @@ initial_plane_vma(struct drm_i915_private *i915,
>  	if (plane_config->size == 0)
>  		return NULL;
>  
> -	if (!initial_plane_phys(i915, plane_config))
> +	if (!initial_plane_phys(i915, plane_config, &phys_base, &mem))
>  		return NULL;
>  
> -	phys_base = plane_config->phys_base;
> -	mem = plane_config->mem;
> -
>  	base = round_down(plane_config->base, I915_GTT_MIN_ALIGNMENT);
>  	size = round_up(plane_config->base + plane_config->size,
>  			mem->min_page_size);

-- 
Jani Nikula, Intel

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

* Re: [PATCH 03/10] drm/i915: Don't pass the whole plane_config to initial_plane_phys()
  2026-04-10 15:04 ` [PATCH 03/10] drm/i915: Don't pass the whole plane_config to initial_plane_phys() Ville Syrjala
@ 2026-04-10 15:45   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:45 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> initial_plane_phys() only needs the 'base' (== ggtt virtual address)
> from the plane_config. Stop passing the whole plane_config and just
> pass the 'base'.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

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

> ---
>  drivers/gpu/drm/i915/i915_initial_plane.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
> index 060aa0388c39..6df57db9b62a 100644
> --- a/drivers/gpu/drm/i915/i915_initial_plane.c
> +++ b/drivers/gpu/drm/i915/i915_initial_plane.c
> @@ -34,8 +34,7 @@ initial_plane_memory_type(struct drm_i915_private *i915)
>  
>  static bool
>  initial_plane_phys(struct drm_i915_private *i915,
> -		   struct intel_initial_plane_config *plane_config,
> -		   resource_size_t *out_phys_base,
> +		   u32 base, resource_size_t *out_phys_base,
>  		   struct intel_memory_region **out_mem)
>  {
>  	struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
> @@ -43,7 +42,6 @@ initial_plane_phys(struct drm_i915_private *i915,
>  	enum intel_memory_type mem_type;
>  	bool is_present, is_local;
>  	dma_addr_t dma_addr;
> -	u32 base;
>  
>  	mem_type = initial_plane_memory_type(i915);
>  	mem = intel_memory_region_by_type(i915, mem_type);
> @@ -54,7 +52,7 @@ initial_plane_phys(struct drm_i915_private *i915,
>  		return false;
>  	}
>  
> -	base = round_down(plane_config->base, I915_GTT_MIN_ALIGNMENT);
> +	base = round_down(base, I915_GTT_MIN_ALIGNMENT);
>  
>  	dma_addr = intel_ggtt_read_entry(&ggtt->vm, base, &is_present, &is_local);
>  
> @@ -101,7 +99,7 @@ initial_plane_vma(struct drm_i915_private *i915,
>  	if (plane_config->size == 0)
>  		return NULL;
>  
> -	if (!initial_plane_phys(i915, plane_config, &phys_base, &mem))
> +	if (!initial_plane_phys(i915, plane_config->base, &phys_base, &mem))
>  		return NULL;
>  
>  	base = round_down(plane_config->base, I915_GTT_MIN_ALIGNMENT);

-- 
Jani Nikula, Intel

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

* Re: [PATCH 04/10] drm/i915: Make plane_config->fb a struct drm_framebuffer*
  2026-04-10 15:04 ` [PATCH 04/10] drm/i915: Make plane_config->fb a struct drm_framebuffer* Ville Syrjala
@ 2026-04-10 15:48   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:48 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> There's no need to use the intel specific struct intel_framebuffer*
> type in the initial plane_config structure. Just make it a
> struct drm_framebuffer*.

I guess a few words on the "why?" would be nice. I mean they're still
pointers to struct intel_framebuffer objects, and could be
container_of'd back.

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


>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  drivers/gpu/drm/i915/display/i9xx_plane.c          |  2 +-
>  drivers/gpu/drm/i915/display/intel_display_types.h |  2 +-
>  drivers/gpu/drm/i915/display/intel_initial_plane.c | 10 +++++-----
>  drivers/gpu/drm/i915/display/skl_universal_plane.c |  2 +-
>  drivers/gpu/drm/i915/i915_initial_plane.c          |  6 +++---
>  drivers/gpu/drm/xe/display/xe_initial_plane.c      |  2 +-
>  6 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
> index 9c16753a1f3b..70734d32a409 100644
> --- a/drivers/gpu/drm/i915/display/i9xx_plane.c
> +++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
> @@ -1240,7 +1240,7 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
>  		    fb->width, fb->height, fb->format->cpp[0] * 8,
>  		    base, fb->pitches[0], plane_config->size);
>  
> -	plane_config->fb = intel_fb;
> +	plane_config->fb = &intel_fb->base;
>  }
>  
>  bool i9xx_fixup_initial_plane_config(struct intel_crtc *crtc,
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
> index eaa37b8d9584..82c7e03427ff 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -755,7 +755,7 @@ struct intel_plane_state {
>  };
>  
>  struct intel_initial_plane_config {
> -	struct intel_framebuffer *fb;
> +	struct drm_framebuffer *fb;
>  	struct i915_vma *vma;
>  	int size;
>  	u32 base;
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index 4f51083dbd11..911d67dceba9 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -55,9 +55,9 @@ static struct drm_gem_object *
>  intel_alloc_initial_plane_obj(struct intel_display *display,
>  			      struct intel_initial_plane_config *plane_config)
>  {
> -	struct intel_framebuffer *fb = plane_config->fb;
> +	struct drm_framebuffer *fb = plane_config->fb;
>  
> -	switch (fb->base.modifier) {
> +	switch (fb->modifier) {
>  	case DRM_FORMAT_MOD_LINEAR:
>  	case I915_FORMAT_MOD_X_TILED:
>  	case I915_FORMAT_MOD_Y_TILED:
> @@ -65,7 +65,7 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
>  		break;
>  	default:
>  		drm_dbg_kms(display->drm, "Unsupported modifier for initial FB: 0x%llx\n",
> -			    fb->base.modifier);
> +			    fb->modifier);
>  		return NULL;
>  	}
>  
> @@ -93,7 +93,7 @@ intel_find_initial_plane_obj(struct intel_crtc *crtc,
>  		return;
>  
>  	if (intel_alloc_initial_plane_obj(display, plane_config)) {
> -		fb = &plane_config->fb->base;
> +		fb = plane_config->fb;
>  		vma = plane_config->vma;
>  	} else {
>  		const struct intel_plane_state *other_plane_state;
> @@ -149,7 +149,7 @@ static void plane_config_fini(struct intel_display *display,
>  			      struct intel_initial_plane_config *plane_config)
>  {
>  	if (plane_config->fb) {
> -		struct drm_framebuffer *fb = &plane_config->fb->base;
> +		struct drm_framebuffer *fb = plane_config->fb;
>  
>  		/* We may only have the stub and not a full framebuffer */
>  		if (drm_framebuffer_read_refcount(fb))
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 7a9d494334b5..00c863e378a1 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -3206,7 +3206,7 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
>  		    fb->width, fb->height, fb->format->cpp[0] * 8,
>  		    base, fb->pitches[0], plane_config->size);
>  
> -	plane_config->fb = intel_fb;
> +	plane_config->fb = &intel_fb->base;
>  	return;
>  
>  error:
> diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
> index 6df57db9b62a..5cb1adde67b6 100644
> --- a/drivers/gpu/drm/i915/i915_initial_plane.c
> +++ b/drivers/gpu/drm/i915/i915_initial_plane.c
> @@ -137,7 +137,7 @@ initial_plane_vma(struct drm_i915_private *i915,
>  	i915_gem_object_set_cache_coherency(obj, HAS_WT(i915) ?
>  					    I915_CACHE_WT : I915_CACHE_NONE);
>  
> -	tiling = intel_fb_modifier_to_tiling(plane_config->fb->base.modifier);
> +	tiling = intel_fb_modifier_to_tiling(plane_config->fb->modifier);
>  
>  	switch (tiling) {
>  	case I915_TILING_NONE:
> @@ -145,7 +145,7 @@ initial_plane_vma(struct drm_i915_private *i915,
>  	case I915_TILING_X:
>  	case I915_TILING_Y:
>  		obj->tiling_and_stride =
> -			plane_config->fb->base.pitches[0] |
> +			plane_config->fb->pitches[0] |
>  			tiling;
>  		break;
>  	default:
> @@ -223,7 +223,7 @@ i915_alloc_initial_plane_obj(struct drm_device *drm,
>  {
>  	struct drm_i915_private *i915 = to_i915(drm);
>  	struct drm_mode_fb_cmd2 mode_cmd = {};
> -	struct drm_framebuffer *fb = &plane_config->fb->base;
> +	struct drm_framebuffer *fb = plane_config->fb;
>  	struct i915_vma *vma;
>  
>  	vma = initial_plane_vma(i915, plane_config);
> diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
> index 1c7a4e8c390c..8f2d0244c03f 100644
> --- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
> +++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
> @@ -115,7 +115,7 @@ xe_alloc_initial_plane_obj(struct drm_device *drm,
>  {
>  	struct xe_device *xe = to_xe_device(drm);
>  	struct drm_mode_fb_cmd2 mode_cmd = { 0 };
> -	struct drm_framebuffer *fb = &plane_config->fb->base;
> +	struct drm_framebuffer *fb = plane_config->fb;
>  	struct xe_bo *bo;
>  
>  	mode_cmd.pixel_format = fb->format->format;

-- 
Jani Nikula, Intel

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

* Re: [PATCH 05/10] drm/i915: Move initial plane vblank wait into display code
  2026-04-10 15:04 ` [PATCH 05/10] drm/i915: Move initial plane vblank wait into display code Ville Syrjala
@ 2026-04-10 15:53   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:53 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The initial plane vblank wait operates on display registers,
> so it really belongs in the display code proper. Move it there.
>
> We can use intel_parent_irq_enabled() to determine if we can
> rely on interrupts or not.
>
> On average we should end up waiting half a frame here, so the
> polling interval can be fairly long. 1 ms (which actually
> makes poll_timeout_us() use ~250-1000 usec) seems good enough
> to me.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Yes, it's all nicer this way. Just goes on to show how it's sometimes
better to do things one way to get things rolling, and only afterwards
you understand how it should be done.

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

> ---
>  .../drm/i915/display/intel_initial_plane.c    | 22 ++++++++++++++++++-
>  drivers/gpu/drm/i915/i915_initial_plane.c     |  6 -----
>  drivers/gpu/drm/xe/display/xe_initial_plane.c | 19 ----------------
>  include/drm/intel/display_parent_interface.h  |  2 --
>  4 files changed, 21 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index 911d67dceba9..74e10d34c63c 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -1,14 +1,20 @@
>  // SPDX-License-Identifier: MIT
>  /* Copyright © 2025 Intel Corporation */
>  
> +#include <linux/iopoll.h>
> +
>  #include <drm/drm_print.h>
>  #include <drm/intel/display_parent_interface.h>
>  
> +#include "intel_crtc.h"
> +#include "intel_de.h"
>  #include "intel_display_core.h"
> +#include "intel_display_regs.h"
>  #include "intel_display_types.h"
>  #include "intel_fb.h"
>  #include "intel_frontbuffer.h"
>  #include "intel_initial_plane.h"
> +#include "intel_parent.h"
>  #include "intel_plane.h"
>  
>  struct intel_initial_plane_configs {
> @@ -18,8 +24,22 @@ struct intel_initial_plane_configs {
>  void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
>  {
>  	struct intel_display *display = to_intel_display(crtc);
> +	u32 start_ts, end_ts;
> +	int ret;
>  
> -	display->parent->initial_plane->vblank_wait(&crtc->base);
> +	/* xe doesn't have interrupts enabled this early */
> +	if (intel_parent_irq_enabled(display)) {
> +		intel_crtc_wait_for_next_vblank(crtc);
> +		return;
> +	}
> +
> +	start_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe));
> +
> +	ret = poll_timeout_us(end_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe)),
> +			      end_ts != start_ts, 1000, 40 * 1000, false);
> +	if (ret)
> +		drm_warn(display->drm, "[CRTC:%d:%s] early vblank wait timed out\n",
> +			 crtc->base.base.id, crtc->base.name);
>  }
>  
>  static const struct intel_plane_state *
> diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
> index 5cb1adde67b6..7775e657271b 100644
> --- a/drivers/gpu/drm/i915/i915_initial_plane.c
> +++ b/drivers/gpu/drm/i915/i915_initial_plane.c
> @@ -16,11 +16,6 @@
>  #include "i915_drv.h"
>  #include "i915_initial_plane.h"
>  
> -static void i915_initial_plane_vblank_wait(struct drm_crtc *crtc)
> -{
> -	intel_crtc_wait_for_next_vblank(to_intel_crtc(crtc));
> -}
> -
>  static enum intel_memory_type
>  initial_plane_memory_type(struct drm_i915_private *i915)
>  {
> @@ -282,7 +277,6 @@ static void i915_plane_config_fini(struct intel_initial_plane_config *plane_conf
>  }
>  
>  const struct intel_display_initial_plane_interface i915_display_initial_plane_interface = {
> -	.vblank_wait = i915_initial_plane_vblank_wait,
>  	.alloc_obj = i915_alloc_initial_plane_obj,
>  	.setup = i915_initial_plane_setup,
>  	.config_fini = i915_plane_config_fini,
> diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
> index 8f2d0244c03f..37bd15d12169 100644
> --- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
> +++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
> @@ -7,8 +7,6 @@
>  
>  #include "regs/xe_gtt_defs.h"
>  
> -#include "intel_crtc.h"
> -#include "intel_display_regs.h"
>  #include "intel_display_types.h"
>  #include "intel_fb.h"
>  #include "intel_fb_pin.h"
> @@ -19,22 +17,6 @@
>  #include "xe_mmio.h"
>  #include "xe_vram_types.h"
>  
> -/* Early xe has no irq */
> -static void xe_initial_plane_vblank_wait(struct drm_crtc *_crtc)
> -{
> -	struct intel_crtc *crtc = to_intel_crtc(_crtc);
> -	struct xe_device *xe = to_xe_device(crtc->base.dev);
> -	struct xe_reg pipe_frmtmstmp = XE_REG(i915_mmio_reg_offset(PIPE_FRMTMSTMP(crtc->pipe)));
> -	u32 timestamp;
> -	int ret;
> -
> -	timestamp = xe_mmio_read32(xe_root_tile_mmio(xe), pipe_frmtmstmp);
> -
> -	ret = xe_mmio_wait32_not(xe_root_tile_mmio(xe), pipe_frmtmstmp, ~0U, timestamp, 40000U, &timestamp, false);
> -	if (ret < 0)
> -		drm_warn(&xe->drm, "waiting for early vblank failed with %i\n", ret);
> -}
> -
>  static struct xe_bo *
>  initial_plane_bo(struct xe_device *xe,
>  		 struct intel_initial_plane_config *plane_config)
> @@ -172,7 +154,6 @@ static void xe_plane_config_fini(struct intel_initial_plane_config *plane_config
>  }
>  
>  const struct intel_display_initial_plane_interface xe_display_initial_plane_interface = {
> -	.vblank_wait = xe_initial_plane_vblank_wait,
>  	.alloc_obj = xe_alloc_initial_plane_obj,
>  	.setup = xe_initial_plane_setup,
>  	.config_fini = xe_plane_config_fini,
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index 9041897c772e..b513e3f9924d 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -8,7 +8,6 @@
>  
>  enum vlv_iosf_sb_unit;
>  struct dma_fence;
> -struct drm_crtc;
>  struct drm_device;
>  struct drm_file;
>  struct drm_framebuffer;
> @@ -87,7 +86,6 @@ struct intel_display_hdcp_interface {
>  };
>  
>  struct intel_display_initial_plane_interface {
> -	void (*vblank_wait)(struct drm_crtc *crtc);
>  	struct drm_gem_object *(*alloc_obj)(struct drm_device *drm, struct intel_initial_plane_config *plane_config);
>  	int (*setup)(struct drm_plane_state *plane_state, struct intel_initial_plane_config *plane_config,
>  		     struct drm_framebuffer *fb, struct i915_vma *vma);

-- 
Jani Nikula, Intel

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

* Re: [PATCH 06/10] drm/i915: Use a 1 second timeout for the polling vblank wait
  2026-04-10 15:04 ` [PATCH 06/10] drm/i915: Use a 1 second timeout for the polling vblank wait Ville Syrjala
@ 2026-04-10 15:54   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:54 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> 40 msec seems like a very random number for a vblank wait timeout.
> Considering ~24Hz display modes are definitely a thing this seems
> way too low. Just bump it to a full second to match what we've been
> using for normal vblank waits.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_initial_plane.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index 74e10d34c63c..4f1591b55752 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -36,7 +36,7 @@ void intel_initial_plane_vblank_wait(struct intel_crtc *crtc)
>  	start_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe));
>  
>  	ret = poll_timeout_us(end_ts = intel_de_read(display, PIPE_FRMTMSTMP(crtc->pipe)),
> -			      end_ts != start_ts, 1000, 40 * 1000, false);
> +			      end_ts != start_ts, 1000, 1000 * 1000, false);
>  	if (ret)
>  		drm_warn(display->drm, "[CRTC:%d:%s] early vblank wait timed out\n",
>  			 crtc->base.base.id, crtc->base.name);

-- 
Jani Nikula, Intel

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

* Re: [PATCH 07/10] drm/i915: Reject tile4 BIOS FB
  2026-04-10 15:04 ` [PATCH 07/10] drm/i915: Reject tile4 BIOS FB Ville Syrjala
@ 2026-04-10 15:55   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:55 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> There is no such thing as tile4 fenced region, so there is no
> way to have a linear view of the tile4 framebuffer for the CPU.
> Thus we should never encounter a tile4 BIOS FB, but if we somehow
> do, then reject it.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_initial_plane.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index 4f1591b55752..5a5adf738d4a 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -81,7 +81,6 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
>  	case DRM_FORMAT_MOD_LINEAR:
>  	case I915_FORMAT_MOD_X_TILED:
>  	case I915_FORMAT_MOD_Y_TILED:
> -	case I915_FORMAT_MOD_4_TILED:
>  		break;
>  	default:
>  		drm_dbg_kms(display->drm, "Unsupported modifier for initial FB: 0x%llx\n",

-- 
Jani Nikula, Intel

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

* Re: [PATCH 08/10] drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions
  2026-04-10 15:04 ` [PATCH 08/10] drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions Ville Syrjala
@ 2026-04-10 15:56   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 15:56 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The CPU always needs linear view into the BIOS FB, and for X/Y tiled
> buffers that is achieved by the use of a fenced region. If the
> underlying driver doesn't support fenced regions then we can't keep
> the X/Y tiled BIOS FB. i915 has fenced regions, xe does not.
>
> Probably not a big deal since I don't think we've seen tiled BIOS
> FBs outside of some MacBooks. See eg. commit d9a515867bdb
> ("drm/i915/gen9+: Fix initial readout for Y tiled framebuffers").
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

I'll mostly take your word for it.

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

> ---
>  drivers/gpu/drm/i915/display/intel_initial_plane.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index 5a5adf738d4a..55b6cdded126 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -79,9 +79,13 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
>  
>  	switch (fb->modifier) {
>  	case DRM_FORMAT_MOD_LINEAR:
> +		break;
>  	case I915_FORMAT_MOD_X_TILED:
>  	case I915_FORMAT_MOD_Y_TILED:
> -		break;
> +		/* fenced region needed for linear CPU access to tiled FB */
> +		if (intel_parent_has_fenced_regions(display))
> +			break;
> +		fallthrough;
>  	default:
>  		drm_dbg_kms(display->drm, "Unsupported modifier for initial FB: 0x%llx\n",
>  			    fb->modifier);

-- 
Jani Nikula, Intel

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

* Re: [PATCH 09/10] drm/i915: Completely reject DPT BIOS FBs.
  2026-04-10 15:04 ` [PATCH 09/10] drm/i915: Completely reject DPT BIOS FBs Ville Syrjala
@ 2026-04-10 16:00   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 16:00 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Our BIOS FB handling can't deal with DPT, and instead everything
> just assumes a direct GGTT mapping. Reject any BIOS FB using DPT.
> Most likely this should never happen anyway.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Seems cleaner.

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


> ---
>  drivers/gpu/drm/i915/display/intel_initial_plane.c | 9 +++++++++
>  drivers/gpu/drm/i915/display/skl_universal_plane.c | 6 ------
>  2 files changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index 55b6cdded126..e3d1b2d1669c 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -92,6 +92,15 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
>  		return NULL;
>  	}
>  
> +	/*
> +	 * Would need to preserve the DPT, its GGTT
> +	 * mapping, and the actual FB memory.
> +	 */
> +	if (intel_fb_modifier_uses_dpt(display, fb->modifier)) {
> +		drm_dbg_kms(display->drm, "DPT not supported for initial FB\n");
> +		return NULL;
> +	}
> +
>  	return display->parent->initial_plane->alloc_obj(display->drm, plane_config);
>  }
>  
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 00c863e378a1..5aef8123d8b8 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -3148,12 +3148,6 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
>  
>  	fb->format = drm_get_format_info(display->drm, fourcc, fb->modifier);
>  
> -	if (!display->params.enable_dpt &&
> -	    intel_fb_modifier_uses_dpt(display, fb->modifier)) {
> -		drm_dbg_kms(display->drm, "DPT disabled, skipping initial FB\n");
> -		goto error;
> -	}
> -
>  	/*
>  	 * DRM_MODE_ROTATE_ is counter clockwise to stay compatible with Xrandr
>  	 * while i915 HW rotation is clockwise, that's why this swapping.

-- 
Jani Nikula, Intel

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

* Re: [PATCH 10/10] drm/i915: Reject BIOS FB rotation in common code
  2026-04-10 15:04 ` [PATCH 10/10] drm/i915: Reject BIOS FB rotation in common code Ville Syrjala
@ 2026-04-10 16:01   ` Jani Nikula
  0 siblings, 0 replies; 24+ messages in thread
From: Jani Nikula @ 2026-04-10 16:01 UTC (permalink / raw)
  To: Ville Syrjala, intel-gfx; +Cc: intel-xe

On Fri, 10 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Reject 90/270 degree rotated BIOS framebuffers in common
> code. Currently skl_get_initial_plane_config() already rejects
> these, but we may want to implement the missing parts there
> so that skl_get_initial_plane_config() could be reused for
> general plane state verification purposes.
>
> 90/270 degree rotated framebuffers require two completely
> separate GGTT mappings (0 degree for the CPU, 270 degree
> for the display engine), and the rest of the BIOS FB
> takeover code is not prepared for that.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_initial_plane.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_initial_plane.c b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> index e3d1b2d1669c..0e5cd45f01cc 100644
> --- a/drivers/gpu/drm/i915/display/intel_initial_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_initial_plane.c
> @@ -3,6 +3,7 @@
>  
>  #include <linux/iopoll.h>
>  
> +#include <drm/drm_blend.h>
>  #include <drm/drm_print.h>
>  #include <drm/intel/display_parent_interface.h>
>  
> @@ -101,6 +102,15 @@ intel_alloc_initial_plane_obj(struct intel_display *display,
>  		return NULL;
>  	}
>  
> +	/*
> +	 * Would need to preserve the 270 degree rotated
> +	 * GGTT mapping used by the display hardware.
> +	 */
> +	if (drm_rotation_90_or_270(plane_config->rotation)) {
> +		drm_dbg_kms(display->drm, "90/270 degree rotation not supported for initial FB\n");
> +		return NULL;
> +	}
> +
>  	return display->parent->initial_plane->alloc_obj(display->drm, plane_config);
>  }

-- 
Jani Nikula, Intel

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

* ✓ Xe.CI.BAT: success for drm/i915: Some fixes/cleanups to the BIOS FB stuff
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (10 preceding siblings ...)
  2026-04-10 15:12 ` ✓ CI.KUnit: success for drm/i915: Some fixes/cleanups to the BIOS FB stuff Patchwork
@ 2026-04-10 16:41 ` Patchwork
  2026-04-11  3:46 ` ✓ Xe.CI.FULL: " Patchwork
  12 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2026-04-10 16:41 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915: Some fixes/cleanups to the BIOS FB stuff
URL   : https://patchwork.freedesktop.org/series/164701/
State : success

== Summary ==

CI Bug Log - changes from xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5_BAT -> xe-pw-164701v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (14 -> 14)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-164701v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [FAIL][5] ([Intel XE#6520]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-pw-164701v1

  IGT_8853: b52b42b0c987404a8cbf80c77a41e37705e32779 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
  xe-pw-164701v1: 164701v1

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/i915: Some fixes/cleanups to the BIOS FB stuff
  2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
                   ` (11 preceding siblings ...)
  2026-04-10 16:41 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-11  3:46 ` Patchwork
  12 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2026-04-11  3:46 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915: Some fixes/cleanups to the BIOS FB stuff
URL   : https://patchwork.freedesktop.org/series/164701/
State : success

== Summary ==

CI Bug Log - changes from xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5_FULL -> xe-pw-164701v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][2] ([Intel XE#1407])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#1124]) +4 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#1124])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

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

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#3432])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html

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

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#2887]) +3 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2325] / [Intel XE#7358])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#373]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2252]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1424])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_cursor_crc@cursor-random-32x10.html

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

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2321] / [Intel XE#7355])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#309] / [Intel XE#7343])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          NOTRUN -> [FAIL][18] ([Intel XE#7571])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2286] / [Intel XE#6035])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#1508])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#4422] / [Intel XE#7442])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [PASS][22] -> [FAIL][23] ([Intel XE#301])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7349])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2311]) +12 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#6312] / [Intel XE#651])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#656]) +5 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2352] / [Intel XE#7399])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2313]) +12 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#3374] / [Intel XE#3544])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2486])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#7283]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#7283])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#5020] / [Intel XE#7348])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#4608])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#4608] / [Intel XE#7304])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#1489]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@fbc-pr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_psr@fbc-pr-primary-page-flip.html

  * igt@kms_psr@fbc-pr-primary-render:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#1406])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@kms_psr@fbc-pr-primary-render.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-bmg:          [PASS][45] -> [FAIL][46] ([Intel XE#7589])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#6503])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@kms_sharpness_filter@filter-formats.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#1499])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@kms_vrr@flip-basic-fastset.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#6599])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_eudebug@basic-vm-access-userptr-faultable:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#7636]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access-userptr-faultable.html

  * igt@xe_eudebug_online@debugger-reopen:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#7636]) +4 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@xe_eudebug_online@debugger-reopen.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][52] -> [INCOMPLETE][53] ([Intel XE#6321])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-cm-threads-small:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#6540] / [Intel XE#688])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_evict@evict-cm-threads-small.html

  * igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#7482]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#1392])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#7136]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#7136]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#6874]) +13 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#6874]) +4 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic.html

  * igt@xe_exec_system_allocator@many-large-malloc-prefetch:
    - shard-bmg:          [PASS][62] -> [ABORT][63] ([Intel XE#5545] / [Intel XE#6652] / [Intel XE#7200])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-bmg-2/igt@xe_exec_system_allocator@many-large-malloc-prefetch.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-malloc-prefetch.html

  * igt@xe_exec_threads@threads-multi-queue-cm-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#7138]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#7138]) +3 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#6964])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#4733] / [Intel XE#7417])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#4130] / [Intel XE#7366])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-bmg:          [ABORT][70] ([Intel XE#7249] / [Intel XE#7578]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-bmg-6/igt@core_hotunplug@unbind-rebind.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-7/igt@core_hotunplug@unbind-rebind.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][72] ([Intel XE#6321]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][74] ([Intel XE#5625]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create:
    - shard-bmg:          [ABORT][76] ([Intel XE#7578]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5/shard-bmg-5/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164701v1/shard-bmg-9/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200
  [Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
  [Intel XE#7589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7589
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679


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

  * Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-pw-164701v1

  IGT_8853: b52b42b0c987404a8cbf80c77a41e37705e32779 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
  xe-pw-164701v1: 164701v1

== Logs ==

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

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

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

end of thread, other threads:[~2026-04-11  3:46 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-10 15:04 [PATCH 00/10] drm/i915: Some fixes/cleanups to the BIOS FB stuff Ville Syrjala
2026-04-10 15:04 ` [PATCH 01/10] drm/i915: Introduce sanity to the plane_config pointer vs. array thing Ville Syrjala
2026-04-10 15:40   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 02/10] drm/i915: Remove 'mem' and 'phy_base' from struct intel_initial_plane_config Ville Syrjala
2026-04-10 15:43   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 03/10] drm/i915: Don't pass the whole plane_config to initial_plane_phys() Ville Syrjala
2026-04-10 15:45   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 04/10] drm/i915: Make plane_config->fb a struct drm_framebuffer* Ville Syrjala
2026-04-10 15:48   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 05/10] drm/i915: Move initial plane vblank wait into display code Ville Syrjala
2026-04-10 15:53   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 06/10] drm/i915: Use a 1 second timeout for the polling vblank wait Ville Syrjala
2026-04-10 15:54   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 07/10] drm/i915: Reject tile4 BIOS FB Ville Syrjala
2026-04-10 15:55   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 08/10] drm/i915: Reject X/Y tiled BIOS FB if we don't have fenced regions Ville Syrjala
2026-04-10 15:56   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 09/10] drm/i915: Completely reject DPT BIOS FBs Ville Syrjala
2026-04-10 16:00   ` Jani Nikula
2026-04-10 15:04 ` [PATCH 10/10] drm/i915: Reject BIOS FB rotation in common code Ville Syrjala
2026-04-10 16:01   ` Jani Nikula
2026-04-10 15:12 ` ✓ CI.KUnit: success for drm/i915: Some fixes/cleanups to the BIOS FB stuff Patchwork
2026-04-10 16:41 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-11  3:46 ` ✓ Xe.CI.FULL: " Patchwork

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