* [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface
@ 2026-02-06 12:13 Jani Nikula
2026-02-06 12:13 ` [PATCH 01/10] drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c Jani Nikula
` (15 more replies)
0 siblings, 16 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Jani Nikula (10):
drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c
drm/i915/dpt: pass obj, size instead of framebuffer to
intel_dpt_create()
drm/i915/dpt: move create/destroy to parent interface
drm/i915/dpt: move suspend/resume to parent interface
drm/i915/dpt: remove display/intel_dpt.h
drm/i915/dpt: drop _common from the DPT file names
drm/i915/dpt: switch to i915 runtime pm calls
drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix
drm/i915/dpt: rename struct i915_dpt to intel_dpt
drm/i915/dpt: pass opaque struct intel_dpt around instead of
i915_address_space
drivers/gpu/drm/i915/Makefile | 2 +-
drivers/gpu/drm/i915/display/intel_display.c | 1 -
.../drm/i915/display/intel_display_types.h | 2 +-
drivers/gpu/drm/i915/display/intel_dpt.c | 316 +++---------------
drivers/gpu/drm/i915/display/intel_dpt.h | 22 +-
.../gpu/drm/i915/display/intel_dpt_common.c | 35 --
.../gpu/drm/i915/display/intel_dpt_common.h | 13 -
drivers/gpu/drm/i915/display/intel_fb.c | 21 +-
drivers/gpu/drm/i915/display/intel_fb_pin.c | 15 +-
drivers/gpu/drm/i915/display/intel_parent.c | 28 ++
drivers/gpu/drm/i915/display/intel_parent.h | 9 +
.../drm/i915/display/skl_universal_plane.c | 1 -
drivers/gpu/drm/i915/i915_dpt.c | 277 +++++++++++++++
drivers/gpu/drm/i915/i915_dpt.h | 20 ++
drivers/gpu/drm/i915/i915_driver.c | 2 +
drivers/gpu/drm/xe/Makefile | 2 +-
drivers/gpu/drm/xe/display/xe_fb_pin.c | 20 --
include/drm/intel/display_parent_interface.h | 11 +
18 files changed, 419 insertions(+), 378 deletions(-)
delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt_common.c
delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt_common.h
create mode 100644 drivers/gpu/drm/i915/i915_dpt.c
create mode 100644 drivers/gpu/drm/i915/i915_dpt.h
--
2.47.3
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH 01/10] drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 02/10] drm/i915/dpt: pass obj, size instead of framebuffer to intel_dpt_create() Jani Nikula
` (14 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
The DPT implementation is i915 specific. The xe driver has a different
implementation. Move display/intel_dpt.c to i915_dpt.c. Cleanups will
follow.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/Makefile | 2 +-
.../gpu/drm/i915/{display/intel_dpt.c => i915_dpt.c} | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
rename drivers/gpu/drm/i915/{display/intel_dpt.c => i915_dpt.c} (97%)
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 7d726e8c21bf..1d71ecb3ca83 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -77,6 +77,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
# core display adaptation
i915-y += \
i915_display_pc8.o \
+ i915_dpt.o \
i915_dsb_buffer.o \
i915_hdcp_gsc.o \
i915_initial_plane.o \
@@ -270,7 +271,6 @@ i915-y += \
display/intel_dpio_phy.o \
display/intel_dpll.o \
display/intel_dpll_mgr.o \
- display/intel_dpt.o \
display/intel_dpt_common.o \
display/intel_dram.o \
display/intel_drrs.o \
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
similarity index 97%
rename from drivers/gpu/drm/i915/display/intel_dpt.c
rename to drivers/gpu/drm/i915/i915_dpt.c
index 58d953472218..e229c5e26f5f 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -5,17 +5,17 @@
#include <drm/drm_print.h>
+#include "display/intel_display_core.h"
+#include "display/intel_display_rpm.h"
+#include "display/intel_display_types.h"
+#include "display/intel_dpt.h"
+#include "display/intel_fb.h"
#include "gem/i915_gem_domain.h"
#include "gem/i915_gem_internal.h"
#include "gem/i915_gem_lmem.h"
#include "gt/gen8_ppgtt.h"
#include "i915_drv.h"
-#include "intel_display_core.h"
-#include "intel_display_rpm.h"
-#include "intel_display_types.h"
-#include "intel_dpt.h"
-#include "intel_fb.h"
struct i915_dpt {
struct i915_address_space vm;
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 02/10] drm/i915/dpt: pass obj, size instead of framebuffer to intel_dpt_create()
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
2026-02-06 12:13 ` [PATCH 01/10] drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 03/10] drm/i915/dpt: move create/destroy to parent interface Jani Nikula
` (13 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Split the size determination between caller and callee to drop the
dependency on struct intel_framebuffer from DPT code, but avoid adding a
dependency on I915_GTT_PAGE_SIZE in the caller side.
Pass zero size to let intel_dpt_create() handle the regular obj->size
case, but remapped size if fb needs stride remap.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_dpt.h | 5 ++---
drivers/gpu/drm/i915/display/intel_fb.c | 7 ++++++-
drivers/gpu/drm/i915/i915_dpt.c | 8 ++------
drivers/gpu/drm/xe/display/xe_fb_pin.c | 2 +-
4 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.h b/drivers/gpu/drm/i915/display/intel_dpt.h
index db521401b828..79d9bb80941a 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt.h
+++ b/drivers/gpu/drm/i915/display/intel_dpt.h
@@ -8,10 +8,10 @@
#include <linux/types.h>
+struct drm_gem_object;
struct i915_address_space;
struct i915_vma;
struct intel_display;
-struct intel_framebuffer;
void intel_dpt_destroy(struct i915_address_space *vm);
struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
@@ -19,8 +19,7 @@ struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm);
void intel_dpt_suspend(struct intel_display *display);
void intel_dpt_resume(struct intel_display *display);
-struct i915_address_space *
-intel_dpt_create(struct intel_framebuffer *fb);
+struct i915_address_space *intel_dpt_create(struct drm_gem_object *obj, size_t size);
u64 intel_dpt_offset(struct i915_vma *dpt_vma);
#endif /* __INTEL_DPT_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index b9bd9b6dfe94..5ea3ad27153c 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -2304,9 +2304,14 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
goto err_bo_framebuffer_fini;
if (intel_fb_uses_dpt(fb)) {
+ struct drm_gem_object *obj = intel_fb_bo(&intel_fb->base);
struct i915_address_space *vm;
+ size_t size = 0;
- vm = intel_dpt_create(intel_fb);
+ if (intel_fb_needs_pot_stride_remap(intel_fb))
+ size = intel_remapped_info_size(&intel_fb->remapped_view.gtt.remapped);
+
+ vm = intel_dpt_create(obj, size);
if (IS_ERR(vm)) {
drm_dbg_kms(display->drm, "failed to create DPT\n");
ret = PTR_ERR(vm);
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index e229c5e26f5f..c01e5576f09e 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -243,19 +243,15 @@ void intel_dpt_suspend(struct intel_display *display)
}
struct i915_address_space *
-intel_dpt_create(struct intel_framebuffer *fb)
+intel_dpt_create(struct drm_gem_object *obj, size_t size)
{
- struct drm_gem_object *obj = intel_fb_bo(&fb->base);
struct drm_i915_private *i915 = to_i915(obj->dev);
struct drm_i915_gem_object *dpt_obj;
struct i915_address_space *vm;
struct i915_dpt *dpt;
- size_t size;
int ret;
- if (intel_fb_needs_pot_stride_remap(fb))
- size = intel_remapped_info_size(&fb->remapped_view.gtt.remapped);
- else
+ if (!size)
size = DIV_ROUND_UP_ULL(obj->size, I915_GTT_PAGE_SIZE);
size = round_up(size * sizeof(gen8_pte_t), I915_GTT_PAGE_SIZE);
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index d2c4e94180fa..36eb6c0b9d76 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -456,7 +456,7 @@ void intel_plane_unpin_fb(struct intel_plane_state *old_plane_state)
* For Xe introduce dummy intel_dpt_create which just return NULL,
* intel_dpt_destroy which does nothing, and fake intel_dpt_ofsset returning 0;
*/
-struct i915_address_space *intel_dpt_create(struct intel_framebuffer *fb)
+struct i915_address_space *intel_dpt_create(struct drm_gem_object *obj, size_t size)
{
return NULL;
}
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 03/10] drm/i915/dpt: move create/destroy to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
2026-02-06 12:13 ` [PATCH 01/10] drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c Jani Nikula
2026-02-06 12:13 ` [PATCH 02/10] drm/i915/dpt: pass obj, size instead of framebuffer to intel_dpt_create() Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 04/10] drm/i915/dpt: move suspend/resume " Jani Nikula
` (12 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Move the DPT create/destroy calls to the display parent interface.
With this, we can remove the dummy xe implementation.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_dpt.h | 3 ---
drivers/gpu/drm/i915/display/intel_fb.c | 8 ++++----
drivers/gpu/drm/i915/display/intel_parent.c | 17 +++++++++++++++++
drivers/gpu/drm/i915/display/intel_parent.h | 8 ++++++++
drivers/gpu/drm/i915/i915_dpt.c | 11 ++++++++---
drivers/gpu/drm/i915/i915_dpt.h | 9 +++++++++
drivers/gpu/drm/i915/i915_driver.c | 2 ++
drivers/gpu/drm/xe/display/xe_fb_pin.c | 20 --------------------
include/drm/intel/display_parent_interface.h | 9 +++++++++
9 files changed, 57 insertions(+), 30 deletions(-)
create mode 100644 drivers/gpu/drm/i915/i915_dpt.h
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.h b/drivers/gpu/drm/i915/display/intel_dpt.h
index 79d9bb80941a..e05b3a716310 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt.h
+++ b/drivers/gpu/drm/i915/display/intel_dpt.h
@@ -8,18 +8,15 @@
#include <linux/types.h>
-struct drm_gem_object;
struct i915_address_space;
struct i915_vma;
struct intel_display;
-void intel_dpt_destroy(struct i915_address_space *vm);
struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
unsigned int alignment);
void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm);
void intel_dpt_suspend(struct intel_display *display);
void intel_dpt_resume(struct intel_display *display);
-struct i915_address_space *intel_dpt_create(struct drm_gem_object *obj, size_t size);
u64 intel_dpt_offset(struct i915_vma *dpt_vma);
#endif /* __INTEL_DPT_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 5ea3ad27153c..b9f6de894d70 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -16,7 +16,6 @@
#include "intel_display_core.h"
#include "intel_display_types.h"
#include "intel_display_utils.h"
-#include "intel_dpt.h"
#include "intel_fb.h"
#include "intel_fb_bo.h"
#include "intel_frontbuffer.h"
@@ -2104,12 +2103,13 @@ int intel_plane_compute_gtt(struct intel_plane_state *plane_state)
static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
{
+ struct intel_display *display = to_intel_display(fb->dev);
struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
drm_framebuffer_cleanup(fb);
if (intel_fb_uses_dpt(fb))
- intel_dpt_destroy(intel_fb->dpt_vm);
+ intel_parent_dpt_destroy(display, intel_fb->dpt_vm);
intel_fb_bo_framebuffer_fini(intel_fb_bo(fb));
@@ -2311,7 +2311,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
if (intel_fb_needs_pot_stride_remap(intel_fb))
size = intel_remapped_info_size(&intel_fb->remapped_view.gtt.remapped);
- vm = intel_dpt_create(obj, size);
+ vm = intel_parent_dpt_create(display, obj, size);
if (IS_ERR(vm)) {
drm_dbg_kms(display->drm, "failed to create DPT\n");
ret = PTR_ERR(vm);
@@ -2331,7 +2331,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
err_free_dpt:
if (intel_fb_uses_dpt(fb))
- intel_dpt_destroy(intel_fb->dpt_vm);
+ intel_parent_dpt_destroy(display, intel_fb->dpt_vm);
err_bo_framebuffer_fini:
intel_fb_bo_framebuffer_fini(obj);
err_frontbuffer_put:
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index 7f73695a0444..c43e3518a139 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -23,6 +23,23 @@
#include "intel_display_core.h"
#include "intel_parent.h"
+/* dpt */
+struct i915_address_space *intel_parent_dpt_create(struct intel_display *display,
+ struct drm_gem_object *obj,
+ size_t size)
+{
+ if (display->parent->dpt)
+ return display->parent->dpt->create(obj, size);
+
+ return NULL;
+}
+
+void intel_parent_dpt_destroy(struct intel_display *display, struct i915_address_space *vm)
+{
+ if (display->parent->dpt)
+ display->parent->dpt->destroy(vm);
+}
+
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 04782bb26b61..88860e471a0d 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -7,12 +7,20 @@
#include <linux/types.h>
struct dma_fence;
+struct drm_gem_object;
struct drm_scanout_buffer;
+struct i915_address_space;
struct intel_display;
struct intel_hdcp_gsc_context;
struct intel_panic;
struct intel_stolen_node;
+/* dpt */
+struct i915_address_space *intel_parent_dpt_create(struct intel_display *display,
+ struct drm_gem_object *obj,
+ size_t size);
+void intel_parent_dpt_destroy(struct intel_display *display, struct i915_address_space *vm);
+
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index c01e5576f09e..143929a84b62 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -4,6 +4,7 @@
*/
#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
#include "display/intel_display_core.h"
#include "display/intel_display_rpm.h"
@@ -242,8 +243,7 @@ void intel_dpt_suspend(struct intel_display *display)
mutex_unlock(&display->drm->mode_config.fb_lock);
}
-struct i915_address_space *
-intel_dpt_create(struct drm_gem_object *obj, size_t size)
+static struct i915_address_space *i915_dpt_create(struct drm_gem_object *obj, size_t size)
{
struct drm_i915_private *i915 = to_i915(obj->dev);
struct drm_i915_gem_object *dpt_obj;
@@ -308,7 +308,7 @@ intel_dpt_create(struct drm_gem_object *obj, size_t size)
return &dpt->vm;
}
-void intel_dpt_destroy(struct i915_address_space *vm)
+static void i915_dpt_destroy(struct i915_address_space *vm)
{
struct i915_dpt *dpt = i915_vm_to_dpt(vm);
@@ -320,3 +320,8 @@ u64 intel_dpt_offset(struct i915_vma *dpt_vma)
{
return i915_vma_offset(dpt_vma);
}
+
+const struct intel_display_dpt_interface i915_display_dpt_interface = {
+ .create = i915_dpt_create,
+ .destroy = i915_dpt_destroy,
+};
diff --git a/drivers/gpu/drm/i915/i915_dpt.h b/drivers/gpu/drm/i915/i915_dpt.h
new file mode 100644
index 000000000000..494cd4af3bcd
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_dpt.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright 2026 Intel Corporation */
+
+#ifndef __I915_DPT_H__
+#define __I915_DPT_H__
+
+extern const struct intel_display_dpt_interface i915_display_dpt_interface;
+
+#endif /* __I915_DPT_H__ */
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index c01a35ecfa2f..d4f71d02b90e 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -90,6 +90,7 @@
#include "i915_debugfs.h"
#include "i915_display_pc8.h"
+#include "i915_dpt.h"
#include "i915_driver.h"
#include "i915_drm_client.h"
#include "i915_drv.h"
@@ -760,6 +761,7 @@ static bool vgpu_active(struct drm_device *drm)
}
static const struct intel_display_parent_interface parent = {
+ .dpt = &i915_display_dpt_interface,
.dsb = &i915_display_dsb_interface,
.hdcp = &i915_display_hdcp_interface,
.initial_plane = &i915_display_initial_plane_interface,
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 36eb6c0b9d76..4cb37717d3b4 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -8,7 +8,6 @@
#include "i915_vma.h"
#include "intel_display_core.h"
#include "intel_display_types.h"
-#include "intel_dpt.h"
#include "intel_fb.h"
#include "intel_fb_pin.h"
#include "intel_fbdev.h"
@@ -452,25 +451,6 @@ void intel_plane_unpin_fb(struct intel_plane_state *old_plane_state)
old_plane_state->ggtt_vma = NULL;
}
-/*
- * For Xe introduce dummy intel_dpt_create which just return NULL,
- * intel_dpt_destroy which does nothing, and fake intel_dpt_ofsset returning 0;
- */
-struct i915_address_space *intel_dpt_create(struct drm_gem_object *obj, size_t size)
-{
- return NULL;
-}
-
-void intel_dpt_destroy(struct i915_address_space *vm)
-{
- return;
-}
-
-u64 intel_dpt_offset(struct i915_vma *dpt_vma)
-{
- return 0;
-}
-
void intel_fb_get_map(struct i915_vma *vma, struct iosys_map *map)
{
*map = vma->bo->vmap;
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 41f4afe7928c..48abbe187d61 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -13,6 +13,7 @@ struct drm_framebuffer;
struct drm_gem_object;
struct drm_plane_state;
struct drm_scanout_buffer;
+struct i915_address_space;
struct i915_vma;
struct intel_dsb_buffer;
struct intel_hdcp_gsc_context;
@@ -23,6 +24,11 @@ struct ref_tracker;
/* Keep struct definitions sorted */
+struct intel_display_dpt_interface {
+ struct i915_address_space *(*create)(struct drm_gem_object *obj, size_t size);
+ void (*destroy)(struct i915_address_space *vm);
+};
+
struct intel_display_dsb_interface {
u32 (*ggtt_offset)(struct intel_dsb_buffer *dsb_buf);
void (*write)(struct intel_dsb_buffer *dsb_buf, u32 idx, u32 val);
@@ -124,6 +130,9 @@ struct intel_display_stolen_interface {
* check the optional pointers.
*/
struct intel_display_parent_interface {
+ /** @dsb: DPT interface. Optional. */
+ const struct intel_display_dpt_interface *dpt;
+
/** @dsb: DSB buffer interface */
const struct intel_display_dsb_interface *dsb;
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 04/10] drm/i915/dpt: move suspend/resume to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (2 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 03/10] drm/i915/dpt: move create/destroy to parent interface Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 05/10] drm/i915/dpt: remove display/intel_dpt.h Jani Nikula
` (11 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Add per-vm DPT suspend/resume calls to the display parent interface, and
lift the generic code away from i915 specific code.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_dpt.h | 3 -
.../gpu/drm/i915/display/intel_dpt_common.c | 59 +++++++++++++++
.../gpu/drm/i915/display/intel_dpt_common.h | 3 +
drivers/gpu/drm/i915/display/intel_parent.c | 12 ++++
drivers/gpu/drm/i915/display/intel_parent.h | 2 +
drivers/gpu/drm/i915/i915_dpt.c | 72 ++++---------------
drivers/gpu/drm/i915/i915_driver.c | 2 +-
include/drm/intel/display_parent_interface.h | 2 +
8 files changed, 91 insertions(+), 64 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.h b/drivers/gpu/drm/i915/display/intel_dpt.h
index e05b3a716310..0482af43e946 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt.h
+++ b/drivers/gpu/drm/i915/display/intel_dpt.h
@@ -10,13 +10,10 @@
struct i915_address_space;
struct i915_vma;
-struct intel_display;
struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
unsigned int alignment);
void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm);
-void intel_dpt_suspend(struct intel_display *display);
-void intel_dpt_resume(struct intel_display *display);
u64 intel_dpt_offset(struct i915_vma *dpt_vma);
#endif /* __INTEL_DPT_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_dpt_common.c b/drivers/gpu/drm/i915/display/intel_dpt_common.c
index 5eb88d51dba1..6551318b037b 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt_common.c
+++ b/drivers/gpu/drm/i915/display/intel_dpt_common.c
@@ -7,6 +7,7 @@
#include "intel_display_regs.h"
#include "intel_display_types.h"
#include "intel_dpt_common.h"
+#include "intel_parent.h"
#include "skl_universal_plane_regs.h"
void intel_dpt_configure(struct intel_crtc *crtc)
@@ -33,3 +34,61 @@ void intel_dpt_configure(struct intel_crtc *crtc)
CHICKEN_MISC_DISABLE_DPT);
}
}
+
+/**
+ * intel_dpt_suspend - suspend the memory mapping for all DPT FBs during system suspend
+ * @display: display device instance
+ *
+ * Suspend the memory mapping during system suspend for all framebuffers which
+ * are mapped to HW via a GGTT->DPT page table.
+ *
+ * This function must be called before the mappings in GGTT are suspended calling
+ * i915_ggtt_suspend().
+ */
+void intel_dpt_suspend(struct intel_display *display)
+{
+ struct drm_framebuffer *drm_fb;
+
+ if (!HAS_DISPLAY(display))
+ return;
+
+ mutex_lock(&display->drm->mode_config.fb_lock);
+
+ drm_for_each_fb(drm_fb, display->drm) {
+ struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
+
+ if (fb->dpt_vm)
+ intel_parent_dpt_suspend(display, fb->dpt_vm);
+ }
+
+ mutex_unlock(&display->drm->mode_config.fb_lock);
+}
+
+/**
+ * intel_dpt_resume - restore the memory mapping for all DPT FBs during system resume
+ * @display: display device instance
+ *
+ * Restore the memory mapping during system resume for all framebuffers which
+ * are mapped to HW via a GGTT->DPT page table. The content of these page
+ * tables are not stored in the hibernation image during S4 and S3RST->S4
+ * transitions, so here we reprogram the PTE entries in those tables.
+ *
+ * This function must be called after the mappings in GGTT have been restored calling
+ * i915_ggtt_resume().
+ */
+void intel_dpt_resume(struct intel_display *display)
+{
+ struct drm_framebuffer *drm_fb;
+
+ if (!HAS_DISPLAY(display))
+ return;
+
+ mutex_lock(&display->drm->mode_config.fb_lock);
+ drm_for_each_fb(drm_fb, display->drm) {
+ struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
+
+ if (fb->dpt_vm)
+ intel_parent_dpt_resume(display, fb->dpt_vm);
+ }
+ mutex_unlock(&display->drm->mode_config.fb_lock);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_dpt_common.h b/drivers/gpu/drm/i915/display/intel_dpt_common.h
index 6d7de405126a..11bd495693b2 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt_common.h
+++ b/drivers/gpu/drm/i915/display/intel_dpt_common.h
@@ -7,7 +7,10 @@
#define __INTEL_DPT_COMMON_H__
struct intel_crtc;
+struct intel_display;
void intel_dpt_configure(struct intel_crtc *crtc);
+void intel_dpt_suspend(struct intel_display *display);
+void intel_dpt_resume(struct intel_display *display);
#endif /* __INTEL_DPT_COMMON_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index c43e3518a139..a79ea775bde2 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -40,6 +40,18 @@ void intel_parent_dpt_destroy(struct intel_display *display, struct i915_address
display->parent->dpt->destroy(vm);
}
+void intel_parent_dpt_suspend(struct intel_display *display, struct i915_address_space *vm)
+{
+ if (display->parent->dpt)
+ display->parent->dpt->suspend(vm);
+}
+
+void intel_parent_dpt_resume(struct intel_display *display, struct i915_address_space *vm)
+{
+ if (display->parent->dpt)
+ display->parent->dpt->resume(vm);
+}
+
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 88860e471a0d..be577ce10c21 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -20,6 +20,8 @@ struct i915_address_space *intel_parent_dpt_create(struct intel_display *display
struct drm_gem_object *obj,
size_t size);
void intel_parent_dpt_destroy(struct intel_display *display, struct i915_address_space *vm);
+void intel_parent_dpt_suspend(struct intel_display *display, struct i915_address_space *vm);
+void intel_parent_dpt_resume(struct intel_display *display, struct i915_address_space *vm);
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 143929a84b62..28300ef898f6 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -8,9 +8,7 @@
#include "display/intel_display_core.h"
#include "display/intel_display_rpm.h"
-#include "display/intel_display_types.h"
#include "display/intel_dpt.h"
-#include "display/intel_fb.h"
#include "gem/i915_gem_domain.h"
#include "gem/i915_gem_internal.h"
#include "gem/i915_gem_lmem.h"
@@ -185,64 +183,6 @@ void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm)
i915_vma_put(dpt->vma);
}
-/**
- * intel_dpt_resume - restore the memory mapping for all DPT FBs during system resume
- * @display: display device instance
- *
- * Restore the memory mapping during system resume for all framebuffers which
- * are mapped to HW via a GGTT->DPT page table. The content of these page
- * tables are not stored in the hibernation image during S4 and S3RST->S4
- * transitions, so here we reprogram the PTE entries in those tables.
- *
- * This function must be called after the mappings in GGTT have been restored calling
- * i915_ggtt_resume().
- */
-void intel_dpt_resume(struct intel_display *display)
-{
- struct drm_framebuffer *drm_fb;
-
- if (!HAS_DISPLAY(display))
- return;
-
- mutex_lock(&display->drm->mode_config.fb_lock);
- drm_for_each_fb(drm_fb, display->drm) {
- struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
-
- if (fb->dpt_vm)
- i915_ggtt_resume_vm(fb->dpt_vm, true);
- }
- mutex_unlock(&display->drm->mode_config.fb_lock);
-}
-
-/**
- * intel_dpt_suspend - suspend the memory mapping for all DPT FBs during system suspend
- * @display: display device instance
- *
- * Suspend the memory mapping during system suspend for all framebuffers which
- * are mapped to HW via a GGTT->DPT page table.
- *
- * This function must be called before the mappings in GGTT are suspended calling
- * i915_ggtt_suspend().
- */
-void intel_dpt_suspend(struct intel_display *display)
-{
- struct drm_framebuffer *drm_fb;
-
- if (!HAS_DISPLAY(display))
- return;
-
- mutex_lock(&display->drm->mode_config.fb_lock);
-
- drm_for_each_fb(drm_fb, display->drm) {
- struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
-
- if (fb->dpt_vm)
- i915_ggtt_suspend_vm(fb->dpt_vm, true);
- }
-
- mutex_unlock(&display->drm->mode_config.fb_lock);
-}
-
static struct i915_address_space *i915_dpt_create(struct drm_gem_object *obj, size_t size)
{
struct drm_i915_private *i915 = to_i915(obj->dev);
@@ -316,6 +256,16 @@ static void i915_dpt_destroy(struct i915_address_space *vm)
i915_vm_put(&dpt->vm);
}
+static void i915_dpt_suspend(struct i915_address_space *vm)
+{
+ i915_ggtt_suspend_vm(vm, true);
+}
+
+static void i915_dpt_resume(struct i915_address_space *vm)
+{
+ i915_ggtt_resume_vm(vm, true);
+}
+
u64 intel_dpt_offset(struct i915_vma *dpt_vma)
{
return i915_vma_offset(dpt_vma);
@@ -324,4 +274,6 @@ u64 intel_dpt_offset(struct i915_vma *dpt_vma)
const struct intel_display_dpt_interface i915_display_dpt_interface = {
.create = i915_dpt_create,
.destroy = i915_dpt_destroy,
+ .suspend = i915_dpt_suspend,
+ .resume = i915_dpt_resume,
};
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index d4f71d02b90e..e1c73f626b32 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -58,7 +58,7 @@
#include "display/intel_display_power.h"
#include "display/intel_dmc.h"
#include "display/intel_dp.h"
-#include "display/intel_dpt.h"
+#include "display/intel_dpt_common.h"
#include "display/intel_dram.h"
#include "display/intel_encoder.h"
#include "display/intel_fbdev.h"
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 48abbe187d61..2af4d6e99fd0 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -27,6 +27,8 @@ struct ref_tracker;
struct intel_display_dpt_interface {
struct i915_address_space *(*create)(struct drm_gem_object *obj, size_t size);
void (*destroy)(struct i915_address_space *vm);
+ void (*suspend)(struct i915_address_space *vm);
+ void (*resume)(struct i915_address_space *vm);
};
struct intel_display_dsb_interface {
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 05/10] drm/i915/dpt: remove display/intel_dpt.h
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (3 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 04/10] drm/i915/dpt: move suspend/resume " Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 06/10] drm/i915/dpt: drop _common from the DPT file names Jani Nikula
` (10 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
The remaining functions declared in intel_dpt.h are i915 specific, and
so are the users, so we can move them to i915_dpt.h. There are some
useless intel_dpt.h includes around that we can remove.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 1 -
drivers/gpu/drm/i915/display/intel_dpt.h | 19 -------------------
drivers/gpu/drm/i915/display/intel_fb_pin.c | 2 +-
.../drm/i915/display/skl_universal_plane.c | 1 -
drivers/gpu/drm/i915/i915_dpt.c | 2 +-
drivers/gpu/drm/i915/i915_dpt.h | 10 ++++++++++
6 files changed, 12 insertions(+), 23 deletions(-)
delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt.h
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 295f14416be7..6df7593c29d5 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -85,7 +85,6 @@
#include "intel_dp_tunnel.h"
#include "intel_dpll.h"
#include "intel_dpll_mgr.h"
-#include "intel_dpt.h"
#include "intel_dpt_common.h"
#include "intel_drrs.h"
#include "intel_dsb.h"
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.h b/drivers/gpu/drm/i915/display/intel_dpt.h
deleted file mode 100644
index 0482af43e946..000000000000
--- a/drivers/gpu/drm/i915/display/intel_dpt.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* SPDX-License-Identifier: MIT */
-/*
- * Copyright © 2021 Intel Corporation
- */
-
-#ifndef __INTEL_DPT_H__
-#define __INTEL_DPT_H__
-
-#include <linux/types.h>
-
-struct i915_address_space;
-struct i915_vma;
-
-struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
- unsigned int alignment);
-void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm);
-u64 intel_dpt_offset(struct i915_vma *dpt_vma);
-
-#endif /* __INTEL_DPT_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_fb_pin.c b/drivers/gpu/drm/i915/display/intel_fb_pin.c
index 7249b784fbba..5d4ae8be5ca6 100644
--- a/drivers/gpu/drm/i915/display/intel_fb_pin.c
+++ b/drivers/gpu/drm/i915/display/intel_fb_pin.c
@@ -17,7 +17,7 @@
#include "intel_display_core.h"
#include "intel_display_rpm.h"
#include "intel_display_types.h"
-#include "intel_dpt.h"
+#include "i915_dpt.h"
#include "intel_fb.h"
#include "intel_fb_pin.h"
#include "intel_plane.h"
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 746e942cafd2..677f1339b7f8 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -17,7 +17,6 @@
#include "intel_display_regs.h"
#include "intel_display_types.h"
#include "intel_display_utils.h"
-#include "intel_dpt.h"
#include "intel_fb.h"
#include "intel_fbc.h"
#include "intel_frontbuffer.h"
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 28300ef898f6..597890649285 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -8,12 +8,12 @@
#include "display/intel_display_core.h"
#include "display/intel_display_rpm.h"
-#include "display/intel_dpt.h"
#include "gem/i915_gem_domain.h"
#include "gem/i915_gem_internal.h"
#include "gem/i915_gem_lmem.h"
#include "gt/gen8_ppgtt.h"
+#include "i915_dpt.h"
#include "i915_drv.h"
struct i915_dpt {
diff --git a/drivers/gpu/drm/i915/i915_dpt.h b/drivers/gpu/drm/i915/i915_dpt.h
index 494cd4af3bcd..9b765bc8d88b 100644
--- a/drivers/gpu/drm/i915/i915_dpt.h
+++ b/drivers/gpu/drm/i915/i915_dpt.h
@@ -4,6 +4,16 @@
#ifndef __I915_DPT_H__
#define __I915_DPT_H__
+#include <linux/types.h>
+
+struct i915_address_space;
+struct i915_vma;
+
+struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
+ unsigned int alignment);
+void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm);
+u64 intel_dpt_offset(struct i915_vma *dpt_vma);
+
extern const struct intel_display_dpt_interface i915_display_dpt_interface;
#endif /* __I915_DPT_H__ */
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 06/10] drm/i915/dpt: drop _common from the DPT file names
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (4 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 05/10] drm/i915/dpt: remove display/intel_dpt.h Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 07/10] drm/i915/dpt: switch to i915 runtime pm calls Jani Nikula
` (9 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
With the intel_dpt.[ch] file names vacated, and i915 specific code moved
away, we can rename the intel_dpt_common.[ch] files to the simpler name.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/Makefile | 2 +-
drivers/gpu/drm/i915/display/intel_display.c | 2 +-
.../gpu/drm/i915/display/{intel_dpt_common.c => intel_dpt.c} | 2 +-
.../gpu/drm/i915/display/{intel_dpt_common.h => intel_dpt.h} | 0
drivers/gpu/drm/i915/i915_driver.c | 2 +-
drivers/gpu/drm/xe/Makefile | 2 +-
6 files changed, 5 insertions(+), 5 deletions(-)
rename drivers/gpu/drm/i915/display/{intel_dpt_common.c => intel_dpt.c} (98%)
rename drivers/gpu/drm/i915/display/{intel_dpt_common.h => intel_dpt.h} (100%)
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 1d71ecb3ca83..5497249d9e2a 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -271,7 +271,7 @@ i915-y += \
display/intel_dpio_phy.o \
display/intel_dpll.o \
display/intel_dpll_mgr.o \
- display/intel_dpt_common.o \
+ display/intel_dpt.o \
display/intel_dram.o \
display/intel_drrs.o \
display/intel_dsb.o \
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 6df7593c29d5..3a57baee990d 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -85,7 +85,7 @@
#include "intel_dp_tunnel.h"
#include "intel_dpll.h"
#include "intel_dpll_mgr.h"
-#include "intel_dpt_common.h"
+#include "intel_dpt.h"
#include "intel_drrs.h"
#include "intel_dsb.h"
#include "intel_dsi.h"
diff --git a/drivers/gpu/drm/i915/display/intel_dpt_common.c b/drivers/gpu/drm/i915/display/intel_dpt.c
similarity index 98%
rename from drivers/gpu/drm/i915/display/intel_dpt_common.c
rename to drivers/gpu/drm/i915/display/intel_dpt.c
index 6551318b037b..dffd500d378e 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt_common.c
+++ b/drivers/gpu/drm/i915/display/intel_dpt.c
@@ -6,7 +6,7 @@
#include "intel_de.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
-#include "intel_dpt_common.h"
+#include "intel_dpt.h"
#include "intel_parent.h"
#include "skl_universal_plane_regs.h"
diff --git a/drivers/gpu/drm/i915/display/intel_dpt_common.h b/drivers/gpu/drm/i915/display/intel_dpt.h
similarity index 100%
rename from drivers/gpu/drm/i915/display/intel_dpt_common.h
rename to drivers/gpu/drm/i915/display/intel_dpt.h
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index e1c73f626b32..d4f71d02b90e 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -58,7 +58,7 @@
#include "display/intel_display_power.h"
#include "display/intel_dmc.h"
#include "display/intel_dp.h"
-#include "display/intel_dpt_common.h"
+#include "display/intel_dpt.h"
#include "display/intel_dram.h"
#include "display/intel_encoder.h"
#include "display/intel_fbdev.h"
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 41ec698b3cc1..8fc0c3678944 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -275,7 +275,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
i915-display/intel_dp_test.o \
i915-display/intel_dpll.o \
i915-display/intel_dpll_mgr.o \
- i915-display/intel_dpt_common.o \
+ i915-display/intel_dpt.o \
i915-display/intel_dram.o \
i915-display/intel_drrs.o \
i915-display/intel_dsb.o \
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 07/10] drm/i915/dpt: switch to i915 runtime pm calls
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (5 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 06/10] drm/i915/dpt: drop _common from the DPT file names Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 08/10] drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix Jani Nikula
` (8 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
The i915 specific code doesn't need to, and should not, call the display
runtime pm functions. Just call the i915 functions directly.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/i915_dpt.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 597890649285..5669cefd0fe7 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -7,7 +7,6 @@
#include <drm/intel/display_parent_interface.h>
#include "display/intel_display_core.h"
-#include "display/intel_display_rpm.h"
#include "gem/i915_gem_domain.h"
#include "gem/i915_gem_internal.h"
#include "gem/i915_gem_lmem.h"
@@ -138,7 +137,7 @@ struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
if (i915_gem_object_is_stolen(dpt->obj))
pin_flags |= PIN_MAPPABLE;
- wakeref = intel_display_rpm_get(display);
+ wakeref = intel_runtime_pm_get(&i915->runtime_pm);
atomic_inc(&display->restore.pending_fb_pin);
for_i915_gem_ww(&ww, err, true) {
@@ -170,7 +169,7 @@ struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
dpt->obj->mm.dirty = true;
atomic_dec(&display->restore.pending_fb_pin);
- intel_display_rpm_put(display, wakeref);
+ intel_runtime_pm_put(&i915->runtime_pm, wakeref);
return err ? ERR_PTR(err) : vma;
}
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 08/10] drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (6 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 07/10] drm/i915/dpt: switch to i915 runtime pm calls Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 09/10] drm/i915/dpt: rename struct i915_dpt to intel_dpt Jani Nikula
` (7 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Follow the common convention of naming functions by file name, in this
case also clarifying which functions are i915 specific.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fb_pin.c | 8 ++++----
drivers/gpu/drm/i915/i915_dpt.c | 7 +++----
drivers/gpu/drm/i915/i915_dpt.h | 7 +++----
3 files changed, 10 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fb_pin.c b/drivers/gpu/drm/i915/display/intel_fb_pin.c
index 5d4ae8be5ca6..d2e4200f2cef 100644
--- a/drivers/gpu/drm/i915/display/intel_fb_pin.c
+++ b/drivers/gpu/drm/i915/display/intel_fb_pin.c
@@ -284,7 +284,7 @@ int intel_plane_pin_fb(struct intel_plane_state *plane_state,
} else {
unsigned int alignment = intel_plane_fb_min_alignment(plane_state);
- vma = intel_dpt_pin_to_ggtt(fb->dpt_vm, alignment / 512);
+ vma = i915_dpt_pin_to_ggtt(fb->dpt_vm, alignment / 512);
if (IS_ERR(vma))
return PTR_ERR(vma);
@@ -294,7 +294,7 @@ int intel_plane_pin_fb(struct intel_plane_state *plane_state,
alignment, &plane_state->flags,
fb->dpt_vm);
if (IS_ERR(vma)) {
- intel_dpt_unpin_from_ggtt(fb->dpt_vm);
+ i915_dpt_unpin_from_ggtt(fb->dpt_vm);
plane_state->ggtt_vma = NULL;
return PTR_ERR(vma);
}
@@ -307,7 +307,7 @@ int intel_plane_pin_fb(struct intel_plane_state *plane_state,
* The DPT object contains only one vma, and there is no VT-d
* guard, so the VMA's offset within the DPT is always 0.
*/
- drm_WARN_ON(display->drm, intel_dpt_offset(plane_state->dpt_vma));
+ drm_WARN_ON(display->drm, i915_dpt_offset(plane_state->dpt_vma));
}
/*
@@ -346,7 +346,7 @@ void intel_plane_unpin_fb(struct intel_plane_state *old_plane_state)
vma = fetch_and_zero(&old_plane_state->ggtt_vma);
if (vma)
- intel_dpt_unpin_from_ggtt(fb->dpt_vm);
+ i915_dpt_unpin_from_ggtt(fb->dpt_vm);
}
}
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 5669cefd0fe7..916b91be8f5d 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -121,8 +121,7 @@ static void dpt_cleanup(struct i915_address_space *vm)
i915_gem_object_put(dpt->obj);
}
-struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
- unsigned int alignment)
+struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned int alignment)
{
struct drm_i915_private *i915 = vm->i915;
struct intel_display *display = i915->display;
@@ -174,7 +173,7 @@ struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
return err ? ERR_PTR(err) : vma;
}
-void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm)
+void i915_dpt_unpin_from_ggtt(struct i915_address_space *vm)
{
struct i915_dpt *dpt = i915_vm_to_dpt(vm);
@@ -265,7 +264,7 @@ static void i915_dpt_resume(struct i915_address_space *vm)
i915_ggtt_resume_vm(vm, true);
}
-u64 intel_dpt_offset(struct i915_vma *dpt_vma)
+u64 i915_dpt_offset(struct i915_vma *dpt_vma)
{
return i915_vma_offset(dpt_vma);
}
diff --git a/drivers/gpu/drm/i915/i915_dpt.h b/drivers/gpu/drm/i915/i915_dpt.h
index 9b765bc8d88b..3b76e9760600 100644
--- a/drivers/gpu/drm/i915/i915_dpt.h
+++ b/drivers/gpu/drm/i915/i915_dpt.h
@@ -9,10 +9,9 @@
struct i915_address_space;
struct i915_vma;
-struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
- unsigned int alignment);
-void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm);
-u64 intel_dpt_offset(struct i915_vma *dpt_vma);
+struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned int alignment);
+void i915_dpt_unpin_from_ggtt(struct i915_address_space *vm);
+u64 i915_dpt_offset(struct i915_vma *dpt_vma);
extern const struct intel_display_dpt_interface i915_display_dpt_interface;
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 09/10] drm/i915/dpt: rename struct i915_dpt to intel_dpt
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (7 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 08/10] drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:13 ` [PATCH 10/10] drm/i915/dpt: pass opaque struct intel_dpt around instead of i915_address_space Jani Nikula
` (6 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Rename struct i915_dpt to intel_dpt. This may seem rather inconsistent
considering we just renamed the functions the other way round, but the
intent here is to lift struct intel_dpt to the display parent interface
as the generic opaque type for DPT instead of the very specific struct
i915_address_space.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/i915_dpt.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 916b91be8f5d..4fff6ecb5ede 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -15,7 +15,7 @@
#include "i915_dpt.h"
#include "i915_drv.h"
-struct i915_dpt {
+struct intel_dpt {
struct i915_address_space vm;
struct drm_i915_gem_object *obj;
@@ -25,12 +25,12 @@ struct i915_dpt {
#define i915_is_dpt(vm) ((vm)->is_dpt)
-static inline struct i915_dpt *
+static inline struct intel_dpt *
i915_vm_to_dpt(struct i915_address_space *vm)
{
- BUILD_BUG_ON(offsetof(struct i915_dpt, vm));
+ BUILD_BUG_ON(offsetof(struct intel_dpt, vm));
drm_WARN_ON(&vm->i915->drm, !i915_is_dpt(vm));
- return container_of(vm, struct i915_dpt, vm);
+ return container_of(vm, struct intel_dpt, vm);
}
static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
@@ -44,7 +44,7 @@ static void dpt_insert_page(struct i915_address_space *vm,
unsigned int pat_index,
u32 flags)
{
- struct i915_dpt *dpt = i915_vm_to_dpt(vm);
+ struct intel_dpt *dpt = i915_vm_to_dpt(vm);
gen8_pte_t __iomem *base = dpt->iomem;
gen8_set_pte(base + offset / I915_GTT_PAGE_SIZE,
@@ -56,7 +56,7 @@ static void dpt_insert_entries(struct i915_address_space *vm,
unsigned int pat_index,
u32 flags)
{
- struct i915_dpt *dpt = i915_vm_to_dpt(vm);
+ struct intel_dpt *dpt = i915_vm_to_dpt(vm);
gen8_pte_t __iomem *base = dpt->iomem;
const gen8_pte_t pte_encode = vm->pte_encode(0, pat_index, flags);
struct sgt_iter sgt_iter;
@@ -116,7 +116,7 @@ static void dpt_unbind_vma(struct i915_address_space *vm,
static void dpt_cleanup(struct i915_address_space *vm)
{
- struct i915_dpt *dpt = i915_vm_to_dpt(vm);
+ struct intel_dpt *dpt = i915_vm_to_dpt(vm);
i915_gem_object_put(dpt->obj);
}
@@ -125,7 +125,7 @@ struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned in
{
struct drm_i915_private *i915 = vm->i915;
struct intel_display *display = i915->display;
- struct i915_dpt *dpt = i915_vm_to_dpt(vm);
+ struct intel_dpt *dpt = i915_vm_to_dpt(vm);
struct ref_tracker *wakeref;
struct i915_vma *vma;
void __iomem *iomem;
@@ -175,7 +175,7 @@ struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned in
void i915_dpt_unpin_from_ggtt(struct i915_address_space *vm)
{
- struct i915_dpt *dpt = i915_vm_to_dpt(vm);
+ struct intel_dpt *dpt = i915_vm_to_dpt(vm);
i915_vma_unpin_iomap(dpt->vma);
i915_vma_put(dpt->vma);
@@ -186,7 +186,7 @@ static struct i915_address_space *i915_dpt_create(struct drm_gem_object *obj, si
struct drm_i915_private *i915 = to_i915(obj->dev);
struct drm_i915_gem_object *dpt_obj;
struct i915_address_space *vm;
- struct i915_dpt *dpt;
+ struct intel_dpt *dpt;
int ret;
if (!size)
@@ -248,7 +248,7 @@ static struct i915_address_space *i915_dpt_create(struct drm_gem_object *obj, si
static void i915_dpt_destroy(struct i915_address_space *vm)
{
- struct i915_dpt *dpt = i915_vm_to_dpt(vm);
+ struct intel_dpt *dpt = i915_vm_to_dpt(vm);
dpt->obj->is_dpt = false;
i915_vm_put(&dpt->vm);
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 10/10] drm/i915/dpt: pass opaque struct intel_dpt around instead of i915_address_space
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (8 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 09/10] drm/i915/dpt: rename struct i915_dpt to intel_dpt Jani Nikula
@ 2026-02-06 12:13 ` Jani Nikula
2026-02-06 12:21 ` ✗ CI.checkpatch: warning for drm/i915/dpt: refactoring, move to parent interface Patchwork
` (5 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-06 12:13 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
struct i915_address_space is used in an opaque fashion in the display
parent interface, but it's just one include away from being
non-opaque. And anyway the name is rather specific.
Switch to using the struct intel_dpt instead, which embeds struct
i915_address_space anyway. With the definition hidden in i915_dpt.c,
this can't be accidentally made non-opaque, and the type seems rather
more generic anyway.
We do have to add a new helper i915_dpt_to_vm(), as there's one case in
intel_fb_pin_to_dpt() that requires direct access to struct
i915_address_space. But this just underlines the point about opacity.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_types.h | 2 +-
drivers/gpu/drm/i915/display/intel_dpt.c | 8 ++---
drivers/gpu/drm/i915/display/intel_fb.c | 14 ++++-----
drivers/gpu/drm/i915/display/intel_fb_pin.c | 11 +++----
drivers/gpu/drm/i915/display/intel_parent.c | 17 +++++------
drivers/gpu/drm/i915/display/intel_parent.h | 13 ++++----
drivers/gpu/drm/i915/i915_dpt.c | 30 +++++++++----------
drivers/gpu/drm/i915/i915_dpt.h | 6 ++--
include/drm/intel/display_parent_interface.h | 10 +++----
9 files changed, 56 insertions(+), 55 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index e6298279dc89..679b8c3c59f1 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -145,7 +145,7 @@ struct intel_framebuffer {
struct intel_fb_view remapped_view;
};
- struct i915_address_space *dpt_vm;
+ struct intel_dpt *dpt;
unsigned int min_alignment;
unsigned int vtd_guard;
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/display/intel_dpt.c
index dffd500d378e..145dc9511116 100644
--- a/drivers/gpu/drm/i915/display/intel_dpt.c
+++ b/drivers/gpu/drm/i915/display/intel_dpt.c
@@ -57,8 +57,8 @@ void intel_dpt_suspend(struct intel_display *display)
drm_for_each_fb(drm_fb, display->drm) {
struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
- if (fb->dpt_vm)
- intel_parent_dpt_suspend(display, fb->dpt_vm);
+ if (fb->dpt)
+ intel_parent_dpt_suspend(display, fb->dpt);
}
mutex_unlock(&display->drm->mode_config.fb_lock);
@@ -87,8 +87,8 @@ void intel_dpt_resume(struct intel_display *display)
drm_for_each_fb(drm_fb, display->drm) {
struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
- if (fb->dpt_vm)
- intel_parent_dpt_resume(display, fb->dpt_vm);
+ if (fb->dpt)
+ intel_parent_dpt_resume(display, fb->dpt);
}
mutex_unlock(&display->drm->mode_config.fb_lock);
}
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index b9f6de894d70..79091095b31b 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -2109,7 +2109,7 @@ static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
drm_framebuffer_cleanup(fb);
if (intel_fb_uses_dpt(fb))
- intel_parent_dpt_destroy(display, intel_fb->dpt_vm);
+ intel_parent_dpt_destroy(display, intel_fb->dpt);
intel_fb_bo_framebuffer_fini(intel_fb_bo(fb));
@@ -2305,20 +2305,20 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
if (intel_fb_uses_dpt(fb)) {
struct drm_gem_object *obj = intel_fb_bo(&intel_fb->base);
- struct i915_address_space *vm;
+ struct intel_dpt *dpt;
size_t size = 0;
if (intel_fb_needs_pot_stride_remap(intel_fb))
size = intel_remapped_info_size(&intel_fb->remapped_view.gtt.remapped);
- vm = intel_parent_dpt_create(display, obj, size);
- if (IS_ERR(vm)) {
+ dpt = intel_parent_dpt_create(display, obj, size);
+ if (IS_ERR(dpt)) {
drm_dbg_kms(display->drm, "failed to create DPT\n");
- ret = PTR_ERR(vm);
+ ret = PTR_ERR(dpt);
goto err_frontbuffer_put;
}
- intel_fb->dpt_vm = vm;
+ intel_fb->dpt = dpt;
}
ret = drm_framebuffer_init(display->drm, fb, &intel_fb_funcs);
@@ -2331,7 +2331,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
err_free_dpt:
if (intel_fb_uses_dpt(fb))
- intel_parent_dpt_destroy(display, intel_fb->dpt_vm);
+ intel_parent_dpt_destroy(display, intel_fb->dpt);
err_bo_framebuffer_fini:
intel_fb_bo_framebuffer_fini(obj);
err_frontbuffer_put:
diff --git a/drivers/gpu/drm/i915/display/intel_fb_pin.c b/drivers/gpu/drm/i915/display/intel_fb_pin.c
index d2e4200f2cef..738d77a1468a 100644
--- a/drivers/gpu/drm/i915/display/intel_fb_pin.c
+++ b/drivers/gpu/drm/i915/display/intel_fb_pin.c
@@ -27,13 +27,14 @@ intel_fb_pin_to_dpt(const struct drm_framebuffer *fb,
const struct i915_gtt_view *view,
unsigned int alignment,
unsigned long *out_flags,
- struct i915_address_space *vm)
+ struct intel_dpt *dpt)
{
struct drm_device *dev = fb->dev;
struct intel_display *display = to_intel_display(dev);
struct drm_i915_private *dev_priv = to_i915(dev);
struct drm_gem_object *_obj = intel_fb_bo(fb);
struct drm_i915_gem_object *obj = to_intel_bo(_obj);
+ struct i915_address_space *vm = i915_dpt_to_vm(dpt);
struct i915_gem_ww_ctx ww;
struct i915_vma *vma;
int ret;
@@ -284,7 +285,7 @@ int intel_plane_pin_fb(struct intel_plane_state *plane_state,
} else {
unsigned int alignment = intel_plane_fb_min_alignment(plane_state);
- vma = i915_dpt_pin_to_ggtt(fb->dpt_vm, alignment / 512);
+ vma = i915_dpt_pin_to_ggtt(fb->dpt, alignment / 512);
if (IS_ERR(vma))
return PTR_ERR(vma);
@@ -292,9 +293,9 @@ int intel_plane_pin_fb(struct intel_plane_state *plane_state,
vma = intel_fb_pin_to_dpt(&fb->base, &plane_state->view.gtt,
alignment, &plane_state->flags,
- fb->dpt_vm);
+ fb->dpt);
if (IS_ERR(vma)) {
- i915_dpt_unpin_from_ggtt(fb->dpt_vm);
+ i915_dpt_unpin_from_ggtt(fb->dpt);
plane_state->ggtt_vma = NULL;
return PTR_ERR(vma);
}
@@ -346,7 +347,7 @@ void intel_plane_unpin_fb(struct intel_plane_state *old_plane_state)
vma = fetch_and_zero(&old_plane_state->ggtt_vma);
if (vma)
- i915_dpt_unpin_from_ggtt(fb->dpt_vm);
+ i915_dpt_unpin_from_ggtt(fb->dpt);
}
}
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index a79ea775bde2..7044632ef3fc 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -24,9 +24,8 @@
#include "intel_parent.h"
/* dpt */
-struct i915_address_space *intel_parent_dpt_create(struct intel_display *display,
- struct drm_gem_object *obj,
- size_t size)
+struct intel_dpt *intel_parent_dpt_create(struct intel_display *display,
+ struct drm_gem_object *obj, size_t size)
{
if (display->parent->dpt)
return display->parent->dpt->create(obj, size);
@@ -34,22 +33,22 @@ struct i915_address_space *intel_parent_dpt_create(struct intel_display *display
return NULL;
}
-void intel_parent_dpt_destroy(struct intel_display *display, struct i915_address_space *vm)
+void intel_parent_dpt_destroy(struct intel_display *display, struct intel_dpt *dpt)
{
if (display->parent->dpt)
- display->parent->dpt->destroy(vm);
+ display->parent->dpt->destroy(dpt);
}
-void intel_parent_dpt_suspend(struct intel_display *display, struct i915_address_space *vm)
+void intel_parent_dpt_suspend(struct intel_display *display, struct intel_dpt *dpt)
{
if (display->parent->dpt)
- display->parent->dpt->suspend(vm);
+ display->parent->dpt->suspend(dpt);
}
-void intel_parent_dpt_resume(struct intel_display *display, struct i915_address_space *vm)
+void intel_parent_dpt_resume(struct intel_display *display, struct intel_dpt *dpt)
{
if (display->parent->dpt)
- display->parent->dpt->resume(vm);
+ display->parent->dpt->resume(dpt);
}
/* hdcp */
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index be577ce10c21..002234e81ce6 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -9,19 +9,18 @@
struct dma_fence;
struct drm_gem_object;
struct drm_scanout_buffer;
-struct i915_address_space;
struct intel_display;
+struct intel_dpt;
struct intel_hdcp_gsc_context;
struct intel_panic;
struct intel_stolen_node;
/* dpt */
-struct i915_address_space *intel_parent_dpt_create(struct intel_display *display,
- struct drm_gem_object *obj,
- size_t size);
-void intel_parent_dpt_destroy(struct intel_display *display, struct i915_address_space *vm);
-void intel_parent_dpt_suspend(struct intel_display *display, struct i915_address_space *vm);
-void intel_parent_dpt_resume(struct intel_display *display, struct i915_address_space *vm);
+struct intel_dpt *intel_parent_dpt_create(struct intel_display *display,
+ struct drm_gem_object *obj, size_t size);
+void intel_parent_dpt_destroy(struct intel_display *display, struct intel_dpt *dpt);
+void intel_parent_dpt_suspend(struct intel_display *display, struct intel_dpt *dpt);
+void intel_parent_dpt_resume(struct intel_display *display, struct intel_dpt *dpt);
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 4fff6ecb5ede..d86c68589c01 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -33,6 +33,11 @@ i915_vm_to_dpt(struct i915_address_space *vm)
return container_of(vm, struct intel_dpt, vm);
}
+struct i915_address_space *i915_dpt_to_vm(struct intel_dpt *dpt)
+{
+ return &dpt->vm;
+}
+
static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
{
writeq(pte, addr);
@@ -121,11 +126,10 @@ static void dpt_cleanup(struct i915_address_space *vm)
i915_gem_object_put(dpt->obj);
}
-struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned int alignment)
+struct i915_vma *i915_dpt_pin_to_ggtt(struct intel_dpt *dpt, unsigned int alignment)
{
- struct drm_i915_private *i915 = vm->i915;
+ struct drm_i915_private *i915 = dpt->vm.i915;
struct intel_display *display = i915->display;
- struct intel_dpt *dpt = i915_vm_to_dpt(vm);
struct ref_tracker *wakeref;
struct i915_vma *vma;
void __iomem *iomem;
@@ -173,15 +177,13 @@ struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned in
return err ? ERR_PTR(err) : vma;
}
-void i915_dpt_unpin_from_ggtt(struct i915_address_space *vm)
+void i915_dpt_unpin_from_ggtt(struct intel_dpt *dpt)
{
- struct intel_dpt *dpt = i915_vm_to_dpt(vm);
-
i915_vma_unpin_iomap(dpt->vma);
i915_vma_put(dpt->vma);
}
-static struct i915_address_space *i915_dpt_create(struct drm_gem_object *obj, size_t size)
+static struct intel_dpt *i915_dpt_create(struct drm_gem_object *obj, size_t size)
{
struct drm_i915_private *i915 = to_i915(obj->dev);
struct drm_i915_gem_object *dpt_obj;
@@ -243,25 +245,23 @@ static struct i915_address_space *i915_dpt_create(struct drm_gem_object *obj, si
dpt->obj = dpt_obj;
dpt->obj->is_dpt = true;
- return &dpt->vm;
+ return dpt;
}
-static void i915_dpt_destroy(struct i915_address_space *vm)
+static void i915_dpt_destroy(struct intel_dpt *dpt)
{
- struct intel_dpt *dpt = i915_vm_to_dpt(vm);
-
dpt->obj->is_dpt = false;
i915_vm_put(&dpt->vm);
}
-static void i915_dpt_suspend(struct i915_address_space *vm)
+static void i915_dpt_suspend(struct intel_dpt *dpt)
{
- i915_ggtt_suspend_vm(vm, true);
+ i915_ggtt_suspend_vm(&dpt->vm, true);
}
-static void i915_dpt_resume(struct i915_address_space *vm)
+static void i915_dpt_resume(struct intel_dpt *dpt)
{
- i915_ggtt_resume_vm(vm, true);
+ i915_ggtt_resume_vm(&dpt->vm, true);
}
u64 i915_dpt_offset(struct i915_vma *dpt_vma)
diff --git a/drivers/gpu/drm/i915/i915_dpt.h b/drivers/gpu/drm/i915/i915_dpt.h
index 3b76e9760600..08dbe444fe18 100644
--- a/drivers/gpu/drm/i915/i915_dpt.h
+++ b/drivers/gpu/drm/i915/i915_dpt.h
@@ -8,9 +8,11 @@
struct i915_address_space;
struct i915_vma;
+struct intel_dpt;
-struct i915_vma *i915_dpt_pin_to_ggtt(struct i915_address_space *vm, unsigned int alignment);
-void i915_dpt_unpin_from_ggtt(struct i915_address_space *vm);
+struct i915_address_space *i915_dpt_to_vm(struct intel_dpt *dpt);
+struct i915_vma *i915_dpt_pin_to_ggtt(struct intel_dpt *dpt, unsigned int alignment);
+void i915_dpt_unpin_from_ggtt(struct intel_dpt *dpt);
u64 i915_dpt_offset(struct i915_vma *dpt_vma);
extern const struct intel_display_dpt_interface i915_display_dpt_interface;
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 2af4d6e99fd0..50da825ec06c 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -13,8 +13,8 @@ struct drm_framebuffer;
struct drm_gem_object;
struct drm_plane_state;
struct drm_scanout_buffer;
-struct i915_address_space;
struct i915_vma;
+struct intel_dpt;
struct intel_dsb_buffer;
struct intel_hdcp_gsc_context;
struct intel_initial_plane_config;
@@ -25,10 +25,10 @@ struct ref_tracker;
/* Keep struct definitions sorted */
struct intel_display_dpt_interface {
- struct i915_address_space *(*create)(struct drm_gem_object *obj, size_t size);
- void (*destroy)(struct i915_address_space *vm);
- void (*suspend)(struct i915_address_space *vm);
- void (*resume)(struct i915_address_space *vm);
+ struct intel_dpt *(*create)(struct drm_gem_object *obj, size_t size);
+ void (*destroy)(struct intel_dpt *dpt);
+ void (*suspend)(struct intel_dpt *dpt);
+ void (*resume)(struct intel_dpt *dpt);
};
struct intel_display_dsb_interface {
--
2.47.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/dpt: refactoring, move to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (9 preceding siblings ...)
2026-02-06 12:13 ` [PATCH 10/10] drm/i915/dpt: pass opaque struct intel_dpt around instead of i915_address_space Jani Nikula
@ 2026-02-06 12:21 ` Patchwork
2026-02-06 12:22 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-06 12:21 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/dpt: refactoring, move to parent interface
URL : https://patchwork.freedesktop.org/series/161269/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 295df1b9a9b2fbe37e7be3319a681e3431b59acf
Author: Jani Nikula <jani.nikula@intel.com>
Date: Fri Feb 6 14:13:31 2026 +0200
drm/i915/dpt: pass opaque struct intel_dpt around instead of i915_address_space
struct i915_address_space is used in an opaque fashion in the display
parent interface, but it's just one include away from being
non-opaque. And anyway the name is rather specific.
Switch to using the struct intel_dpt instead, which embeds struct
i915_address_space anyway. With the definition hidden in i915_dpt.c,
this can't be accidentally made non-opaque, and the type seems rather
more generic anyway.
We do have to add a new helper i915_dpt_to_vm(), as there's one case in
intel_fb_pin_to_dpt() that requires direct access to struct
i915_address_space. But this just underlines the point about opacity.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch d9124a6be3c7bdaeb14c3629013dde27929dbf04 drm-intel
2d6608ee071e drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c
-:34: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#34:
rename from drivers/gpu/drm/i915/display/intel_dpt.c
total: 0 errors, 1 warnings, 0 checks, 36 lines checked
b743be20e8f7 drm/i915/dpt: pass obj, size instead of framebuffer to intel_dpt_create()
5704ef916d2c drm/i915/dpt: move create/destroy to parent interface
-:174: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#174:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 212 lines checked
53068fb1e03e drm/i915/dpt: move suspend/resume to parent interface
131e0b8baa68 drm/i915/dpt: remove display/intel_dpt.h
-:25: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#25:
deleted file mode 100644
total: 0 errors, 1 warnings, 0 checks, 51 lines checked
5fb8b122919e drm/i915/dpt: drop _common from the DPT file names
-:39: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#39:
rename from drivers/gpu/drm/i915/display/intel_dpt_common.c
total: 0 errors, 1 warnings, 0 checks, 40 lines checked
a64807209868 drm/i915/dpt: switch to i915 runtime pm calls
ccaf5b6cfeb0 drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix
d165c0697a74 drm/i915/dpt: rename struct i915_dpt to intel_dpt
295df1b9a9b2 drm/i915/dpt: pass opaque struct intel_dpt around instead of i915_address_space
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.KUnit: success for drm/i915/dpt: refactoring, move to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (10 preceding siblings ...)
2026-02-06 12:21 ` ✗ CI.checkpatch: warning for drm/i915/dpt: refactoring, move to parent interface Patchwork
@ 2026-02-06 12:22 ` Patchwork
2026-02-06 12:38 ` ✗ CI.checksparse: warning " Patchwork
` (3 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-06 12:22 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/dpt: refactoring, move to parent interface
URL : https://patchwork.freedesktop.org/series/161269/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:21:30] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:21:34] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:22:06] Starting KUnit Kernel (1/1)...
[12:22:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:22:06] ================== guc_buf (11 subtests) ===================
[12:22:06] [PASSED] test_smallest
[12:22:06] [PASSED] test_largest
[12:22:06] [PASSED] test_granular
[12:22:06] [PASSED] test_unique
[12:22:06] [PASSED] test_overlap
[12:22:06] [PASSED] test_reusable
[12:22:06] [PASSED] test_too_big
[12:22:06] [PASSED] test_flush
[12:22:06] [PASSED] test_lookup
[12:22:06] [PASSED] test_data
[12:22:06] [PASSED] test_class
[12:22:06] ===================== [PASSED] guc_buf =====================
[12:22:06] =================== guc_dbm (7 subtests) ===================
[12:22:06] [PASSED] test_empty
[12:22:06] [PASSED] test_default
[12:22:06] ======================== test_size ========================
[12:22:06] [PASSED] 4
[12:22:06] [PASSED] 8
[12:22:06] [PASSED] 32
[12:22:06] [PASSED] 256
[12:22:06] ==================== [PASSED] test_size ====================
[12:22:06] ======================= test_reuse ========================
[12:22:06] [PASSED] 4
[12:22:06] [PASSED] 8
[12:22:06] [PASSED] 32
[12:22:06] [PASSED] 256
[12:22:06] =================== [PASSED] test_reuse ====================
[12:22:06] =================== test_range_overlap ====================
[12:22:06] [PASSED] 4
[12:22:06] [PASSED] 8
[12:22:06] [PASSED] 32
[12:22:06] [PASSED] 256
[12:22:06] =============== [PASSED] test_range_overlap ================
[12:22:06] =================== test_range_compact ====================
[12:22:06] [PASSED] 4
[12:22:06] [PASSED] 8
[12:22:06] [PASSED] 32
[12:22:06] [PASSED] 256
[12:22:06] =============== [PASSED] test_range_compact ================
[12:22:06] ==================== test_range_spare =====================
[12:22:06] [PASSED] 4
[12:22:06] [PASSED] 8
[12:22:06] [PASSED] 32
[12:22:06] [PASSED] 256
[12:22:06] ================ [PASSED] test_range_spare =================
[12:22:06] ===================== [PASSED] guc_dbm =====================
[12:22:06] =================== guc_idm (6 subtests) ===================
[12:22:06] [PASSED] bad_init
[12:22:06] [PASSED] no_init
[12:22:06] [PASSED] init_fini
[12:22:06] [PASSED] check_used
[12:22:06] [PASSED] check_quota
[12:22:06] [PASSED] check_all
[12:22:06] ===================== [PASSED] guc_idm =====================
[12:22:06] ================== no_relay (3 subtests) ===================
[12:22:06] [PASSED] xe_drops_guc2pf_if_not_ready
[12:22:06] [PASSED] xe_drops_guc2vf_if_not_ready
[12:22:06] [PASSED] xe_rejects_send_if_not_ready
[12:22:06] ==================== [PASSED] no_relay =====================
[12:22:06] ================== pf_relay (14 subtests) ==================
[12:22:06] [PASSED] pf_rejects_guc2pf_too_short
[12:22:06] [PASSED] pf_rejects_guc2pf_too_long
[12:22:06] [PASSED] pf_rejects_guc2pf_no_payload
[12:22:06] [PASSED] pf_fails_no_payload
[12:22:06] [PASSED] pf_fails_bad_origin
[12:22:06] [PASSED] pf_fails_bad_type
[12:22:06] [PASSED] pf_txn_reports_error
[12:22:06] [PASSED] pf_txn_sends_pf2guc
[12:22:06] [PASSED] pf_sends_pf2guc
[12:22:06] [SKIPPED] pf_loopback_nop
[12:22:06] [SKIPPED] pf_loopback_echo
[12:22:06] [SKIPPED] pf_loopback_fail
[12:22:06] [SKIPPED] pf_loopback_busy
[12:22:06] [SKIPPED] pf_loopback_retry
[12:22:06] ==================== [PASSED] pf_relay =====================
[12:22:06] ================== vf_relay (3 subtests) ===================
[12:22:06] [PASSED] vf_rejects_guc2vf_too_short
[12:22:06] [PASSED] vf_rejects_guc2vf_too_long
[12:22:06] [PASSED] vf_rejects_guc2vf_no_payload
[12:22:06] ==================== [PASSED] vf_relay =====================
[12:22:06] ================ pf_gt_config (6 subtests) =================
[12:22:06] [PASSED] fair_contexts_1vf
[12:22:06] [PASSED] fair_doorbells_1vf
[12:22:06] [PASSED] fair_ggtt_1vf
[12:22:06] ====================== fair_contexts ======================
[12:22:06] [PASSED] 1 VF
[12:22:06] [PASSED] 2 VFs
[12:22:06] [PASSED] 3 VFs
[12:22:06] [PASSED] 4 VFs
[12:22:06] [PASSED] 5 VFs
[12:22:06] [PASSED] 6 VFs
[12:22:06] [PASSED] 7 VFs
[12:22:06] [PASSED] 8 VFs
[12:22:06] [PASSED] 9 VFs
[12:22:06] [PASSED] 10 VFs
[12:22:06] [PASSED] 11 VFs
[12:22:06] [PASSED] 12 VFs
[12:22:06] [PASSED] 13 VFs
[12:22:06] [PASSED] 14 VFs
[12:22:06] [PASSED] 15 VFs
[12:22:06] [PASSED] 16 VFs
[12:22:06] [PASSED] 17 VFs
[12:22:06] [PASSED] 18 VFs
[12:22:06] [PASSED] 19 VFs
[12:22:06] [PASSED] 20 VFs
[12:22:06] [PASSED] 21 VFs
[12:22:06] [PASSED] 22 VFs
[12:22:06] [PASSED] 23 VFs
[12:22:06] [PASSED] 24 VFs
[12:22:06] [PASSED] 25 VFs
[12:22:06] [PASSED] 26 VFs
[12:22:06] [PASSED] 27 VFs
[12:22:06] [PASSED] 28 VFs
[12:22:06] [PASSED] 29 VFs
[12:22:06] [PASSED] 30 VFs
[12:22:06] [PASSED] 31 VFs
[12:22:06] [PASSED] 32 VFs
[12:22:06] [PASSED] 33 VFs
[12:22:06] [PASSED] 34 VFs
[12:22:06] [PASSED] 35 VFs
[12:22:06] [PASSED] 36 VFs
[12:22:06] [PASSED] 37 VFs
[12:22:06] [PASSED] 38 VFs
[12:22:06] [PASSED] 39 VFs
[12:22:06] [PASSED] 40 VFs
[12:22:06] [PASSED] 41 VFs
[12:22:06] [PASSED] 42 VFs
[12:22:06] [PASSED] 43 VFs
[12:22:06] [PASSED] 44 VFs
[12:22:06] [PASSED] 45 VFs
[12:22:06] [PASSED] 46 VFs
[12:22:06] [PASSED] 47 VFs
[12:22:06] [PASSED] 48 VFs
[12:22:06] [PASSED] 49 VFs
[12:22:06] [PASSED] 50 VFs
[12:22:06] [PASSED] 51 VFs
[12:22:06] [PASSED] 52 VFs
[12:22:06] [PASSED] 53 VFs
[12:22:06] [PASSED] 54 VFs
[12:22:06] [PASSED] 55 VFs
[12:22:06] [PASSED] 56 VFs
[12:22:06] [PASSED] 57 VFs
[12:22:06] [PASSED] 58 VFs
[12:22:06] [PASSED] 59 VFs
[12:22:06] [PASSED] 60 VFs
[12:22:06] [PASSED] 61 VFs
[12:22:06] [PASSED] 62 VFs
[12:22:06] [PASSED] 63 VFs
[12:22:06] ================== [PASSED] fair_contexts ==================
[12:22:06] ===================== fair_doorbells ======================
[12:22:06] [PASSED] 1 VF
[12:22:06] [PASSED] 2 VFs
[12:22:06] [PASSED] 3 VFs
[12:22:06] [PASSED] 4 VFs
[12:22:06] [PASSED] 5 VFs
[12:22:06] [PASSED] 6 VFs
[12:22:06] [PASSED] 7 VFs
[12:22:06] [PASSED] 8 VFs
[12:22:06] [PASSED] 9 VFs
[12:22:06] [PASSED] 10 VFs
[12:22:06] [PASSED] 11 VFs
[12:22:06] [PASSED] 12 VFs
[12:22:06] [PASSED] 13 VFs
[12:22:06] [PASSED] 14 VFs
[12:22:06] [PASSED] 15 VFs
[12:22:06] [PASSED] 16 VFs
[12:22:06] [PASSED] 17 VFs
[12:22:06] [PASSED] 18 VFs
[12:22:06] [PASSED] 19 VFs
[12:22:06] [PASSED] 20 VFs
[12:22:06] [PASSED] 21 VFs
[12:22:06] [PASSED] 22 VFs
[12:22:06] [PASSED] 23 VFs
[12:22:06] [PASSED] 24 VFs
[12:22:06] [PASSED] 25 VFs
[12:22:06] [PASSED] 26 VFs
[12:22:06] [PASSED] 27 VFs
[12:22:06] [PASSED] 28 VFs
[12:22:06] [PASSED] 29 VFs
[12:22:06] [PASSED] 30 VFs
[12:22:06] [PASSED] 31 VFs
[12:22:06] [PASSED] 32 VFs
[12:22:06] [PASSED] 33 VFs
[12:22:06] [PASSED] 34 VFs
[12:22:06] [PASSED] 35 VFs
[12:22:06] [PASSED] 36 VFs
[12:22:06] [PASSED] 37 VFs
[12:22:06] [PASSED] 38 VFs
[12:22:06] [PASSED] 39 VFs
[12:22:06] [PASSED] 40 VFs
[12:22:06] [PASSED] 41 VFs
[12:22:06] [PASSED] 42 VFs
[12:22:06] [PASSED] 43 VFs
[12:22:06] [PASSED] 44 VFs
[12:22:06] [PASSED] 45 VFs
[12:22:06] [PASSED] 46 VFs
[12:22:06] [PASSED] 47 VFs
[12:22:06] [PASSED] 48 VFs
[12:22:06] [PASSED] 49 VFs
[12:22:06] [PASSED] 50 VFs
[12:22:06] [PASSED] 51 VFs
[12:22:06] [PASSED] 52 VFs
[12:22:06] [PASSED] 53 VFs
[12:22:06] [PASSED] 54 VFs
[12:22:06] [PASSED] 55 VFs
[12:22:06] [PASSED] 56 VFs
[12:22:06] [PASSED] 57 VFs
[12:22:06] [PASSED] 58 VFs
[12:22:06] [PASSED] 59 VFs
[12:22:06] [PASSED] 60 VFs
[12:22:06] [PASSED] 61 VFs
[12:22:06] [PASSED] 62 VFs
[12:22:06] [PASSED] 63 VFs
[12:22:06] ================= [PASSED] fair_doorbells ==================
[12:22:06] ======================== fair_ggtt ========================
[12:22:06] [PASSED] 1 VF
[12:22:06] [PASSED] 2 VFs
[12:22:06] [PASSED] 3 VFs
[12:22:06] [PASSED] 4 VFs
[12:22:06] [PASSED] 5 VFs
[12:22:06] [PASSED] 6 VFs
[12:22:06] [PASSED] 7 VFs
[12:22:06] [PASSED] 8 VFs
[12:22:06] [PASSED] 9 VFs
[12:22:06] [PASSED] 10 VFs
[12:22:06] [PASSED] 11 VFs
[12:22:06] [PASSED] 12 VFs
[12:22:06] [PASSED] 13 VFs
[12:22:06] [PASSED] 14 VFs
[12:22:06] [PASSED] 15 VFs
[12:22:06] [PASSED] 16 VFs
[12:22:06] [PASSED] 17 VFs
[12:22:06] [PASSED] 18 VFs
[12:22:06] [PASSED] 19 VFs
[12:22:06] [PASSED] 20 VFs
[12:22:06] [PASSED] 21 VFs
[12:22:06] [PASSED] 22 VFs
[12:22:06] [PASSED] 23 VFs
[12:22:06] [PASSED] 24 VFs
[12:22:06] [PASSED] 25 VFs
[12:22:06] [PASSED] 26 VFs
[12:22:06] [PASSED] 27 VFs
[12:22:07] [PASSED] 28 VFs
[12:22:07] [PASSED] 29 VFs
[12:22:07] [PASSED] 30 VFs
[12:22:07] [PASSED] 31 VFs
[12:22:07] [PASSED] 32 VFs
[12:22:07] [PASSED] 33 VFs
[12:22:07] [PASSED] 34 VFs
[12:22:07] [PASSED] 35 VFs
[12:22:07] [PASSED] 36 VFs
[12:22:07] [PASSED] 37 VFs
[12:22:07] [PASSED] 38 VFs
[12:22:07] [PASSED] 39 VFs
[12:22:07] [PASSED] 40 VFs
[12:22:07] [PASSED] 41 VFs
[12:22:07] [PASSED] 42 VFs
[12:22:07] [PASSED] 43 VFs
[12:22:07] [PASSED] 44 VFs
[12:22:07] [PASSED] 45 VFs
[12:22:07] [PASSED] 46 VFs
[12:22:07] [PASSED] 47 VFs
[12:22:07] [PASSED] 48 VFs
[12:22:07] [PASSED] 49 VFs
[12:22:07] [PASSED] 50 VFs
[12:22:07] [PASSED] 51 VFs
[12:22:07] [PASSED] 52 VFs
[12:22:07] [PASSED] 53 VFs
[12:22:07] [PASSED] 54 VFs
[12:22:07] [PASSED] 55 VFs
[12:22:07] [PASSED] 56 VFs
[12:22:07] [PASSED] 57 VFs
[12:22:07] [PASSED] 58 VFs
[12:22:07] [PASSED] 59 VFs
[12:22:07] [PASSED] 60 VFs
[12:22:07] [PASSED] 61 VFs
[12:22:07] [PASSED] 62 VFs
[12:22:07] [PASSED] 63 VFs
[12:22:07] ==================== [PASSED] fair_ggtt ====================
[12:22:07] ================== [PASSED] pf_gt_config ===================
[12:22:07] ===================== lmtt (1 subtest) =====================
[12:22:07] ======================== test_ops =========================
[12:22:07] [PASSED] 2-level
[12:22:07] [PASSED] multi-level
[12:22:07] ==================== [PASSED] test_ops =====================
[12:22:07] ====================== [PASSED] lmtt =======================
[12:22:07] ================= pf_service (11 subtests) =================
[12:22:07] [PASSED] pf_negotiate_any
[12:22:07] [PASSED] pf_negotiate_base_match
[12:22:07] [PASSED] pf_negotiate_base_newer
[12:22:07] [PASSED] pf_negotiate_base_next
[12:22:07] [SKIPPED] pf_negotiate_base_older
[12:22:07] [PASSED] pf_negotiate_base_prev
[12:22:07] [PASSED] pf_negotiate_latest_match
[12:22:07] [PASSED] pf_negotiate_latest_newer
[12:22:07] [PASSED] pf_negotiate_latest_next
[12:22:07] [SKIPPED] pf_negotiate_latest_older
[12:22:07] [SKIPPED] pf_negotiate_latest_prev
[12:22:07] =================== [PASSED] pf_service ====================
[12:22:07] ================= xe_guc_g2g (2 subtests) ==================
[12:22:07] ============== xe_live_guc_g2g_kunit_default ==============
[12:22:07] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:22:07] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:22:07] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:22:07] =================== [SKIPPED] xe_guc_g2g ===================
[12:22:07] =================== xe_mocs (2 subtests) ===================
[12:22:07] ================ xe_live_mocs_kernel_kunit ================
[12:22:07] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:22:07] ================ xe_live_mocs_reset_kunit =================
[12:22:07] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:22:07] ==================== [SKIPPED] xe_mocs =====================
[12:22:07] ================= xe_migrate (2 subtests) ==================
[12:22:07] ================= xe_migrate_sanity_kunit =================
[12:22:07] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:22:07] ================== xe_validate_ccs_kunit ==================
[12:22:07] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:22:07] =================== [SKIPPED] xe_migrate ===================
[12:22:07] ================== xe_dma_buf (1 subtest) ==================
[12:22:07] ==================== xe_dma_buf_kunit =====================
[12:22:07] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:22:07] =================== [SKIPPED] xe_dma_buf ===================
[12:22:07] ================= xe_bo_shrink (1 subtest) =================
[12:22:07] =================== xe_bo_shrink_kunit ====================
[12:22:07] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:22:07] ================== [SKIPPED] xe_bo_shrink ==================
[12:22:07] ==================== xe_bo (2 subtests) ====================
[12:22:07] ================== xe_ccs_migrate_kunit ===================
[12:22:07] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:22:07] ==================== xe_bo_evict_kunit ====================
[12:22:07] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:22:07] ===================== [SKIPPED] xe_bo ======================
[12:22:07] ==================== args (13 subtests) ====================
[12:22:07] [PASSED] count_args_test
[12:22:07] [PASSED] call_args_example
[12:22:07] [PASSED] call_args_test
[12:22:07] [PASSED] drop_first_arg_example
[12:22:07] [PASSED] drop_first_arg_test
[12:22:07] [PASSED] first_arg_example
[12:22:07] [PASSED] first_arg_test
[12:22:07] [PASSED] last_arg_example
[12:22:07] [PASSED] last_arg_test
[12:22:07] [PASSED] pick_arg_example
[12:22:07] [PASSED] if_args_example
[12:22:07] [PASSED] if_args_test
[12:22:07] [PASSED] sep_comma_example
[12:22:07] ====================== [PASSED] args =======================
[12:22:07] =================== xe_pci (3 subtests) ====================
[12:22:07] ==================== check_graphics_ip ====================
[12:22:07] [PASSED] 12.00 Xe_LP
[12:22:07] [PASSED] 12.10 Xe_LP+
[12:22:07] [PASSED] 12.55 Xe_HPG
[12:22:07] [PASSED] 12.60 Xe_HPC
[12:22:07] [PASSED] 12.70 Xe_LPG
[12:22:07] [PASSED] 12.71 Xe_LPG
[12:22:07] [PASSED] 12.74 Xe_LPG+
[12:22:07] [PASSED] 20.01 Xe2_HPG
[12:22:07] [PASSED] 20.02 Xe2_HPG
[12:22:07] [PASSED] 20.04 Xe2_LPG
[12:22:07] [PASSED] 30.00 Xe3_LPG
[12:22:07] [PASSED] 30.01 Xe3_LPG
[12:22:07] [PASSED] 30.03 Xe3_LPG
[12:22:07] [PASSED] 30.04 Xe3_LPG
[12:22:07] [PASSED] 30.05 Xe3_LPG
[12:22:07] [PASSED] 35.11 Xe3p_XPC
[12:22:07] ================ [PASSED] check_graphics_ip ================
[12:22:07] ===================== check_media_ip ======================
[12:22:07] [PASSED] 12.00 Xe_M
[12:22:07] [PASSED] 12.55 Xe_HPM
[12:22:07] [PASSED] 13.00 Xe_LPM+
[12:22:07] [PASSED] 13.01 Xe2_HPM
[12:22:07] [PASSED] 20.00 Xe2_LPM
[12:22:07] [PASSED] 30.00 Xe3_LPM
[12:22:07] [PASSED] 30.02 Xe3_LPM
[12:22:07] [PASSED] 35.00 Xe3p_LPM
[12:22:07] [PASSED] 35.03 Xe3p_HPM
[12:22:07] ================= [PASSED] check_media_ip ==================
[12:22:07] =================== check_platform_desc ===================
[12:22:07] [PASSED] 0x9A60 (TIGERLAKE)
[12:22:07] [PASSED] 0x9A68 (TIGERLAKE)
[12:22:07] [PASSED] 0x9A70 (TIGERLAKE)
[12:22:07] [PASSED] 0x9A40 (TIGERLAKE)
[12:22:07] [PASSED] 0x9A49 (TIGERLAKE)
[12:22:07] [PASSED] 0x9A59 (TIGERLAKE)
[12:22:07] [PASSED] 0x9A78 (TIGERLAKE)
[12:22:07] [PASSED] 0x9AC0 (TIGERLAKE)
[12:22:07] [PASSED] 0x9AC9 (TIGERLAKE)
[12:22:07] [PASSED] 0x9AD9 (TIGERLAKE)
[12:22:07] [PASSED] 0x9AF8 (TIGERLAKE)
[12:22:07] [PASSED] 0x4C80 (ROCKETLAKE)
[12:22:07] [PASSED] 0x4C8A (ROCKETLAKE)
[12:22:07] [PASSED] 0x4C8B (ROCKETLAKE)
[12:22:07] [PASSED] 0x4C8C (ROCKETLAKE)
[12:22:07] [PASSED] 0x4C90 (ROCKETLAKE)
[12:22:07] [PASSED] 0x4C9A (ROCKETLAKE)
[12:22:07] [PASSED] 0x4680 (ALDERLAKE_S)
[12:22:07] [PASSED] 0x4682 (ALDERLAKE_S)
[12:22:07] [PASSED] 0x4688 (ALDERLAKE_S)
[12:22:07] [PASSED] 0x468A (ALDERLAKE_S)
[12:22:07] [PASSED] 0x468B (ALDERLAKE_S)
[12:22:07] [PASSED] 0x4690 (ALDERLAKE_S)
[12:22:07] [PASSED] 0x4692 (ALDERLAKE_S)
[12:22:07] [PASSED] 0x4693 (ALDERLAKE_S)
[12:22:07] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46AA (ALDERLAKE_P)
[12:22:07] [PASSED] 0x462A (ALDERLAKE_P)
[12:22:07] [PASSED] 0x4626 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[12:22:07] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:22:07] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:22:07] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:22:07] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:22:07] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:22:07] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:22:07] [PASSED] 0xA721 (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA720 (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:22:07] [PASSED] 0xA780 (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA781 (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA782 (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA783 (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA788 (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA789 (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA78A (ALDERLAKE_S)
[12:22:07] [PASSED] 0xA78B (ALDERLAKE_S)
[12:22:07] [PASSED] 0x4905 (DG1)
[12:22:07] [PASSED] 0x4906 (DG1)
[12:22:07] [PASSED] 0x4907 (DG1)
[12:22:07] [PASSED] 0x4908 (DG1)
[12:22:07] [PASSED] 0x4909 (DG1)
[12:22:07] [PASSED] 0x56C0 (DG2)
[12:22:07] [PASSED] 0x56C2 (DG2)
[12:22:07] [PASSED] 0x56C1 (DG2)
[12:22:07] [PASSED] 0x7D51 (METEORLAKE)
[12:22:07] [PASSED] 0x7DD1 (METEORLAKE)
[12:22:07] [PASSED] 0x7D41 (METEORLAKE)
[12:22:07] [PASSED] 0x7D67 (METEORLAKE)
[12:22:07] [PASSED] 0xB640 (METEORLAKE)
[12:22:07] [PASSED] 0x56A0 (DG2)
[12:22:07] [PASSED] 0x56A1 (DG2)
[12:22:07] [PASSED] 0x56A2 (DG2)
[12:22:07] [PASSED] 0x56BE (DG2)
[12:22:07] [PASSED] 0x56BF (DG2)
[12:22:07] [PASSED] 0x5690 (DG2)
[12:22:07] [PASSED] 0x5691 (DG2)
[12:22:07] [PASSED] 0x5692 (DG2)
[12:22:07] [PASSED] 0x56A5 (DG2)
[12:22:07] [PASSED] 0x56A6 (DG2)
[12:22:07] [PASSED] 0x56B0 (DG2)
[12:22:07] [PASSED] 0x56B1 (DG2)
[12:22:07] [PASSED] 0x56BA (DG2)
[12:22:07] [PASSED] 0x56BB (DG2)
[12:22:07] [PASSED] 0x56BC (DG2)
[12:22:07] [PASSED] 0x56BD (DG2)
[12:22:07] [PASSED] 0x5693 (DG2)
[12:22:07] [PASSED] 0x5694 (DG2)
[12:22:07] [PASSED] 0x5695 (DG2)
[12:22:07] [PASSED] 0x56A3 (DG2)
[12:22:07] [PASSED] 0x56A4 (DG2)
[12:22:07] [PASSED] 0x56B2 (DG2)
[12:22:07] [PASSED] 0x56B3 (DG2)
[12:22:07] [PASSED] 0x5696 (DG2)
[12:22:07] [PASSED] 0x5697 (DG2)
[12:22:07] [PASSED] 0xB69 (PVC)
[12:22:07] [PASSED] 0xB6E (PVC)
[12:22:07] [PASSED] 0xBD4 (PVC)
[12:22:07] [PASSED] 0xBD5 (PVC)
[12:22:07] [PASSED] 0xBD6 (PVC)
[12:22:07] [PASSED] 0xBD7 (PVC)
[12:22:07] [PASSED] 0xBD8 (PVC)
[12:22:07] [PASSED] 0xBD9 (PVC)
[12:22:07] [PASSED] 0xBDA (PVC)
[12:22:07] [PASSED] 0xBDB (PVC)
[12:22:07] [PASSED] 0xBE0 (PVC)
[12:22:07] [PASSED] 0xBE1 (PVC)
[12:22:07] [PASSED] 0xBE5 (PVC)
[12:22:07] [PASSED] 0x7D40 (METEORLAKE)
[12:22:07] [PASSED] 0x7D45 (METEORLAKE)
[12:22:07] [PASSED] 0x7D55 (METEORLAKE)
[12:22:07] [PASSED] 0x7D60 (METEORLAKE)
[12:22:07] [PASSED] 0x7DD5 (METEORLAKE)
[12:22:07] [PASSED] 0x6420 (LUNARLAKE)
[12:22:07] [PASSED] 0x64A0 (LUNARLAKE)
[12:22:07] [PASSED] 0x64B0 (LUNARLAKE)
[12:22:07] [PASSED] 0xE202 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE209 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE20B (BATTLEMAGE)
[12:22:07] [PASSED] 0xE20C (BATTLEMAGE)
[12:22:07] [PASSED] 0xE20D (BATTLEMAGE)
[12:22:07] [PASSED] 0xE210 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE211 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE212 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE216 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE220 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE221 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE222 (BATTLEMAGE)
[12:22:07] [PASSED] 0xE223 (BATTLEMAGE)
[12:22:07] [PASSED] 0xB080 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB081 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB082 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB083 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB084 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB085 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB086 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB087 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB08F (PANTHERLAKE)
[12:22:07] [PASSED] 0xB090 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:22:07] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:22:07] [PASSED] 0xFD80 (PANTHERLAKE)
[12:22:07] [PASSED] 0xFD81 (PANTHERLAKE)
[12:22:07] [PASSED] 0xD740 (NOVALAKE_S)
[12:22:07] [PASSED] 0xD741 (NOVALAKE_S)
[12:22:07] [PASSED] 0xD742 (NOVALAKE_S)
[12:22:07] [PASSED] 0xD743 (NOVALAKE_S)
[12:22:07] [PASSED] 0xD744 (NOVALAKE_S)
[12:22:07] [PASSED] 0xD745 (NOVALAKE_S)
[12:22:07] [PASSED] 0x674C (CRESCENTISLAND)
[12:22:07] =============== [PASSED] check_platform_desc ===============
[12:22:07] ===================== [PASSED] xe_pci ======================
[12:22:07] =================== xe_rtp (2 subtests) ====================
[12:22:07] =============== xe_rtp_process_to_sr_tests ================
[12:22:07] [PASSED] coalesce-same-reg
[12:22:07] [PASSED] no-match-no-add
[12:22:07] [PASSED] match-or
[12:22:07] [PASSED] match-or-xfail
[12:22:07] [PASSED] no-match-no-add-multiple-rules
[12:22:07] [PASSED] two-regs-two-entries
[12:22:07] [PASSED] clr-one-set-other
[12:22:07] [PASSED] set-field
[12:22:07] [PASSED] conflict-duplicate
[12:22:07] [PASSED] conflict-not-disjoint
[12:22:07] [PASSED] conflict-reg-type
[12:22:07] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:22:07] ================== xe_rtp_process_tests ===================
[12:22:07] [PASSED] active1
[12:22:07] [PASSED] active2
[12:22:07] [PASSED] active-inactive
[12:22:07] [PASSED] inactive-active
[12:22:07] [PASSED] inactive-1st_or_active-inactive
[12:22:07] [PASSED] inactive-2nd_or_active-inactive
[12:22:07] [PASSED] inactive-last_or_active-inactive
[12:22:07] [PASSED] inactive-no_or_active-inactive
[12:22:07] ============== [PASSED] xe_rtp_process_tests ===============
[12:22:07] ===================== [PASSED] xe_rtp ======================
[12:22:07] ==================== xe_wa (1 subtest) =====================
[12:22:07] ======================== xe_wa_gt =========================
[12:22:07] [PASSED] TIGERLAKE B0
[12:22:07] [PASSED] DG1 A0
[12:22:07] [PASSED] DG1 B0
[12:22:07] [PASSED] ALDERLAKE_S A0
[12:22:07] [PASSED] ALDERLAKE_S B0
[12:22:07] [PASSED] ALDERLAKE_S C0
[12:22:07] [PASSED] ALDERLAKE_S D0
[12:22:07] [PASSED] ALDERLAKE_P A0
[12:22:07] [PASSED] ALDERLAKE_P B0
[12:22:07] [PASSED] ALDERLAKE_P C0
[12:22:07] [PASSED] ALDERLAKE_S RPLS D0
[12:22:07] [PASSED] ALDERLAKE_P RPLU E0
[12:22:07] [PASSED] DG2 G10 C0
[12:22:07] [PASSED] DG2 G11 B1
[12:22:07] [PASSED] DG2 G12 A1
[12:22:07] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:22:07] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:22:07] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:22:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:22:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:22:07] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:22:07] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:22:07] ==================== [PASSED] xe_wa_gt =====================
[12:22:07] ====================== [PASSED] xe_wa ======================
[12:22:07] ============================================================
[12:22:07] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[12:22:07] Elapsed time: 36.401s total, 4.266s configuring, 31.618s building, 0.464s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:22:07] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:22:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:22:34] Starting KUnit Kernel (1/1)...
[12:22:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:22:34] ============ drm_test_pick_cmdline (2 subtests) ============
[12:22:34] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:22:34] =============== drm_test_pick_cmdline_named ===============
[12:22:34] [PASSED] NTSC
[12:22:34] [PASSED] NTSC-J
[12:22:34] [PASSED] PAL
[12:22:34] [PASSED] PAL-M
[12:22:34] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:22:34] ============== [PASSED] drm_test_pick_cmdline ==============
[12:22:34] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:22:34] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:22:34] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:22:34] =========== drm_validate_clone_mode (2 subtests) ===========
[12:22:34] ============== drm_test_check_in_clone_mode ===============
[12:22:34] [PASSED] in_clone_mode
[12:22:34] [PASSED] not_in_clone_mode
[12:22:34] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:22:34] =============== drm_test_check_valid_clones ===============
[12:22:34] [PASSED] not_in_clone_mode
[12:22:34] [PASSED] valid_clone
[12:22:34] [PASSED] invalid_clone
[12:22:34] =========== [PASSED] drm_test_check_valid_clones ===========
[12:22:34] ============= [PASSED] drm_validate_clone_mode =============
[12:22:34] ============= drm_validate_modeset (1 subtest) =============
[12:22:34] [PASSED] drm_test_check_connector_changed_modeset
[12:22:34] ============== [PASSED] drm_validate_modeset ===============
[12:22:34] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:22:34] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:22:34] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:22:34] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:22:34] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:22:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:22:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:22:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:22:34] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:22:34] ============== drm_bridge_alloc (2 subtests) ===============
[12:22:34] [PASSED] drm_test_drm_bridge_alloc_basic
[12:22:34] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:22:34] ================ [PASSED] drm_bridge_alloc =================
[12:22:34] ============= drm_cmdline_parser (40 subtests) =============
[12:22:34] [PASSED] drm_test_cmdline_force_d_only
[12:22:34] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:22:34] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:22:34] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:22:34] [PASSED] drm_test_cmdline_force_e_only
[12:22:34] [PASSED] drm_test_cmdline_res
[12:22:34] [PASSED] drm_test_cmdline_res_vesa
[12:22:34] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:22:34] [PASSED] drm_test_cmdline_res_rblank
[12:22:34] [PASSED] drm_test_cmdline_res_bpp
[12:22:34] [PASSED] drm_test_cmdline_res_refresh
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:22:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:22:34] [PASSED] drm_test_cmdline_res_margins_force_on
[12:22:34] [PASSED] drm_test_cmdline_res_vesa_margins
[12:22:34] [PASSED] drm_test_cmdline_name
[12:22:34] [PASSED] drm_test_cmdline_name_bpp
[12:22:34] [PASSED] drm_test_cmdline_name_option
[12:22:34] [PASSED] drm_test_cmdline_name_bpp_option
[12:22:34] [PASSED] drm_test_cmdline_rotate_0
[12:22:34] [PASSED] drm_test_cmdline_rotate_90
[12:22:34] [PASSED] drm_test_cmdline_rotate_180
[12:22:34] [PASSED] drm_test_cmdline_rotate_270
[12:22:34] [PASSED] drm_test_cmdline_hmirror
[12:22:34] [PASSED] drm_test_cmdline_vmirror
[12:22:34] [PASSED] drm_test_cmdline_margin_options
[12:22:34] [PASSED] drm_test_cmdline_multiple_options
[12:22:34] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:22:34] [PASSED] drm_test_cmdline_extra_and_option
[12:22:34] [PASSED] drm_test_cmdline_freestanding_options
[12:22:34] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:22:34] [PASSED] drm_test_cmdline_panel_orientation
[12:22:34] ================ drm_test_cmdline_invalid =================
[12:22:34] [PASSED] margin_only
[12:22:34] [PASSED] interlace_only
[12:22:34] [PASSED] res_missing_x
[12:22:34] [PASSED] res_missing_y
[12:22:34] [PASSED] res_bad_y
[12:22:34] [PASSED] res_missing_y_bpp
[12:22:34] [PASSED] res_bad_bpp
[12:22:34] [PASSED] res_bad_refresh
[12:22:34] [PASSED] res_bpp_refresh_force_on_off
[12:22:34] [PASSED] res_invalid_mode
[12:22:34] [PASSED] res_bpp_wrong_place_mode
[12:22:34] [PASSED] name_bpp_refresh
[12:22:34] [PASSED] name_refresh
[12:22:34] [PASSED] name_refresh_wrong_mode
[12:22:34] [PASSED] name_refresh_invalid_mode
[12:22:34] [PASSED] rotate_multiple
[12:22:34] [PASSED] rotate_invalid_val
[12:22:34] [PASSED] rotate_truncated
[12:22:34] [PASSED] invalid_option
[12:22:34] [PASSED] invalid_tv_option
[12:22:34] [PASSED] truncated_tv_option
[12:22:34] ============ [PASSED] drm_test_cmdline_invalid =============
[12:22:34] =============== drm_test_cmdline_tv_options ===============
[12:22:34] [PASSED] NTSC
[12:22:34] [PASSED] NTSC_443
[12:22:34] [PASSED] NTSC_J
[12:22:34] [PASSED] PAL
[12:22:34] [PASSED] PAL_M
[12:22:34] [PASSED] PAL_N
[12:22:34] [PASSED] SECAM
[12:22:34] [PASSED] MONO_525
[12:22:34] [PASSED] MONO_625
[12:22:34] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:22:34] =============== [PASSED] drm_cmdline_parser ================
[12:22:34] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:22:34] [PASSED] drm_test_connector_hdmi_init_valid
[12:22:34] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:22:34] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:22:34] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:22:34] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:22:34] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:22:34] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:22:34] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:22:34] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:22:34] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:22:34] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:22:34] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:22:34] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:22:34] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:22:34] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:22:34] [PASSED] drm_test_connector_hdmi_init_null_product
[12:22:34] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:22:34] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:22:34] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:22:34] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:22:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:22:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:22:34] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:22:34] ========= drm_test_connector_hdmi_init_type_valid =========
[12:22:34] [PASSED] HDMI-A
[12:22:34] [PASSED] HDMI-B
[12:22:34] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:22:34] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:22:34] [PASSED] Unknown
[12:22:34] [PASSED] VGA
[12:22:34] [PASSED] DVI-I
[12:22:34] [PASSED] DVI-D
[12:22:34] [PASSED] DVI-A
[12:22:34] [PASSED] Composite
[12:22:34] [PASSED] SVIDEO
[12:22:34] [PASSED] LVDS
[12:22:34] [PASSED] Component
[12:22:34] [PASSED] DIN
[12:22:34] [PASSED] DP
[12:22:34] [PASSED] TV
[12:22:34] [PASSED] eDP
[12:22:34] [PASSED] Virtual
[12:22:34] [PASSED] DSI
[12:22:34] [PASSED] DPI
[12:22:34] [PASSED] Writeback
[12:22:34] [PASSED] SPI
[12:22:34] [PASSED] USB
[12:22:34] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:22:34] ============ [PASSED] drmm_connector_hdmi_init =============
[12:22:34] ============= drmm_connector_init (3 subtests) =============
[12:22:34] [PASSED] drm_test_drmm_connector_init
[12:22:34] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:22:34] ========= drm_test_drmm_connector_init_type_valid =========
[12:22:34] [PASSED] Unknown
[12:22:34] [PASSED] VGA
[12:22:34] [PASSED] DVI-I
[12:22:34] [PASSED] DVI-D
[12:22:34] [PASSED] DVI-A
[12:22:34] [PASSED] Composite
[12:22:34] [PASSED] SVIDEO
[12:22:34] [PASSED] LVDS
[12:22:34] [PASSED] Component
[12:22:34] [PASSED] DIN
[12:22:34] [PASSED] DP
[12:22:34] [PASSED] HDMI-A
[12:22:34] [PASSED] HDMI-B
[12:22:34] [PASSED] TV
[12:22:34] [PASSED] eDP
[12:22:34] [PASSED] Virtual
[12:22:34] [PASSED] DSI
[12:22:34] [PASSED] DPI
[12:22:34] [PASSED] Writeback
[12:22:34] [PASSED] SPI
[12:22:34] [PASSED] USB
[12:22:34] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:22:34] =============== [PASSED] drmm_connector_init ===============
[12:22:34] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_init
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:22:34] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:22:34] [PASSED] Unknown
[12:22:34] [PASSED] VGA
[12:22:34] [PASSED] DVI-I
[12:22:34] [PASSED] DVI-D
[12:22:34] [PASSED] DVI-A
[12:22:34] [PASSED] Composite
[12:22:34] [PASSED] SVIDEO
[12:22:34] [PASSED] LVDS
[12:22:34] [PASSED] Component
[12:22:34] [PASSED] DIN
[12:22:34] [PASSED] DP
[12:22:34] [PASSED] HDMI-A
[12:22:34] [PASSED] HDMI-B
[12:22:34] [PASSED] TV
[12:22:34] [PASSED] eDP
[12:22:34] [PASSED] Virtual
[12:22:34] [PASSED] DSI
[12:22:34] [PASSED] DPI
[12:22:34] [PASSED] Writeback
[12:22:34] [PASSED] SPI
[12:22:34] [PASSED] USB
[12:22:34] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:22:34] ======== drm_test_drm_connector_dynamic_init_name =========
[12:22:34] [PASSED] Unknown
[12:22:34] [PASSED] VGA
[12:22:34] [PASSED] DVI-I
[12:22:34] [PASSED] DVI-D
[12:22:34] [PASSED] DVI-A
[12:22:34] [PASSED] Composite
[12:22:34] [PASSED] SVIDEO
[12:22:34] [PASSED] LVDS
[12:22:34] [PASSED] Component
[12:22:34] [PASSED] DIN
[12:22:34] [PASSED] DP
[12:22:34] [PASSED] HDMI-A
[12:22:34] [PASSED] HDMI-B
[12:22:34] [PASSED] TV
[12:22:34] [PASSED] eDP
[12:22:34] [PASSED] Virtual
[12:22:34] [PASSED] DSI
[12:22:34] [PASSED] DPI
[12:22:34] [PASSED] Writeback
[12:22:34] [PASSED] SPI
[12:22:34] [PASSED] USB
[12:22:34] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:22:34] =========== [PASSED] drm_connector_dynamic_init ============
[12:22:34] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:22:34] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:22:34] ======= drm_connector_dynamic_register (7 subtests) ========
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:22:34] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:22:34] ========= [PASSED] drm_connector_dynamic_register ==========
[12:22:34] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:22:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:22:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:22:34] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:22:34] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:22:34] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:22:34] [PASSED] NTSC
[12:22:34] [PASSED] NTSC-443
[12:22:34] [PASSED] NTSC-J
[12:22:34] [PASSED] PAL
[12:22:34] [PASSED] PAL-M
[12:22:34] [PASSED] PAL-N
[12:22:34] [PASSED] SECAM
[12:22:34] [PASSED] Mono
[12:22:34] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:22:34] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:22:34] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:22:34] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:22:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:22:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:22:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:22:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:22:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:22:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:22:34] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:22:34] [PASSED] VIC 96
[12:22:34] [PASSED] VIC 97
[12:22:34] [PASSED] VIC 101
[12:22:34] [PASSED] VIC 102
[12:22:34] [PASSED] VIC 106
[12:22:34] [PASSED] VIC 107
[12:22:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:22:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:22:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:22:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:22:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:22:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:22:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:22:34] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:22:34] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:22:34] [PASSED] Automatic
[12:22:34] [PASSED] Full
[12:22:34] [PASSED] Limited 16:235
[12:22:34] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:22:34] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:22:34] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:22:34] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:22:34] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:22:34] [PASSED] RGB
[12:22:34] [PASSED] YUV 4:2:0
[12:22:34] [PASSED] YUV 4:2:2
[12:22:34] [PASSED] YUV 4:4:4
[12:22:34] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:22:34] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:22:34] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:22:34] ============= drm_damage_helper (21 subtests) ==============
[12:22:34] [PASSED] drm_test_damage_iter_no_damage
[12:22:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:22:34] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:22:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:22:34] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:22:34] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:22:34] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:22:34] [PASSED] drm_test_damage_iter_simple_damage
[12:22:34] [PASSED] drm_test_damage_iter_single_damage
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:22:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:22:34] [PASSED] drm_test_damage_iter_damage
[12:22:34] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:22:34] [PASSED] drm_test_damage_iter_damage_one_outside
[12:22:34] [PASSED] drm_test_damage_iter_damage_src_moved
[12:22:34] [PASSED] drm_test_damage_iter_damage_not_visible
[12:22:34] ================ [PASSED] drm_damage_helper ================
[12:22:34] ============== drm_dp_mst_helper (3 subtests) ==============
[12:22:34] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:22:34] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:22:34] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:22:34] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:22:34] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:22:34] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:22:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:22:34] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:22:34] [PASSED] Link rate 2000000 lane count 4
[12:22:34] [PASSED] Link rate 2000000 lane count 2
[12:22:34] [PASSED] Link rate 2000000 lane count 1
[12:22:34] [PASSED] Link rate 1350000 lane count 4
[12:22:34] [PASSED] Link rate 1350000 lane count 2
[12:22:34] [PASSED] Link rate 1350000 lane count 1
[12:22:34] [PASSED] Link rate 1000000 lane count 4
[12:22:34] [PASSED] Link rate 1000000 lane count 2
[12:22:34] [PASSED] Link rate 1000000 lane count 1
[12:22:34] [PASSED] Link rate 810000 lane count 4
[12:22:34] [PASSED] Link rate 810000 lane count 2
[12:22:34] [PASSED] Link rate 810000 lane count 1
[12:22:34] [PASSED] Link rate 540000 lane count 4
[12:22:34] [PASSED] Link rate 540000 lane count 2
[12:22:34] [PASSED] Link rate 540000 lane count 1
[12:22:34] [PASSED] Link rate 270000 lane count 4
[12:22:34] [PASSED] Link rate 270000 lane count 2
[12:22:34] [PASSED] Link rate 270000 lane count 1
[12:22:34] [PASSED] Link rate 162000 lane count 4
[12:22:34] [PASSED] Link rate 162000 lane count 2
[12:22:34] [PASSED] Link rate 162000 lane count 1
[12:22:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:22:34] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:22:34] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:22:34] [PASSED] DP_POWER_UP_PHY with port number
[12:22:34] [PASSED] DP_POWER_DOWN_PHY with port number
[12:22:34] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:22:34] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:22:34] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:22:34] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:22:34] [PASSED] DP_QUERY_PAYLOAD with port number
[12:22:34] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:22:34] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:22:34] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:22:34] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:22:34] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:22:34] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:22:34] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:22:34] [PASSED] DP_REMOTE_I2C_READ with port number
[12:22:34] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:22:34] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:22:34] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:22:34] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:22:34] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:22:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:22:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:22:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:22:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:22:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:22:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:22:34] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:22:34] ================ [PASSED] drm_dp_mst_helper ================
[12:22:34] ================== drm_exec (7 subtests) ===================
[12:22:34] [PASSED] sanitycheck
[12:22:34] [PASSED] test_lock
[12:22:34] [PASSED] test_lock_unlock
[12:22:34] [PASSED] test_duplicates
[12:22:34] [PASSED] test_prepare
[12:22:34] [PASSED] test_prepare_array
[12:22:34] [PASSED] test_multiple_loops
[12:22:34] ==================== [PASSED] drm_exec =====================
[12:22:34] =========== drm_format_helper_test (17 subtests) ===========
[12:22:34] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:22:34] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:22:34] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:22:34] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:22:34] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:22:34] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:22:34] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:22:34] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:22:34] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:22:34] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:22:34] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:22:34] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:22:34] ==================== drm_test_fb_swab =====================
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ================ [PASSED] drm_test_fb_swab =================
[12:22:34] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:22:34] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:22:34] [PASSED] single_pixel_source_buffer
[12:22:34] [PASSED] single_pixel_clip_rectangle
[12:22:34] [PASSED] well_known_colors
[12:22:34] [PASSED] destination_pitch
[12:22:34] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:22:34] ================= drm_test_fb_clip_offset =================
[12:22:34] [PASSED] pass through
[12:22:34] [PASSED] horizontal offset
[12:22:34] [PASSED] vertical offset
[12:22:34] [PASSED] horizontal and vertical offset
[12:22:34] [PASSED] horizontal offset (custom pitch)
[12:22:34] [PASSED] vertical offset (custom pitch)
[12:22:34] [PASSED] horizontal and vertical offset (custom pitch)
[12:22:34] ============= [PASSED] drm_test_fb_clip_offset =============
[12:22:34] =================== drm_test_fb_memcpy ====================
[12:22:34] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:22:34] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:22:34] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:22:34] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:22:34] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:22:34] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:22:34] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:22:34] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:22:34] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:22:34] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:22:34] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:22:34] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:22:34] =============== [PASSED] drm_test_fb_memcpy ================
[12:22:34] ============= [PASSED] drm_format_helper_test ==============
[12:22:34] ================= drm_format (18 subtests) =================
[12:22:34] [PASSED] drm_test_format_block_width_invalid
[12:22:34] [PASSED] drm_test_format_block_width_one_plane
[12:22:34] [PASSED] drm_test_format_block_width_two_plane
[12:22:34] [PASSED] drm_test_format_block_width_three_plane
[12:22:34] [PASSED] drm_test_format_block_width_tiled
[12:22:34] [PASSED] drm_test_format_block_height_invalid
[12:22:34] [PASSED] drm_test_format_block_height_one_plane
[12:22:34] [PASSED] drm_test_format_block_height_two_plane
[12:22:34] [PASSED] drm_test_format_block_height_three_plane
[12:22:34] [PASSED] drm_test_format_block_height_tiled
[12:22:34] [PASSED] drm_test_format_min_pitch_invalid
[12:22:34] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:22:34] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:22:34] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:22:34] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:22:34] [PASSED] drm_test_format_min_pitch_two_plane
[12:22:34] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:22:34] [PASSED] drm_test_format_min_pitch_tiled
[12:22:34] =================== [PASSED] drm_format ====================
[12:22:34] ============== drm_framebuffer (10 subtests) ===============
[12:22:34] ========== drm_test_framebuffer_check_src_coords ==========
[12:22:34] [PASSED] Success: source fits into fb
[12:22:34] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:22:34] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:22:34] [PASSED] Fail: overflowing fb with source width
[12:22:34] [PASSED] Fail: overflowing fb with source height
[12:22:34] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:22:34] [PASSED] drm_test_framebuffer_cleanup
[12:22:34] =============== drm_test_framebuffer_create ===============
[12:22:34] [PASSED] ABGR8888 normal sizes
[12:22:34] [PASSED] ABGR8888 max sizes
[12:22:34] [PASSED] ABGR8888 pitch greater than min required
[12:22:34] [PASSED] ABGR8888 pitch less than min required
[12:22:34] [PASSED] ABGR8888 Invalid width
[12:22:34] [PASSED] ABGR8888 Invalid buffer handle
[12:22:34] [PASSED] No pixel format
[12:22:34] [PASSED] ABGR8888 Width 0
[12:22:34] [PASSED] ABGR8888 Height 0
[12:22:34] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:22:34] [PASSED] ABGR8888 Large buffer offset
[12:22:34] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:22:34] [PASSED] ABGR8888 Invalid flag
[12:22:34] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:22:34] [PASSED] ABGR8888 Valid buffer modifier
[12:22:34] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:22:34] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] NV12 Normal sizes
[12:22:34] [PASSED] NV12 Max sizes
[12:22:34] [PASSED] NV12 Invalid pitch
[12:22:34] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:22:34] [PASSED] NV12 different modifier per-plane
[12:22:34] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:22:34] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] NV12 Modifier for inexistent plane
[12:22:34] [PASSED] NV12 Handle for inexistent plane
[12:22:34] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:22:34] [PASSED] YVU420 Normal sizes
[12:22:34] [PASSED] YVU420 Max sizes
[12:22:34] [PASSED] YVU420 Invalid pitch
[12:22:34] [PASSED] YVU420 Different pitches
[12:22:34] [PASSED] YVU420 Different buffer offsets/pitches
[12:22:34] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:22:34] [PASSED] YVU420 Valid modifier
[12:22:34] [PASSED] YVU420 Different modifiers per plane
[12:22:34] [PASSED] YVU420 Modifier for inexistent plane
[12:22:34] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:22:34] [PASSED] X0L2 Normal sizes
[12:22:34] [PASSED] X0L2 Max sizes
[12:22:34] [PASSED] X0L2 Invalid pitch
[12:22:34] [PASSED] X0L2 Pitch greater than minimum required
[12:22:34] [PASSED] X0L2 Handle for inexistent plane
[12:22:34] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:22:34] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:22:34] [PASSED] X0L2 Valid modifier
[12:22:34] [PASSED] X0L2 Modifier for inexistent plane
[12:22:34] =========== [PASSED] drm_test_framebuffer_create ===========
[12:22:34] [PASSED] drm_test_framebuffer_free
[12:22:34] [PASSED] drm_test_framebuffer_init
[12:22:34] [PASSED] drm_test_framebuffer_init_bad_format
[12:22:34] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:22:34] [PASSED] drm_test_framebuffer_lookup
[12:22:34] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:22:34] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:22:34] ================= [PASSED] drm_framebuffer =================
[12:22:34] ================ drm_gem_shmem (8 subtests) ================
[12:22:34] [PASSED] drm_gem_shmem_test_obj_create
[12:22:34] [PASSED] drm_gem_shmem_test_obj_create_private
[12:22:34] [PASSED] drm_gem_shmem_test_pin_pages
[12:22:34] [PASSED] drm_gem_shmem_test_vmap
[12:22:34] [PASSED] drm_gem_shmem_test_get_sg_table
[12:22:34] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:22:34] [PASSED] drm_gem_shmem_test_madvise
[12:22:34] [PASSED] drm_gem_shmem_test_purge
[12:22:34] ================== [PASSED] drm_gem_shmem ==================
[12:22:34] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:22:34] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:22:34] [PASSED] Automatic
[12:22:34] [PASSED] Full
[12:22:34] [PASSED] Limited 16:235
[12:22:34] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:22:34] [PASSED] drm_test_check_disable_connector
[12:22:34] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:22:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:22:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:22:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:22:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:22:34] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:22:34] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:22:34] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:22:34] [PASSED] drm_test_check_output_bpc_dvi
[12:22:34] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:22:34] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:22:34] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:22:34] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:22:34] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:22:34] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:22:34] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:22:34] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:22:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:22:34] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:22:34] [PASSED] drm_test_check_broadcast_rgb_value
[12:22:34] [PASSED] drm_test_check_bpc_8_value
[12:22:34] [PASSED] drm_test_check_bpc_10_value
[12:22:34] [PASSED] drm_test_check_bpc_12_value
[12:22:34] [PASSED] drm_test_check_format_value
[12:22:34] [PASSED] drm_test_check_tmds_char_value
[12:22:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:22:34] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:22:34] [PASSED] drm_test_check_mode_valid
[12:22:34] [PASSED] drm_test_check_mode_valid_reject
[12:22:34] [PASSED] drm_test_check_mode_valid_reject_rate
[12:22:34] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:22:34] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:22:34] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[12:22:34] [PASSED] drm_test_check_infoframes
[12:22:34] [PASSED] drm_test_check_reject_avi_infoframe
[12:22:34] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[12:22:34] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[12:22:34] [PASSED] drm_test_check_reject_audio_infoframe
[12:22:34] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[12:22:34] ================= drm_managed (2 subtests) =================
[12:22:34] [PASSED] drm_test_managed_release_action
[12:22:34] [PASSED] drm_test_managed_run_action
[12:22:34] =================== [PASSED] drm_managed ===================
[12:22:34] =================== drm_mm (6 subtests) ====================
[12:22:34] [PASSED] drm_test_mm_init
[12:22:34] [PASSED] drm_test_mm_debug
[12:22:34] [PASSED] drm_test_mm_align32
[12:22:34] [PASSED] drm_test_mm_align64
[12:22:34] [PASSED] drm_test_mm_lowest
[12:22:34] [PASSED] drm_test_mm_highest
[12:22:34] ===================== [PASSED] drm_mm ======================
[12:22:34] ============= drm_modes_analog_tv (5 subtests) =============
[12:22:34] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:22:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:22:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:22:34] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:22:34] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:22:34] =============== [PASSED] drm_modes_analog_tv ===============
[12:22:34] ============== drm_plane_helper (2 subtests) ===============
[12:22:34] =============== drm_test_check_plane_state ================
[12:22:34] [PASSED] clipping_simple
[12:22:34] [PASSED] clipping_rotate_reflect
[12:22:34] [PASSED] positioning_simple
[12:22:34] [PASSED] upscaling
[12:22:34] [PASSED] downscaling
[12:22:34] [PASSED] rounding1
[12:22:34] [PASSED] rounding2
[12:22:34] [PASSED] rounding3
[12:22:34] [PASSED] rounding4
[12:22:34] =========== [PASSED] drm_test_check_plane_state ============
[12:22:34] =========== drm_test_check_invalid_plane_state ============
[12:22:34] [PASSED] positioning_invalid
[12:22:34] [PASSED] upscaling_invalid
[12:22:34] [PASSED] downscaling_invalid
[12:22:34] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:22:34] ================ [PASSED] drm_plane_helper =================
[12:22:34] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:22:34] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:22:34] [PASSED] None
[12:22:34] [PASSED] PAL
[12:22:34] [PASSED] NTSC
[12:22:34] [PASSED] Both, NTSC Default
[12:22:34] [PASSED] Both, PAL Default
[12:22:34] [PASSED] Both, NTSC Default, with PAL on command-line
[12:22:34] [PASSED] Both, PAL Default, with NTSC on command-line
[12:22:34] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:22:34] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:22:34] ================== drm_rect (9 subtests) ===================
[12:22:34] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:22:34] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:22:34] [PASSED] drm_test_rect_clip_scaled_clipped
[12:22:34] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:22:34] ================= drm_test_rect_intersect =================
[12:22:34] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:22:34] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:22:34] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:22:34] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:22:34] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:22:34] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:22:34] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:22:34] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:22:34] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:22:34] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:22:34] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:22:34] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:22:34] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:22:34] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:22:34] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:22:34] ============= [PASSED] drm_test_rect_intersect =============
[12:22:34] ================ drm_test_rect_calc_hscale ================
[12:22:34] [PASSED] normal use
[12:22:34] [PASSED] out of max range
[12:22:34] [PASSED] out of min range
[12:22:34] [PASSED] zero dst
[12:22:34] [PASSED] negative src
[12:22:34] [PASSED] negative dst
[12:22:34] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:22:34] ================ drm_test_rect_calc_vscale ================
[12:22:34] [PASSED] normal use
[12:22:34] [PASSED] out of max range
[12:22:34] [PASSED] out of min range
[12:22:34] [PASSED] zero dst
[12:22:34] [PASSED] negative src
[12:22:34] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[12:22:34] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:22:34] ================== drm_test_rect_rotate ===================
[12:22:34] [PASSED] reflect-x
[12:22:34] [PASSED] reflect-y
[12:22:34] [PASSED] rotate-0
[12:22:34] [PASSED] rotate-90
[12:22:34] [PASSED] rotate-180
[12:22:34] [PASSED] rotate-270
[12:22:34] ============== [PASSED] drm_test_rect_rotate ===============
[12:22:34] ================ drm_test_rect_rotate_inv =================
[12:22:34] [PASSED] reflect-x
[12:22:34] [PASSED] reflect-y
[12:22:34] [PASSED] rotate-0
[12:22:34] [PASSED] rotate-90
[12:22:34] [PASSED] rotate-180
[12:22:34] [PASSED] rotate-270
[12:22:34] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:22:34] ==================== [PASSED] drm_rect =====================
[12:22:34] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:22:34] ============ drm_test_sysfb_build_fourcc_list =============
[12:22:34] [PASSED] no native formats
[12:22:34] [PASSED] XRGB8888 as native format
[12:22:34] [PASSED] remove duplicates
[12:22:34] [PASSED] convert alpha formats
[12:22:34] [PASSED] random formats
[12:22:34] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:22:34] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:22:34] ================== drm_fixp (2 subtests) ===================
[12:22:34] [PASSED] drm_test_int2fixp
[12:22:34] [PASSED] drm_test_sm2fixp
[12:22:34] ==================== [PASSED] drm_fixp =====================
[12:22:34] ============================================================
[12:22:34] Testing complete. Ran 621 tests: passed: 621
[12:22:34] Elapsed time: 27.371s total, 1.673s configuring, 25.531s building, 0.132s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:22:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:22: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=48
[12:22:45] Starting KUnit Kernel (1/1)...
[12:22:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:22:45] ================= ttm_device (5 subtests) ==================
[12:22:45] [PASSED] ttm_device_init_basic
[12:22:45] [PASSED] ttm_device_init_multiple
[12:22:45] [PASSED] ttm_device_fini_basic
[12:22:45] [PASSED] ttm_device_init_no_vma_man
[12:22:45] ================== ttm_device_init_pools ==================
[12:22:45] [PASSED] No DMA allocations, no DMA32 required
[12:22:45] [PASSED] DMA allocations, DMA32 required
[12:22:45] [PASSED] No DMA allocations, DMA32 required
[12:22:45] [PASSED] DMA allocations, no DMA32 required
[12:22:45] ============== [PASSED] ttm_device_init_pools ==============
[12:22:45] =================== [PASSED] ttm_device ====================
[12:22:45] ================== ttm_pool (8 subtests) ===================
[12:22:45] ================== ttm_pool_alloc_basic ===================
[12:22:45] [PASSED] One page
[12:22:45] [PASSED] More than one page
[12:22:45] [PASSED] Above the allocation limit
[12:22:45] [PASSED] One page, with coherent DMA mappings enabled
[12:22:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:22:45] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:22:45] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:22:45] [PASSED] One page
[12:22:45] [PASSED] More than one page
[12:22:45] [PASSED] Above the allocation limit
[12:22:45] [PASSED] One page, with coherent DMA mappings enabled
[12:22:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:22:45] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:22:45] [PASSED] ttm_pool_alloc_order_caching_match
[12:22:45] [PASSED] ttm_pool_alloc_caching_mismatch
[12:22:45] [PASSED] ttm_pool_alloc_order_mismatch
[12:22:45] [PASSED] ttm_pool_free_dma_alloc
[12:22:45] [PASSED] ttm_pool_free_no_dma_alloc
[12:22:45] [PASSED] ttm_pool_fini_basic
[12:22:45] ==================== [PASSED] ttm_pool =====================
[12:22:45] ================ ttm_resource (8 subtests) =================
[12:22:45] ================= ttm_resource_init_basic =================
[12:22:45] [PASSED] Init resource in TTM_PL_SYSTEM
[12:22:45] [PASSED] Init resource in TTM_PL_VRAM
[12:22:45] [PASSED] Init resource in a private placement
[12:22:45] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:22:45] ============= [PASSED] ttm_resource_init_basic =============
[12:22:45] [PASSED] ttm_resource_init_pinned
[12:22:45] [PASSED] ttm_resource_fini_basic
[12:22:45] [PASSED] ttm_resource_manager_init_basic
[12:22:45] [PASSED] ttm_resource_manager_usage_basic
[12:22:45] [PASSED] ttm_resource_manager_set_used_basic
[12:22:45] [PASSED] ttm_sys_man_alloc_basic
[12:22:45] [PASSED] ttm_sys_man_free_basic
[12:22:45] ================== [PASSED] ttm_resource ===================
[12:22:45] =================== ttm_tt (15 subtests) ===================
[12:22:45] ==================== ttm_tt_init_basic ====================
[12:22:45] [PASSED] Page-aligned size
[12:22:45] [PASSED] Extra pages requested
[12:22:45] ================ [PASSED] ttm_tt_init_basic ================
[12:22:45] [PASSED] ttm_tt_init_misaligned
[12:22:45] [PASSED] ttm_tt_fini_basic
[12:22:45] [PASSED] ttm_tt_fini_sg
[12:22:45] [PASSED] ttm_tt_fini_shmem
[12:22:45] [PASSED] ttm_tt_create_basic
[12:22:45] [PASSED] ttm_tt_create_invalid_bo_type
[12:22:45] [PASSED] ttm_tt_create_ttm_exists
[12:22:45] [PASSED] ttm_tt_create_failed
[12:22:45] [PASSED] ttm_tt_destroy_basic
[12:22:45] [PASSED] ttm_tt_populate_null_ttm
[12:22:45] [PASSED] ttm_tt_populate_populated_ttm
[12:22:45] [PASSED] ttm_tt_unpopulate_basic
[12:22:45] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:22:45] [PASSED] ttm_tt_swapin_basic
[12:22:45] ===================== [PASSED] ttm_tt ======================
[12:22:45] =================== ttm_bo (14 subtests) ===================
[12:22:45] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:22:45] [PASSED] Cannot be interrupted and sleeps
[12:22:45] [PASSED] Cannot be interrupted, locks straight away
[12:22:45] [PASSED] Can be interrupted, sleeps
[12:22:45] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:22:45] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:22:45] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:22:45] [PASSED] ttm_bo_reserve_double_resv
[12:22:45] [PASSED] ttm_bo_reserve_interrupted
[12:22:45] [PASSED] ttm_bo_reserve_deadlock
[12:22:45] [PASSED] ttm_bo_unreserve_basic
[12:22:45] [PASSED] ttm_bo_unreserve_pinned
[12:22:45] [PASSED] ttm_bo_unreserve_bulk
[12:22:45] [PASSED] ttm_bo_fini_basic
[12:22:45] [PASSED] ttm_bo_fini_shared_resv
[12:22:45] [PASSED] ttm_bo_pin_basic
[12:22:45] [PASSED] ttm_bo_pin_unpin_resource
[12:22:45] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:22:45] ===================== [PASSED] ttm_bo ======================
[12:22:45] ============== ttm_bo_validate (21 subtests) ===============
[12:22:45] ============== ttm_bo_init_reserved_sys_man ===============
[12:22:45] [PASSED] Buffer object for userspace
[12:22:45] [PASSED] Kernel buffer object
[12:22:45] [PASSED] Shared buffer object
[12:22:45] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:22:45] ============== ttm_bo_init_reserved_mock_man ==============
[12:22:45] [PASSED] Buffer object for userspace
[12:22:45] [PASSED] Kernel buffer object
[12:22:45] [PASSED] Shared buffer object
[12:22:45] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:22:45] [PASSED] ttm_bo_init_reserved_resv
[12:22:45] ================== ttm_bo_validate_basic ==================
[12:22:45] [PASSED] Buffer object for userspace
[12:22:45] [PASSED] Kernel buffer object
[12:22:45] [PASSED] Shared buffer object
[12:22:45] ============== [PASSED] ttm_bo_validate_basic ==============
[12:22:45] [PASSED] ttm_bo_validate_invalid_placement
[12:22:45] ============= ttm_bo_validate_same_placement ==============
[12:22:45] [PASSED] System manager
[12:22:45] [PASSED] VRAM manager
[12:22:45] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:22:45] [PASSED] ttm_bo_validate_failed_alloc
[12:22:45] [PASSED] ttm_bo_validate_pinned
[12:22:45] [PASSED] ttm_bo_validate_busy_placement
[12:22:45] ================ ttm_bo_validate_multihop =================
[12:22:45] [PASSED] Buffer object for userspace
[12:22:45] [PASSED] Kernel buffer object
[12:22:45] [PASSED] Shared buffer object
[12:22:45] ============ [PASSED] ttm_bo_validate_multihop =============
[12:22:45] ========== ttm_bo_validate_no_placement_signaled ==========
[12:22:45] [PASSED] Buffer object in system domain, no page vector
[12:22:45] [PASSED] Buffer object in system domain with an existing page vector
[12:22:45] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:22:45] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:22:45] [PASSED] Buffer object for userspace
[12:22:45] [PASSED] Kernel buffer object
[12:22:45] [PASSED] Shared buffer object
[12:22:45] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:22:45] [PASSED] ttm_bo_validate_move_fence_signaled
[12:22:46] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:22:46] [PASSED] Waits for GPU
[12:22:46] [PASSED] Tries to lock straight away
[12:22:46] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:22:46] [PASSED] ttm_bo_validate_happy_evict
[12:22:46] [PASSED] ttm_bo_validate_all_pinned_evict
[12:22:46] [PASSED] ttm_bo_validate_allowed_only_evict
[12:22:46] [PASSED] ttm_bo_validate_deleted_evict
[12:22:46] [PASSED] ttm_bo_validate_busy_domain_evict
[12:22:46] [PASSED] ttm_bo_validate_evict_gutting
[12:22:46] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:22:46] ================= [PASSED] ttm_bo_validate =================
[12:22:46] ============================================================
[12:22:46] Testing complete. Ran 101 tests: passed: 101
[12:22:46] Elapsed time: 11.360s total, 1.606s configuring, 9.537s building, 0.187s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.checksparse: warning for drm/i915/dpt: refactoring, move to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (11 preceding siblings ...)
2026-02-06 12:22 ` ✓ CI.KUnit: success " Patchwork
@ 2026-02-06 12:38 ` Patchwork
2026-02-06 12:56 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-06 12:38 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/dpt: refactoring, move to parent interface
URL : https://patchwork.freedesktop.org/series/161269/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast d9124a6be3c7bdaeb14c3629013dde27929dbf04
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-drivers/gpu/drm/i915/display/intel_display_driver.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_drivers/gpu/drm/i915/display/intel_display_power_map.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_driver.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_power_map.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
-drivers/gpu/drm/i915/display/intel_dpt_common.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
-./include/linux/pwm.h:13:1: error: bad constant expression
-types.h):
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/dpt: refactoring, move to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (12 preceding siblings ...)
2026-02-06 12:38 ` ✗ CI.checksparse: warning " Patchwork
@ 2026-02-06 12:56 ` Patchwork
2026-02-07 14:00 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-12 17:32 ` [PATCH 00/10] " Juha-Pekka Heikkilä
15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-06 12:56 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 965 bytes --]
== Series Details ==
Series: drm/i915/dpt: refactoring, move to parent interface
URL : https://patchwork.freedesktop.org/series/161269/
State : success
== Summary ==
CI Bug Log - changes from xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04_BAT -> xe-pw-161269v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04 -> xe-pw-161269v1
IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04: d9124a6be3c7bdaeb14c3629013dde27929dbf04
xe-pw-161269v1: 161269v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/index.html
[-- Attachment #2: Type: text/html, Size: 1513 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/i915/dpt: refactoring, move to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (13 preceding siblings ...)
2026-02-06 12:56 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-02-07 14:00 ` Patchwork
2026-02-12 17:32 ` [PATCH 00/10] " Juha-Pekka Heikkilä
15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-07 14:00 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 36530 bytes --]
== Series Details ==
Series: drm/i915/dpt: refactoring, move to parent interface
URL : https://patchwork.freedesktop.org/series/161269/
State : failure
== Summary ==
CI Bug Log - changes from xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04_FULL -> xe-pw-161269v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161269v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161269v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-161269v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@many-stride-free-race:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-free-race.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-free-race.html
Known issues
------------
Here are the changes found in xe-pw-161269v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@bad-pitch-999:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#1727] / [Intel XE#6819])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_addfb_basic@bad-pitch-999.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-2/igt@kms_addfb_basic@bad-pitch-999.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2328])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +9 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#6974])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6707])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2291])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4210])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2374])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2316]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_flip@2x-plain-flip.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7178]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +16 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2313]) +15 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#1503])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_hdr@static-toggle.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_hdr@static-toggle.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7130]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7131]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7111] / [Intel XE#7130]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2392])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3414] / [Intel XE#3904])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6503]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2450])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
* igt@xe_eudebug@basic-close:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4837]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_evict@evict-small-multi-queue-priority-cm:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7140])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_evict@evict-small-multi-queue-priority-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7136]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6874]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#5007])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap:
- shard-bmg: NOTRUN -> [INCOMPLETE][46] ([Intel XE#2594])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4943]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#7166])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7138]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2229])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75]) -> ([PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [SKIP][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101]) ([Intel XE#2457])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-3/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-8/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-8/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-3/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-8/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-6/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-6/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-6/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-10/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-10/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-10/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-7/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-7/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-2/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-7/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-2/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_module_load@load.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2284])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4733])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#944])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- shard-bmg: [DMESG-WARN][105] -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][107] ([Intel XE#2291]) -> [PASS][108] +5 other tests pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][109] ([Intel XE#2316]) -> [PASS][110] +4 other tests pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [ABORT][111] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][113] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [DMESG-WARN][115] ([Intel XE#3428] / [Intel XE#5208]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][117] ([Intel XE#1503]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][119] ([Intel XE#1435]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][121] ([Intel XE#6321]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [ABORT][123] -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
#### Warnings ####
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [FAIL][125] ([Intel XE#3304]) -> [SKIP][126] ([Intel XE#7194])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][127] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][128] ([Intel XE#2341])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_content_protection@srm.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][129] ([Intel XE#2341]) -> [FAIL][130] ([Intel XE#6707])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_content_protection@uevent.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][131] ([Intel XE#2311]) -> [SKIP][132] ([Intel XE#2312]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][133] ([Intel XE#2312]) -> [SKIP][134] ([Intel XE#2311]) +8 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][135] ([Intel XE#2312]) -> [SKIP][136] ([Intel XE#4141]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][137] ([Intel XE#4141]) -> [SKIP][138] ([Intel XE#2312]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][139] ([Intel XE#2313]) -> [SKIP][140] ([Intel XE#2312]) +10 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][141] ([Intel XE#2312]) -> [SKIP][142] ([Intel XE#2313]) +11 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][143] ([Intel XE#2426]) -> [SKIP][144] ([Intel XE#2509])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[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#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04 -> xe-pw-161269v1
IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04: d9124a6be3c7bdaeb14c3629013dde27929dbf04
xe-pw-161269v1: 161269v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161269v1/index.html
[-- Attachment #2: Type: text/html, Size: 40411 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
` (14 preceding siblings ...)
2026-02-07 14:00 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-12 17:32 ` Juha-Pekka Heikkilä
15 siblings, 0 replies; 18+ messages in thread
From: Juha-Pekka Heikkilä @ 2026-02-12 17:32 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
I didn't spot anything special on these other than maybe patch
"drm/i915/dpt: switch to i915 runtime pm calls" could use better
commit message.
set is
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On Fri, Feb 6, 2026 at 2:13 PM Jani Nikula <jani.nikula@intel.com> wrote:
>
>
> Jani Nikula (10):
> drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c
> drm/i915/dpt: pass obj, size instead of framebuffer to
> intel_dpt_create()
> drm/i915/dpt: move create/destroy to parent interface
> drm/i915/dpt: move suspend/resume to parent interface
> drm/i915/dpt: remove display/intel_dpt.h
> drm/i915/dpt: drop _common from the DPT file names
> drm/i915/dpt: switch to i915 runtime pm calls
> drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix
> drm/i915/dpt: rename struct i915_dpt to intel_dpt
> drm/i915/dpt: pass opaque struct intel_dpt around instead of
> i915_address_space
>
> drivers/gpu/drm/i915/Makefile | 2 +-
> drivers/gpu/drm/i915/display/intel_display.c | 1 -
> .../drm/i915/display/intel_display_types.h | 2 +-
> drivers/gpu/drm/i915/display/intel_dpt.c | 316 +++---------------
> drivers/gpu/drm/i915/display/intel_dpt.h | 22 +-
> .../gpu/drm/i915/display/intel_dpt_common.c | 35 --
> .../gpu/drm/i915/display/intel_dpt_common.h | 13 -
> drivers/gpu/drm/i915/display/intel_fb.c | 21 +-
> drivers/gpu/drm/i915/display/intel_fb_pin.c | 15 +-
> drivers/gpu/drm/i915/display/intel_parent.c | 28 ++
> drivers/gpu/drm/i915/display/intel_parent.h | 9 +
> .../drm/i915/display/skl_universal_plane.c | 1 -
> drivers/gpu/drm/i915/i915_dpt.c | 277 +++++++++++++++
> drivers/gpu/drm/i915/i915_dpt.h | 20 ++
> drivers/gpu/drm/i915/i915_driver.c | 2 +
> drivers/gpu/drm/xe/Makefile | 2 +-
> drivers/gpu/drm/xe/display/xe_fb_pin.c | 20 --
> include/drm/intel/display_parent_interface.h | 11 +
> 18 files changed, 419 insertions(+), 378 deletions(-)
> delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt_common.c
> delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt_common.h
> create mode 100644 drivers/gpu/drm/i915/i915_dpt.c
> create mode 100644 drivers/gpu/drm/i915/i915_dpt.h
>
> --
> 2.47.3
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface
@ 2026-02-25 14:49 Jani Nikula
0 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2026-02-25 14:49 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Reposting [1] for CI.
[1] https://lore.kernel.org/r/cover.1770379986.git.jani.nikula@intel.com
Jani Nikula (10):
drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c
drm/i915/dpt: pass obj, size instead of framebuffer to
intel_dpt_create()
drm/i915/dpt: move create/destroy to parent interface
drm/i915/dpt: move suspend/resume to parent interface
drm/i915/dpt: remove display/intel_dpt.h
drm/i915/dpt: drop _common from the DPT file names
drm/i915/dpt: switch to i915 runtime pm calls
drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix
drm/i915/dpt: rename struct i915_dpt to intel_dpt
drm/i915/dpt: pass opaque struct intel_dpt around instead of
i915_address_space
drivers/gpu/drm/i915/Makefile | 2 +-
drivers/gpu/drm/i915/display/intel_display.c | 1 -
.../drm/i915/display/intel_display_types.h | 2 +-
drivers/gpu/drm/i915/display/intel_dpt.c | 316 +++---------------
drivers/gpu/drm/i915/display/intel_dpt.h | 22 +-
.../gpu/drm/i915/display/intel_dpt_common.c | 35 --
.../gpu/drm/i915/display/intel_dpt_common.h | 13 -
drivers/gpu/drm/i915/display/intel_fb.c | 21 +-
drivers/gpu/drm/i915/display/intel_fb_pin.c | 15 +-
drivers/gpu/drm/i915/display/intel_parent.c | 28 ++
drivers/gpu/drm/i915/display/intel_parent.h | 9 +
.../drm/i915/display/skl_universal_plane.c | 1 -
drivers/gpu/drm/i915/i915_dpt.c | 277 +++++++++++++++
drivers/gpu/drm/i915/i915_dpt.h | 20 ++
drivers/gpu/drm/i915/i915_driver.c | 2 +
drivers/gpu/drm/xe/Makefile | 2 +-
drivers/gpu/drm/xe/display/xe_fb_pin.c | 20 --
include/drm/intel/display_parent_interface.h | 11 +
18 files changed, 419 insertions(+), 378 deletions(-)
delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt_common.c
delete mode 100644 drivers/gpu/drm/i915/display/intel_dpt_common.h
create mode 100644 drivers/gpu/drm/i915/i915_dpt.c
create mode 100644 drivers/gpu/drm/i915/i915_dpt.h
--
2.47.3
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2026-02-25 14:49 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 12:13 [PATCH 00/10] drm/i915/dpt: refactoring, move to parent interface Jani Nikula
2026-02-06 12:13 ` [PATCH 01/10] drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c Jani Nikula
2026-02-06 12:13 ` [PATCH 02/10] drm/i915/dpt: pass obj, size instead of framebuffer to intel_dpt_create() Jani Nikula
2026-02-06 12:13 ` [PATCH 03/10] drm/i915/dpt: move create/destroy to parent interface Jani Nikula
2026-02-06 12:13 ` [PATCH 04/10] drm/i915/dpt: move suspend/resume " Jani Nikula
2026-02-06 12:13 ` [PATCH 05/10] drm/i915/dpt: remove display/intel_dpt.h Jani Nikula
2026-02-06 12:13 ` [PATCH 06/10] drm/i915/dpt: drop _common from the DPT file names Jani Nikula
2026-02-06 12:13 ` [PATCH 07/10] drm/i915/dpt: switch to i915 runtime pm calls Jani Nikula
2026-02-06 12:13 ` [PATCH 08/10] drm/i915/dpt: rename i915 specific functions to i915_dpt_ prefix Jani Nikula
2026-02-06 12:13 ` [PATCH 09/10] drm/i915/dpt: rename struct i915_dpt to intel_dpt Jani Nikula
2026-02-06 12:13 ` [PATCH 10/10] drm/i915/dpt: pass opaque struct intel_dpt around instead of i915_address_space Jani Nikula
2026-02-06 12:21 ` ✗ CI.checkpatch: warning for drm/i915/dpt: refactoring, move to parent interface Patchwork
2026-02-06 12:22 ` ✓ CI.KUnit: success " Patchwork
2026-02-06 12:38 ` ✗ CI.checksparse: warning " Patchwork
2026-02-06 12:56 ` ✓ Xe.CI.BAT: success " Patchwork
2026-02-07 14:00 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-12 17:32 ` [PATCH 00/10] " Juha-Pekka Heikkilä
-- strict thread matches above, loose matches on Subject: below --
2026-02-25 14:49 Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox