Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] drm/{i915,xe}/display: pass hooks to display probe
@ 2025-10-03  9:21 Jani Nikula
  2025-10-03  9:26 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Jani Nikula @ 2025-10-03  9:21 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, jouni.hogander

Let's gradually start calling i915 and xe core drivers from display via
function pointers passed at display probe. For starters, just add a
small feature test hook ->has_flat_ccs.

FIXME: "hooks" is a terrible name, both as a parameter and a struct
intel_display member name. It should reflect that we're calling the core
or parent driver. This is a placeholder name for now.

FIXME: Initially, one struct is fine... but once it accumulates a lot of
functions, should it have more indirection? Maybe everything should be
in sub-structs, or the top struct should just be a collection of
pointers to hook structs?

	struct intel_core_hooks {
		const struct intel_rpm_hooks *rpm;
	};

The above would allow having the struct initialization inside the
implementation file, and the functions themselves static. In any case,
it seems best to have just one initialization of the hooks, instead of
one init/register call for each functional area.

The downside is of course having to call the functions like:

	display->hooks->rpm->get(display->drm);

FIXME: It would really be convenient if we could stop using a display
device with mock_gem_device() in mock_gem_device.c. The purpose of the
mock gem device is to run mock *gem* tests. Could we make it happen
without display?

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 .../gpu/drm/i915/display/intel_display_core.h |  4 ++++
 .../drm/i915/display/intel_display_device.c   |  5 ++++-
 .../drm/i915/display/intel_display_device.h   |  4 +++-
 drivers/gpu/drm/i915/display/intel_fb.c       |  5 ++---
 .../drm/i915/display/skl_universal_plane.c    |  5 +++--
 drivers/gpu/drm/i915/i915_driver.c            | 17 ++++++++++++++++-
 drivers/gpu/drm/i915/i915_driver.h            |  2 ++
 .../gpu/drm/i915/selftests/mock_gem_device.c  |  4 +++-
 drivers/gpu/drm/xe/display/xe_display.c       | 12 +++++++++++-
 include/drm/intel/display_interface.h         | 19 +++++++++++++++++++
 10 files changed, 67 insertions(+), 10 deletions(-)
 create mode 100644 include/drm/intel/display_interface.h

diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
index df4da52cbdb3..424d22725ca8 100644
--- a/drivers/gpu/drm/i915/display/intel_display_core.h
+++ b/drivers/gpu/drm/i915/display/intel_display_core.h
@@ -39,6 +39,7 @@ struct intel_audio_funcs;
 struct intel_cdclk_funcs;
 struct intel_cdclk_vals;
 struct intel_color_funcs;
+struct intel_core_hooks;
 struct intel_crtc;
 struct intel_crtc_state;
 struct intel_dmc;
@@ -291,6 +292,9 @@ struct intel_display {
 	/* Intel PCH: where the south display engine lives */
 	enum intel_pch pch_type;
 
+	/* Core functions exposed to display */
+	const struct intel_core_hooks *hooks;
+
 	/* Display functions */
 	struct {
 		/* Top level crtc-ish functions */
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index f3f1f25b0f38..87aaa1930846 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -1647,7 +1647,8 @@ static void display_platforms_or(struct intel_display_platforms *dst,
 	bitmap_or(dst->bitmap, dst->bitmap, src->bitmap, display_platforms_num_bits());
 }
 
-struct intel_display *intel_display_device_probe(struct pci_dev *pdev)
+struct intel_display *intel_display_device_probe(struct pci_dev *pdev,
+						 const struct intel_core_hooks *hooks)
 {
 	struct intel_display *display;
 	const struct intel_display_device_info *info;
@@ -1663,6 +1664,8 @@ struct intel_display *intel_display_device_probe(struct pci_dev *pdev)
 	/* Add drm device backpointer as early as possible. */
 	display->drm = pci_get_drvdata(pdev);
 
+	display->hooks = hooks;
+
 	intel_display_params_copy(&display->params);
 
 	if (has_no_display(pdev)) {
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 0e062753cf9b..999570d15160 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -12,6 +12,7 @@
 #include "intel_display_limits.h"
 
 struct drm_printer;
+struct intel_core_hooks;
 struct intel_display;
 struct pci_dev;
 
@@ -310,7 +311,8 @@ struct intel_display_device_info {
 
 bool intel_display_device_present(struct intel_display *display);
 bool intel_display_device_enabled(struct intel_display *display);
-struct intel_display *intel_display_device_probe(struct pci_dev *pdev);
+struct intel_display *intel_display_device_probe(struct pci_dev *pdev,
+						 const struct intel_core_hooks *hooks);
 void intel_display_device_remove(struct intel_display *display);
 void intel_display_device_info_runtime_init(struct intel_display *display);
 
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 69237dabdae8..dc321df4db28 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -9,6 +9,7 @@
 #include <drm/drm_blend.h>
 #include <drm/drm_gem.h>
 #include <drm/drm_modeset_helper.h>
+#include <drm/intel/display_interface.h>
 
 #include "i915_drv.h"
 #include "i915_utils.h"
@@ -547,8 +548,6 @@ static bool plane_has_modifier(struct intel_display *display,
 			       u8 plane_caps,
 			       const struct intel_modifier_desc *md)
 {
-	struct drm_i915_private *i915 = to_i915(display->drm);
-
 	if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
 		return false;
 
@@ -560,7 +559,7 @@ static bool plane_has_modifier(struct intel_display *display,
 	 * where supported.
 	 */
 	if (intel_fb_is_ccs_modifier(md->modifier) &&
-	    HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
+	    display->hooks->has_flat_ccs(display->drm) != !md->ccs.packed_aux_planes)
 		return false;
 
 	if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index e13fb781e7b2..139d20e8accd 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -7,6 +7,7 @@
 #include <drm/drm_blend.h>
 #include <drm/drm_damage_helper.h>
 #include <drm/drm_fourcc.h>
+#include <drm/intel/display_interface.h>
 
 #include "pxp/intel_pxp.h"
 #include "i915_drv.h"
@@ -1572,7 +1573,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
 	}
 
 	/* FLAT CCS doesn't need to program AUX_DIST */
-	if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
+	if (!display->hooks->has_flat_ccs(display->drm) && DISPLAY_VER(display) < 20)
 		intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
 				   skl_plane_aux_dist(plane_state, color_plane));
 
@@ -2930,7 +2931,7 @@ skl_universal_plane_create(struct intel_display *display,
 		caps = skl_plane_caps(display, pipe, plane_id);
 
 	/* FIXME: xe has problems with AUX */
-	if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
+	if (!IS_ENABLED(I915) && !display->hooks->has_flat_ccs(display->drm))
 		caps &= ~(INTEL_PLANE_CAP_CCS_RC |
 			  INTEL_PLANE_CAP_CCS_RC_CC |
 			  INTEL_PLANE_CAP_CCS_MC);
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index b46cb54ef5dc..cf042e5d1444 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -46,6 +46,7 @@
 #include <drm/drm_ioctl.h>
 #include <drm/drm_managed.h>
 #include <drm/drm_probe_helper.h>
+#include <drm/intel/display_interface.h>
 #include <drm/intel/display_member.h>
 
 #include "display/i9xx_display_sr.h"
@@ -738,6 +739,20 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
 			 "DRM_I915_DEBUG_RUNTIME_PM enabled\n");
 }
 
+static bool has_flat_ccs(struct drm_device *drm)
+{
+	return HAS_FLAT_CCS(to_i915(drm));
+}
+
+static const struct intel_core_hooks hooks = {
+	.has_flat_ccs = has_flat_ccs,
+};
+
+const struct intel_core_hooks *i915_driver_hooks(void)
+{
+	return &hooks;
+}
+
 /* Ensure drm and display members are placed properly. */
 INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct drm_i915_private, drm, display);
 
@@ -762,7 +777,7 @@ i915_driver_create(struct pci_dev *pdev, const struct pci_device_id *ent)
 	/* Set up device info and initial runtime info. */
 	intel_device_info_driver_create(i915, pdev->device, match_info);
 
-	display = intel_display_device_probe(pdev);
+	display = intel_display_device_probe(pdev, &hooks);
 	if (IS_ERR(display))
 		return ERR_CAST(display);
 
diff --git a/drivers/gpu/drm/i915/i915_driver.h b/drivers/gpu/drm/i915/i915_driver.h
index 1e95ecb2a163..26e3afb1d892 100644
--- a/drivers/gpu/drm/i915/i915_driver.h
+++ b/drivers/gpu/drm/i915/i915_driver.h
@@ -12,6 +12,7 @@ struct pci_dev;
 struct pci_device_id;
 struct drm_i915_private;
 struct drm_printer;
+struct intel_core_hooks;
 
 #define DRIVER_NAME		"i915"
 #define DRIVER_DESC		"Intel Graphics"
@@ -24,6 +25,7 @@ void i915_driver_shutdown(struct drm_i915_private *i915);
 
 int i915_driver_resume_switcheroo(struct drm_i915_private *i915);
 int i915_driver_suspend_switcheroo(struct drm_i915_private *i915, pm_message_t state);
+const struct intel_core_hooks *i915_driver_hooks(void);
 
 void
 i915_print_iommu_status(struct drm_i915_private *i915, struct drm_printer *p);
diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.c b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
index fb8751bd5df0..32bfea4a3cca 100644
--- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c
+++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
@@ -27,12 +27,14 @@
 #include <linux/iommu.h>
 
 #include <drm/drm_managed.h>
+#include <drm/intel/display_interface.h>
 
 #include "display/intel_display_device.h"
 
 #include "gt/intel_gt.h"
 #include "gt/intel_gt_requests.h"
 #include "gt/mock_engine.h"
+#include "i915_driver.h"
 #include "intel_memory_region.h"
 #include "intel_region_ttm.h"
 
@@ -183,7 +185,7 @@ struct drm_i915_private *mock_gem_device(void)
 	/* Set up device info and initial runtime info. */
 	intel_device_info_driver_create(i915, pdev->device, &mock_info);
 
-	display = intel_display_device_probe(pdev);
+	display = intel_display_device_probe(pdev, i915_driver_hooks());
 	if (IS_ERR(display))
 		goto err_device;
 
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index 5f4044e63185..644641954125 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -13,6 +13,7 @@
 #include <drm/drm_drv.h>
 #include <drm/drm_managed.h>
 #include <drm/drm_probe_helper.h>
+#include <drm/intel/display_interface.h>
 #include <drm/intel/display_member.h>
 #include <uapi/drm/xe_drm.h>
 
@@ -515,6 +516,15 @@ static void display_device_remove(struct drm_device *dev, void *arg)
 	intel_display_device_remove(display);
 }
 
+static bool has_flat_ccs(struct drm_device *drm)
+{
+	return xe_device_has_flat_ccs(to_xe_device(drm));
+}
+
+static const struct intel_core_hooks hooks = {
+	.has_flat_ccs = has_flat_ccs,
+};
+
 /**
  * xe_display_probe - probe display and create display struct
  * @xe: XE device instance
@@ -535,7 +545,7 @@ int xe_display_probe(struct xe_device *xe)
 	if (!xe->info.probe_display)
 		goto no_display;
 
-	display = intel_display_device_probe(pdev);
+	display = intel_display_device_probe(pdev, &hooks);
 	if (IS_ERR(display))
 		return PTR_ERR(display);
 
diff --git a/include/drm/intel/display_interface.h b/include/drm/intel/display_interface.h
new file mode 100644
index 000000000000..82e3b6b641f7
--- /dev/null
+++ b/include/drm/intel/display_interface.h
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2025 Intel Corporation x*/
+
+#ifndef __DISPLAY_INTERFACE_H__
+#define __DISPLAY_INTERFACE_H__
+
+#include <linux/types.h>
+
+struct drm_device;
+
+/**
+ * struct intel_core_hooks - services core provides to display
+ */
+struct intel_core_hooks {
+	/** @has_flat_ccs: does the device support flat CCS */
+	bool (*has_flat_ccs)(struct drm_device *drm);
+};
+
+#endif
-- 
2.47.3


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

* ✗ CI.checkpatch: warning for drm/{i915,xe}/display: pass hooks to display probe
  2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
@ 2025-10-03  9:26 ` Patchwork
  2025-10-03  9:28 ` ✓ CI.KUnit: success " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-10-03  9:26 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/{i915,xe}/display: pass hooks to display probe
URL   : https://patchwork.freedesktop.org/series/155375/
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
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit f2617a7b108aba17f890391b12839b4c295b5d4e
Author: Jani Nikula <jani.nikula@intel.com>
Date:   Fri Oct 3 12:21:07 2025 +0300

    drm/{i915,xe}/display: pass hooks to display probe
    
    Let's gradually start calling i915 and xe core drivers from display via
    function pointers passed at display probe. For starters, just add a
    small feature test hook ->has_flat_ccs.
    
    FIXME: "hooks" is a terrible name, both as a parameter and a struct
    intel_display member name. It should reflect that we're calling the core
    or parent driver. This is a placeholder name for now.
    
    FIXME: Initially, one struct is fine... but once it accumulates a lot of
    functions, should it have more indirection? Maybe everything should be
    in sub-structs, or the top struct should just be a collection of
    pointers to hook structs?
    
            struct intel_core_hooks {
                    const struct intel_rpm_hooks *rpm;
            };
    
    The above would allow having the struct initialization inside the
    implementation file, and the functions themselves static. In any case,
    it seems best to have just one initialization of the hooks, instead of
    one init/register call for each functional area.
    
    The downside is of course having to call the functions like:
    
            display->hooks->rpm->get(display->drm);
    
    FIXME: It would really be convenient if we could stop using a display
    device with mock_gem_device() in mock_gem_device.c. The purpose of the
    mock gem device is to run mock *gem* tests. Could we make it happen
    without display?
    
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch 39636f1340c98e9a67e800681cff4e8adde6fee4 drm-intel
f2617a7b108a drm/{i915,xe}/display: pass hooks to display probe
-:162: WARNING:IS_ENABLED_CONFIG: IS_ENABLED(I915) is normally used as IS_ENABLED(CONFIG_I915)
#162: FILE: drivers/gpu/drm/i915/display/skl_universal_plane.c:2934:
+	if (!IS_ENABLED(I915) && !display->hooks->has_flat_ccs(display->drm))

-:294: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#294: 
new file mode 100644

total: 0 errors, 2 warnings, 0 checks, 215 lines checked



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

* ✓ CI.KUnit: success for drm/{i915,xe}/display: pass hooks to display probe
  2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
  2025-10-03  9:26 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-10-03  9:28 ` Patchwork
  2025-10-03 10:03 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-10-03  9:28 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/{i915,xe}/display: pass hooks to display probe
URL   : https://patchwork.freedesktop.org/series/155375/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/{i915,xe}/display: pass hooks to display probe
  2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
  2025-10-03  9:26 ` ✗ CI.checkpatch: warning for " Patchwork
  2025-10-03  9:28 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-03 10:03 ` Patchwork
  2025-10-03 11:55 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-10-03 10:03 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/{i915,xe}/display: pass hooks to display probe
URL   : https://patchwork.freedesktop.org/series/155375/
State : success

== Summary ==

CI Bug Log - changes from xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4_BAT -> xe-pw-155375v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4 -> xe-pw-155375v1

  IGT_8572: 8572
  xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4: 39636f1340c98e9a67e800681cff4e8adde6fee4
  xe-pw-155375v1: 155375v1

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/{i915,xe}/display: pass hooks to display probe
  2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
                   ` (2 preceding siblings ...)
  2025-10-03 10:03 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-03 11:55 ` Patchwork
  2025-10-03 20:44 ` [RFC] " Rodrigo Vivi
  2025-10-06 12:52 ` Ville Syrjälä
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-10-03 11:55 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/{i915,xe}/display: pass hooks to display probe
URL   : https://patchwork.freedesktop.org/series/155375/
State : failure

== Summary ==

CI Bug Log - changes from xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4_FULL -> xe-pw-155375v1_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_system_allocator@fault-process-benchmark:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-5/igt@xe_exec_system_allocator@fault-process-benchmark.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@xe_exec_system_allocator@fault-process-benchmark.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] ([Intel XE#1124]) +2 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][4] -> [SKIP][5] ([Intel XE#2314] / [Intel XE#2894])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#2191])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][7] ([Intel XE#787]) +90 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#373])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][10] ([Intel XE#1178])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-432/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][11] ([Intel XE#1178])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_content_protection@atomic@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-bmg:          [PASS][12] -> [SKIP][13] ([Intel XE#2291])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-dg2-set2:     [PASS][14] -> [INCOMPLETE][15] ([Intel XE#3226])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][16] -> [SKIP][17] ([Intel XE#4302])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#1138])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][19] -> [SKIP][20] ([Intel XE#2316])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-2/igt@kms_flip@2x-plain-flip.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][21] -> [FAIL][22] ([Intel XE#301]) +1 other test fail
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [PASS][23] -> [DMESG-WARN][24] ([Intel XE#5208]) +1 other test dmesg-warn
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-4/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [PASS][25] -> [INCOMPLETE][26] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [PASS][27] -> [DMESG-WARN][28] ([Intel XE#4543]) +10 other tests dmesg-warn
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-adlp:         [PASS][29] -> [DMESG-WARN][30] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5208])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x:
    - shard-adlp:         [PASS][31] -> [DMESG-FAIL][32] ([Intel XE#4543])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#651]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#653]) +3 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_invalid_mode@bad-vsync-end:
    - shard-adlp:         [PASS][35] -> [DMESG-WARN][36] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-9/igt@kms_invalid_mode@bad-vsync-end.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-9/igt@kms_invalid_mode@bad-vsync-end.html

  * igt@kms_psr@psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_psr@psr2-primary-render.html

  * igt@kms_setmode@basic:
    - shard-lnl:          [PASS][38] -> [FAIL][39] ([Intel XE#2883]) +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-lnl-3/igt@kms_setmode@basic.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-lnl-2/igt@kms_setmode@basic.html

  * igt@kms_vrr@flip-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#455])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_vrr@flip-basic.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#1123])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_eu_stall@unprivileged-access:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#5626])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@xe_eu_stall@unprivileged-access.html

  * igt@xe_eudebug@multigpu-basic-client:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#4837])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@xe_eudebug@multigpu-basic-client.html

  * igt@xe_exec_basic@multigpu-once-null:
    - shard-dg2-set2:     [PASS][44] -> [SKIP][45] ([Intel XE#1392]) +5 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-434/igt@xe_exec_basic@multigpu-once-null.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#288])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-shared:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#4915]) +19 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@xe_exec_system_allocator@threads-many-stride-mmap-shared.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [PASS][48] -> [DMESG-WARN][49] ([Intel XE#5893])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_oa@syncs-userptr-wait-cfg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#3573])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@xe_oa@syncs-userptr-wait-cfg.html

  
#### Possible fixes ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][51] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][53] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][55] ([Intel XE#5354]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][57] ([Intel XE#4633]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible:
    - shard-bmg:          [SKIP][59] ([Intel XE#2316]) -> [PASS][60] +1 other test pass
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html

  * igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][61] ([Intel XE#4543]) -> [PASS][62] +4 other tests pass
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-8/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-3/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
    - shard-adlp:         [DMESG-FAIL][63] ([Intel XE#4543]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
    - shard-adlp:         [FAIL][65] ([Intel XE#1874]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [SKIP][67] ([Intel XE#455]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-464/igt@kms_hdr@invalid-hdr.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         [DMESG-WARN][69] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][70] +3 other tests pass
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@kms_vblank@ts-continuation-suspend.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-6/igt@kms_vblank@ts-continuation-suspend.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][71] ([Intel XE#1392]) -> [PASS][72] +2 other tests pass
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html

  * {igt@xe_exec_system_allocator@once-large-malloc-prefetch}:
    - shard-bmg:          [CRASH][73] ([Intel XE#6192]) -> [PASS][74] +11 other tests pass
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-7/igt@xe_exec_system_allocator@once-large-malloc-prefetch.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-1/igt@xe_exec_system_allocator@once-large-malloc-prefetch.html

  * {igt@xe_exec_system_allocator@twice-large-new-prefetch}:
    - shard-lnl:          [CRASH][75] ([Intel XE#6192]) -> [PASS][76] +5 other tests pass
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-lnl-8/igt@xe_exec_system_allocator@twice-large-new-prefetch.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-lnl-3/igt@xe_exec_system_allocator@twice-large-new-prefetch.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         [DMESG-WARN][77] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-prefetch.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [SKIP][79] ([Intel XE#2341]) -> [FAIL][80] ([Intel XE#1178])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-6/igt@kms_content_protection@atomic.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [FAIL][81] ([Intel XE#1178]) -> [SKIP][82] ([Intel XE#2341])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][83] ([Intel XE#2312]) -> [SKIP][84] ([Intel XE#2311]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][85] ([Intel XE#2311]) -> [SKIP][86] ([Intel XE#2312]) +8 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][87] ([Intel XE#2312]) -> [SKIP][88] ([Intel XE#5390]) +2 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][89] ([Intel XE#5390]) -> [SKIP][90] ([Intel XE#2312]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][91] ([Intel XE#2312]) -> [SKIP][92] ([Intel XE#2313]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][93] ([Intel XE#2313]) -> [SKIP][94] ([Intel XE#2312]) +7 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][95] ([Intel XE#1729]) -> [SKIP][96] ([Intel XE#2426])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][97] ([Intel XE#2426]) -> [SKIP][98] ([Intel XE#2509])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     [ABORT][99] ([Intel XE#4917] / [Intel XE#5466]) -> [ABORT][100] ([Intel XE#5466])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         [ABORT][101] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][102] ([Intel XE#5530])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_module_load@load:
    - shard-adlp:         ([PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [SKIP][125], [PASS][126], [PASS][127], [PASS][128]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [SKIP][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [DMESG-WARN][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173] / [Intel XE#5612])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-2/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-2/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-2/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-4/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-4/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-2/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-3/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-3/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-1/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-1/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-4/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-6/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-3/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-8/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-8/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-8/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-1/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-8/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-1/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-9/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-9/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-9/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4/shard-adlp-9/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-3/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-2/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-3/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-3/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-8/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-3/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-9/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-4/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-8/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-9/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-6/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-6/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-9/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-6/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-2/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-9/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-2/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-8/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-6/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-1/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-1/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-2/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155375v1/shard-adlp-1/igt@xe_module_load@load.html

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

  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#6192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6192
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929


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

  * Linux: xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4 -> xe-pw-155375v1

  IGT_8572: 8572
  xe-3862-39636f1340c98e9a67e800681cff4e8adde6fee4: 39636f1340c98e9a67e800681cff4e8adde6fee4
  xe-pw-155375v1: 155375v1

== Logs ==

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

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

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

* Re: [RFC] drm/{i915,xe}/display: pass hooks to display probe
  2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
                   ` (3 preceding siblings ...)
  2025-10-03 11:55 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-03 20:44 ` Rodrigo Vivi
  2025-10-06 12:52 ` Ville Syrjälä
  5 siblings, 0 replies; 10+ messages in thread
From: Rodrigo Vivi @ 2025-10-03 20:44 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx, intel-xe, jouni.hogander

On Fri, Oct 03, 2025 at 12:21:07PM +0300, Jani Nikula wrote:
> Let's gradually start calling i915 and xe core drivers from display via
> function pointers passed at display probe. For starters, just add a
> small feature test hook ->has_flat_ccs.

I like this idea.

> 
> FIXME: "hooks" is a terrible name, both as a parameter and a struct
> intel_display member name. It should reflect that we're calling the core
> or parent driver. This is a placeholder name for now.

core_ops ?
core_iface ?
parent_ops ?
parent_iface ?

> 
> FIXME: Initially, one struct is fine... but once it accumulates a lot of
> functions, should it have more indirection? Maybe everything should be
> in sub-structs, or the top struct should just be a collection of
> pointers to hook structs?
> 
> 	struct intel_core_hooks {
> 		const struct intel_rpm_hooks *rpm;
> 	};

struct intel_core_iface {
       const struct intel_rpm_ops *rpm;
}

?!

> 
> The above would allow having the struct initialization inside the
> implementation file, and the functions themselves static. In any case,
> it seems best to have just one initialization of the hooks, instead of
> one init/register call for each functional area.

+1 on this when needed.

> 
> The downside is of course having to call the functions like:
> 
> 	display->hooks->rpm->get(display->drm);

struct intel_core_iface *core = display->core;

core->rpm->get();

or when multiple of a single ops is used

struct intel_rpm_ops *rpm = display->core->rpm;

rpm->get();

> 
> FIXME: It would really be convenient if we could stop using a display
> device with mock_gem_device() in mock_gem_device.c. The purpose of the
> mock gem device is to run mock *gem* tests. Could we make it happen
> without display?

no thoughts on this...

> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  .../gpu/drm/i915/display/intel_display_core.h |  4 ++++
>  .../drm/i915/display/intel_display_device.c   |  5 ++++-
>  .../drm/i915/display/intel_display_device.h   |  4 +++-
>  drivers/gpu/drm/i915/display/intel_fb.c       |  5 ++---
>  .../drm/i915/display/skl_universal_plane.c    |  5 +++--
>  drivers/gpu/drm/i915/i915_driver.c            | 17 ++++++++++++++++-
>  drivers/gpu/drm/i915/i915_driver.h            |  2 ++
>  .../gpu/drm/i915/selftests/mock_gem_device.c  |  4 +++-
>  drivers/gpu/drm/xe/display/xe_display.c       | 12 +++++++++++-
>  include/drm/intel/display_interface.h         | 19 +++++++++++++++++++
>  10 files changed, 67 insertions(+), 10 deletions(-)
>  create mode 100644 include/drm/intel/display_interface.h
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
> index df4da52cbdb3..424d22725ca8 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_core.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_core.h
> @@ -39,6 +39,7 @@ struct intel_audio_funcs;
>  struct intel_cdclk_funcs;
>  struct intel_cdclk_vals;
>  struct intel_color_funcs;
> +struct intel_core_hooks;
>  struct intel_crtc;
>  struct intel_crtc_state;
>  struct intel_dmc;
> @@ -291,6 +292,9 @@ struct intel_display {
>  	/* Intel PCH: where the south display engine lives */
>  	enum intel_pch pch_type;
>  
> +	/* Core functions exposed to display */
> +	const struct intel_core_hooks *hooks;
> +
>  	/* Display functions */
>  	struct {
>  		/* Top level crtc-ish functions */
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index f3f1f25b0f38..87aaa1930846 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -1647,7 +1647,8 @@ static void display_platforms_or(struct intel_display_platforms *dst,
>  	bitmap_or(dst->bitmap, dst->bitmap, src->bitmap, display_platforms_num_bits());
>  }
>  
> -struct intel_display *intel_display_device_probe(struct pci_dev *pdev)
> +struct intel_display *intel_display_device_probe(struct pci_dev *pdev,
> +						 const struct intel_core_hooks *hooks)
>  {
>  	struct intel_display *display;
>  	const struct intel_display_device_info *info;
> @@ -1663,6 +1664,8 @@ struct intel_display *intel_display_device_probe(struct pci_dev *pdev)
>  	/* Add drm device backpointer as early as possible. */
>  	display->drm = pci_get_drvdata(pdev);
>  
> +	display->hooks = hooks;
> +
>  	intel_display_params_copy(&display->params);
>  
>  	if (has_no_display(pdev)) {
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 0e062753cf9b..999570d15160 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -12,6 +12,7 @@
>  #include "intel_display_limits.h"
>  
>  struct drm_printer;
> +struct intel_core_hooks;
>  struct intel_display;
>  struct pci_dev;
>  
> @@ -310,7 +311,8 @@ struct intel_display_device_info {
>  
>  bool intel_display_device_present(struct intel_display *display);
>  bool intel_display_device_enabled(struct intel_display *display);
> -struct intel_display *intel_display_device_probe(struct pci_dev *pdev);
> +struct intel_display *intel_display_device_probe(struct pci_dev *pdev,
> +						 const struct intel_core_hooks *hooks);
>  void intel_display_device_remove(struct intel_display *display);
>  void intel_display_device_info_runtime_init(struct intel_display *display);
>  
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 69237dabdae8..dc321df4db28 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -9,6 +9,7 @@
>  #include <drm/drm_blend.h>
>  #include <drm/drm_gem.h>
>  #include <drm/drm_modeset_helper.h>
> +#include <drm/intel/display_interface.h>
>  
>  #include "i915_drv.h"
>  #include "i915_utils.h"
> @@ -547,8 +548,6 @@ static bool plane_has_modifier(struct intel_display *display,
>  			       u8 plane_caps,
>  			       const struct intel_modifier_desc *md)
>  {
> -	struct drm_i915_private *i915 = to_i915(display->drm);
> -
>  	if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
>  		return false;
>  
> @@ -560,7 +559,7 @@ static bool plane_has_modifier(struct intel_display *display,
>  	 * where supported.
>  	 */
>  	if (intel_fb_is_ccs_modifier(md->modifier) &&
> -	    HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
> +	    display->hooks->has_flat_ccs(display->drm) != !md->ccs.packed_aux_planes)
>  		return false;
>  
>  	if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index e13fb781e7b2..139d20e8accd 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -7,6 +7,7 @@
>  #include <drm/drm_blend.h>
>  #include <drm/drm_damage_helper.h>
>  #include <drm/drm_fourcc.h>
> +#include <drm/intel/display_interface.h>
>  
>  #include "pxp/intel_pxp.h"
>  #include "i915_drv.h"
> @@ -1572,7 +1573,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
>  	}
>  
>  	/* FLAT CCS doesn't need to program AUX_DIST */
> -	if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
> +	if (!display->hooks->has_flat_ccs(display->drm) && DISPLAY_VER(display) < 20)
>  		intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
>  				   skl_plane_aux_dist(plane_state, color_plane));
>  
> @@ -2930,7 +2931,7 @@ skl_universal_plane_create(struct intel_display *display,
>  		caps = skl_plane_caps(display, pipe, plane_id);
>  
>  	/* FIXME: xe has problems with AUX */
> -	if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
> +	if (!IS_ENABLED(I915) && !display->hooks->has_flat_ccs(display->drm))
>  		caps &= ~(INTEL_PLANE_CAP_CCS_RC |
>  			  INTEL_PLANE_CAP_CCS_RC_CC |
>  			  INTEL_PLANE_CAP_CCS_MC);
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index b46cb54ef5dc..cf042e5d1444 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -46,6 +46,7 @@
>  #include <drm/drm_ioctl.h>
>  #include <drm/drm_managed.h>
>  #include <drm/drm_probe_helper.h>
> +#include <drm/intel/display_interface.h>
>  #include <drm/intel/display_member.h>
>  
>  #include "display/i9xx_display_sr.h"
> @@ -738,6 +739,20 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
>  			 "DRM_I915_DEBUG_RUNTIME_PM enabled\n");
>  }
>  
> +static bool has_flat_ccs(struct drm_device *drm)
> +{
> +	return HAS_FLAT_CCS(to_i915(drm));
> +}
> +
> +static const struct intel_core_hooks hooks = {
> +	.has_flat_ccs = has_flat_ccs,
> +};
> +
> +const struct intel_core_hooks *i915_driver_hooks(void)
> +{
> +	return &hooks;
> +}
> +
>  /* Ensure drm and display members are placed properly. */
>  INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct drm_i915_private, drm, display);
>  
> @@ -762,7 +777,7 @@ i915_driver_create(struct pci_dev *pdev, const struct pci_device_id *ent)
>  	/* Set up device info and initial runtime info. */
>  	intel_device_info_driver_create(i915, pdev->device, match_info);
>  
> -	display = intel_display_device_probe(pdev);
> +	display = intel_display_device_probe(pdev, &hooks);
>  	if (IS_ERR(display))
>  		return ERR_CAST(display);
>  
> diff --git a/drivers/gpu/drm/i915/i915_driver.h b/drivers/gpu/drm/i915/i915_driver.h
> index 1e95ecb2a163..26e3afb1d892 100644
> --- a/drivers/gpu/drm/i915/i915_driver.h
> +++ b/drivers/gpu/drm/i915/i915_driver.h
> @@ -12,6 +12,7 @@ struct pci_dev;
>  struct pci_device_id;
>  struct drm_i915_private;
>  struct drm_printer;
> +struct intel_core_hooks;
>  
>  #define DRIVER_NAME		"i915"
>  #define DRIVER_DESC		"Intel Graphics"
> @@ -24,6 +25,7 @@ void i915_driver_shutdown(struct drm_i915_private *i915);
>  
>  int i915_driver_resume_switcheroo(struct drm_i915_private *i915);
>  int i915_driver_suspend_switcheroo(struct drm_i915_private *i915, pm_message_t state);
> +const struct intel_core_hooks *i915_driver_hooks(void);
>  
>  void
>  i915_print_iommu_status(struct drm_i915_private *i915, struct drm_printer *p);
> diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.c b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
> index fb8751bd5df0..32bfea4a3cca 100644
> --- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c
> +++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
> @@ -27,12 +27,14 @@
>  #include <linux/iommu.h>
>  
>  #include <drm/drm_managed.h>
> +#include <drm/intel/display_interface.h>
>  
>  #include "display/intel_display_device.h"
>  
>  #include "gt/intel_gt.h"
>  #include "gt/intel_gt_requests.h"
>  #include "gt/mock_engine.h"
> +#include "i915_driver.h"
>  #include "intel_memory_region.h"
>  #include "intel_region_ttm.h"
>  
> @@ -183,7 +185,7 @@ struct drm_i915_private *mock_gem_device(void)
>  	/* Set up device info and initial runtime info. */
>  	intel_device_info_driver_create(i915, pdev->device, &mock_info);
>  
> -	display = intel_display_device_probe(pdev);
> +	display = intel_display_device_probe(pdev, i915_driver_hooks());
>  	if (IS_ERR(display))
>  		goto err_device;
>  
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
> index 5f4044e63185..644641954125 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -13,6 +13,7 @@
>  #include <drm/drm_drv.h>
>  #include <drm/drm_managed.h>
>  #include <drm/drm_probe_helper.h>
> +#include <drm/intel/display_interface.h>
>  #include <drm/intel/display_member.h>
>  #include <uapi/drm/xe_drm.h>
>  
> @@ -515,6 +516,15 @@ static void display_device_remove(struct drm_device *dev, void *arg)
>  	intel_display_device_remove(display);
>  }
>  
> +static bool has_flat_ccs(struct drm_device *drm)
> +{
> +	return xe_device_has_flat_ccs(to_xe_device(drm));
> +}
> +
> +static const struct intel_core_hooks hooks = {
> +	.has_flat_ccs = has_flat_ccs,
> +};
> +
>  /**
>   * xe_display_probe - probe display and create display struct
>   * @xe: XE device instance
> @@ -535,7 +545,7 @@ int xe_display_probe(struct xe_device *xe)
>  	if (!xe->info.probe_display)
>  		goto no_display;
>  
> -	display = intel_display_device_probe(pdev);
> +	display = intel_display_device_probe(pdev, &hooks);
>  	if (IS_ERR(display))
>  		return PTR_ERR(display);
>  
> diff --git a/include/drm/intel/display_interface.h b/include/drm/intel/display_interface.h
> new file mode 100644
> index 000000000000..82e3b6b641f7
> --- /dev/null
> +++ b/include/drm/intel/display_interface.h
> @@ -0,0 +1,19 @@
> +/* SPDX-License-Identifier: MIT */
> +/* Copyright © 2025 Intel Corporation x*/
> +
> +#ifndef __DISPLAY_INTERFACE_H__
> +#define __DISPLAY_INTERFACE_H__
> +
> +#include <linux/types.h>
> +
> +struct drm_device;
> +
> +/**
> + * struct intel_core_hooks - services core provides to display
> + */
> +struct intel_core_hooks {
> +	/** @has_flat_ccs: does the device support flat CCS */
> +	bool (*has_flat_ccs)(struct drm_device *drm);
> +};
> +
> +#endif
> -- 
> 2.47.3
> 

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

* Re: [RFC] drm/{i915,xe}/display: pass hooks to display probe
  2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
                   ` (4 preceding siblings ...)
  2025-10-03 20:44 ` [RFC] " Rodrigo Vivi
@ 2025-10-06 12:52 ` Ville Syrjälä
  2025-10-06 15:11   ` Jani Nikula
  5 siblings, 1 reply; 10+ messages in thread
From: Ville Syrjälä @ 2025-10-06 12:52 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx, intel-xe, jouni.hogander

On Fri, Oct 03, 2025 at 12:21:07PM +0300, Jani Nikula wrote:
> Let's gradually start calling i915 and xe core drivers from display via
> function pointers passed at display probe. For starters, just add a
> small feature test hook ->has_flat_ccs.
> 
> FIXME: "hooks" is a terrible name, both as a parameter and a struct
> intel_display member name. It should reflect that we're calling the core
> or parent driver. This is a placeholder name for now.
> 
> FIXME: Initially, one struct is fine... but once it accumulates a lot of
> functions, should it have more indirection? Maybe everything should be
> in sub-structs, or the top struct should just be a collection of
> pointers to hook structs?
> 
> 	struct intel_core_hooks {
> 		const struct intel_rpm_hooks *rpm;
> 	};
> 
> The above would allow having the struct initialization inside the
> implementation file, and the functions themselves static. In any case,
> it seems best to have just one initialization of the hooks, instead of
> one init/register call for each functional area.
> 
> The downside is of course having to call the functions like:
> 
> 	display->hooks->rpm->get(display->drm);
> 
> FIXME: It would really be convenient if we could stop using a display
> device with mock_gem_device() in mock_gem_device.c. The purpose of the
> mock gem device is to run mock *gem* tests. Could we make it happen
> without display?

Haven't really thought too much about the display->xe/i915 direction
yet, but I was pondering the opposite direction. Should we even use
vfuncs there or perhaps just export the symbols from the display side?

But symbol name collisions do worry me. There does seem to be a
EXPORT_SYMBOL_FOR_MODULES() now, but I have a nagging feeling that it
doesn't actually implement symbol namespaces (as in the same symbol
name could be defined in multiple namespaces) but rather just prevents
modules from loading when they don't have the permission to use a
"namespaced" symbol.

So with exports we'd probably have to carefully prefix each exported
symbol with "intel_display_" (or whatever). We could of course still
use EXPORT_SYMBOL_FOR_MODULES() to make sure other stuff can't access
those symbols.

-- 
Ville Syrjälä
Intel

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

* Re: [RFC] drm/{i915,xe}/display: pass hooks to display probe
  2025-10-06 12:52 ` Ville Syrjälä
@ 2025-10-06 15:11   ` Jani Nikula
  2025-10-06 16:15     ` Ville Syrjälä
  0 siblings, 1 reply; 10+ messages in thread
From: Jani Nikula @ 2025-10-06 15:11 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, jouni.hogander

On Mon, 06 Oct 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Oct 03, 2025 at 12:21:07PM +0300, Jani Nikula wrote:
>> Let's gradually start calling i915 and xe core drivers from display via
>> function pointers passed at display probe. For starters, just add a
>> small feature test hook ->has_flat_ccs.
>> 
>> FIXME: "hooks" is a terrible name, both as a parameter and a struct
>> intel_display member name. It should reflect that we're calling the core
>> or parent driver. This is a placeholder name for now.
>> 
>> FIXME: Initially, one struct is fine... but once it accumulates a lot of
>> functions, should it have more indirection? Maybe everything should be
>> in sub-structs, or the top struct should just be a collection of
>> pointers to hook structs?
>> 
>> 	struct intel_core_hooks {
>> 		const struct intel_rpm_hooks *rpm;
>> 	};
>> 
>> The above would allow having the struct initialization inside the
>> implementation file, and the functions themselves static. In any case,
>> it seems best to have just one initialization of the hooks, instead of
>> one init/register call for each functional area.
>> 
>> The downside is of course having to call the functions like:
>> 
>> 	display->hooks->rpm->get(display->drm);
>> 
>> FIXME: It would really be convenient if we could stop using a display
>> device with mock_gem_device() in mock_gem_device.c. The purpose of the
>> mock gem device is to run mock *gem* tests. Could we make it happen
>> without display?
>
> Haven't really thought too much about the display->xe/i915 direction
> yet, but I was pondering the opposite direction. Should we even use
> vfuncs there or perhaps just export the symbols from the display side?
>
> But symbol name collisions do worry me. There does seem to be a
> EXPORT_SYMBOL_FOR_MODULES() now, but I have a nagging feeling that it
> doesn't actually implement symbol namespaces (as in the same symbol
> name could be defined in multiple namespaces) but rather just prevents
> modules from loading when they don't have the permission to use a
> "namespaced" symbol.
>
> So with exports we'd probably have to carefully prefix each exported
> symbol with "intel_display_" (or whatever). We could of course still
> use EXPORT_SYMBOL_FOR_MODULES() to make sure other stuff can't access
> those symbols.

There's EXPORT_SYMBOL_NS() and MODULE_IMPORT_NS() nowadays that should
help. We should probably still have the prefixes, but it the namespace
should tackle the collisions.

BR,
Jani.

-- 
Jani Nikula, Intel

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

* Re: [RFC] drm/{i915,xe}/display: pass hooks to display probe
  2025-10-06 15:11   ` Jani Nikula
@ 2025-10-06 16:15     ` Ville Syrjälä
  2025-10-06 16:42       ` Jani Nikula
  0 siblings, 1 reply; 10+ messages in thread
From: Ville Syrjälä @ 2025-10-06 16:15 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx, intel-xe, jouni.hogander

On Mon, Oct 06, 2025 at 06:11:41PM +0300, Jani Nikula wrote:
> On Mon, 06 Oct 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> > On Fri, Oct 03, 2025 at 12:21:07PM +0300, Jani Nikula wrote:
> >> Let's gradually start calling i915 and xe core drivers from display via
> >> function pointers passed at display probe. For starters, just add a
> >> small feature test hook ->has_flat_ccs.
> >> 
> >> FIXME: "hooks" is a terrible name, both as a parameter and a struct
> >> intel_display member name. It should reflect that we're calling the core
> >> or parent driver. This is a placeholder name for now.
> >> 
> >> FIXME: Initially, one struct is fine... but once it accumulates a lot of
> >> functions, should it have more indirection? Maybe everything should be
> >> in sub-structs, or the top struct should just be a collection of
> >> pointers to hook structs?
> >> 
> >> 	struct intel_core_hooks {
> >> 		const struct intel_rpm_hooks *rpm;
> >> 	};
> >> 
> >> The above would allow having the struct initialization inside the
> >> implementation file, and the functions themselves static. In any case,
> >> it seems best to have just one initialization of the hooks, instead of
> >> one init/register call for each functional area.
> >> 
> >> The downside is of course having to call the functions like:
> >> 
> >> 	display->hooks->rpm->get(display->drm);
> >> 
> >> FIXME: It would really be convenient if we could stop using a display
> >> device with mock_gem_device() in mock_gem_device.c. The purpose of the
> >> mock gem device is to run mock *gem* tests. Could we make it happen
> >> without display?
> >
> > Haven't really thought too much about the display->xe/i915 direction
> > yet, but I was pondering the opposite direction. Should we even use
> > vfuncs there or perhaps just export the symbols from the display side?
> >
> > But symbol name collisions do worry me. There does seem to be a
> > EXPORT_SYMBOL_FOR_MODULES() now, but I have a nagging feeling that it
> > doesn't actually implement symbol namespaces (as in the same symbol
> > name could be defined in multiple namespaces) but rather just prevents
> > modules from loading when they don't have the permission to use a
> > "namespaced" symbol.
> >
> > So with exports we'd probably have to carefully prefix each exported
> > symbol with "intel_display_" (or whatever). We could of course still
> > use EXPORT_SYMBOL_FOR_MODULES() to make sure other stuff can't access
> > those symbols.
> 
> There's EXPORT_SYMBOL_NS() and MODULE_IMPORT_NS() nowadays that should
> help. We should probably still have the prefixes, but it the namespace
> should tackle the collisions.

I just did a quick test and the build already fails at modpost
if two modules try to export the same symbol name with different
"namespaces". So the "namespace" in the name of this feature is
basically a complete lie. All the symbols still live in the same
global namespace and some modules are just forbidden from calling
some of them. Any actual namespace will still have to be baked
into the symbol name at the exporter.

-- 
Ville Syrjälä
Intel

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

* Re: [RFC] drm/{i915,xe}/display: pass hooks to display probe
  2025-10-06 16:15     ` Ville Syrjälä
@ 2025-10-06 16:42       ` Jani Nikula
  0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2025-10-06 16:42 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, jouni.hogander

On Mon, 06 Oct 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Mon, Oct 06, 2025 at 06:11:41PM +0300, Jani Nikula wrote:
>> On Mon, 06 Oct 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
>> > On Fri, Oct 03, 2025 at 12:21:07PM +0300, Jani Nikula wrote:
>> >> Let's gradually start calling i915 and xe core drivers from display via
>> >> function pointers passed at display probe. For starters, just add a
>> >> small feature test hook ->has_flat_ccs.
>> >> 
>> >> FIXME: "hooks" is a terrible name, both as a parameter and a struct
>> >> intel_display member name. It should reflect that we're calling the core
>> >> or parent driver. This is a placeholder name for now.
>> >> 
>> >> FIXME: Initially, one struct is fine... but once it accumulates a lot of
>> >> functions, should it have more indirection? Maybe everything should be
>> >> in sub-structs, or the top struct should just be a collection of
>> >> pointers to hook structs?
>> >> 
>> >> 	struct intel_core_hooks {
>> >> 		const struct intel_rpm_hooks *rpm;
>> >> 	};
>> >> 
>> >> The above would allow having the struct initialization inside the
>> >> implementation file, and the functions themselves static. In any case,
>> >> it seems best to have just one initialization of the hooks, instead of
>> >> one init/register call for each functional area.
>> >> 
>> >> The downside is of course having to call the functions like:
>> >> 
>> >> 	display->hooks->rpm->get(display->drm);
>> >> 
>> >> FIXME: It would really be convenient if we could stop using a display
>> >> device with mock_gem_device() in mock_gem_device.c. The purpose of the
>> >> mock gem device is to run mock *gem* tests. Could we make it happen
>> >> without display?
>> >
>> > Haven't really thought too much about the display->xe/i915 direction
>> > yet, but I was pondering the opposite direction. Should we even use
>> > vfuncs there or perhaps just export the symbols from the display side?
>> >
>> > But symbol name collisions do worry me. There does seem to be a
>> > EXPORT_SYMBOL_FOR_MODULES() now, but I have a nagging feeling that it
>> > doesn't actually implement symbol namespaces (as in the same symbol
>> > name could be defined in multiple namespaces) but rather just prevents
>> > modules from loading when they don't have the permission to use a
>> > "namespaced" symbol.
>> >
>> > So with exports we'd probably have to carefully prefix each exported
>> > symbol with "intel_display_" (or whatever). We could of course still
>> > use EXPORT_SYMBOL_FOR_MODULES() to make sure other stuff can't access
>> > those symbols.
>> 
>> There's EXPORT_SYMBOL_NS() and MODULE_IMPORT_NS() nowadays that should
>> help. We should probably still have the prefixes, but it the namespace
>> should tackle the collisions.
>
> I just did a quick test and the build already fails at modpost
> if two modules try to export the same symbol name with different
> "namespaces". So the "namespace" in the name of this feature is
> basically a complete lie. All the symbols still live in the same
> global namespace and some modules are just forbidden from calling
> some of them. Any actual namespace will still have to be baked
> into the symbol name at the exporter.

Ugh. *facepalm*.


-- 
Jani Nikula, Intel

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

end of thread, other threads:[~2025-10-06 16:42 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-03  9:21 [RFC] drm/{i915,xe}/display: pass hooks to display probe Jani Nikula
2025-10-03  9:26 ` ✗ CI.checkpatch: warning for " Patchwork
2025-10-03  9:28 ` ✓ CI.KUnit: success " Patchwork
2025-10-03 10:03 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-03 11:55 ` ✗ Xe.CI.Full: failure " Patchwork
2025-10-03 20:44 ` [RFC] " Rodrigo Vivi
2025-10-06 12:52 ` Ville Syrjälä
2025-10-06 15:11   ` Jani Nikula
2025-10-06 16:15     ` Ville Syrjälä
2025-10-06 16:42       ` Jani Nikula

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