* [PATCH v2 1/6] drm/{i915, xe}/display: pass parent interface to display probe
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
@ 2025-10-24 9:31 ` Jouni Högander
2025-10-24 12:25 ` [PATCH v2 1/6] drm/{i915,xe}/display: " Jani Nikula
2025-10-24 9:31 ` [PATCH v2 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface Jouni Högander
` (9 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-24 9:31 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, Jouni Högander, Lucas De Marchi, Rodrigo Vivi,
Ville Syrjälä
From: Jani Nikula <jani.nikula@intel.com>
Let's gradually start calling i915 and xe parent, or core, drivers from
display via function pointers passed at display probe.
Going forward, the struct intel_display_parent_interface is expected to
include const pointers to sub-structs by functionality, for example:
struct intel_display_rpm {
struct ref_tracker *(*get)(struct drm_device *drm);
/* ... */
};
struct intel_display_parent_interface {
/* ... */
const struct intel_display_rpm *rpm;
};
This is a baby step towards not building display as part of both i915
and xe drivers, but rather making it an independent driver interfacing
with the two.
v2: unrelated include removal dropped
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Jouni Högander <jouni.hogander@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 | 1 +
.../drm/i915/display/skl_universal_plane.c | 1 +
drivers/gpu/drm/i915/i915_driver.c | 11 +++++++-
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 | 6 ++++-
include/drm/intel/display_parent_interface.h | 26 +++++++++++++++++++
10 files changed, 59 insertions(+), 5 deletions(-)
create mode 100644 include/drm/intel/display_parent_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 32664098b4078..893279be84091 100644
--- a/drivers/gpu/drm/i915/display/intel_display_core.h
+++ b/drivers/gpu/drm/i915/display/intel_display_core.h
@@ -41,6 +41,7 @@ struct intel_cdclk_vals;
struct intel_color_funcs;
struct intel_crtc;
struct intel_crtc_state;
+struct intel_display_parent_interface;
struct intel_dmc;
struct intel_dpll_global_funcs;
struct intel_dpll_mgr;
@@ -291,6 +292,9 @@ struct intel_display {
/* Intel PCH: where the south display engine lives */
enum intel_pch pch_type;
+ /* Parent, or core, driver functions exposed to display */
+ const struct intel_display_parent_interface *parent;
+
/* 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 f3f1f25b0f383..328447a5e5e8c 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_display_parent_interface *parent)
{
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->parent = parent;
+
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 8fdb8a0a42821..a009082e3107b 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -13,6 +13,7 @@
struct drm_printer;
struct intel_display;
+struct intel_display_parent_interface;
struct pci_dev;
/*
@@ -312,7 +313,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_display_parent_interface *parent);
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 6ade38198f396..f4512fb38a778 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_parent_interface.h>
#include "i915_utils.h"
#include "intel_bo.h"
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 765d288cce2b0..c70bde90b9a9e 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -8,6 +8,7 @@
#include <drm/drm_damage_helper.h>
#include <drm/drm_fourcc.h>
#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
#include "pxp/intel_pxp.h"
#include "i915_utils.h"
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index e19a08893b998..b295326eb4331 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -47,6 +47,7 @@
#include <drm/drm_managed.h>
#include <drm/drm_probe_helper.h>
#include <drm/intel/display_member.h>
+#include <drm/intel/display_parent_interface.h>
#include "display/i9xx_display_sr.h"
#include "display/intel_bw.h"
@@ -738,6 +739,14 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
"DRM_I915_DEBUG_RUNTIME_PM enabled\n");
}
+static const struct intel_display_parent_interface parent = {
+};
+
+const struct intel_display_parent_interface *i915_driver_parent_interface(void)
+{
+ return &parent;
+}
+
/* Ensure drm and display members are placed properly. */
INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct drm_i915_private, drm, display);
@@ -762,7 +771,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, &parent);
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 1e95ecb2a163f..9551519ab4297 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_display_parent_interface;
#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_display_parent_interface *i915_driver_parent_interface(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 fb8751bd5df0a..b59626c4994cb 100644
--- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c
+++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
@@ -33,6 +33,7 @@
#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 +184,8 @@ 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);
+ /* FIXME: Can we run selftests using a mock device without display? */
+ display = intel_display_device_probe(pdev, i915_driver_parent_interface());
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 5a02754d0610e..0e38c96eb6def 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -14,6 +14,7 @@
#include <drm/drm_managed.h>
#include <drm/drm_probe_helper.h>
#include <drm/intel/display_member.h>
+#include <drm/intel/display_parent_interface.h>
#include <uapi/drm/xe_drm.h>
#include "soc/intel_dram.h"
@@ -514,6 +515,9 @@ static void display_device_remove(struct drm_device *dev, void *arg)
intel_display_device_remove(display);
}
+static const struct intel_display_parent_interface parent = {
+};
+
/**
* xe_display_probe - probe display and create display struct
* @xe: XE device instance
@@ -534,7 +538,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, &parent);
if (IS_ERR(display))
return PTR_ERR(display);
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
new file mode 100644
index 0000000000000..28c976815327a
--- /dev/null
+++ b/include/drm/intel/display_parent_interface.h
@@ -0,0 +1,26 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2025 Intel Corporation x*/
+
+#ifndef __DISPLAY_PARENT_INTERFACE_H__
+#define __DISPLAY_PARENT_INTERFACE_H__
+
+#include <linux/types.h>
+
+struct drm_device;
+
+/**
+ * struct intel_display_parent_interface - services parent driver provides to display
+ *
+ * The parent, or core, driver provides a pointer to this structure to display
+ * driver when calling intel_display_device_probe(). The display driver uses it
+ * to access services provided by the parent driver. The structure may contain
+ * sub-struct pointers to group function pointers by functionality.
+ *
+ * All function and sub-struct pointers must be initialized and callable unless
+ * explicitly marked as "optional" below. The display driver will only NULL
+ * check the optional pointers.
+ */
+struct intel_display_parent_interface {
+};
+
+#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2 1/6] drm/{i915,xe}/display: pass parent interface to display probe
2025-10-24 9:31 ` [PATCH v2 1/6] drm/{i915, xe}/display: pass parent interface to display probe Jouni Högander
@ 2025-10-24 12:25 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:25 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe
Cc: Jouni Högander, Lucas De Marchi, Rodrigo Vivi,
Ville Syrjälä
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> From: Jani Nikula <jani.nikula@intel.com>
>
> Let's gradually start calling i915 and xe parent, or core, drivers from
> display via function pointers passed at display probe.
>
> Going forward, the struct intel_display_parent_interface is expected to
> include const pointers to sub-structs by functionality, for example:
>
> struct intel_display_rpm {
> struct ref_tracker *(*get)(struct drm_device *drm);
> /* ... */
> };
>
> struct intel_display_parent_interface {
> /* ... */
> const struct intel_display_rpm *rpm;
> };
>
> This is a baby step towards not building display as part of both i915
> and xe drivers, but rather making it an independent driver interfacing
> with the two.
>
> v2: unrelated include removal dropped
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Jouni Högander <jouni.hogander@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 | 1 +
> .../drm/i915/display/skl_universal_plane.c | 1 +
> drivers/gpu/drm/i915/i915_driver.c | 11 +++++++-
> 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 | 6 ++++-
> include/drm/intel/display_parent_interface.h | 26 +++++++++++++++++++
> 10 files changed, 59 insertions(+), 5 deletions(-)
> create mode 100644 include/drm/intel/display_parent_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 32664098b4078..893279be84091 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_core.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_core.h
> @@ -41,6 +41,7 @@ struct intel_cdclk_vals;
> struct intel_color_funcs;
> struct intel_crtc;
> struct intel_crtc_state;
> +struct intel_display_parent_interface;
> struct intel_dmc;
> struct intel_dpll_global_funcs;
> struct intel_dpll_mgr;
> @@ -291,6 +292,9 @@ struct intel_display {
> /* Intel PCH: where the south display engine lives */
> enum intel_pch pch_type;
>
> + /* Parent, or core, driver functions exposed to display */
> + const struct intel_display_parent_interface *parent;
> +
> /* 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 f3f1f25b0f383..328447a5e5e8c 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_display_parent_interface *parent)
> {
> 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->parent = parent;
> +
> 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 8fdb8a0a42821..a009082e3107b 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -13,6 +13,7 @@
>
> struct drm_printer;
> struct intel_display;
> +struct intel_display_parent_interface;
> struct pci_dev;
>
> /*
> @@ -312,7 +313,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_display_parent_interface *parent);
> 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 6ade38198f396..f4512fb38a778 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_parent_interface.h>
Argh, I keep spotting rebase leftovers from my own patch. *facepalm*.
>
> #include "i915_utils.h"
> #include "intel_bo.h"
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 765d288cce2b0..c70bde90b9a9e 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -8,6 +8,7 @@
> #include <drm/drm_damage_helper.h>
> #include <drm/drm_fourcc.h>
> #include <drm/drm_print.h>
> +#include <drm/intel/display_parent_interface.h>
Ditto.
Obviously, I can't r-b this either, it being my code.
BR,
Jani.
>
> #include "pxp/intel_pxp.h"
> #include "i915_utils.h"
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index e19a08893b998..b295326eb4331 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -47,6 +47,7 @@
> #include <drm/drm_managed.h>
> #include <drm/drm_probe_helper.h>
> #include <drm/intel/display_member.h>
> +#include <drm/intel/display_parent_interface.h>
>
> #include "display/i9xx_display_sr.h"
> #include "display/intel_bw.h"
> @@ -738,6 +739,14 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
> "DRM_I915_DEBUG_RUNTIME_PM enabled\n");
> }
>
> +static const struct intel_display_parent_interface parent = {
> +};
> +
> +const struct intel_display_parent_interface *i915_driver_parent_interface(void)
> +{
> + return &parent;
> +}
> +
> /* Ensure drm and display members are placed properly. */
> INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct drm_i915_private, drm, display);
>
> @@ -762,7 +771,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, &parent);
> 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 1e95ecb2a163f..9551519ab4297 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_display_parent_interface;
>
> #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_display_parent_interface *i915_driver_parent_interface(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 fb8751bd5df0a..b59626c4994cb 100644
> --- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c
> +++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
> @@ -33,6 +33,7 @@
> #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 +184,8 @@ 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);
> + /* FIXME: Can we run selftests using a mock device without display? */
> + display = intel_display_device_probe(pdev, i915_driver_parent_interface());
> 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 5a02754d0610e..0e38c96eb6def 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -14,6 +14,7 @@
> #include <drm/drm_managed.h>
> #include <drm/drm_probe_helper.h>
> #include <drm/intel/display_member.h>
> +#include <drm/intel/display_parent_interface.h>
> #include <uapi/drm/xe_drm.h>
>
> #include "soc/intel_dram.h"
> @@ -514,6 +515,9 @@ static void display_device_remove(struct drm_device *dev, void *arg)
> intel_display_device_remove(display);
> }
>
> +static const struct intel_display_parent_interface parent = {
> +};
> +
> /**
> * xe_display_probe - probe display and create display struct
> * @xe: XE device instance
> @@ -534,7 +538,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, &parent);
> if (IS_ERR(display))
> return PTR_ERR(display);
>
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> new file mode 100644
> index 0000000000000..28c976815327a
> --- /dev/null
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -0,0 +1,26 @@
> +/* SPDX-License-Identifier: MIT */
> +/* Copyright © 2025 Intel Corporation x*/
> +
> +#ifndef __DISPLAY_PARENT_INTERFACE_H__
> +#define __DISPLAY_PARENT_INTERFACE_H__
> +
> +#include <linux/types.h>
> +
> +struct drm_device;
> +
> +/**
> + * struct intel_display_parent_interface - services parent driver provides to display
> + *
> + * The parent, or core, driver provides a pointer to this structure to display
> + * driver when calling intel_display_device_probe(). The display driver uses it
> + * to access services provided by the parent driver. The structure may contain
> + * sub-struct pointers to group function pointers by functionality.
> + *
> + * All function and sub-struct pointers must be initialized and callable unless
> + * explicitly marked as "optional" below. The display driver will only NULL
> + * check the optional pointers.
> + */
> +struct intel_display_parent_interface {
> +};
> +
> +#endif
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
2025-10-24 9:31 ` [PATCH v2 1/6] drm/{i915, xe}/display: pass parent interface to display probe Jouni Högander
@ 2025-10-24 9:31 ` Jouni Högander
2025-10-24 12:25 ` [PATCH v2 2/6] drm/{i915,xe}/display: " Jani Nikula
2025-10-24 9:31 ` [PATCH v2 3/6] drm/i915/display: Runtime pm wrappers for display " Jouni Högander
` (8 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-24 9:31 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, Jouni Högander
We have differing implementations for display runtime pm in i915 and xe
drivers. Add struct of function pointers into display_parent_interface
which will contain used implementation of runtime pm.
v2:
- add _interface suffix to rpm function pointer struct
- add struct ref_tracker forward declaration
- use kernel-doc comments
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
include/drm/intel/display_parent_interface.h | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 28c976815327a..26bedc360044d 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -7,6 +7,23 @@
#include <linux/types.h>
struct drm_device;
+struct ref_tracker;
+
+struct intel_display_rpm_interface {
+ struct ref_tracker *(*get)(const struct drm_device *drm);
+ struct ref_tracker *(*get_raw)(const struct drm_device *drm);
+ struct ref_tracker *(*get_if_in_use)(const struct drm_device *drm);
+ struct ref_tracker *(*get_noresume)(const struct drm_device *drm);
+
+ void (*put)(const struct drm_device *drm, struct ref_tracker *wakeref);
+ void (*put_raw)(const struct drm_device *drm, struct ref_tracker *wakeref);
+ void (*put_unchecked)(const struct drm_device *drm);
+
+ bool (*suspended)(const struct drm_device *drm);
+ void (*assert_held)(const struct drm_device *drm);
+ void (*assert_block)(const struct drm_device *drm);
+ void (*assert_unblock)(const struct drm_device *drm);
+};
/**
* struct intel_display_parent_interface - services parent driver provides to display
@@ -21,6 +38,8 @@ struct drm_device;
* check the optional pointers.
*/
struct intel_display_parent_interface {
+ /** @rpm: Runtime PM functions */
+ const struct intel_display_rpm_interface *rpm;
};
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2 2/6] drm/{i915,xe}/display: Add display runtime pm parent interface
2025-10-24 9:31 ` [PATCH v2 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface Jouni Högander
@ 2025-10-24 12:25 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:25 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> We have differing implementations for display runtime pm in i915 and xe
> drivers. Add struct of function pointers into display_parent_interface
> which will contain used implementation of runtime pm.
>
> v2:
> - add _interface suffix to rpm function pointer struct
> - add struct ref_tracker forward declaration
> - use kernel-doc comments
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> include/drm/intel/display_parent_interface.h | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index 28c976815327a..26bedc360044d 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -7,6 +7,23 @@
> #include <linux/types.h>
>
> struct drm_device;
> +struct ref_tracker;
> +
> +struct intel_display_rpm_interface {
> + struct ref_tracker *(*get)(const struct drm_device *drm);
> + struct ref_tracker *(*get_raw)(const struct drm_device *drm);
> + struct ref_tracker *(*get_if_in_use)(const struct drm_device *drm);
> + struct ref_tracker *(*get_noresume)(const struct drm_device *drm);
> +
> + void (*put)(const struct drm_device *drm, struct ref_tracker *wakeref);
> + void (*put_raw)(const struct drm_device *drm, struct ref_tracker *wakeref);
> + void (*put_unchecked)(const struct drm_device *drm);
> +
> + bool (*suspended)(const struct drm_device *drm);
> + void (*assert_held)(const struct drm_device *drm);
> + void (*assert_block)(const struct drm_device *drm);
> + void (*assert_unblock)(const struct drm_device *drm);
> +};
>
> /**
> * struct intel_display_parent_interface - services parent driver provides to display
> @@ -21,6 +38,8 @@ struct drm_device;
> * check the optional pointers.
> */
> struct intel_display_parent_interface {
> + /** @rpm: Runtime PM functions */
> + const struct intel_display_rpm_interface *rpm;
> };
>
> #endif
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 3/6] drm/i915/display: Runtime pm wrappers for display parent interface
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
2025-10-24 9:31 ` [PATCH v2 1/6] drm/{i915, xe}/display: pass parent interface to display probe Jouni Högander
2025-10-24 9:31 ` [PATCH v2 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface Jouni Högander
@ 2025-10-24 9:31 ` Jouni Högander
2025-10-24 12:26 ` Jani Nikula
2025-10-24 9:31 ` [PATCH v2 4/6] drm/xe/display: " Jouni Högander
` (7 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-24 9:31 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, Jouni Högander
Implement runtime pm wrappers for i915 driver and add them into display
parent interface.
v2:
- move i915 display rpm interface implementation to intel_runtime_pm.c
- rename intel_display as i915_display
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/i915_driver.c | 1 +
drivers/gpu/drm/i915/intel_runtime_pm.c | 77 +++++++++++++++++++++++++
drivers/gpu/drm/i915/intel_runtime_pm.h | 3 +
3 files changed, 81 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index b295326eb4331..c97b767719176 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -740,6 +740,7 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
}
static const struct intel_display_parent_interface parent = {
+ .rpm = &i915_display_rpm_interface,
};
const struct intel_display_parent_interface *i915_driver_parent_interface(void)
diff --git a/drivers/gpu/drm/i915/intel_runtime_pm.c b/drivers/gpu/drm/i915/intel_runtime_pm.c
index 7ce3e6de0c197..d11c2814b787b 100644
--- a/drivers/gpu/drm/i915/intel_runtime_pm.c
+++ b/drivers/gpu/drm/i915/intel_runtime_pm.c
@@ -29,6 +29,7 @@
#include <linux/pm_runtime.h>
#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
#include "i915_drv.h"
#include "i915_trace.h"
@@ -177,6 +178,82 @@ static intel_wakeref_t __intel_runtime_pm_get(struct intel_runtime_pm *rpm,
return track_intel_runtime_pm_wakeref(rpm);
}
+static struct intel_runtime_pm *drm_to_rpm(const struct drm_device *drm)
+{
+ struct drm_i915_private *i915 = to_i915(drm);
+
+ return &i915->runtime_pm;
+}
+
+static struct ref_tracker *i915_display_rpm_get(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get(drm_to_rpm(drm));
+}
+
+static struct ref_tracker *i915_display_rpm_get_raw(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get_raw(drm_to_rpm(drm));
+}
+
+static struct ref_tracker *i915_display_rpm_get_if_in_use(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get_if_in_use(drm_to_rpm(drm));
+}
+
+static struct ref_tracker *i915_display_rpm_get_noresume(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get_noresume(drm_to_rpm(drm));
+}
+
+static void i915_display_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ intel_runtime_pm_put(drm_to_rpm(drm), wakeref);
+}
+
+static void i915_display_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ intel_runtime_pm_put_raw(drm_to_rpm(drm), wakeref);
+}
+
+static void i915_display_rpm_put_unchecked(const struct drm_device *drm)
+{
+ intel_runtime_pm_put_unchecked(drm_to_rpm(drm));
+}
+
+static bool i915_display_rpm_suspended(const struct drm_device *drm)
+{
+ return intel_runtime_pm_suspended(drm_to_rpm(drm));
+}
+
+static void i915_display_rpm_assert_held(const struct drm_device *drm)
+{
+ assert_rpm_wakelock_held(drm_to_rpm(drm));
+}
+
+static void i915_display_rpm_assert_block(const struct drm_device *drm)
+{
+ disable_rpm_wakeref_asserts(drm_to_rpm(drm));
+}
+
+static void i915_display_rpm_assert_unblock(const struct drm_device *drm)
+{
+ enable_rpm_wakeref_asserts(drm_to_rpm(drm));
+}
+
+const struct intel_display_rpm_interface i915_display_rpm_interface = {
+ .get = i915_display_rpm_get,
+ .get_raw = i915_display_rpm_get_raw,
+ .get_if_in_use = i915_display_rpm_get_if_in_use,
+ .get_noresume = i915_display_rpm_get_noresume,
+ .put = i915_display_rpm_put,
+ .put_raw = i915_display_rpm_put_raw,
+ .put_unchecked = i915_display_rpm_put_unchecked,
+ .suspended = i915_display_rpm_suspended,
+ .assert_held = i915_display_rpm_assert_held,
+ .assert_block = i915_display_rpm_assert_block,
+ .assert_unblock = i915_display_rpm_assert_unblock
+};
+
/**
* intel_runtime_pm_get_raw - grab a raw runtime pm reference
* @rpm: the intel_runtime_pm structure
diff --git a/drivers/gpu/drm/i915/intel_runtime_pm.h b/drivers/gpu/drm/i915/intel_runtime_pm.h
index 7428bd8fa67f4..ed6c43b17f9ae 100644
--- a/drivers/gpu/drm/i915/intel_runtime_pm.h
+++ b/drivers/gpu/drm/i915/intel_runtime_pm.h
@@ -14,6 +14,7 @@
struct device;
struct drm_i915_private;
struct drm_printer;
+struct intel_display_rpm_interface;
/*
* This struct helps tracking the state needed for runtime PM, which puts the
@@ -226,4 +227,6 @@ static inline void print_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm,
}
#endif
+extern const struct intel_display_rpm_interface i915_display_rpm_interface;
+
#endif /* __INTEL_RUNTIME_PM_H__ */
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2 3/6] drm/i915/display: Runtime pm wrappers for display parent interface
2025-10-24 9:31 ` [PATCH v2 3/6] drm/i915/display: Runtime pm wrappers for display " Jouni Högander
@ 2025-10-24 12:26 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:26 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Implement runtime pm wrappers for i915 driver and add them into display
> parent interface.
>
> v2:
> - move i915 display rpm interface implementation to intel_runtime_pm.c
> - rename intel_display as i915_display
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/i915_driver.c | 1 +
> drivers/gpu/drm/i915/intel_runtime_pm.c | 77 +++++++++++++++++++++++++
> drivers/gpu/drm/i915/intel_runtime_pm.h | 3 +
> 3 files changed, 81 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index b295326eb4331..c97b767719176 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -740,6 +740,7 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
> }
>
> static const struct intel_display_parent_interface parent = {
> + .rpm = &i915_display_rpm_interface,
> };
>
> const struct intel_display_parent_interface *i915_driver_parent_interface(void)
> diff --git a/drivers/gpu/drm/i915/intel_runtime_pm.c b/drivers/gpu/drm/i915/intel_runtime_pm.c
> index 7ce3e6de0c197..d11c2814b787b 100644
> --- a/drivers/gpu/drm/i915/intel_runtime_pm.c
> +++ b/drivers/gpu/drm/i915/intel_runtime_pm.c
> @@ -29,6 +29,7 @@
> #include <linux/pm_runtime.h>
>
> #include <drm/drm_print.h>
> +#include <drm/intel/display_parent_interface.h>
>
> #include "i915_drv.h"
> #include "i915_trace.h"
> @@ -177,6 +178,82 @@ static intel_wakeref_t __intel_runtime_pm_get(struct intel_runtime_pm *rpm,
> return track_intel_runtime_pm_wakeref(rpm);
> }
>
> +static struct intel_runtime_pm *drm_to_rpm(const struct drm_device *drm)
> +{
> + struct drm_i915_private *i915 = to_i915(drm);
> +
> + return &i915->runtime_pm;
> +}
> +
> +static struct ref_tracker *i915_display_rpm_get(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get(drm_to_rpm(drm));
> +}
> +
> +static struct ref_tracker *i915_display_rpm_get_raw(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get_raw(drm_to_rpm(drm));
> +}
> +
> +static struct ref_tracker *i915_display_rpm_get_if_in_use(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get_if_in_use(drm_to_rpm(drm));
> +}
> +
> +static struct ref_tracker *i915_display_rpm_get_noresume(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get_noresume(drm_to_rpm(drm));
> +}
> +
> +static void i915_display_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + intel_runtime_pm_put(drm_to_rpm(drm), wakeref);
> +}
> +
> +static void i915_display_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + intel_runtime_pm_put_raw(drm_to_rpm(drm), wakeref);
> +}
> +
> +static void i915_display_rpm_put_unchecked(const struct drm_device *drm)
> +{
> + intel_runtime_pm_put_unchecked(drm_to_rpm(drm));
> +}
> +
> +static bool i915_display_rpm_suspended(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_suspended(drm_to_rpm(drm));
> +}
> +
> +static void i915_display_rpm_assert_held(const struct drm_device *drm)
> +{
> + assert_rpm_wakelock_held(drm_to_rpm(drm));
> +}
> +
> +static void i915_display_rpm_assert_block(const struct drm_device *drm)
> +{
> + disable_rpm_wakeref_asserts(drm_to_rpm(drm));
> +}
> +
> +static void i915_display_rpm_assert_unblock(const struct drm_device *drm)
> +{
> + enable_rpm_wakeref_asserts(drm_to_rpm(drm));
> +}
> +
> +const struct intel_display_rpm_interface i915_display_rpm_interface = {
> + .get = i915_display_rpm_get,
> + .get_raw = i915_display_rpm_get_raw,
> + .get_if_in_use = i915_display_rpm_get_if_in_use,
> + .get_noresume = i915_display_rpm_get_noresume,
> + .put = i915_display_rpm_put,
> + .put_raw = i915_display_rpm_put_raw,
> + .put_unchecked = i915_display_rpm_put_unchecked,
> + .suspended = i915_display_rpm_suspended,
> + .assert_held = i915_display_rpm_assert_held,
> + .assert_block = i915_display_rpm_assert_block,
> + .assert_unblock = i915_display_rpm_assert_unblock
> +};
> +
> /**
> * intel_runtime_pm_get_raw - grab a raw runtime pm reference
> * @rpm: the intel_runtime_pm structure
> diff --git a/drivers/gpu/drm/i915/intel_runtime_pm.h b/drivers/gpu/drm/i915/intel_runtime_pm.h
> index 7428bd8fa67f4..ed6c43b17f9ae 100644
> --- a/drivers/gpu/drm/i915/intel_runtime_pm.h
> +++ b/drivers/gpu/drm/i915/intel_runtime_pm.h
> @@ -14,6 +14,7 @@
> struct device;
> struct drm_i915_private;
> struct drm_printer;
> +struct intel_display_rpm_interface;
>
> /*
> * This struct helps tracking the state needed for runtime PM, which puts the
> @@ -226,4 +227,6 @@ static inline void print_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm,
> }
> #endif
>
> +extern const struct intel_display_rpm_interface i915_display_rpm_interface;
> +
> #endif /* __INTEL_RUNTIME_PM_H__ */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 4/6] drm/xe/display: Runtime pm wrappers for display parent interface
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (2 preceding siblings ...)
2025-10-24 9:31 ` [PATCH v2 3/6] drm/i915/display: Runtime pm wrappers for display " Jouni Högander
@ 2025-10-24 9:31 ` Jouni Högander
2025-10-24 12:27 ` Jani Nikula
2025-10-24 12:31 ` Jani Nikula
2025-10-24 9:31 ` [PATCH v2 5/6] drm/i915/display: Use display parent interface for i915 runtime pm Jouni Högander
` (6 subsequent siblings)
10 siblings, 2 replies; 19+ messages in thread
From: Jouni Högander @ 2025-10-24 9:31 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, Jouni Högander
Implement runtime pm wrappers for xe driver and add them into display
parent interface.
v2:
- move xe_display_rpm_interface code into xe_display_rpm.c
- rename xe_rpm as xe_display_rpm
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/xe/display/xe_display.c | 3 +
drivers/gpu/drm/xe/display/xe_display_rpm.c | 76 +++++++++++++++++++++
drivers/gpu/drm/xe/display/xe_display_rpm.h | 11 +++
3 files changed, 90 insertions(+)
create mode 100644 drivers/gpu/drm/xe/display/xe_display_rpm.h
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index 0e38c96eb6def..be7f3c7ef5c3f 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -35,7 +35,9 @@
#include "intel_hotplug.h"
#include "intel_opregion.h"
#include "skl_watermark.h"
+#include "xe_display_rpm.h"
#include "xe_module.h"
+#include "xe_pm.h"
/* Ensure drm and display members are placed properly. */
INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct xe_device, drm, display);
@@ -516,6 +518,7 @@ static void display_device_remove(struct drm_device *dev, void *arg)
}
static const struct intel_display_parent_interface parent = {
+ .rpm = &xe_display_rpm_interface,
};
/**
diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.c b/drivers/gpu/drm/xe/display/xe_display_rpm.c
index 3825376e98ccd..72a351e26a008 100644
--- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
+++ b/drivers/gpu/drm/xe/display/xe_display_rpm.c
@@ -1,6 +1,8 @@
// SPDX-License-Identifier: MIT
/* Copyright © 2025 Intel Corporation */
+#include <drm/intel/display_parent_interface.h>
+
#include "intel_display_core.h"
#include "intel_display_rpm.h"
#include "xe_device.h"
@@ -71,3 +73,77 @@ void intel_display_rpm_assert_unblock(struct intel_display *display)
{
/* FIXME */
}
+
+static struct ref_tracker *xe_display_rpm_get(const struct drm_device *drm)
+{
+ return xe_pm_runtime_resume_and_get(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
+}
+
+static struct ref_tracker *xe_display_rpm_get_raw(const struct drm_device *drm)
+{
+ return xe_display_rpm_get(drm);
+}
+
+static struct ref_tracker *xe_display_rpm_get_if_in_use(const struct drm_device *drm)
+{
+ return xe_pm_runtime_get_if_in_use(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
+}
+
+static struct ref_tracker *xe_display_rpm_get_noresume(const struct drm_device *drm)
+{
+ xe_pm_runtime_get_noresume(to_xe_device(drm));
+
+ return INTEL_WAKEREF_DEF;
+}
+
+static void xe_display_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ if (wakeref)
+ xe_pm_runtime_put(to_xe_device(drm));
+}
+
+static void xe_display_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ xe_display_rpm_put(drm, wakeref);
+}
+
+static void xe_display_rpm_put_unchecked(const struct drm_device *drm)
+{
+ xe_pm_runtime_put(to_xe_device(drm));
+}
+
+static bool xe_display_rpm_suspended(const struct drm_device *drm)
+{
+ struct xe_device *xe = to_xe_device(drm);
+
+ return pm_runtime_suspended(xe->drm.dev);
+}
+
+static void xe_display_rpm_assert_held(const struct drm_device *drm)
+{
+ /* FIXME */
+}
+
+static void xe_display_rpm_assert_block(const struct drm_device *drm)
+{
+ /* FIXME */
+}
+
+static void xe_display_rpm_assert_unblock(const struct drm_device *drm)
+{
+ /* FIXME */
+}
+
+const struct intel_display_rpm_interface xe_display_rpm_interface = {
+ .get = xe_display_rpm_get,
+ .get_raw = xe_display_rpm_get_raw,
+ .get_if_in_use = xe_display_rpm_get_if_in_use,
+ .get_noresume = xe_display_rpm_get_noresume,
+ .put = xe_display_rpm_put,
+ .put_raw = xe_display_rpm_put_raw,
+ .put_unchecked = xe_display_rpm_put_unchecked,
+ .suspended = xe_display_rpm_suspended,
+ .assert_held = xe_display_rpm_assert_held,
+ .assert_block = xe_display_rpm_assert_block,
+ .assert_unblock = xe_display_rpm_assert_unblock
+};
diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.h b/drivers/gpu/drm/xe/display/xe_display_rpm.h
new file mode 100644
index 0000000000000..0bf9d31e87c17
--- /dev/null
+++ b/drivers/gpu/drm/xe/display/xe_display_rpm.h
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef _XE_DISPLAY_RPM_H_
+#define _XE_DISPLAY_RPM_H_
+
+extern const struct intel_display_rpm_interface xe_display_rpm_interface;
+
+#endif /* _XE_DISPLAY_RPM_H_ */
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2 4/6] drm/xe/display: Runtime pm wrappers for display parent interface
2025-10-24 9:31 ` [PATCH v2 4/6] drm/xe/display: " Jouni Högander
@ 2025-10-24 12:27 ` Jani Nikula
2025-10-24 12:31 ` Jani Nikula
1 sibling, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:27 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Implement runtime pm wrappers for xe driver and add them into display
> parent interface.
>
> v2:
> - move xe_display_rpm_interface code into xe_display_rpm.c
> - rename xe_rpm as xe_display_rpm
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_display.c | 3 +
> drivers/gpu/drm/xe/display/xe_display_rpm.c | 76 +++++++++++++++++++++
> drivers/gpu/drm/xe/display/xe_display_rpm.h | 11 +++
> 3 files changed, 90 insertions(+)
> create mode 100644 drivers/gpu/drm/xe/display/xe_display_rpm.h
>
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
> index 0e38c96eb6def..be7f3c7ef5c3f 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -35,7 +35,9 @@
> #include "intel_hotplug.h"
> #include "intel_opregion.h"
> #include "skl_watermark.h"
> +#include "xe_display_rpm.h"
> #include "xe_module.h"
> +#include "xe_pm.h"
That's probably leftovers from the previous version?
Anyway,
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
> /* Ensure drm and display members are placed properly. */
> INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct xe_device, drm, display);
> @@ -516,6 +518,7 @@ static void display_device_remove(struct drm_device *dev, void *arg)
> }
>
> static const struct intel_display_parent_interface parent = {
> + .rpm = &xe_display_rpm_interface,
> };
>
> /**
> diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.c b/drivers/gpu/drm/xe/display/xe_display_rpm.c
> index 3825376e98ccd..72a351e26a008 100644
> --- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
> +++ b/drivers/gpu/drm/xe/display/xe_display_rpm.c
> @@ -1,6 +1,8 @@
> // SPDX-License-Identifier: MIT
> /* Copyright © 2025 Intel Corporation */
>
> +#include <drm/intel/display_parent_interface.h>
> +
> #include "intel_display_core.h"
> #include "intel_display_rpm.h"
> #include "xe_device.h"
> @@ -71,3 +73,77 @@ void intel_display_rpm_assert_unblock(struct intel_display *display)
> {
> /* FIXME */
> }
> +
> +static struct ref_tracker *xe_display_rpm_get(const struct drm_device *drm)
> +{
> + return xe_pm_runtime_resume_and_get(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
> +}
> +
> +static struct ref_tracker *xe_display_rpm_get_raw(const struct drm_device *drm)
> +{
> + return xe_display_rpm_get(drm);
> +}
> +
> +static struct ref_tracker *xe_display_rpm_get_if_in_use(const struct drm_device *drm)
> +{
> + return xe_pm_runtime_get_if_in_use(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
> +}
> +
> +static struct ref_tracker *xe_display_rpm_get_noresume(const struct drm_device *drm)
> +{
> + xe_pm_runtime_get_noresume(to_xe_device(drm));
> +
> + return INTEL_WAKEREF_DEF;
> +}
> +
> +static void xe_display_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + if (wakeref)
> + xe_pm_runtime_put(to_xe_device(drm));
> +}
> +
> +static void xe_display_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + xe_display_rpm_put(drm, wakeref);
> +}
> +
> +static void xe_display_rpm_put_unchecked(const struct drm_device *drm)
> +{
> + xe_pm_runtime_put(to_xe_device(drm));
> +}
> +
> +static bool xe_display_rpm_suspended(const struct drm_device *drm)
> +{
> + struct xe_device *xe = to_xe_device(drm);
> +
> + return pm_runtime_suspended(xe->drm.dev);
> +}
> +
> +static void xe_display_rpm_assert_held(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static void xe_display_rpm_assert_block(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static void xe_display_rpm_assert_unblock(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +const struct intel_display_rpm_interface xe_display_rpm_interface = {
> + .get = xe_display_rpm_get,
> + .get_raw = xe_display_rpm_get_raw,
> + .get_if_in_use = xe_display_rpm_get_if_in_use,
> + .get_noresume = xe_display_rpm_get_noresume,
> + .put = xe_display_rpm_put,
> + .put_raw = xe_display_rpm_put_raw,
> + .put_unchecked = xe_display_rpm_put_unchecked,
> + .suspended = xe_display_rpm_suspended,
> + .assert_held = xe_display_rpm_assert_held,
> + .assert_block = xe_display_rpm_assert_block,
> + .assert_unblock = xe_display_rpm_assert_unblock
> +};
> diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.h b/drivers/gpu/drm/xe/display/xe_display_rpm.h
> new file mode 100644
> index 0000000000000..0bf9d31e87c17
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/display/xe_display_rpm.h
> @@ -0,0 +1,11 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef _XE_DISPLAY_RPM_H_
> +#define _XE_DISPLAY_RPM_H_
> +
> +extern const struct intel_display_rpm_interface xe_display_rpm_interface;
> +
> +#endif /* _XE_DISPLAY_RPM_H_ */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH v2 4/6] drm/xe/display: Runtime pm wrappers for display parent interface
2025-10-24 9:31 ` [PATCH v2 4/6] drm/xe/display: " Jouni Högander
2025-10-24 12:27 ` Jani Nikula
@ 2025-10-24 12:31 ` Jani Nikula
1 sibling, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:31 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Implement runtime pm wrappers for xe driver and add them into display
> parent interface.
>
> v2:
> - move xe_display_rpm_interface code into xe_display_rpm.c
> - rename xe_rpm as xe_display_rpm
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_display.c | 3 +
> drivers/gpu/drm/xe/display/xe_display_rpm.c | 76 +++++++++++++++++++++
> drivers/gpu/drm/xe/display/xe_display_rpm.h | 11 +++
> 3 files changed, 90 insertions(+)
> create mode 100644 drivers/gpu/drm/xe/display/xe_display_rpm.h
>
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
> index 0e38c96eb6def..be7f3c7ef5c3f 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -35,7 +35,9 @@
> #include "intel_hotplug.h"
> #include "intel_opregion.h"
> #include "skl_watermark.h"
> +#include "xe_display_rpm.h"
> #include "xe_module.h"
> +#include "xe_pm.h"
>
> /* Ensure drm and display members are placed properly. */
> INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct xe_device, drm, display);
> @@ -516,6 +518,7 @@ static void display_device_remove(struct drm_device *dev, void *arg)
> }
>
> static const struct intel_display_parent_interface parent = {
> + .rpm = &xe_display_rpm_interface,
> };
>
> /**
> diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.c b/drivers/gpu/drm/xe/display/xe_display_rpm.c
> index 3825376e98ccd..72a351e26a008 100644
> --- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
> +++ b/drivers/gpu/drm/xe/display/xe_display_rpm.c
> @@ -1,6 +1,8 @@
> // SPDX-License-Identifier: MIT
> /* Copyright © 2025 Intel Corporation */
>
> +#include <drm/intel/display_parent_interface.h>
> +
> #include "intel_display_core.h"
> #include "intel_display_rpm.h"
> #include "xe_device.h"
> @@ -71,3 +73,77 @@ void intel_display_rpm_assert_unblock(struct intel_display *display)
> {
> /* FIXME */
> }
> +
> +static struct ref_tracker *xe_display_rpm_get(const struct drm_device *drm)
> +{
> + return xe_pm_runtime_resume_and_get(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
> +}
> +
> +static struct ref_tracker *xe_display_rpm_get_raw(const struct drm_device *drm)
> +{
> + return xe_display_rpm_get(drm);
Oh, just an observation, you could also just point both .get and
.get_raw at xe_display_rpm_get in the struct initialization. Dunno
what's easier on the reader. *shrug*
Ditto for put.
BR,
Jani.
> +}
> +
> +static struct ref_tracker *xe_display_rpm_get_if_in_use(const struct drm_device *drm)
> +{
> + return xe_pm_runtime_get_if_in_use(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
> +}
> +
> +static struct ref_tracker *xe_display_rpm_get_noresume(const struct drm_device *drm)
> +{
> + xe_pm_runtime_get_noresume(to_xe_device(drm));
> +
> + return INTEL_WAKEREF_DEF;
> +}
> +
> +static void xe_display_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + if (wakeref)
> + xe_pm_runtime_put(to_xe_device(drm));
> +}
> +
> +static void xe_display_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + xe_display_rpm_put(drm, wakeref);
> +}
> +
> +static void xe_display_rpm_put_unchecked(const struct drm_device *drm)
> +{
> + xe_pm_runtime_put(to_xe_device(drm));
> +}
> +
> +static bool xe_display_rpm_suspended(const struct drm_device *drm)
> +{
> + struct xe_device *xe = to_xe_device(drm);
> +
> + return pm_runtime_suspended(xe->drm.dev);
> +}
> +
> +static void xe_display_rpm_assert_held(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static void xe_display_rpm_assert_block(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static void xe_display_rpm_assert_unblock(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +const struct intel_display_rpm_interface xe_display_rpm_interface = {
> + .get = xe_display_rpm_get,
> + .get_raw = xe_display_rpm_get_raw,
> + .get_if_in_use = xe_display_rpm_get_if_in_use,
> + .get_noresume = xe_display_rpm_get_noresume,
> + .put = xe_display_rpm_put,
> + .put_raw = xe_display_rpm_put_raw,
> + .put_unchecked = xe_display_rpm_put_unchecked,
> + .suspended = xe_display_rpm_suspended,
> + .assert_held = xe_display_rpm_assert_held,
> + .assert_block = xe_display_rpm_assert_block,
> + .assert_unblock = xe_display_rpm_assert_unblock
> +};
> diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.h b/drivers/gpu/drm/xe/display/xe_display_rpm.h
> new file mode 100644
> index 0000000000000..0bf9d31e87c17
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/display/xe_display_rpm.h
> @@ -0,0 +1,11 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef _XE_DISPLAY_RPM_H_
> +#define _XE_DISPLAY_RPM_H_
> +
> +extern const struct intel_display_rpm_interface xe_display_rpm_interface;
> +
> +#endif /* _XE_DISPLAY_RPM_H_ */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 5/6] drm/i915/display: Use display parent interface for i915 runtime pm
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (3 preceding siblings ...)
2025-10-24 9:31 ` [PATCH v2 4/6] drm/xe/display: " Jouni Högander
@ 2025-10-24 9:31 ` Jouni Högander
2025-10-24 12:28 ` Jani Nikula
2025-10-24 9:31 ` [PATCH v2 6/6] drm/xe/display: Use display parent interface for xe " Jouni Högander
` (5 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-24 9:31 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, Jouni Högander
Start using display parent interface for i915 runtime pm. Doing the same
for xe is done in coming changes.
v2:
- use <> when including drm/intel/display_parent_interface.h
- drop checks for validity of rpm function pointers
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
.../gpu/drm/i915/display/intel_display_rpm.c | 32 ++++++++-----------
1 file changed, 13 insertions(+), 19 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_rpm.c b/drivers/gpu/drm/i915/display/intel_display_rpm.c
index 56c4024201c16..3a6b86842b496 100644
--- a/drivers/gpu/drm/i915/display/intel_display_rpm.c
+++ b/drivers/gpu/drm/i915/display/intel_display_rpm.c
@@ -1,69 +1,63 @@
// SPDX-License-Identifier: MIT
/* Copyright © 2025 Intel Corporation */
+#include <drm/intel/display_parent_interface.h>
+
#include "i915_drv.h"
#include "intel_display_core.h"
#include "intel_display_rpm.h"
-#include "intel_runtime_pm.h"
-
-static struct intel_runtime_pm *display_to_rpm(struct intel_display *display)
-{
- struct drm_i915_private *i915 = to_i915(display->drm);
-
- return &i915->runtime_pm;
-}
struct ref_tracker *intel_display_rpm_get_raw(struct intel_display *display)
{
- return intel_runtime_pm_get_raw(display_to_rpm(display));
+ return display->parent->rpm->get_raw(display->drm);
}
void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
{
- intel_runtime_pm_put_raw(display_to_rpm(display), wakeref);
+ display->parent->rpm->put_raw(display->drm, wakeref);
}
struct ref_tracker *intel_display_rpm_get(struct intel_display *display)
{
- return intel_runtime_pm_get(display_to_rpm(display));
+ return display->parent->rpm->get(display->drm);
}
struct ref_tracker *intel_display_rpm_get_if_in_use(struct intel_display *display)
{
- return intel_runtime_pm_get_if_in_use(display_to_rpm(display));
+ return display->parent->rpm->get_if_in_use(display->drm);
}
struct ref_tracker *intel_display_rpm_get_noresume(struct intel_display *display)
{
- return intel_runtime_pm_get_noresume(display_to_rpm(display));
+ return display->parent->rpm->get_noresume(display->drm);
}
void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
{
- intel_runtime_pm_put(display_to_rpm(display), wakeref);
+ display->parent->rpm->put(display->drm, wakeref);
}
void intel_display_rpm_put_unchecked(struct intel_display *display)
{
- intel_runtime_pm_put_unchecked(display_to_rpm(display));
+ display->parent->rpm->put_unchecked(display->drm);
}
bool intel_display_rpm_suspended(struct intel_display *display)
{
- return intel_runtime_pm_suspended(display_to_rpm(display));
+ return display->parent->rpm->suspended(display->drm);
}
void assert_display_rpm_held(struct intel_display *display)
{
- assert_rpm_wakelock_held(display_to_rpm(display));
+ display->parent->rpm->assert_held(display->drm);
}
void intel_display_rpm_assert_block(struct intel_display *display)
{
- disable_rpm_wakeref_asserts(display_to_rpm(display));
+ display->parent->rpm->assert_block(display->drm);
}
void intel_display_rpm_assert_unblock(struct intel_display *display)
{
- enable_rpm_wakeref_asserts(display_to_rpm(display));
+ display->parent->rpm->assert_unblock(display->drm);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2 5/6] drm/i915/display: Use display parent interface for i915 runtime pm
2025-10-24 9:31 ` [PATCH v2 5/6] drm/i915/display: Use display parent interface for i915 runtime pm Jouni Högander
@ 2025-10-24 12:28 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:28 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Start using display parent interface for i915 runtime pm. Doing the same
> for xe is done in coming changes.
>
> v2:
> - use <> when including drm/intel/display_parent_interface.h
> - drop checks for validity of rpm function pointers
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> .../gpu/drm/i915/display/intel_display_rpm.c | 32 ++++++++-----------
> 1 file changed, 13 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_rpm.c b/drivers/gpu/drm/i915/display/intel_display_rpm.c
> index 56c4024201c16..3a6b86842b496 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_rpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_rpm.c
> @@ -1,69 +1,63 @@
> // SPDX-License-Identifier: MIT
> /* Copyright © 2025 Intel Corporation */
>
> +#include <drm/intel/display_parent_interface.h>
> +
> #include "i915_drv.h"
I'm guessing you could remove this too.
Anyway,
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> #include "intel_display_core.h"
> #include "intel_display_rpm.h"
> -#include "intel_runtime_pm.h"
> -
> -static struct intel_runtime_pm *display_to_rpm(struct intel_display *display)
> -{
> - struct drm_i915_private *i915 = to_i915(display->drm);
> -
> - return &i915->runtime_pm;
> -}
>
> struct ref_tracker *intel_display_rpm_get_raw(struct intel_display *display)
> {
> - return intel_runtime_pm_get_raw(display_to_rpm(display));
> + return display->parent->rpm->get_raw(display->drm);
> }
>
> void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
> {
> - intel_runtime_pm_put_raw(display_to_rpm(display), wakeref);
> + display->parent->rpm->put_raw(display->drm, wakeref);
> }
>
> struct ref_tracker *intel_display_rpm_get(struct intel_display *display)
> {
> - return intel_runtime_pm_get(display_to_rpm(display));
> + return display->parent->rpm->get(display->drm);
> }
>
> struct ref_tracker *intel_display_rpm_get_if_in_use(struct intel_display *display)
> {
> - return intel_runtime_pm_get_if_in_use(display_to_rpm(display));
> + return display->parent->rpm->get_if_in_use(display->drm);
> }
>
> struct ref_tracker *intel_display_rpm_get_noresume(struct intel_display *display)
> {
> - return intel_runtime_pm_get_noresume(display_to_rpm(display));
> + return display->parent->rpm->get_noresume(display->drm);
> }
>
> void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
> {
> - intel_runtime_pm_put(display_to_rpm(display), wakeref);
> + display->parent->rpm->put(display->drm, wakeref);
> }
>
> void intel_display_rpm_put_unchecked(struct intel_display *display)
> {
> - intel_runtime_pm_put_unchecked(display_to_rpm(display));
> + display->parent->rpm->put_unchecked(display->drm);
> }
>
> bool intel_display_rpm_suspended(struct intel_display *display)
> {
> - return intel_runtime_pm_suspended(display_to_rpm(display));
> + return display->parent->rpm->suspended(display->drm);
> }
>
> void assert_display_rpm_held(struct intel_display *display)
> {
> - assert_rpm_wakelock_held(display_to_rpm(display));
> + display->parent->rpm->assert_held(display->drm);
> }
>
> void intel_display_rpm_assert_block(struct intel_display *display)
> {
> - disable_rpm_wakeref_asserts(display_to_rpm(display));
> + display->parent->rpm->assert_block(display->drm);
> }
>
> void intel_display_rpm_assert_unblock(struct intel_display *display)
> {
> - enable_rpm_wakeref_asserts(display_to_rpm(display));
> + display->parent->rpm->assert_unblock(display->drm);
> }
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 6/6] drm/xe/display: Use display parent interface for xe runtime pm
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (4 preceding siblings ...)
2025-10-24 9:31 ` [PATCH v2 5/6] drm/i915/display: Use display parent interface for i915 runtime pm Jouni Högander
@ 2025-10-24 9:31 ` Jouni Högander
2025-10-24 12:28 ` Jani Nikula
2025-10-24 9:38 ` ✗ CI.checkpatch: warning for Use display parent interface for runtime pm (rev2) Patchwork
` (4 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-24 9:31 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, Jouni Högander
Start using display parent interface for xe runtime pm.
v2: keep xe_display_rpm.c
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/display/xe_display_rpm.c | 65 ---------------------
2 files changed, 1 insertion(+), 65 deletions(-)
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 82c6b3d296769..a39caed9f3d35 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -256,6 +256,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
i915-display/intel_display_power.o \
i915-display/intel_display_power_map.o \
i915-display/intel_display_power_well.o \
+ i915-display/intel_display_rpm.o \
i915-display/intel_display_trace.o \
i915-display/intel_display_wa.o \
i915-display/intel_dkl_phy.o \
diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.c b/drivers/gpu/drm/xe/display/xe_display_rpm.c
index 72a351e26a008..977f1dafdde07 100644
--- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
+++ b/drivers/gpu/drm/xe/display/xe_display_rpm.c
@@ -9,71 +9,6 @@
#include "xe_device_types.h"
#include "xe_pm.h"
-static struct xe_device *display_to_xe(struct intel_display *display)
-{
- return to_xe_device(display->drm);
-}
-
-struct ref_tracker *intel_display_rpm_get_raw(struct intel_display *display)
-{
- return intel_display_rpm_get(display);
-}
-
-void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
-{
- intel_display_rpm_put(display, wakeref);
-}
-
-struct ref_tracker *intel_display_rpm_get(struct intel_display *display)
-{
- return xe_pm_runtime_resume_and_get(display_to_xe(display)) ? INTEL_WAKEREF_DEF : NULL;
-}
-
-struct ref_tracker *intel_display_rpm_get_if_in_use(struct intel_display *display)
-{
- return xe_pm_runtime_get_if_in_use(display_to_xe(display)) ? INTEL_WAKEREF_DEF : NULL;
-}
-
-struct ref_tracker *intel_display_rpm_get_noresume(struct intel_display *display)
-{
- xe_pm_runtime_get_noresume(display_to_xe(display));
-
- return INTEL_WAKEREF_DEF;
-}
-
-void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
-{
- if (wakeref)
- xe_pm_runtime_put(display_to_xe(display));
-}
-
-void intel_display_rpm_put_unchecked(struct intel_display *display)
-{
- xe_pm_runtime_put(display_to_xe(display));
-}
-
-bool intel_display_rpm_suspended(struct intel_display *display)
-{
- struct xe_device *xe = display_to_xe(display);
-
- return pm_runtime_suspended(xe->drm.dev);
-}
-
-void assert_display_rpm_held(struct intel_display *display)
-{
- /* FIXME */
-}
-
-void intel_display_rpm_assert_block(struct intel_display *display)
-{
- /* FIXME */
-}
-
-void intel_display_rpm_assert_unblock(struct intel_display *display)
-{
- /* FIXME */
-}
-
static struct ref_tracker *xe_display_rpm_get(const struct drm_device *drm)
{
return xe_pm_runtime_resume_and_get(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v2 6/6] drm/xe/display: Use display parent interface for xe runtime pm
2025-10-24 9:31 ` [PATCH v2 6/6] drm/xe/display: Use display parent interface for xe " Jouni Högander
@ 2025-10-24 12:28 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-24 12:28 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Fri, 24 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Start using display parent interface for xe runtime pm.
>
> v2: keep xe_display_rpm.c
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/xe/Makefile | 1 +
> drivers/gpu/drm/xe/display/xe_display_rpm.c | 65 ---------------------
> 2 files changed, 1 insertion(+), 65 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index 82c6b3d296769..a39caed9f3d35 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -256,6 +256,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
> i915-display/intel_display_power.o \
> i915-display/intel_display_power_map.o \
> i915-display/intel_display_power_well.o \
> + i915-display/intel_display_rpm.o \
> i915-display/intel_display_trace.o \
> i915-display/intel_display_wa.o \
> i915-display/intel_dkl_phy.o \
> diff --git a/drivers/gpu/drm/xe/display/xe_display_rpm.c b/drivers/gpu/drm/xe/display/xe_display_rpm.c
> index 72a351e26a008..977f1dafdde07 100644
> --- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
> +++ b/drivers/gpu/drm/xe/display/xe_display_rpm.c
> @@ -9,71 +9,6 @@
> #include "xe_device_types.h"
> #include "xe_pm.h"
>
> -static struct xe_device *display_to_xe(struct intel_display *display)
> -{
> - return to_xe_device(display->drm);
> -}
> -
> -struct ref_tracker *intel_display_rpm_get_raw(struct intel_display *display)
> -{
> - return intel_display_rpm_get(display);
> -}
> -
> -void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
> -{
> - intel_display_rpm_put(display, wakeref);
> -}
> -
> -struct ref_tracker *intel_display_rpm_get(struct intel_display *display)
> -{
> - return xe_pm_runtime_resume_and_get(display_to_xe(display)) ? INTEL_WAKEREF_DEF : NULL;
> -}
> -
> -struct ref_tracker *intel_display_rpm_get_if_in_use(struct intel_display *display)
> -{
> - return xe_pm_runtime_get_if_in_use(display_to_xe(display)) ? INTEL_WAKEREF_DEF : NULL;
> -}
> -
> -struct ref_tracker *intel_display_rpm_get_noresume(struct intel_display *display)
> -{
> - xe_pm_runtime_get_noresume(display_to_xe(display));
> -
> - return INTEL_WAKEREF_DEF;
> -}
> -
> -void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
> -{
> - if (wakeref)
> - xe_pm_runtime_put(display_to_xe(display));
> -}
> -
> -void intel_display_rpm_put_unchecked(struct intel_display *display)
> -{
> - xe_pm_runtime_put(display_to_xe(display));
> -}
> -
> -bool intel_display_rpm_suspended(struct intel_display *display)
> -{
> - struct xe_device *xe = display_to_xe(display);
> -
> - return pm_runtime_suspended(xe->drm.dev);
> -}
> -
> -void assert_display_rpm_held(struct intel_display *display)
> -{
> - /* FIXME */
> -}
> -
> -void intel_display_rpm_assert_block(struct intel_display *display)
> -{
> - /* FIXME */
> -}
> -
> -void intel_display_rpm_assert_unblock(struct intel_display *display)
> -{
> - /* FIXME */
> -}
> -
> static struct ref_tracker *xe_display_rpm_get(const struct drm_device *drm)
> {
> return xe_pm_runtime_resume_and_get(to_xe_device(drm)) ? INTEL_WAKEREF_DEF : NULL;
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.checkpatch: warning for Use display parent interface for runtime pm (rev2)
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (5 preceding siblings ...)
2025-10-24 9:31 ` [PATCH v2 6/6] drm/xe/display: Use display parent interface for xe " Jouni Högander
@ 2025-10-24 9:38 ` Patchwork
2025-10-24 9:39 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-24 9:38 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Use display parent interface for runtime pm (rev2)
URL : https://patchwork.freedesktop.org/series/156308/
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
8677d3b99d5fd579c143b22605d99121e2482e8a
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 55d659e6c69c0c3becd412a64b551ff79f1832e7
Author: Jouni Högander <jouni.hogander@intel.com>
Date: Fri Oct 24 12:31:13 2025 +0300
drm/xe/display: Use display parent interface for xe runtime pm
Start using display parent interface for xe runtime pm.
v2: keep xe_display_rpm.c
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
+ /mt/dim checkpatch c840596036111afb71465977a49618cd19ca6e8b drm-intel
e3dad29e1781 drm/{i915, xe}/display: pass parent interface to display probe
-:71: WARNING:LONG_LINE: line length of 101 exceeds 100 columns
#71: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:1651:
+ const struct intel_display_parent_interface *parent)
-:102: WARNING:LONG_LINE: line length of 102 exceeds 100 columns
#102: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:317:
+ const struct intel_display_parent_interface *parent);
-:240: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#240:
new file mode 100644
total: 0 errors, 3 warnings, 0 checks, 172 lines checked
9867b024bc59 drm/{i915, xe}/display: Add display runtime pm parent interface
01492eb2bf16 drm/i915/display: Runtime pm wrappers for display parent interface
22fc676daaf3 drm/xe/display: Runtime pm wrappers for display parent interface
-:133: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#133:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 112 lines checked
eadcab23d6fb drm/i915/display: Use display parent interface for i915 runtime pm
55d659e6c69c drm/xe/display: Use display parent interface for xe runtime pm
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.KUnit: success for Use display parent interface for runtime pm (rev2)
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (6 preceding siblings ...)
2025-10-24 9:38 ` ✗ CI.checkpatch: warning for Use display parent interface for runtime pm (rev2) Patchwork
@ 2025-10-24 9:39 ` Patchwork
2025-10-24 9:55 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-24 9:39 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Use display parent interface for runtime pm (rev2)
URL : https://patchwork.freedesktop.org/series/156308/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:38:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:38:27] 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:38:58] Starting KUnit Kernel (1/1)...
[09:38:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:38:58] ================== guc_buf (11 subtests) ===================
[09:38:58] [PASSED] test_smallest
[09:38:58] [PASSED] test_largest
[09:38:58] [PASSED] test_granular
[09:38:58] [PASSED] test_unique
[09:38:58] [PASSED] test_overlap
[09:38:58] [PASSED] test_reusable
[09:38:58] [PASSED] test_too_big
[09:38:58] [PASSED] test_flush
[09:38:58] [PASSED] test_lookup
[09:38:58] [PASSED] test_data
[09:38:58] [PASSED] test_class
[09:38:58] ===================== [PASSED] guc_buf =====================
[09:38:58] =================== guc_dbm (7 subtests) ===================
[09:38:58] [PASSED] test_empty
[09:38:58] [PASSED] test_default
[09:38:58] ======================== test_size ========================
[09:38:58] [PASSED] 4
[09:38:58] [PASSED] 8
[09:38:58] [PASSED] 32
[09:38:58] [PASSED] 256
[09:38:58] ==================== [PASSED] test_size ====================
[09:38:58] ======================= test_reuse ========================
[09:38:58] [PASSED] 4
[09:38:58] [PASSED] 8
[09:38:58] [PASSED] 32
[09:38:58] [PASSED] 256
[09:38:58] =================== [PASSED] test_reuse ====================
[09:38:58] =================== test_range_overlap ====================
[09:38:58] [PASSED] 4
[09:38:58] [PASSED] 8
[09:38:58] [PASSED] 32
[09:38:58] [PASSED] 256
[09:38:58] =============== [PASSED] test_range_overlap ================
[09:38:58] =================== test_range_compact ====================
[09:38:58] [PASSED] 4
[09:38:58] [PASSED] 8
[09:38:58] [PASSED] 32
[09:38:58] [PASSED] 256
[09:38:58] =============== [PASSED] test_range_compact ================
[09:38:58] ==================== test_range_spare =====================
[09:38:58] [PASSED] 4
[09:38:58] [PASSED] 8
[09:38:58] [PASSED] 32
[09:38:58] [PASSED] 256
[09:38:58] ================ [PASSED] test_range_spare =================
[09:38:58] ===================== [PASSED] guc_dbm =====================
[09:38:58] =================== guc_idm (6 subtests) ===================
[09:38:58] [PASSED] bad_init
[09:38:58] [PASSED] no_init
[09:38:58] [PASSED] init_fini
[09:38:58] [PASSED] check_used
[09:38:58] [PASSED] check_quota
[09:38:58] [PASSED] check_all
[09:38:58] ===================== [PASSED] guc_idm =====================
[09:38:58] ================== no_relay (3 subtests) ===================
[09:38:58] [PASSED] xe_drops_guc2pf_if_not_ready
[09:38:58] [PASSED] xe_drops_guc2vf_if_not_ready
[09:38:58] [PASSED] xe_rejects_send_if_not_ready
[09:38:58] ==================== [PASSED] no_relay =====================
[09:38:58] ================== pf_relay (14 subtests) ==================
[09:38:58] [PASSED] pf_rejects_guc2pf_too_short
[09:38:58] [PASSED] pf_rejects_guc2pf_too_long
[09:38:58] [PASSED] pf_rejects_guc2pf_no_payload
[09:38:58] [PASSED] pf_fails_no_payload
[09:38:58] [PASSED] pf_fails_bad_origin
[09:38:58] [PASSED] pf_fails_bad_type
[09:38:58] [PASSED] pf_txn_reports_error
[09:38:58] [PASSED] pf_txn_sends_pf2guc
[09:38:58] [PASSED] pf_sends_pf2guc
[09:38:58] [SKIPPED] pf_loopback_nop
[09:38:58] [SKIPPED] pf_loopback_echo
[09:38:58] [SKIPPED] pf_loopback_fail
[09:38:58] [SKIPPED] pf_loopback_busy
[09:38:58] [SKIPPED] pf_loopback_retry
[09:38:58] ==================== [PASSED] pf_relay =====================
[09:38:58] ================== vf_relay (3 subtests) ===================
[09:38:58] [PASSED] vf_rejects_guc2vf_too_short
[09:38:58] [PASSED] vf_rejects_guc2vf_too_long
[09:38:58] [PASSED] vf_rejects_guc2vf_no_payload
[09:38:58] ==================== [PASSED] vf_relay =====================
[09:38:58] ===================== lmtt (1 subtest) =====================
[09:38:58] ======================== test_ops =========================
[09:38:58] [PASSED] 2-level
[09:38:58] [PASSED] multi-level
[09:38:58] ==================== [PASSED] test_ops =====================
[09:38:58] ====================== [PASSED] lmtt =======================
[09:38:58] ================= pf_service (11 subtests) =================
[09:38:58] [PASSED] pf_negotiate_any
[09:38:58] [PASSED] pf_negotiate_base_match
[09:38:58] [PASSED] pf_negotiate_base_newer
[09:38:58] [PASSED] pf_negotiate_base_next
[09:38:58] [SKIPPED] pf_negotiate_base_older
[09:38:58] [PASSED] pf_negotiate_base_prev
[09:38:58] [PASSED] pf_negotiate_latest_match
[09:38:58] [PASSED] pf_negotiate_latest_newer
[09:38:58] [PASSED] pf_negotiate_latest_next
[09:38:58] [SKIPPED] pf_negotiate_latest_older
[09:38:58] [SKIPPED] pf_negotiate_latest_prev
[09:38:58] =================== [PASSED] pf_service ====================
[09:38:58] ================= xe_guc_g2g (2 subtests) ==================
[09:38:58] ============== xe_live_guc_g2g_kunit_default ==============
[09:38:58] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:38:58] ============== xe_live_guc_g2g_kunit_allmem ===============
[09:38:58] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:38:58] =================== [SKIPPED] xe_guc_g2g ===================
[09:38:58] =================== xe_mocs (2 subtests) ===================
[09:38:58] ================ xe_live_mocs_kernel_kunit ================
[09:38:58] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:38:58] ================ xe_live_mocs_reset_kunit =================
[09:38:58] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:38:58] ==================== [SKIPPED] xe_mocs =====================
[09:38:58] ================= xe_migrate (2 subtests) ==================
[09:38:58] ================= xe_migrate_sanity_kunit =================
[09:38:58] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:38:58] ================== xe_validate_ccs_kunit ==================
[09:38:58] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:38:58] =================== [SKIPPED] xe_migrate ===================
[09:38:58] ================== xe_dma_buf (1 subtest) ==================
[09:38:58] ==================== xe_dma_buf_kunit =====================
[09:38:58] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:38:58] =================== [SKIPPED] xe_dma_buf ===================
[09:38:58] ================= xe_bo_shrink (1 subtest) =================
[09:38:58] =================== xe_bo_shrink_kunit ====================
[09:38:58] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:38:58] ================== [SKIPPED] xe_bo_shrink ==================
[09:38:58] ==================== xe_bo (2 subtests) ====================
[09:38:58] ================== xe_ccs_migrate_kunit ===================
[09:38:58] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:38:58] ==================== xe_bo_evict_kunit ====================
[09:38:58] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:38:58] ===================== [SKIPPED] xe_bo ======================
[09:38:58] ==================== args (11 subtests) ====================
[09:38:58] [PASSED] count_args_test
[09:38:58] [PASSED] call_args_example
[09:38:58] [PASSED] call_args_test
[09:38:58] [PASSED] drop_first_arg_example
[09:38:58] [PASSED] drop_first_arg_test
[09:38:58] [PASSED] first_arg_example
[09:38:58] [PASSED] first_arg_test
[09:38:58] [PASSED] last_arg_example
[09:38:58] [PASSED] last_arg_test
[09:38:58] [PASSED] pick_arg_example
[09:38:58] [PASSED] sep_comma_example
[09:38:58] ====================== [PASSED] args =======================
[09:38:58] =================== xe_pci (3 subtests) ====================
[09:38:58] ==================== check_graphics_ip ====================
[09:38:58] [PASSED] 12.00 Xe_LP
[09:38:58] [PASSED] 12.10 Xe_LP+
[09:38:58] [PASSED] 12.55 Xe_HPG
[09:38:58] [PASSED] 12.60 Xe_HPC
[09:38:58] [PASSED] 12.70 Xe_LPG
[09:38:58] [PASSED] 12.71 Xe_LPG
[09:38:58] [PASSED] 12.74 Xe_LPG+
[09:38:58] [PASSED] 20.01 Xe2_HPG
[09:38:58] [PASSED] 20.02 Xe2_HPG
[09:38:58] [PASSED] 20.04 Xe2_LPG
[09:38:58] [PASSED] 30.00 Xe3_LPG
[09:38:58] [PASSED] 30.01 Xe3_LPG
[09:38:58] [PASSED] 30.03 Xe3_LPG
[09:38:58] [PASSED] 30.04 Xe3_LPG
[09:38:58] [PASSED] 30.05 Xe3_LPG
[09:38:58] [PASSED] 35.11 Xe3p_XPC
[09:38:58] ================ [PASSED] check_graphics_ip ================
[09:38:58] ===================== check_media_ip ======================
[09:38:58] [PASSED] 12.00 Xe_M
[09:38:58] [PASSED] 12.55 Xe_HPM
[09:38:58] [PASSED] 13.00 Xe_LPM+
[09:38:58] [PASSED] 13.01 Xe2_HPM
[09:38:58] [PASSED] 20.00 Xe2_LPM
[09:38:58] [PASSED] 30.00 Xe3_LPM
[09:38:58] [PASSED] 30.02 Xe3_LPM
[09:38:58] [PASSED] 35.00 Xe3p_LPM
[09:38:58] [PASSED] 35.03 Xe3p_HPM
[09:38:58] ================= [PASSED] check_media_ip ==================
[09:38:58] =================== check_platform_desc ===================
[09:38:58] [PASSED] 0x9A60 (TIGERLAKE)
[09:38:58] [PASSED] 0x9A68 (TIGERLAKE)
[09:38:58] [PASSED] 0x9A70 (TIGERLAKE)
[09:38:58] [PASSED] 0x9A40 (TIGERLAKE)
[09:38:58] [PASSED] 0x9A49 (TIGERLAKE)
[09:38:58] [PASSED] 0x9A59 (TIGERLAKE)
[09:38:58] [PASSED] 0x9A78 (TIGERLAKE)
[09:38:58] [PASSED] 0x9AC0 (TIGERLAKE)
[09:38:58] [PASSED] 0x9AC9 (TIGERLAKE)
[09:38:58] [PASSED] 0x9AD9 (TIGERLAKE)
[09:38:58] [PASSED] 0x9AF8 (TIGERLAKE)
[09:38:58] [PASSED] 0x4C80 (ROCKETLAKE)
[09:38:58] [PASSED] 0x4C8A (ROCKETLAKE)
[09:38:58] [PASSED] 0x4C8B (ROCKETLAKE)
[09:38:58] [PASSED] 0x4C8C (ROCKETLAKE)
[09:38:58] [PASSED] 0x4C90 (ROCKETLAKE)
[09:38:58] [PASSED] 0x4C9A (ROCKETLAKE)
[09:38:58] [PASSED] 0x4680 (ALDERLAKE_S)
[09:38:58] [PASSED] 0x4682 (ALDERLAKE_S)
[09:38:58] [PASSED] 0x4688 (ALDERLAKE_S)
[09:38:58] [PASSED] 0x468A (ALDERLAKE_S)
[09:38:58] [PASSED] 0x468B (ALDERLAKE_S)
[09:38:58] [PASSED] 0x4690 (ALDERLAKE_S)
[09:38:58] [PASSED] 0x4692 (ALDERLAKE_S)
[09:38:58] [PASSED] 0x4693 (ALDERLAKE_S)
[09:38:58] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46AA (ALDERLAKE_P)
[09:38:58] [PASSED] 0x462A (ALDERLAKE_P)
[09:38:58] [PASSED] 0x4626 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x4628 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:38:58] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:38:58] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:38:58] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:38:58] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:38:58] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:38:58] [PASSED] 0xA721 (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA720 (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:38:58] [PASSED] 0xA780 (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA781 (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA782 (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA783 (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA788 (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA789 (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA78A (ALDERLAKE_S)
[09:38:58] [PASSED] 0xA78B (ALDERLAKE_S)
[09:38:58] [PASSED] 0x4905 (DG1)
[09:38:58] [PASSED] 0x4906 (DG1)
[09:38:58] [PASSED] 0x4907 (DG1)
[09:38:58] [PASSED] 0x4908 (DG1)
[09:38:58] [PASSED] 0x4909 (DG1)
[09:38:58] [PASSED] 0x56C0 (DG2)
[09:38:58] [PASSED] 0x56C2 (DG2)
[09:38:58] [PASSED] 0x56C1 (DG2)
[09:38:58] [PASSED] 0x7D51 (METEORLAKE)
[09:38:58] [PASSED] 0x7DD1 (METEORLAKE)
[09:38:58] [PASSED] 0x7D41 (METEORLAKE)
[09:38:58] [PASSED] 0x7D67 (METEORLAKE)
[09:38:58] [PASSED] 0xB640 (METEORLAKE)
[09:38:58] [PASSED] 0x56A0 (DG2)
[09:38:58] [PASSED] 0x56A1 (DG2)
[09:38:58] [PASSED] 0x56A2 (DG2)
[09:38:58] [PASSED] 0x56BE (DG2)
[09:38:58] [PASSED] 0x56BF (DG2)
[09:38:58] [PASSED] 0x5690 (DG2)
[09:38:58] [PASSED] 0x5691 (DG2)
[09:38:58] [PASSED] 0x5692 (DG2)
[09:38:58] [PASSED] 0x56A5 (DG2)
[09:38:58] [PASSED] 0x56A6 (DG2)
[09:38:58] [PASSED] 0x56B0 (DG2)
[09:38:58] [PASSED] 0x56B1 (DG2)
[09:38:58] [PASSED] 0x56BA (DG2)
[09:38:58] [PASSED] 0x56BB (DG2)
[09:38:58] [PASSED] 0x56BC (DG2)
[09:38:58] [PASSED] 0x56BD (DG2)
[09:38:58] [PASSED] 0x5693 (DG2)
[09:38:58] [PASSED] 0x5694 (DG2)
[09:38:58] [PASSED] 0x5695 (DG2)
[09:38:58] [PASSED] 0x56A3 (DG2)
[09:38:58] [PASSED] 0x56A4 (DG2)
[09:38:58] [PASSED] 0x56B2 (DG2)
[09:38:58] [PASSED] 0x56B3 (DG2)
[09:38:58] [PASSED] 0x5696 (DG2)
[09:38:58] [PASSED] 0x5697 (DG2)
[09:38:58] [PASSED] 0xB69 (PVC)
[09:38:58] [PASSED] 0xB6E (PVC)
[09:38:58] [PASSED] 0xBD4 (PVC)
[09:38:58] [PASSED] 0xBD5 (PVC)
[09:38:58] [PASSED] 0xBD6 (PVC)
[09:38:58] [PASSED] 0xBD7 (PVC)
[09:38:58] [PASSED] 0xBD8 (PVC)
[09:38:58] [PASSED] 0xBD9 (PVC)
[09:38:58] [PASSED] 0xBDA (PVC)
[09:38:58] [PASSED] 0xBDB (PVC)
[09:38:58] [PASSED] 0xBE0 (PVC)
[09:38:58] [PASSED] 0xBE1 (PVC)
[09:38:58] [PASSED] 0xBE5 (PVC)
[09:38:58] [PASSED] 0x7D40 (METEORLAKE)
[09:38:58] [PASSED] 0x7D45 (METEORLAKE)
[09:38:58] [PASSED] 0x7D55 (METEORLAKE)
[09:38:58] [PASSED] 0x7D60 (METEORLAKE)
[09:38:58] [PASSED] 0x7DD5 (METEORLAKE)
[09:38:58] [PASSED] 0x6420 (LUNARLAKE)
[09:38:58] [PASSED] 0x64A0 (LUNARLAKE)
[09:38:58] [PASSED] 0x64B0 (LUNARLAKE)
[09:38:58] [PASSED] 0xE202 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE209 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE20B (BATTLEMAGE)
[09:38:58] [PASSED] 0xE20C (BATTLEMAGE)
[09:38:58] [PASSED] 0xE20D (BATTLEMAGE)
[09:38:58] [PASSED] 0xE210 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE211 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE212 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE216 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE220 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE221 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE222 (BATTLEMAGE)
[09:38:58] [PASSED] 0xE223 (BATTLEMAGE)
[09:38:58] [PASSED] 0xB080 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB081 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB082 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB083 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB084 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB085 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB086 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB087 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB08F (PANTHERLAKE)
[09:38:58] [PASSED] 0xB090 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:38:58] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:38:58] [PASSED] 0xFD80 (PANTHERLAKE)
[09:38:58] [PASSED] 0xFD81 (PANTHERLAKE)
[09:38:58] [PASSED] 0xD740 (NOVALAKE_S)
[09:38:58] [PASSED] 0xD741 (NOVALAKE_S)
[09:38:58] [PASSED] 0xD742 (NOVALAKE_S)
[09:38:58] [PASSED] 0xD743 (NOVALAKE_S)
[09:38:58] [PASSED] 0xD744 (NOVALAKE_S)
[09:38:58] [PASSED] 0xD745 (NOVALAKE_S)
[09:38:58] [PASSED] 0x674C (CRESCENTISLAND)
[09:38:58] =============== [PASSED] check_platform_desc ===============
[09:38:58] ===================== [PASSED] xe_pci ======================
[09:38:58] =================== xe_rtp (2 subtests) ====================
[09:38:58] =============== xe_rtp_process_to_sr_tests ================
[09:38:58] [PASSED] coalesce-same-reg
[09:38:58] [PASSED] no-match-no-add
[09:38:58] [PASSED] match-or
[09:38:58] [PASSED] match-or-xfail
[09:38:58] [PASSED] no-match-no-add-multiple-rules
[09:38:58] [PASSED] two-regs-two-entries
[09:38:58] [PASSED] clr-one-set-other
[09:38:58] [PASSED] set-field
[09:38:58] [PASSED] conflict-duplicate
[09:38:58] [PASSED] conflict-not-disjoint
[09:38:58] [PASSED] conflict-reg-type
[09:38:58] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:38:58] ================== xe_rtp_process_tests ===================
[09:38:58] [PASSED] active1
[09:38:58] [PASSED] active2
[09:38:58] [PASSED] active-inactive
[09:38:58] [PASSED] inactive-active
[09:38:58] [PASSED] inactive-1st_or_active-inactive
[09:38:58] [PASSED] inactive-2nd_or_active-inactive
[09:38:58] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[09:38:58] [PASSED] inactive-no_or_active-inactive
[09:38:58] ============== [PASSED] xe_rtp_process_tests ===============
[09:38:58] ===================== [PASSED] xe_rtp ======================
[09:38:58] ==================== xe_wa (1 subtest) =====================
[09:38:58] ======================== xe_wa_gt =========================
[09:38:58] [PASSED] TIGERLAKE B0
[09:38:58] [PASSED] DG1 A0
[09:38:58] [PASSED] DG1 B0
[09:38:58] [PASSED] ALDERLAKE_S A0
[09:38:58] [PASSED] ALDERLAKE_S B0
[09:38:58] [PASSED] ALDERLAKE_S C0
[09:38:58] [PASSED] ALDERLAKE_S D0
[09:38:58] [PASSED] ALDERLAKE_P A0
[09:38:58] [PASSED] ALDERLAKE_P B0
[09:38:58] [PASSED] ALDERLAKE_P C0
[09:38:58] [PASSED] ALDERLAKE_S RPLS D0
[09:38:58] [PASSED] ALDERLAKE_P RPLU E0
[09:38:58] [PASSED] DG2 G10 C0
[09:38:58] [PASSED] DG2 G11 B1
[09:38:58] [PASSED] DG2 G12 A1
[09:38:58] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:38:58] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:38:58] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:38:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:38:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:38:58] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:38:58] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:38:58] ==================== [PASSED] xe_wa_gt =====================
[09:38:58] ====================== [PASSED] xe_wa ======================
[09:38:58] ============================================================
[09:38:58] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[09:38:58] Elapsed time: 35.201s total, 4.246s configuring, 30.588s building, 0.341s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:38:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:39: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:39:25] Starting KUnit Kernel (1/1)...
[09:39:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:39:25] ============ drm_test_pick_cmdline (2 subtests) ============
[09:39:25] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:39:25] =============== drm_test_pick_cmdline_named ===============
[09:39:25] [PASSED] NTSC
[09:39:25] [PASSED] NTSC-J
[09:39:25] [PASSED] PAL
[09:39:25] [PASSED] PAL-M
[09:39:25] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:39:25] ============== [PASSED] drm_test_pick_cmdline ==============
[09:39:25] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:39:25] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:39:25] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:39:25] =========== drm_validate_clone_mode (2 subtests) ===========
[09:39:25] ============== drm_test_check_in_clone_mode ===============
[09:39:25] [PASSED] in_clone_mode
[09:39:25] [PASSED] not_in_clone_mode
[09:39:25] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:39:25] =============== drm_test_check_valid_clones ===============
[09:39:25] [PASSED] not_in_clone_mode
[09:39:25] [PASSED] valid_clone
[09:39:25] [PASSED] invalid_clone
[09:39:25] =========== [PASSED] drm_test_check_valid_clones ===========
[09:39:25] ============= [PASSED] drm_validate_clone_mode =============
[09:39:25] ============= drm_validate_modeset (1 subtest) =============
[09:39:25] [PASSED] drm_test_check_connector_changed_modeset
[09:39:25] ============== [PASSED] drm_validate_modeset ===============
[09:39:25] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:39:25] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:39:25] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:39:25] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:39:25] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:39:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:39:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:39:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:39:25] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:39:25] ============== drm_bridge_alloc (2 subtests) ===============
[09:39:25] [PASSED] drm_test_drm_bridge_alloc_basic
[09:39:25] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:39:25] ================ [PASSED] drm_bridge_alloc =================
[09:39:25] ================== drm_buddy (8 subtests) ==================
[09:39:25] [PASSED] drm_test_buddy_alloc_limit
[09:39:25] [PASSED] drm_test_buddy_alloc_optimistic
[09:39:25] [PASSED] drm_test_buddy_alloc_pessimistic
[09:39:25] [PASSED] drm_test_buddy_alloc_pathological
[09:39:25] [PASSED] drm_test_buddy_alloc_contiguous
[09:39:25] [PASSED] drm_test_buddy_alloc_clear
[09:39:25] [PASSED] drm_test_buddy_alloc_range_bias
[09:39:25] [PASSED] drm_test_buddy_fragmentation_performance
[09:39:25] ==================== [PASSED] drm_buddy ====================
[09:39:25] ============= drm_cmdline_parser (40 subtests) =============
[09:39:25] [PASSED] drm_test_cmdline_force_d_only
[09:39:25] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:39:25] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:39:25] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:39:25] [PASSED] drm_test_cmdline_force_e_only
[09:39:25] [PASSED] drm_test_cmdline_res
[09:39:25] [PASSED] drm_test_cmdline_res_vesa
[09:39:25] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:39:25] [PASSED] drm_test_cmdline_res_rblank
[09:39:25] [PASSED] drm_test_cmdline_res_bpp
[09:39:25] [PASSED] drm_test_cmdline_res_refresh
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:39:25] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:39:25] [PASSED] drm_test_cmdline_res_margins_force_on
[09:39:25] [PASSED] drm_test_cmdline_res_vesa_margins
[09:39:25] [PASSED] drm_test_cmdline_name
[09:39:25] [PASSED] drm_test_cmdline_name_bpp
[09:39:25] [PASSED] drm_test_cmdline_name_option
[09:39:25] [PASSED] drm_test_cmdline_name_bpp_option
[09:39:25] [PASSED] drm_test_cmdline_rotate_0
[09:39:25] [PASSED] drm_test_cmdline_rotate_90
[09:39:25] [PASSED] drm_test_cmdline_rotate_180
[09:39:25] [PASSED] drm_test_cmdline_rotate_270
[09:39:25] [PASSED] drm_test_cmdline_hmirror
[09:39:25] [PASSED] drm_test_cmdline_vmirror
[09:39:25] [PASSED] drm_test_cmdline_margin_options
[09:39:25] [PASSED] drm_test_cmdline_multiple_options
[09:39:25] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:39:25] [PASSED] drm_test_cmdline_extra_and_option
[09:39:25] [PASSED] drm_test_cmdline_freestanding_options
[09:39:25] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:39:25] [PASSED] drm_test_cmdline_panel_orientation
[09:39:25] ================ drm_test_cmdline_invalid =================
[09:39:25] [PASSED] margin_only
[09:39:25] [PASSED] interlace_only
[09:39:25] [PASSED] res_missing_x
[09:39:25] [PASSED] res_missing_y
[09:39:25] [PASSED] res_bad_y
[09:39:25] [PASSED] res_missing_y_bpp
[09:39:25] [PASSED] res_bad_bpp
[09:39:25] [PASSED] res_bad_refresh
[09:39:25] [PASSED] res_bpp_refresh_force_on_off
[09:39:25] [PASSED] res_invalid_mode
[09:39:25] [PASSED] res_bpp_wrong_place_mode
[09:39:25] [PASSED] name_bpp_refresh
[09:39:25] [PASSED] name_refresh
[09:39:25] [PASSED] name_refresh_wrong_mode
[09:39:25] [PASSED] name_refresh_invalid_mode
[09:39:25] [PASSED] rotate_multiple
[09:39:25] [PASSED] rotate_invalid_val
[09:39:25] [PASSED] rotate_truncated
[09:39:25] [PASSED] invalid_option
[09:39:25] [PASSED] invalid_tv_option
[09:39:25] [PASSED] truncated_tv_option
[09:39:25] ============ [PASSED] drm_test_cmdline_invalid =============
[09:39:25] =============== drm_test_cmdline_tv_options ===============
[09:39:25] [PASSED] NTSC
[09:39:25] [PASSED] NTSC_443
[09:39:25] [PASSED] NTSC_J
[09:39:25] [PASSED] PAL
[09:39:25] [PASSED] PAL_M
[09:39:25] [PASSED] PAL_N
[09:39:25] [PASSED] SECAM
[09:39:25] [PASSED] MONO_525
[09:39:25] [PASSED] MONO_625
[09:39:25] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:39:25] =============== [PASSED] drm_cmdline_parser ================
[09:39:25] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:39:25] [PASSED] drm_test_connector_hdmi_init_valid
[09:39:25] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:39:25] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:39:25] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:39:25] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:39:25] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:39:25] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:39:25] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:39:25] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:39:25] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:39:25] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:39:25] [PASSED] supported_formats=0x3 yuv420_allowed=1
[09:39:25] [PASSED] supported_formats=0x3 yuv420_allowed=0
[09:39:25] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:39:25] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:39:25] [PASSED] drm_test_connector_hdmi_init_null_product
[09:39:25] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:39:25] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:39:25] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:39:25] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:39:25] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:39:25] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:39:25] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:39:25] ========= drm_test_connector_hdmi_init_type_valid =========
[09:39:25] [PASSED] HDMI-A
[09:39:25] [PASSED] HDMI-B
[09:39:25] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:39:25] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:39:25] [PASSED] Unknown
[09:39:25] [PASSED] VGA
[09:39:25] [PASSED] DVI-I
[09:39:25] [PASSED] DVI-D
[09:39:25] [PASSED] DVI-A
[09:39:25] [PASSED] Composite
[09:39:25] [PASSED] SVIDEO
[09:39:25] [PASSED] LVDS
[09:39:25] [PASSED] Component
[09:39:25] [PASSED] DIN
[09:39:25] [PASSED] DP
[09:39:25] [PASSED] TV
[09:39:25] [PASSED] eDP
[09:39:25] [PASSED] Virtual
[09:39:25] [PASSED] DSI
[09:39:25] [PASSED] DPI
[09:39:25] [PASSED] Writeback
[09:39:25] [PASSED] SPI
[09:39:25] [PASSED] USB
[09:39:25] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:39:25] ============ [PASSED] drmm_connector_hdmi_init =============
[09:39:25] ============= drmm_connector_init (3 subtests) =============
[09:39:25] [PASSED] drm_test_drmm_connector_init
[09:39:25] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:39:25] ========= drm_test_drmm_connector_init_type_valid =========
[09:39:25] [PASSED] Unknown
[09:39:25] [PASSED] VGA
[09:39:25] [PASSED] DVI-I
[09:39:25] [PASSED] DVI-D
[09:39:25] [PASSED] DVI-A
[09:39:25] [PASSED] Composite
[09:39:25] [PASSED] SVIDEO
[09:39:25] [PASSED] LVDS
[09:39:25] [PASSED] Component
[09:39:25] [PASSED] DIN
[09:39:25] [PASSED] DP
[09:39:25] [PASSED] HDMI-A
[09:39:25] [PASSED] HDMI-B
[09:39:25] [PASSED] TV
[09:39:25] [PASSED] eDP
[09:39:25] [PASSED] Virtual
[09:39:25] [PASSED] DSI
[09:39:25] [PASSED] DPI
[09:39:25] [PASSED] Writeback
[09:39:25] [PASSED] SPI
[09:39:25] [PASSED] USB
[09:39:25] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:39:25] =============== [PASSED] drmm_connector_init ===============
[09:39:25] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_init
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:39:25] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:39:25] [PASSED] Unknown
[09:39:25] [PASSED] VGA
[09:39:25] [PASSED] DVI-I
[09:39:25] [PASSED] DVI-D
[09:39:25] [PASSED] DVI-A
[09:39:25] [PASSED] Composite
[09:39:25] [PASSED] SVIDEO
[09:39:25] [PASSED] LVDS
[09:39:25] [PASSED] Component
[09:39:25] [PASSED] DIN
[09:39:25] [PASSED] DP
[09:39:25] [PASSED] HDMI-A
[09:39:25] [PASSED] HDMI-B
[09:39:25] [PASSED] TV
[09:39:25] [PASSED] eDP
[09:39:25] [PASSED] Virtual
[09:39:25] [PASSED] DSI
[09:39:25] [PASSED] DPI
[09:39:25] [PASSED] Writeback
[09:39:25] [PASSED] SPI
[09:39:25] [PASSED] USB
[09:39:25] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:39:25] ======== drm_test_drm_connector_dynamic_init_name =========
[09:39:25] [PASSED] Unknown
[09:39:25] [PASSED] VGA
[09:39:25] [PASSED] DVI-I
[09:39:25] [PASSED] DVI-D
[09:39:25] [PASSED] DVI-A
[09:39:25] [PASSED] Composite
[09:39:25] [PASSED] SVIDEO
[09:39:25] [PASSED] LVDS
[09:39:25] [PASSED] Component
[09:39:25] [PASSED] DIN
[09:39:25] [PASSED] DP
[09:39:25] [PASSED] HDMI-A
[09:39:25] [PASSED] HDMI-B
[09:39:25] [PASSED] TV
[09:39:25] [PASSED] eDP
[09:39:25] [PASSED] Virtual
[09:39:25] [PASSED] DSI
[09:39:25] [PASSED] DPI
[09:39:25] [PASSED] Writeback
[09:39:25] [PASSED] SPI
[09:39:25] [PASSED] USB
[09:39:25] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:39:25] =========== [PASSED] drm_connector_dynamic_init ============
[09:39:25] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:39:25] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:39:25] ======= drm_connector_dynamic_register (7 subtests) ========
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:39:25] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:39:25] ========= [PASSED] drm_connector_dynamic_register ==========
[09:39:25] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:39:25] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:39:25] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:39:25] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:39:25] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:39:25] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:39:25] [PASSED] NTSC
[09:39:25] [PASSED] NTSC-443
[09:39:25] [PASSED] NTSC-J
[09:39:25] [PASSED] PAL
[09:39:25] [PASSED] PAL-M
[09:39:25] [PASSED] PAL-N
[09:39:25] [PASSED] SECAM
[09:39:25] [PASSED] Mono
[09:39:25] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:39:25] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:39:25] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:39:25] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:39:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:39:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:39:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:39:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:39:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:39:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:39:25] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:39:25] [PASSED] VIC 96
[09:39:25] [PASSED] VIC 97
[09:39:25] [PASSED] VIC 101
[09:39:25] [PASSED] VIC 102
[09:39:25] [PASSED] VIC 106
[09:39:25] [PASSED] VIC 107
[09:39:25] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:39:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:39:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:39:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:39:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:39:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:39:25] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:39:25] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:39:25] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:39:25] [PASSED] Automatic
[09:39:25] [PASSED] Full
[09:39:25] [PASSED] Limited 16:235
[09:39:25] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:39:25] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:39:25] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:39:25] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:39:25] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:39:25] [PASSED] RGB
[09:39:25] [PASSED] YUV 4:2:0
[09:39:25] [PASSED] YUV 4:2:2
[09:39:25] [PASSED] YUV 4:4:4
[09:39:25] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:39:25] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:39:25] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:39:25] ============= drm_damage_helper (21 subtests) ==============
[09:39:25] [PASSED] drm_test_damage_iter_no_damage
[09:39:25] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:39:25] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:39:25] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:39:25] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:39:25] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:39:25] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:39:25] [PASSED] drm_test_damage_iter_simple_damage
[09:39:25] [PASSED] drm_test_damage_iter_single_damage
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:39:25] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:39:25] [PASSED] drm_test_damage_iter_damage
[09:39:25] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:39:25] [PASSED] drm_test_damage_iter_damage_one_outside
[09:39:25] [PASSED] drm_test_damage_iter_damage_src_moved
[09:39:25] [PASSED] drm_test_damage_iter_damage_not_visible
[09:39:25] ================ [PASSED] drm_damage_helper ================
[09:39:25] ============== drm_dp_mst_helper (3 subtests) ==============
[09:39:25] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:39:25] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:39:25] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:39:25] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:39:25] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:39:25] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:39:25] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:39:25] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:39:25] [PASSED] Link rate 2000000 lane count 4
[09:39:25] [PASSED] Link rate 2000000 lane count 2
[09:39:25] [PASSED] Link rate 2000000 lane count 1
[09:39:25] [PASSED] Link rate 1350000 lane count 4
[09:39:25] [PASSED] Link rate 1350000 lane count 2
[09:39:25] [PASSED] Link rate 1350000 lane count 1
[09:39:25] [PASSED] Link rate 1000000 lane count 4
[09:39:25] [PASSED] Link rate 1000000 lane count 2
[09:39:25] [PASSED] Link rate 1000000 lane count 1
[09:39:25] [PASSED] Link rate 810000 lane count 4
[09:39:25] [PASSED] Link rate 810000 lane count 2
[09:39:25] [PASSED] Link rate 810000 lane count 1
[09:39:25] [PASSED] Link rate 540000 lane count 4
[09:39:25] [PASSED] Link rate 540000 lane count 2
[09:39:25] [PASSED] Link rate 540000 lane count 1
[09:39:25] [PASSED] Link rate 270000 lane count 4
[09:39:25] [PASSED] Link rate 270000 lane count 2
[09:39:25] [PASSED] Link rate 270000 lane count 1
[09:39:25] [PASSED] Link rate 162000 lane count 4
[09:39:25] [PASSED] Link rate 162000 lane count 2
[09:39:25] [PASSED] Link rate 162000 lane count 1
[09:39:25] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:39:25] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:39:25] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:39:25] [PASSED] DP_POWER_UP_PHY with port number
[09:39:25] [PASSED] DP_POWER_DOWN_PHY with port number
[09:39:25] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:39:25] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:39:25] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:39:25] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:39:25] [PASSED] DP_QUERY_PAYLOAD with port number
[09:39:25] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:39:25] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:39:25] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:39:25] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:39:25] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:39:25] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:39:25] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:39:25] [PASSED] DP_REMOTE_I2C_READ with port number
[09:39:25] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:39:25] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:39:25] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:39:25] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:39:25] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:39:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:39:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:39:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:39:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:39:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:39:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:39:25] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:39:25] ================ [PASSED] drm_dp_mst_helper ================
[09:39:25] ================== drm_exec (7 subtests) ===================
[09:39:25] [PASSED] sanitycheck
[09:39:25] [PASSED] test_lock
[09:39:25] [PASSED] test_lock_unlock
[09:39:25] [PASSED] test_duplicates
[09:39:25] [PASSED] test_prepare
[09:39:25] [PASSED] test_prepare_array
[09:39:25] [PASSED] test_multiple_loops
[09:39:25] ==================== [PASSED] drm_exec =====================
[09:39:25] =========== drm_format_helper_test (17 subtests) ===========
[09:39:25] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:39:25] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:39:25] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:39:25] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:39:25] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:39:25] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:39:25] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:39:25] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:39:25] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:39:25] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:39:25] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:39:25] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:39:25] ==================== drm_test_fb_swab =====================
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ================ [PASSED] drm_test_fb_swab =================
[09:39:25] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:39:25] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:39:25] [PASSED] single_pixel_source_buffer
[09:39:25] [PASSED] single_pixel_clip_rectangle
[09:39:25] [PASSED] well_known_colors
[09:39:25] [PASSED] destination_pitch
[09:39:25] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:39:25] ================= drm_test_fb_clip_offset =================
[09:39:25] [PASSED] pass through
[09:39:25] [PASSED] horizontal offset
[09:39:25] [PASSED] vertical offset
[09:39:25] [PASSED] horizontal and vertical offset
[09:39:25] [PASSED] horizontal offset (custom pitch)
[09:39:25] [PASSED] vertical offset (custom pitch)
[09:39:25] [PASSED] horizontal and vertical offset (custom pitch)
[09:39:25] ============= [PASSED] drm_test_fb_clip_offset =============
[09:39:25] =================== drm_test_fb_memcpy ====================
[09:39:25] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:39:25] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:39:25] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:39:25] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:39:25] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:39:25] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:39:25] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:39:25] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:39:25] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:39:25] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:39:25] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:39:25] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:39:25] =============== [PASSED] drm_test_fb_memcpy ================
[09:39:25] ============= [PASSED] drm_format_helper_test ==============
[09:39:25] ================= drm_format (18 subtests) =================
[09:39:25] [PASSED] drm_test_format_block_width_invalid
[09:39:25] [PASSED] drm_test_format_block_width_one_plane
[09:39:25] [PASSED] drm_test_format_block_width_two_plane
[09:39:25] [PASSED] drm_test_format_block_width_three_plane
[09:39:25] [PASSED] drm_test_format_block_width_tiled
[09:39:25] [PASSED] drm_test_format_block_height_invalid
[09:39:25] [PASSED] drm_test_format_block_height_one_plane
[09:39:25] [PASSED] drm_test_format_block_height_two_plane
[09:39:25] [PASSED] drm_test_format_block_height_three_plane
[09:39:25] [PASSED] drm_test_format_block_height_tiled
[09:39:25] [PASSED] drm_test_format_min_pitch_invalid
[09:39:25] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:39:25] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:39:25] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:39:25] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:39:25] [PASSED] drm_test_format_min_pitch_two_plane
[09:39:25] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:39:25] [PASSED] drm_test_format_min_pitch_tiled
[09:39:25] =================== [PASSED] drm_format ====================
[09:39:25] ============== drm_framebuffer (10 subtests) ===============
[09:39:25] ========== drm_test_framebuffer_check_src_coords ==========
[09:39:25] [PASSED] Success: source fits into fb
[09:39:25] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:39:25] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:39:25] [PASSED] Fail: overflowing fb with source width
[09:39:25] [PASSED] Fail: overflowing fb with source height
[09:39:25] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:39:25] [PASSED] drm_test_framebuffer_cleanup
[09:39:25] =============== drm_test_framebuffer_create ===============
[09:39:25] [PASSED] ABGR8888 normal sizes
[09:39:25] [PASSED] ABGR8888 max sizes
[09:39:25] [PASSED] ABGR8888 pitch greater than min required
[09:39:25] [PASSED] ABGR8888 pitch less than min required
[09:39:25] [PASSED] ABGR8888 Invalid width
[09:39:25] [PASSED] ABGR8888 Invalid buffer handle
[09:39:25] [PASSED] No pixel format
[09:39:25] [PASSED] ABGR8888 Width 0
[09:39:25] [PASSED] ABGR8888 Height 0
[09:39:25] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:39:25] [PASSED] ABGR8888 Large buffer offset
[09:39:25] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:39:25] [PASSED] ABGR8888 Invalid flag
[09:39:25] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:39:25] [PASSED] ABGR8888 Valid buffer modifier
[09:39:25] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:39:25] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] NV12 Normal sizes
[09:39:25] [PASSED] NV12 Max sizes
[09:39:25] [PASSED] NV12 Invalid pitch
[09:39:25] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:39:25] [PASSED] NV12 different modifier per-plane
[09:39:25] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:39:25] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] NV12 Modifier for inexistent plane
[09:39:25] [PASSED] NV12 Handle for inexistent plane
[09:39:25] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:39:25] [PASSED] YVU420 Normal sizes
[09:39:25] [PASSED] YVU420 Max sizes
[09:39:25] [PASSED] YVU420 Invalid pitch
[09:39:25] [PASSED] YVU420 Different pitches
[09:39:25] [PASSED] YVU420 Different buffer offsets/pitches
[09:39:25] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:39:25] [PASSED] YVU420 Valid modifier
[09:39:25] [PASSED] YVU420 Different modifiers per plane
[09:39:25] [PASSED] YVU420 Modifier for inexistent plane
[09:39:25] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:39:25] [PASSED] X0L2 Normal sizes
[09:39:25] [PASSED] X0L2 Max sizes
[09:39:25] [PASSED] X0L2 Invalid pitch
[09:39:25] [PASSED] X0L2 Pitch greater than minimum required
[09:39:25] [PASSED] X0L2 Handle for inexistent plane
[09:39:25] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:39:25] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:39:25] [PASSED] X0L2 Valid modifier
[09:39:25] [PASSED] X0L2 Modifier for inexistent plane
[09:39:25] =========== [PASSED] drm_test_framebuffer_create ===========
[09:39:25] [PASSED] drm_test_framebuffer_free
[09:39:25] [PASSED] drm_test_framebuffer_init
[09:39:25] [PASSED] drm_test_framebuffer_init_bad_format
[09:39:25] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:39:25] [PASSED] drm_test_framebuffer_lookup
[09:39:25] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:39:25] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:39:25] ================= [PASSED] drm_framebuffer =================
[09:39:25] ================ drm_gem_shmem (8 subtests) ================
[09:39:25] [PASSED] drm_gem_shmem_test_obj_create
[09:39:25] [PASSED] drm_gem_shmem_test_obj_create_private
[09:39:25] [PASSED] drm_gem_shmem_test_pin_pages
[09:39:25] [PASSED] drm_gem_shmem_test_vmap
[09:39:25] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:39:25] [PASSED] drm_gem_shmem_test_get_sg_table
[09:39:25] [PASSED] drm_gem_shmem_test_madvise
[09:39:25] [PASSED] drm_gem_shmem_test_purge
[09:39:25] ================== [PASSED] drm_gem_shmem ==================
[09:39:25] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:39:25] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:39:25] [PASSED] Automatic
[09:39:25] [PASSED] Full
[09:39:25] [PASSED] Limited 16:235
[09:39:25] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:39:25] [PASSED] drm_test_check_disable_connector
[09:39:25] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:39:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:39:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:39:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:39:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:39:25] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:39:25] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:39:25] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:39:25] [PASSED] drm_test_check_output_bpc_dvi
[09:39:25] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:39:25] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:39:25] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:39:25] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:39:25] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:39:25] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:39:25] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:39:25] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:39:25] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:39:25] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:39:25] [PASSED] drm_test_check_broadcast_rgb_value
[09:39:25] [PASSED] drm_test_check_bpc_8_value
[09:39:25] [PASSED] drm_test_check_bpc_10_value
[09:39:25] [PASSED] drm_test_check_bpc_12_value
[09:39:25] [PASSED] drm_test_check_format_value
[09:39:25] [PASSED] drm_test_check_tmds_char_value
[09:39:25] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:39:25] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:39:25] [PASSED] drm_test_check_mode_valid
[09:39:25] [PASSED] drm_test_check_mode_valid_reject
[09:39:25] [PASSED] drm_test_check_mode_valid_reject_rate
[09:39:25] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:39:25] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:39:25] ================= drm_managed (2 subtests) =================
[09:39:25] [PASSED] drm_test_managed_release_action
[09:39:25] [PASSED] drm_test_managed_run_action
[09:39:25] =================== [PASSED] drm_managed ===================
[09:39:25] =================== drm_mm (6 subtests) ====================
[09:39:25] [PASSED] drm_test_mm_init
[09:39:25] [PASSED] drm_test_mm_debug
[09:39:25] [PASSED] drm_test_mm_align32
[09:39:25] [PASSED] drm_test_mm_align64
[09:39:25] [PASSED] drm_test_mm_lowest
[09:39:25] [PASSED] drm_test_mm_highest
[09:39:25] ===================== [PASSED] drm_mm ======================
[09:39:25] ============= drm_modes_analog_tv (5 subtests) =============
[09:39:25] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:39:25] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:39:25] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:39:25] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:39:25] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:39:25] =============== [PASSED] drm_modes_analog_tv ===============
[09:39:25] ============== drm_plane_helper (2 subtests) ===============
[09:39:25] =============== drm_test_check_plane_state ================
[09:39:25] [PASSED] clipping_simple
[09:39:25] [PASSED] clipping_rotate_reflect
[09:39:25] [PASSED] positioning_simple
[09:39:25] [PASSED] upscaling
[09:39:25] [PASSED] downscaling
[09:39:25] [PASSED] rounding1
[09:39:25] [PASSED] rounding2
[09:39:25] [PASSED] rounding3
[09:39:25] [PASSED] rounding4
[09:39:25] =========== [PASSED] drm_test_check_plane_state ============
[09:39:25] =========== drm_test_check_invalid_plane_state ============
[09:39:25] [PASSED] positioning_invalid
[09:39:25] [PASSED] upscaling_invalid
[09:39:25] [PASSED] downscaling_invalid
[09:39:25] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:39:25] ================ [PASSED] drm_plane_helper =================
[09:39:25] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:39:25] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:39:25] [PASSED] None
[09:39:25] [PASSED] PAL
[09:39:25] [PASSED] NTSC
[09:39:25] [PASSED] Both, NTSC Default
[09:39:25] [PASSED] Both, PAL Default
[09:39:25] [PASSED] Both, NTSC Default, with PAL on command-line
[09:39:25] [PASSED] Both, PAL Default, with NTSC on command-line
[09:39:25] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:39:25] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:39:25] ================== drm_rect (9 subtests) ===================
[09:39:25] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:39:25] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:39:25] [PASSED] drm_test_rect_clip_scaled_clipped
[09:39:25] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:39:25] ================= drm_test_rect_intersect =================
[09:39:25] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:39:25] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:39:25] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:39:25] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:39:25] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:39:25] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:39:25] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:39:25] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:39:25] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:39:25] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:39:25] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:39:25] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:39:25] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:39:25] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:39:25] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:39:25] ============= [PASSED] drm_test_rect_intersect =============
[09:39:25] ================ drm_test_rect_calc_hscale ================
[09:39:25] [PASSED] normal use
[09:39:25] [PASSED] out of max range
[09:39:25] [PASSED] out of min range
[09:39:25] [PASSED] zero dst
[09:39:25] [PASSED] negative src
[09:39:25] [PASSED] negative dst
[09:39:25] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:39:25] ================ drm_test_rect_calc_vscale ================
[09:39:25] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[09:39:25] [PASSED] out of max range
[09:39:25] [PASSED] out of min range
[09:39:25] [PASSED] zero dst
[09:39:25] [PASSED] negative src
[09:39:25] [PASSED] negative dst
[09:39:25] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:39:25] ================== drm_test_rect_rotate ===================
[09:39:25] [PASSED] reflect-x
[09:39:25] [PASSED] reflect-y
[09:39:25] [PASSED] rotate-0
[09:39:25] [PASSED] rotate-90
[09:39:25] [PASSED] rotate-180
[09:39:25] [PASSED] rotate-270
[09:39:25] ============== [PASSED] drm_test_rect_rotate ===============
[09:39:25] ================ drm_test_rect_rotate_inv =================
[09:39:25] [PASSED] reflect-x
[09:39:25] [PASSED] reflect-y
[09:39:25] [PASSED] rotate-0
[09:39:25] [PASSED] rotate-90
[09:39:25] [PASSED] rotate-180
[09:39:25] [PASSED] rotate-270
[09:39:25] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:39:25] ==================== [PASSED] drm_rect =====================
[09:39:25] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:39:25] ============ drm_test_sysfb_build_fourcc_list =============
[09:39:25] [PASSED] no native formats
[09:39:25] [PASSED] XRGB8888 as native format
[09:39:25] [PASSED] remove duplicates
[09:39:25] [PASSED] convert alpha formats
[09:39:25] [PASSED] random formats
[09:39:25] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:39:25] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:39:25] ============================================================
[09:39:25] Testing complete. Ran 622 tests: passed: 622
[09:39:25] Elapsed time: 26.939s total, 1.689s configuring, 24.834s building, 0.373s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:39:25] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:39:27] 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:39:36] Starting KUnit Kernel (1/1)...
[09:39:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:39:36] ================= ttm_device (5 subtests) ==================
[09:39:36] [PASSED] ttm_device_init_basic
[09:39:36] [PASSED] ttm_device_init_multiple
[09:39:36] [PASSED] ttm_device_fini_basic
[09:39:36] [PASSED] ttm_device_init_no_vma_man
[09:39:36] ================== ttm_device_init_pools ==================
[09:39:36] [PASSED] No DMA allocations, no DMA32 required
[09:39:36] [PASSED] DMA allocations, DMA32 required
[09:39:36] [PASSED] No DMA allocations, DMA32 required
[09:39:36] [PASSED] DMA allocations, no DMA32 required
[09:39:36] ============== [PASSED] ttm_device_init_pools ==============
[09:39:36] =================== [PASSED] ttm_device ====================
[09:39:36] ================== ttm_pool (8 subtests) ===================
[09:39:36] ================== ttm_pool_alloc_basic ===================
[09:39:36] [PASSED] One page
[09:39:36] [PASSED] More than one page
[09:39:36] [PASSED] Above the allocation limit
[09:39:36] [PASSED] One page, with coherent DMA mappings enabled
[09:39:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:39:36] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:39:36] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:39:36] [PASSED] One page
[09:39:36] [PASSED] More than one page
[09:39:36] [PASSED] Above the allocation limit
[09:39:36] [PASSED] One page, with coherent DMA mappings enabled
[09:39:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:39:36] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:39:36] [PASSED] ttm_pool_alloc_order_caching_match
[09:39:36] [PASSED] ttm_pool_alloc_caching_mismatch
[09:39:36] [PASSED] ttm_pool_alloc_order_mismatch
[09:39:36] [PASSED] ttm_pool_free_dma_alloc
[09:39:36] [PASSED] ttm_pool_free_no_dma_alloc
[09:39:36] [PASSED] ttm_pool_fini_basic
[09:39:36] ==================== [PASSED] ttm_pool =====================
[09:39:36] ================ ttm_resource (8 subtests) =================
[09:39:36] ================= ttm_resource_init_basic =================
[09:39:36] [PASSED] Init resource in TTM_PL_SYSTEM
[09:39:36] [PASSED] Init resource in TTM_PL_VRAM
[09:39:36] [PASSED] Init resource in a private placement
[09:39:36] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:39:37] ============= [PASSED] ttm_resource_init_basic =============
[09:39:37] [PASSED] ttm_resource_init_pinned
[09:39:37] [PASSED] ttm_resource_fini_basic
[09:39:37] [PASSED] ttm_resource_manager_init_basic
[09:39:37] [PASSED] ttm_resource_manager_usage_basic
[09:39:37] [PASSED] ttm_resource_manager_set_used_basic
[09:39:37] [PASSED] ttm_sys_man_alloc_basic
[09:39:37] [PASSED] ttm_sys_man_free_basic
[09:39:37] ================== [PASSED] ttm_resource ===================
[09:39:37] =================== ttm_tt (15 subtests) ===================
[09:39:37] ==================== ttm_tt_init_basic ====================
[09:39:37] [PASSED] Page-aligned size
[09:39:37] [PASSED] Extra pages requested
[09:39:37] ================ [PASSED] ttm_tt_init_basic ================
[09:39:37] [PASSED] ttm_tt_init_misaligned
[09:39:37] [PASSED] ttm_tt_fini_basic
[09:39:37] [PASSED] ttm_tt_fini_sg
[09:39:37] [PASSED] ttm_tt_fini_shmem
[09:39:37] [PASSED] ttm_tt_create_basic
[09:39:37] [PASSED] ttm_tt_create_invalid_bo_type
[09:39:37] [PASSED] ttm_tt_create_ttm_exists
[09:39:37] [PASSED] ttm_tt_create_failed
[09:39:37] [PASSED] ttm_tt_destroy_basic
[09:39:37] [PASSED] ttm_tt_populate_null_ttm
[09:39:37] [PASSED] ttm_tt_populate_populated_ttm
[09:39:37] [PASSED] ttm_tt_unpopulate_basic
[09:39:37] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:39:37] [PASSED] ttm_tt_swapin_basic
[09:39:37] ===================== [PASSED] ttm_tt ======================
[09:39:37] =================== ttm_bo (14 subtests) ===================
[09:39:37] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:39:37] [PASSED] Cannot be interrupted and sleeps
[09:39:37] [PASSED] Cannot be interrupted, locks straight away
[09:39:37] [PASSED] Can be interrupted, sleeps
[09:39:37] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:39:37] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:39:37] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:39:37] [PASSED] ttm_bo_reserve_double_resv
[09:39:37] [PASSED] ttm_bo_reserve_interrupted
[09:39:37] [PASSED] ttm_bo_reserve_deadlock
[09:39:37] [PASSED] ttm_bo_unreserve_basic
[09:39:37] [PASSED] ttm_bo_unreserve_pinned
[09:39:37] [PASSED] ttm_bo_unreserve_bulk
[09:39:37] [PASSED] ttm_bo_fini_basic
[09:39:37] [PASSED] ttm_bo_fini_shared_resv
[09:39:37] [PASSED] ttm_bo_pin_basic
[09:39:37] [PASSED] ttm_bo_pin_unpin_resource
[09:39:37] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:39:37] ===================== [PASSED] ttm_bo ======================
[09:39:37] ============== ttm_bo_validate (21 subtests) ===============
[09:39:37] ============== ttm_bo_init_reserved_sys_man ===============
[09:39:37] [PASSED] Buffer object for userspace
[09:39:37] [PASSED] Kernel buffer object
[09:39:37] [PASSED] Shared buffer object
[09:39:37] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:39:37] ============== ttm_bo_init_reserved_mock_man ==============
[09:39:37] [PASSED] Buffer object for userspace
[09:39:37] [PASSED] Kernel buffer object
[09:39:37] [PASSED] Shared buffer object
[09:39:37] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:39:37] [PASSED] ttm_bo_init_reserved_resv
[09:39:37] ================== ttm_bo_validate_basic ==================
[09:39:37] [PASSED] Buffer object for userspace
[09:39:37] [PASSED] Kernel buffer object
[09:39:37] [PASSED] Shared buffer object
[09:39:37] ============== [PASSED] ttm_bo_validate_basic ==============
[09:39:37] [PASSED] ttm_bo_validate_invalid_placement
[09:39:37] ============= ttm_bo_validate_same_placement ==============
[09:39:37] [PASSED] System manager
[09:39:37] [PASSED] VRAM manager
[09:39:37] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:39:37] [PASSED] ttm_bo_validate_failed_alloc
[09:39:37] [PASSED] ttm_bo_validate_pinned
[09:39:37] [PASSED] ttm_bo_validate_busy_placement
[09:39:37] ================ ttm_bo_validate_multihop =================
[09:39:37] [PASSED] Buffer object for userspace
[09:39:37] [PASSED] Kernel buffer object
[09:39:37] [PASSED] Shared buffer object
[09:39:37] ============ [PASSED] ttm_bo_validate_multihop =============
[09:39:37] ========== ttm_bo_validate_no_placement_signaled ==========
[09:39:37] [PASSED] Buffer object in system domain, no page vector
[09:39:37] [PASSED] Buffer object in system domain with an existing page vector
[09:39:37] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:39:37] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:39:37] [PASSED] Buffer object for userspace
[09:39:37] [PASSED] Kernel buffer object
[09:39:37] [PASSED] Shared buffer object
[09:39:37] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:39:37] [PASSED] ttm_bo_validate_move_fence_signaled
[09:39:37] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:39:37] [PASSED] Waits for GPU
[09:39:37] [PASSED] Tries to lock straight away
[09:39:37] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:39:37] [PASSED] ttm_bo_validate_happy_evict
[09:39:37] [PASSED] ttm_bo_validate_all_pinned_evict
[09:39:37] [PASSED] ttm_bo_validate_allowed_only_evict
[09:39:37] [PASSED] ttm_bo_validate_deleted_evict
[09:39:37] [PASSED] ttm_bo_validate_busy_domain_evict
[09:39:37] [PASSED] ttm_bo_validate_evict_gutting
[09:39:37] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:39:37] ================= [PASSED] ttm_bo_validate =================
[09:39:37] ============================================================
[09:39:37] Testing complete. Ran 101 tests: passed: 101
[09:39:37] Elapsed time: 11.236s total, 1.623s configuring, 9.346s building, 0.217s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ CI.checksparse: warning for Use display parent interface for runtime pm (rev2)
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (7 preceding siblings ...)
2025-10-24 9:39 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-24 9:55 ` Patchwork
2025-10-24 10:18 ` ✓ Xe.CI.BAT: success " Patchwork
2025-10-24 18:59 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-24 9:55 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Use display parent interface for runtime pm (rev2)
URL : https://patchwork.freedesktop.org/series/156308/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast c840596036111afb71465977a49618cd19ca6e8b
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2058:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2071:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2071:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2071:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_pps.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:
+drivers/gpu/drm/i915/gt/intel_reset.c:1569:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/intel_sseu.c:598:17: error: too long token expansion
+drivers/gpu/drm/i915/i915_active.c:1062:16: warning: context imbalance in '__i915_active_fence_set' - different lock contexts for basic block
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: expected struct list_head const *list
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: got struct list_head [noderef] __rcu *pos
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: warning: incorrect type in argument 1 (different address spaces)
+drivers/gpu/drm/i915/i915_gpu_error.c:692:3: warning: symbol 'guc_hw_reg_state' was not declared. Should it be static?
+drivers/gpu/drm/i915/i915_irq.c:465:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:465:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:473:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:473:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:516:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:516:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:524:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:524:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:573:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:573:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:576:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:576:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:580:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:580:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_uncore.c:1929:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1931:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1932:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1997:1: warning: context imbalance in 'gen6_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1998:1: warning: context imbalance in 'gen6_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1999:1: warning: context imbalance in 'gen6_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2019:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2020:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2021:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_wakeref.c:146:19: warning: context imbalance in 'wakeref_auto_timeout' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ Xe.CI.BAT: success for Use display parent interface for runtime pm (rev2)
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (8 preceding siblings ...)
2025-10-24 9:55 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-24 10:18 ` Patchwork
2025-10-24 18:59 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-24 10:18 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1475 bytes --]
== Series Details ==
Series: Use display parent interface for runtime pm (rev2)
URL : https://patchwork.freedesktop.org/series/156308/
State : success
== Summary ==
CI Bug Log - changes from xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7_BAT -> xe-pw-156308v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-156308v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@b-edp1:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7 -> xe-pw-156308v2
IGT_8596: 8596
xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7: 413d17c6dcb8f50d17083bd1b15258f97282cdd7
xe-pw-156308v2: 156308v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/index.html
[-- Attachment #2: Type: text/html, Size: 2040 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.Full: failure for Use display parent interface for runtime pm (rev2)
2025-10-24 9:31 [PATCH v2 0/6] Use display parent interface for runtime pm Jouni Högander
` (9 preceding siblings ...)
2025-10-24 10:18 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-10-24 18:59 ` Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-24 18:59 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 47293 bytes --]
== Series Details ==
Series: Use display parent interface for runtime pm (rev2)
URL : https://patchwork.freedesktop.org/series/156308/
State : failure
== Summary ==
CI Bug Log - changes from xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7_FULL -> xe-pw-156308v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156308v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156308v2_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-156308v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_basic@multigpu-once-basic:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@xe_exec_basic@multigpu-once-basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic.html
Known issues
------------
Here are the changes found in xe-pw-156308v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#623])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#455]) +7 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#607])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#607])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#367]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#3442]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#787]) +41 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][13] -> [INCOMPLETE][14] ([Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#306]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#373]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#1178])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-4/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2291]) +4 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#323])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#776])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2316])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2316]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [PASS][29] -> [FAIL][30] ([Intel XE#301] / [Intel XE#3149])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp4:
- shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#3321])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#4543] / [Intel XE#5208])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-9/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#4543]) +3 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-9/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#4543])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2312])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-adlp: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#2953] / [Intel XE#4173]) +6 other tests dmesg-warn
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-suspend.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#651]) +15 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#6312]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2313])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#653]) +16 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-4/igt@kms_hdr@static-swap.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_hdr@static-swap.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#5020])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2763]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#870])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@kms_pm_backlight@fade.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@universal-planes:
- shard-adlp: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5750])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-1/igt@kms_pm_rpm@universal-planes.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-9/igt@kms_pm_rpm@universal-planes.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#3414])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1435])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1091] / [Intel XE#2849])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#6360])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_copy_basic@mem-set-linear-0x8fffe:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#5503])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x8fffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1126])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#4837]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#288]) +13 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_system_allocator@process-many-mmap-huge:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#4915]) +182 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_exec_system_allocator@process-many-mmap-huge.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#6281])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#5893])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#560])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92]) -> ([PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [SKIP][99], [PASS][100], [PASS][101], [PASS][102], [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]) ([Intel XE#378])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-464/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-464/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-436/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-463/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-466/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-466/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-434/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-432/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-432/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-432/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-434/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-436/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-433/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-433/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-436/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-433/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-464/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-463/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-463/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-432/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-466/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-433/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-463/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-463/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-463/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-466/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-466/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-466/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-435/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-435/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-435/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3573]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pm@d3hot-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#5742])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_pm@d3hot-i2c.html
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#5742])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [PASS][121] -> [DMESG-WARN][122] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: NOTRUN -> [FAIL][123] ([Intel XE#6406])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_pm@s4-mocs.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#4733]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#944]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#4814])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@xe_render_copy@render-stress-1-copies.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#4130])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4273])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-432/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#6318])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-436/igt@xe_sriov_vram@vf-access-after-resize-down.html
#### Possible fixes ####
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][130] ([Intel XE#3884]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][132] ([Intel XE#4543]) -> [PASS][133] +22 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][134] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][136] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][138] ([Intel XE#2291]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][140] ([Intel XE#2316]) -> [PASS][141] +9 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][142] ([Intel XE#4543]) -> [PASS][143] +34 other tests pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-9/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [FAIL][144] ([Intel XE#5338] / [Intel XE#5416]) -> [PASS][145] +1 other test pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-adlp: [DMESG-WARN][146] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-8/igt@kms_flip@flip-vs-panning-interruptible.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-6/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
- shard-adlp: [TIMEOUT][148] ([Intel XE#4543]) -> [PASS][149] +1 other test pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-4/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-1/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][150] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: [DMESG-FAIL][152] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][153] +3 other tests pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-adlp: [DMESG-WARN][154] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][155] +2 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][156] ([Intel XE#1503]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [DMESG-WARN][158] ([Intel XE#3868]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-9/igt@xe_exec_reset@cm-close-fd.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-adlp: [DMESG-FAIL][160] ([Intel XE#4543]) -> [DMESG-WARN][161] ([Intel XE#2953] / [Intel XE#4173])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-9/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][162] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][163] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][164] ([Intel XE#2341]) -> [FAIL][165] ([Intel XE#1178])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_content_protection@atomic.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-4/igt@kms_content_protection@atomic.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][166] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-WARN][167] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][168] ([Intel XE#2312]) -> [SKIP][169] ([Intel XE#2311]) +11 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][170] ([Intel XE#2311]) -> [SKIP][171] ([Intel XE#2312]) +8 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][172] ([Intel XE#2312]) -> [SKIP][173] ([Intel XE#5390]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][174] ([Intel XE#5390]) -> [SKIP][175] ([Intel XE#2312]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][176] ([Intel XE#2313]) -> [SKIP][177] ([Intel XE#2312]) +10 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][178] ([Intel XE#2312]) -> [SKIP][179] ([Intel XE#2313]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][180] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][181] ([Intel XE#3544])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][182] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][183] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[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#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[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#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[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#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5750
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6406
[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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7 -> xe-pw-156308v2
IGT_8596: 8596
xe-3979-413d17c6dcb8f50d17083bd1b15258f97282cdd7: 413d17c6dcb8f50d17083bd1b15258f97282cdd7
xe-pw-156308v2: 156308v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v2/index.html
[-- Attachment #2: Type: text/html, Size: 54578 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread