* [PATCH 1/6] drm/{i915, xe}/display: pass parent interface to display probe
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
@ 2025-10-22 8:55 ` Jouni Högander
2025-10-22 9:17 ` [PATCH 1/6] drm/{i915,xe}/display: " Jani Nikula
2025-10-22 8:55 ` [PATCH 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-22 8:55 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.
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>
---
.../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 ++-
.../gpu/drm/xe/compat-i915-headers/i915_drv.h | 1 -
drivers/gpu/drm/xe/display/xe_display.c | 6 ++++-
include/drm/intel/display_parent_interface.h | 26 +++++++++++++++++++
11 files changed, 59 insertions(+), 6 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 3958628c73e97..3e4183a905a90 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_drv.h"
#include "i915_utils.h"
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 0319174adf953..e6a6b4a3879c6 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -7,6 +7,7 @@
#include <drm/drm_blend.h>
#include <drm/drm_damage_helper.h>
#include <drm/drm_fourcc.h>
+#include <drm/intel/display_parent_interface.h>
#include "pxp/intel_pxp.h"
#include "i915_drv.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/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index 7c657ea98a441..3e79a74ff7def 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -12,7 +12,6 @@
#include <drm/drm_drv.h>
-#include "xe_device.h" /* for xe_device_has_flat_ccs() */
#include "xe_device_types.h"
static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
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 1/6] drm/{i915,xe}/display: pass parent interface to display probe
2025-10-22 8:55 ` [PATCH 1/6] drm/{i915, xe}/display: pass parent interface to display probe Jouni Högander
@ 2025-10-22 9:17 ` Jani Nikula
2025-10-23 7:18 ` Jani Nikula
0 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2025-10-22 9:17 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe
Cc: Jouni Högander, Lucas De Marchi, Rodrigo Vivi,
Ville Syrjälä
On Wed, 22 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.
>
> 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>
You do need you add your own Signed-off-by even when sending someone
else's patches unmodified.
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> index 7c657ea98a441..3e79a74ff7def 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> @@ -12,7 +12,6 @@
>
> #include <drm/drm_drv.h>
>
> -#include "xe_device.h" /* for xe_device_has_flat_ccs() */
> #include "xe_device_types.h"
>
This hunk doesn't belong here, it's my rebase fail.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH 1/6] drm/{i915,xe}/display: pass parent interface to display probe
2025-10-22 9:17 ` [PATCH 1/6] drm/{i915,xe}/display: " Jani Nikula
@ 2025-10-23 7:18 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-23 7:18 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe
Cc: Jouni Högander, Lucas De Marchi, Rodrigo Vivi,
Ville Syrjälä
On Wed, 22 Oct 2025, Jani Nikula <jani.nikula@intel.com> wrote:
> On Wed, 22 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
>> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> index 7c657ea98a441..3e79a74ff7def 100644
>> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> @@ -12,7 +12,6 @@
>>
>> #include <drm/drm_drv.h>
>>
>> -#include "xe_device.h" /* for xe_device_has_flat_ccs() */
>> #include "xe_device_types.h"
>>
>
> This hunk doesn't belong here, it's my rebase fail.
I sent this separately as [1].
BR,
Jani.
[1] https://lore.kernel.org/r/20251022121450.452649-2-jani.nikula@intel.com
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
2025-10-22 8:55 ` [PATCH 1/6] drm/{i915, xe}/display: pass parent interface to display probe Jouni Högander
@ 2025-10-22 8:55 ` Jouni Högander
2025-10-22 9:22 ` Jani Nikula
2025-10-22 8:55 ` [PATCH 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-22 8:55 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: 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.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
include/drm/intel/display_parent_interface.h | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 28c976815327a..7ad0a27d503c8 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -8,6 +8,22 @@
struct drm_device;
+struct intel_display_rpm {
+ 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 +37,8 @@ struct drm_device;
* check the optional pointers.
*/
struct intel_display_parent_interface {
+ /* Runtime PM functions */
+ const struct intel_display_rpm *rpm;
};
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface
2025-10-22 8:55 ` [PATCH 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface Jouni Högander
@ 2025-10-22 9:22 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-22 9:22 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Wed, 22 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.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> include/drm/intel/display_parent_interface.h | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index 28c976815327a..7ad0a27d503c8 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -8,6 +8,22 @@
>
> struct drm_device;
>
> +struct intel_display_rpm {
I'm wondering if it would better emphasize the point if we named these
structs with _interface suffix.
> + struct ref_tracker *(*get)(const struct drm_device *drm);
I think we should have the struct ref_tracker forward declaration above.
> + 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 +37,8 @@ struct drm_device;
> * check the optional pointers.
> */
> struct intel_display_parent_interface {
> + /* Runtime PM functions */
I think these should be kernel-doc comments, i.e. /** @rpm: ... */. They
can still be one-liners.
BR,
Jani.
> + const struct intel_display_rpm *rpm;
> };
>
> #endif
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 3/6] drm/i915/display: Runtime pm wrappers for display parent interface
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
2025-10-22 8:55 ` [PATCH 1/6] drm/{i915, xe}/display: pass parent interface to display probe Jouni Högander
2025-10-22 8:55 ` [PATCH 2/6] drm/{i915, xe}/display: Add display runtime pm parent interface Jouni Högander
@ 2025-10-22 8:55 ` Jouni Högander
2025-10-22 9:27 ` Jani Nikula
2025-10-22 8:55 ` [PATCH 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-22 8:55 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
Implement runtime pm wrappers for i915 driver and add them into display
parent interface.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/i915_driver.c | 77 ++++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index b295326eb4331..f0f5feaf3ff2c 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -739,7 +739,84 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
"DRM_I915_DEBUG_RUNTIME_PM enabled\n");
}
+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 *intel_rpm_get(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get(drm_to_rpm(drm));
+}
+
+static struct ref_tracker *intel_rpm_get_raw(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get_raw(drm_to_rpm(drm));
+}
+
+static struct ref_tracker *intel_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 *intel_rpm_get_noresume(const struct drm_device *drm)
+{
+ return intel_runtime_pm_get_noresume(drm_to_rpm(drm));
+}
+
+static void intel_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ intel_runtime_pm_put(drm_to_rpm(drm), wakeref);
+}
+
+static void intel_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ intel_runtime_pm_put_raw(drm_to_rpm(drm), wakeref);
+}
+
+static void intel_rpm_put_unchecked(const struct drm_device *drm)
+{
+ intel_runtime_pm_put_unchecked(drm_to_rpm(drm));
+}
+
+static bool intel_rpm_suspended(const struct drm_device *drm)
+{
+ return intel_runtime_pm_suspended(drm_to_rpm(drm));
+}
+
+static void intel_rpm_assert_held(const struct drm_device *drm)
+{
+ assert_rpm_wakelock_held(drm_to_rpm(drm));
+}
+
+static void intel_rpm_assert_block(const struct drm_device *drm)
+{
+ disable_rpm_wakeref_asserts(drm_to_rpm(drm));
+}
+
+static void intel_rpm_assert_unblock(const struct drm_device *drm)
+{
+ enable_rpm_wakeref_asserts(drm_to_rpm(drm));
+}
+
+static struct intel_display_rpm rpm = {
+ .get = intel_rpm_get,
+ .get_raw = intel_rpm_get_raw,
+ .get_if_in_use = intel_rpm_get_if_in_use,
+ .get_noresume = intel_rpm_get_noresume,
+ .put = intel_rpm_put,
+ .put_raw = intel_rpm_put_raw,
+ .put_unchecked = intel_rpm_put_unchecked,
+ .suspended = intel_rpm_suspended,
+ .assert_held = intel_rpm_assert_held,
+ .assert_block = intel_rpm_assert_block,
+ .assert_unblock = intel_rpm_assert_unblock
+};
+
static const struct intel_display_parent_interface parent = {
+ .rpm = &rpm,
};
const struct intel_display_parent_interface *i915_driver_parent_interface(void)
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH 3/6] drm/i915/display: Runtime pm wrappers for display parent interface
2025-10-22 8:55 ` [PATCH 3/6] drm/i915/display: Runtime pm wrappers for display " Jouni Högander
@ 2025-10-22 9:27 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-22 9:27 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Wed, 22 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Implement runtime pm wrappers for i915 driver and add them into display
> parent interface.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/i915_driver.c | 77 ++++++++++++++++++++++++++++++
> 1 file changed, 77 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index b295326eb4331..f0f5feaf3ff2c 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -739,7 +739,84 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
> "DRM_I915_DEBUG_RUNTIME_PM enabled\n");
> }
>
> +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 *intel_rpm_get(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get(drm_to_rpm(drm));
> +}
> +
> +static struct ref_tracker *intel_rpm_get_raw(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get_raw(drm_to_rpm(drm));
> +}
> +
> +static struct ref_tracker *intel_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 *intel_rpm_get_noresume(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_get_noresume(drm_to_rpm(drm));
> +}
> +
> +static void intel_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + intel_runtime_pm_put(drm_to_rpm(drm), wakeref);
> +}
> +
> +static void intel_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + intel_runtime_pm_put_raw(drm_to_rpm(drm), wakeref);
> +}
> +
> +static void intel_rpm_put_unchecked(const struct drm_device *drm)
> +{
> + intel_runtime_pm_put_unchecked(drm_to_rpm(drm));
> +}
> +
> +static bool intel_rpm_suspended(const struct drm_device *drm)
> +{
> + return intel_runtime_pm_suspended(drm_to_rpm(drm));
> +}
> +
> +static void intel_rpm_assert_held(const struct drm_device *drm)
> +{
> + assert_rpm_wakelock_held(drm_to_rpm(drm));
> +}
> +
> +static void intel_rpm_assert_block(const struct drm_device *drm)
> +{
> + disable_rpm_wakeref_asserts(drm_to_rpm(drm));
> +}
> +
> +static void intel_rpm_assert_unblock(const struct drm_device *drm)
> +{
> + enable_rpm_wakeref_asserts(drm_to_rpm(drm));
> +}
> +
> +static struct intel_display_rpm rpm = {
const
> + .get = intel_rpm_get,
> + .get_raw = intel_rpm_get_raw,
> + .get_if_in_use = intel_rpm_get_if_in_use,
> + .get_noresume = intel_rpm_get_noresume,
> + .put = intel_rpm_put,
> + .put_raw = intel_rpm_put_raw,
> + .put_unchecked = intel_rpm_put_unchecked,
> + .suspended = intel_rpm_suspended,
> + .assert_held = intel_rpm_assert_held,
> + .assert_block = intel_rpm_assert_block,
> + .assert_unblock = intel_rpm_assert_unblock
> +};
I think all of the above belong in intel_runtime_pm.c.
I do dislike having to declare the rpm variable and make it non-static,
but I think the isolation is still better that way. The name also needs
to be longer because of this.
If we keep them here, this file will grow to a ton of small snippets
like above as we add more interfaces. I think the compiler might be able
to be more clever if the above wrapper functions are in the same file as
the functions being wrapped.
BR,
Jani.
> +
> static const struct intel_display_parent_interface parent = {
> + .rpm = &rpm,
> };
>
> const struct intel_display_parent_interface *i915_driver_parent_interface(void)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 4/6] drm/xe/display: Runtime pm wrappers for display parent interface
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (2 preceding siblings ...)
2025-10-22 8:55 ` [PATCH 3/6] drm/i915/display: Runtime pm wrappers for display " Jouni Högander
@ 2025-10-22 8:55 ` Jouni Högander
2025-10-22 9:29 ` Jani Nikula
2025-10-22 8:55 ` [PATCH 5/6] drm/i915/display: Use display parent interface for i915 runtime pm Jouni Högander
` (6 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-22 8:55 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
Implement runtime pm wrappers for xe driver and add them into display
parent interface.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/xe/display/xe_display.c | 76 +++++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index 0e38c96eb6def..8b2b0c5b398db 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -36,6 +36,7 @@
#include "intel_opregion.h"
#include "skl_watermark.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);
@@ -515,7 +516,82 @@ static void display_device_remove(struct drm_device *dev, void *arg)
intel_display_device_remove(display);
}
+static struct ref_tracker *xe_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_rpm_get_raw(const struct drm_device *drm)
+{
+ return xe_rpm_get(drm);
+}
+
+static struct ref_tracker *xe_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_rpm_get_noresume(const struct drm_device *drm)
+{
+ xe_pm_runtime_get_noresume(to_xe_device(drm));
+
+ return INTEL_WAKEREF_DEF;
+}
+
+static void xe_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ if (wakeref)
+ xe_pm_runtime_put(to_xe_device(drm));
+}
+
+static void xe_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
+{
+ xe_rpm_put(drm, wakeref);
+}
+
+static void xe_rpm_put_unchecked(const struct drm_device *drm)
+{
+ xe_pm_runtime_put(to_xe_device(drm));
+}
+
+static bool xe_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_rpm_assert_held(const struct drm_device *drm)
+{
+ /* FIXME */
+}
+
+static void xe_rpm_assert_block(const struct drm_device *drm)
+{
+ /* FIXME */
+}
+
+static void xe_rpm_assert_unblock(const struct drm_device *drm)
+{
+ /* FIXME */
+}
+
+static struct intel_display_rpm rpm = {
+ .get = xe_rpm_get,
+ .get_raw = xe_rpm_get_raw,
+ .get_if_in_use = xe_rpm_get_if_in_use,
+ .get_noresume = xe_rpm_get_noresume,
+ .put = xe_rpm_put,
+ .put_raw = xe_rpm_put_raw,
+ .put_unchecked = xe_rpm_put_unchecked,
+ .suspended = xe_rpm_suspended,
+ .assert_held = xe_rpm_assert_held,
+ .assert_block = xe_rpm_assert_block,
+ .assert_unblock = xe_rpm_assert_unblock
+};
+
static const struct intel_display_parent_interface parent = {
+ .rpm = &rpm,
};
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH 4/6] drm/xe/display: Runtime pm wrappers for display parent interface
2025-10-22 8:55 ` [PATCH 4/6] drm/xe/display: " Jouni Högander
@ 2025-10-22 9:29 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-22 9:29 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Wed, 22 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Implement runtime pm wrappers for xe driver and add them into display
> parent interface.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_display.c | 76 +++++++++++++++++++++++++
> 1 file changed, 76 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
> index 0e38c96eb6def..8b2b0c5b398db 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -36,6 +36,7 @@
> #include "intel_opregion.h"
> #include "skl_watermark.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);
> @@ -515,7 +516,82 @@ static void display_device_remove(struct drm_device *dev, void *arg)
> intel_display_device_remove(display);
> }
>
> +static struct ref_tracker *xe_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_rpm_get_raw(const struct drm_device *drm)
> +{
> + return xe_rpm_get(drm);
> +}
> +
> +static struct ref_tracker *xe_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_rpm_get_noresume(const struct drm_device *drm)
> +{
> + xe_pm_runtime_get_noresume(to_xe_device(drm));
> +
> + return INTEL_WAKEREF_DEF;
> +}
> +
> +static void xe_rpm_put(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + if (wakeref)
> + xe_pm_runtime_put(to_xe_device(drm));
> +}
> +
> +static void xe_rpm_put_raw(const struct drm_device *drm, struct ref_tracker *wakeref)
> +{
> + xe_rpm_put(drm, wakeref);
> +}
> +
> +static void xe_rpm_put_unchecked(const struct drm_device *drm)
> +{
> + xe_pm_runtime_put(to_xe_device(drm));
> +}
> +
> +static bool xe_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_rpm_assert_held(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static void xe_rpm_assert_block(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static void xe_rpm_assert_unblock(const struct drm_device *drm)
> +{
> + /* FIXME */
> +}
> +
> +static struct intel_display_rpm rpm = {
const
> + .get = xe_rpm_get,
> + .get_raw = xe_rpm_get_raw,
> + .get_if_in_use = xe_rpm_get_if_in_use,
> + .get_noresume = xe_rpm_get_noresume,
> + .put = xe_rpm_put,
> + .put_raw = xe_rpm_put_raw,
> + .put_unchecked = xe_rpm_put_unchecked,
> + .suspended = xe_rpm_suspended,
> + .assert_held = xe_rpm_assert_held,
> + .assert_block = xe_rpm_assert_block,
> + .assert_unblock = xe_rpm_assert_unblock
> +};
Same here about placement. Maybe we reuse xe_display_rpm.c for this,
since in xe unlike in i915 display can be compiled out.
BR,
Jani.
> +
> static const struct intel_display_parent_interface parent = {
> + .rpm = &rpm,
> };
>
> /**
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 5/6] drm/i915/display: Use display parent interface for i915 runtime pm
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (3 preceding siblings ...)
2025-10-22 8:55 ` [PATCH 4/6] drm/xe/display: " Jouni Högander
@ 2025-10-22 8:55 ` Jouni Högander
2025-10-22 9:35 ` Jani Nikula
2025-10-22 8:55 ` [PATCH 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-22 8:55 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
Start using display parent interface for i915 runtime pm. Doing the same
for xe is done in coming changes.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
.../gpu/drm/i915/display/intel_display_rpm.c | 43 +++++++++++--------
1 file changed, 24 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..622646814e0bf 100644
--- a/drivers/gpu/drm/i915/display/intel_display_rpm.c
+++ b/drivers/gpu/drm/i915/display/intel_display_rpm.c
@@ -4,66 +4,71 @@
#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;
-}
+#include "drm/intel/display_parent_interface.h"
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 && display->parent->rpm->get_raw ?
+ display->parent->rpm->get_raw(display->drm) : NULL;
}
void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
{
- intel_runtime_pm_put_raw(display_to_rpm(display), wakeref);
+ if (display->parent->rpm && display->parent->rpm->put_raw)
+ 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 && display->parent->rpm->get ?
+ display->parent->rpm->get(display->drm) : NULL;
+
}
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 && display->parent->rpm->get_if_in_use ?
+ display->parent->rpm->get_if_in_use(display->drm) : NULL;
}
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 && display->parent->rpm->get_noresume ?
+ display->parent->rpm->get_noresume(display->drm) : NULL;
}
void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
{
- intel_runtime_pm_put(display_to_rpm(display), wakeref);
+ if (display->parent->rpm && display->parent->rpm->put)
+ 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));
+ if (display->parent->rpm && display->parent->rpm->put_unchecked)
+ 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 && display->parent->rpm->suspended ?
+ display->parent->rpm->suspended(display->drm) : false;
}
void assert_display_rpm_held(struct intel_display *display)
{
- assert_rpm_wakelock_held(display_to_rpm(display));
+ if (display->parent->rpm && display->parent->rpm->assert_held)
+ 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));
+ if (display->parent->rpm && display->parent->rpm->assert_block)
+ 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));
+ if (display->parent->rpm && display->parent->rpm->assert_block)
+ display->parent->rpm->assert_unblock(display->drm);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH 5/6] drm/i915/display: Use display parent interface for i915 runtime pm
2025-10-22 8:55 ` [PATCH 5/6] drm/i915/display: Use display parent interface for i915 runtime pm Jouni Högander
@ 2025-10-22 9:35 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-22 9:35 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Wed, 22 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.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> .../gpu/drm/i915/display/intel_display_rpm.c | 43 +++++++++++--------
> 1 file changed, 24 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..622646814e0bf 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_rpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_rpm.c
> @@ -4,66 +4,71 @@
> #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;
> -}
> +#include "drm/intel/display_parent_interface.h"
This should use <> for include, as it's in include/drm, and placed
appropriately in the include list.
>
> 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 && display->parent->rpm->get_raw ?
> + display->parent->rpm->get_raw(display->drm) : NULL;
I think we should require and assume ->rpm is set, and also all the
function pointers are set. It should be a rare documented exception if
something can be NULL.
I'm a bit divided about keeping the wrappers for calling the
interface. If we assume the pointers are valid, we could switch to
calling e.g.
- wakeref = intel_display_rpm_get_raw();
+ wakeref = display->parent->rpm->get_raw(display->drm);
but since that's a bunch of churn, it's okay to leave that be for
now. We can decide on it later. But let's not have all those NULL
checks.
BR,
Jani.
> }
>
> void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
> {
> - intel_runtime_pm_put_raw(display_to_rpm(display), wakeref);
> + if (display->parent->rpm && display->parent->rpm->put_raw)
> + 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 && display->parent->rpm->get ?
> + display->parent->rpm->get(display->drm) : NULL;
> +
> }
>
> 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 && display->parent->rpm->get_if_in_use ?
> + display->parent->rpm->get_if_in_use(display->drm) : NULL;
> }
>
> 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 && display->parent->rpm->get_noresume ?
> + display->parent->rpm->get_noresume(display->drm) : NULL;
> }
>
> void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
> {
> - intel_runtime_pm_put(display_to_rpm(display), wakeref);
> + if (display->parent->rpm && display->parent->rpm->put)
> + 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));
> + if (display->parent->rpm && display->parent->rpm->put_unchecked)
> + 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 && display->parent->rpm->suspended ?
> + display->parent->rpm->suspended(display->drm) : false;
> }
>
> void assert_display_rpm_held(struct intel_display *display)
> {
> - assert_rpm_wakelock_held(display_to_rpm(display));
> + if (display->parent->rpm && display->parent->rpm->assert_held)
> + 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));
> + if (display->parent->rpm && display->parent->rpm->assert_block)
> + 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));
> + if (display->parent->rpm && display->parent->rpm->assert_block)
> + display->parent->rpm->assert_unblock(display->drm);
> }
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 6/6] drm/xe/display: Use display parent interface for xe runtime pm
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (4 preceding siblings ...)
2025-10-22 8:55 ` [PATCH 5/6] drm/i915/display: Use display parent interface for i915 runtime pm Jouni Högander
@ 2025-10-22 8:55 ` Jouni Högander
2025-10-22 9:36 ` Jani Nikula
2025-10-22 9:41 ` ✗ CI.checkpatch: warning for Use display parent interface for " Patchwork
` (4 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Jouni Högander @ 2025-10-22 8:55 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
Start using display parent interface for xe runtime pm.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/xe/Makefile | 2 +-
drivers/gpu/drm/xe/display/xe_display_rpm.c | 73 ---------------------
2 files changed, 1 insertion(+), 74 deletions(-)
delete mode 100644 drivers/gpu/drm/xe/display/xe_display_rpm.c
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 82c6b3d296769..4559fb770bf75 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -211,7 +211,6 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
display/intel_fbdev_fb.o \
display/xe_display.o \
display/xe_display_misc.o \
- display/xe_display_rpm.o \
display/xe_display_wa.o \
display/xe_dsb_buffer.o \
display/xe_fb_pin.o \
@@ -256,6 +255,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
deleted file mode 100644
index 3825376e98ccd..0000000000000
--- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
+++ /dev/null
@@ -1,73 +0,0 @@
-// SPDX-License-Identifier: MIT
-/* Copyright © 2025 Intel Corporation */
-
-#include "intel_display_core.h"
-#include "intel_display_rpm.h"
-#include "xe_device.h"
-#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 */
-}
--
2.43.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH 6/6] drm/xe/display: Use display parent interface for xe runtime pm
2025-10-22 8:55 ` [PATCH 6/6] drm/xe/display: Use display parent interface for xe " Jouni Högander
@ 2025-10-22 9:36 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-10-22 9:36 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander
On Wed, 22 Oct 2025, Jouni Högander <jouni.hogander@intel.com> wrote:
> Start using display parent interface for xe runtime pm.
Nice, this is a good reason to keep the wrappers in the previous patch.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/xe/Makefile | 2 +-
> drivers/gpu/drm/xe/display/xe_display_rpm.c | 73 ---------------------
> 2 files changed, 1 insertion(+), 74 deletions(-)
> delete mode 100644 drivers/gpu/drm/xe/display/xe_display_rpm.c
>
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index 82c6b3d296769..4559fb770bf75 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -211,7 +211,6 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
> display/intel_fbdev_fb.o \
> display/xe_display.o \
> display/xe_display_misc.o \
> - display/xe_display_rpm.o \
> display/xe_display_wa.o \
> display/xe_dsb_buffer.o \
> display/xe_fb_pin.o \
> @@ -256,6 +255,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
> deleted file mode 100644
> index 3825376e98ccd..0000000000000
> --- a/drivers/gpu/drm/xe/display/xe_display_rpm.c
> +++ /dev/null
> @@ -1,73 +0,0 @@
> -// SPDX-License-Identifier: MIT
> -/* Copyright © 2025 Intel Corporation */
> -
> -#include "intel_display_core.h"
> -#include "intel_display_rpm.h"
> -#include "xe_device.h"
> -#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 */
> -}
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.checkpatch: warning for Use display parent interface for runtime pm
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (5 preceding siblings ...)
2025-10-22 8:55 ` [PATCH 6/6] drm/xe/display: Use display parent interface for xe " Jouni Högander
@ 2025-10-22 9:41 ` Patchwork
2025-10-22 9:42 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-22 9:41 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Use display parent interface for runtime pm
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 6aef713f101a18ab05a416737905c888703a85e5
Author: Jouni Högander <jouni.hogander@intel.com>
Date: Wed Oct 22 11:55:48 2025 +0300
drm/xe/display: Use display parent interface for xe runtime pm
Start using display parent interface for xe runtime pm.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
+ /mt/dim checkpatch 126bfe822b7fa02f01008cf6f712bd777b1d625b drm-intel
6697c8b8e138 drm/{i915, xe}/display: pass parent interface to display probe
-:68: WARNING:LONG_LINE: line length of 101 exceeds 100 columns
#68: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:1651:
+ const struct intel_display_parent_interface *parent)
-:99: WARNING:LONG_LINE: line length of 102 exceeds 100 columns
#99: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:317:
+ const struct intel_display_parent_interface *parent);
-:249: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#249:
new file mode 100644
total: 0 errors, 3 warnings, 0 checks, 179 lines checked
c6019b6479f1 drm/{i915, xe}/display: Add display runtime pm parent interface
1b0b789b8e51 drm/i915/display: Runtime pm wrappers for display parent interface
fc8fe292d0b4 drm/xe/display: Runtime pm wrappers for display parent interface
00153e3c6a84 drm/i915/display: Use display parent interface for i915 runtime pm
6aef713f101a drm/xe/display: Use display parent interface for xe runtime pm
-:35: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#35:
deleted file mode 100644
total: 0 errors, 1 warnings, 0 checks, 14 lines checked
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.KUnit: success for Use display parent interface for runtime pm
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (6 preceding siblings ...)
2025-10-22 9:41 ` ✗ CI.checkpatch: warning for Use display parent interface for " Patchwork
@ 2025-10-22 9:42 ` Patchwork
2025-10-22 10:00 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-22 9:42 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Use display parent interface for runtime pm
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:41:16] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:41:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[09:41:58] Starting KUnit Kernel (1/1)...
[09:41:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:41:58] ================== guc_buf (11 subtests) ===================
[09:41:58] [PASSED] test_smallest
[09:41:58] [PASSED] test_largest
[09:41:58] [PASSED] test_granular
[09:41:58] [PASSED] test_unique
[09:41:58] [PASSED] test_overlap
[09:41:58] [PASSED] test_reusable
[09:41:58] [PASSED] test_too_big
[09:41:58] [PASSED] test_flush
[09:41:58] [PASSED] test_lookup
[09:41:58] [PASSED] test_data
[09:41:58] [PASSED] test_class
[09:41:58] ===================== [PASSED] guc_buf =====================
[09:41:58] =================== guc_dbm (7 subtests) ===================
[09:41:58] [PASSED] test_empty
[09:41:58] [PASSED] test_default
[09:41:58] ======================== test_size ========================
[09:41:58] [PASSED] 4
[09:41:58] [PASSED] 8
[09:41:58] [PASSED] 32
[09:41:58] [PASSED] 256
[09:41:58] ==================== [PASSED] test_size ====================
[09:41:58] ======================= test_reuse ========================
[09:41:58] [PASSED] 4
[09:41:58] [PASSED] 8
[09:41:58] [PASSED] 32
[09:41:58] [PASSED] 256
[09:41:58] =================== [PASSED] test_reuse ====================
[09:41:58] =================== test_range_overlap ====================
[09:41:58] [PASSED] 4
[09:41:58] [PASSED] 8
[09:41:58] [PASSED] 32
[09:41:58] [PASSED] 256
[09:41:58] =============== [PASSED] test_range_overlap ================
[09:41:58] =================== test_range_compact ====================
[09:41:58] [PASSED] 4
[09:41:58] [PASSED] 8
[09:41:58] [PASSED] 32
[09:41:58] [PASSED] 256
[09:41:58] =============== [PASSED] test_range_compact ================
[09:41:58] ==================== test_range_spare =====================
[09:41:58] [PASSED] 4
[09:41:58] [PASSED] 8
[09:41:58] [PASSED] 32
[09:41:58] [PASSED] 256
[09:41:58] ================ [PASSED] test_range_spare =================
[09:41:58] ===================== [PASSED] guc_dbm =====================
[09:41:58] =================== guc_idm (6 subtests) ===================
[09:41:58] [PASSED] bad_init
[09:41:58] [PASSED] no_init
[09:41:58] [PASSED] init_fini
[09:41:58] [PASSED] check_used
[09:41:58] [PASSED] check_quota
[09:41:58] [PASSED] check_all
[09:41:58] ===================== [PASSED] guc_idm =====================
[09:41:58] ================== no_relay (3 subtests) ===================
[09:41:58] [PASSED] xe_drops_guc2pf_if_not_ready
[09:41:58] [PASSED] xe_drops_guc2vf_if_not_ready
[09:41:58] [PASSED] xe_rejects_send_if_not_ready
[09:41:58] ==================== [PASSED] no_relay =====================
[09:41:58] ================== pf_relay (14 subtests) ==================
[09:41:58] [PASSED] pf_rejects_guc2pf_too_short
[09:41:58] [PASSED] pf_rejects_guc2pf_too_long
[09:41:58] [PASSED] pf_rejects_guc2pf_no_payload
[09:41:58] [PASSED] pf_fails_no_payload
[09:41:58] [PASSED] pf_fails_bad_origin
[09:41:58] [PASSED] pf_fails_bad_type
[09:41:58] [PASSED] pf_txn_reports_error
[09:41:58] [PASSED] pf_txn_sends_pf2guc
[09:41:58] [PASSED] pf_sends_pf2guc
[09:41:58] [SKIPPED] pf_loopback_nop
[09:41:58] [SKIPPED] pf_loopback_echo
[09:41:58] [SKIPPED] pf_loopback_fail
[09:41:58] [SKIPPED] pf_loopback_busy
[09:41:58] [SKIPPED] pf_loopback_retry
[09:41:58] ==================== [PASSED] pf_relay =====================
[09:41:58] ================== vf_relay (3 subtests) ===================
[09:41:58] [PASSED] vf_rejects_guc2vf_too_short
[09:41:58] [PASSED] vf_rejects_guc2vf_too_long
[09:41:58] [PASSED] vf_rejects_guc2vf_no_payload
[09:41:58] ==================== [PASSED] vf_relay =====================
[09:41:58] ===================== lmtt (1 subtest) =====================
[09:41:58] ======================== test_ops =========================
[09:41:58] [PASSED] 2-level
[09:41:58] [PASSED] multi-level
[09:41:58] ==================== [PASSED] test_ops =====================
[09:41:58] ====================== [PASSED] lmtt =======================
[09:41:58] ================= pf_service (11 subtests) =================
[09:41:58] [PASSED] pf_negotiate_any
[09:41:58] [PASSED] pf_negotiate_base_match
[09:41:58] [PASSED] pf_negotiate_base_newer
[09:41:58] [PASSED] pf_negotiate_base_next
[09:41:58] [SKIPPED] pf_negotiate_base_older
[09:41:58] [PASSED] pf_negotiate_base_prev
[09:41:58] [PASSED] pf_negotiate_latest_match
[09:41:58] [PASSED] pf_negotiate_latest_newer
[09:41:58] [PASSED] pf_negotiate_latest_next
[09:41:58] [SKIPPED] pf_negotiate_latest_older
[09:41:58] [SKIPPED] pf_negotiate_latest_prev
[09:41:58] =================== [PASSED] pf_service ====================
[09:41:58] ================= xe_guc_g2g (2 subtests) ==================
[09:41:58] ============== xe_live_guc_g2g_kunit_default ==============
[09:41:58] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:41:58] ============== xe_live_guc_g2g_kunit_allmem ===============
[09:41:58] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:41:58] =================== [SKIPPED] xe_guc_g2g ===================
[09:41:58] =================== xe_mocs (2 subtests) ===================
[09:41:58] ================ xe_live_mocs_kernel_kunit ================
[09:41:58] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:41:58] ================ xe_live_mocs_reset_kunit =================
[09:41:58] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:41:58] ==================== [SKIPPED] xe_mocs =====================
[09:41:58] ================= xe_migrate (2 subtests) ==================
[09:41:58] ================= xe_migrate_sanity_kunit =================
[09:41:58] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:41:58] ================== xe_validate_ccs_kunit ==================
[09:41:58] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:41:58] =================== [SKIPPED] xe_migrate ===================
[09:41:58] ================== xe_dma_buf (1 subtest) ==================
[09:41:58] ==================== xe_dma_buf_kunit =====================
[09:41:58] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:41:58] =================== [SKIPPED] xe_dma_buf ===================
[09:41:58] ================= xe_bo_shrink (1 subtest) =================
[09:41:58] =================== xe_bo_shrink_kunit ====================
[09:41:58] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:41:58] ================== [SKIPPED] xe_bo_shrink ==================
[09:41:58] ==================== xe_bo (2 subtests) ====================
[09:41:58] ================== xe_ccs_migrate_kunit ===================
[09:41:58] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:41:58] ==================== xe_bo_evict_kunit ====================
[09:41:58] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:41:58] ===================== [SKIPPED] xe_bo ======================
[09:41:58] ==================== args (11 subtests) ====================
[09:41:58] [PASSED] count_args_test
[09:41:58] [PASSED] call_args_example
[09:41:58] [PASSED] call_args_test
[09:41:58] [PASSED] drop_first_arg_example
[09:41:58] [PASSED] drop_first_arg_test
[09:41:58] [PASSED] first_arg_example
[09:41:58] [PASSED] first_arg_test
[09:41:58] [PASSED] last_arg_example
[09:41:58] [PASSED] last_arg_test
[09:41:58] [PASSED] pick_arg_example
[09:41:58] [PASSED] sep_comma_example
[09:41:58] ====================== [PASSED] args =======================
[09:41:58] =================== xe_pci (3 subtests) ====================
[09:41:58] ==================== check_graphics_ip ====================
[09:41:58] [PASSED] 12.00 Xe_LP
[09:41:58] [PASSED] 12.10 Xe_LP+
[09:41:58] [PASSED] 12.55 Xe_HPG
[09:41:58] [PASSED] 12.60 Xe_HPC
[09:41:58] [PASSED] 12.70 Xe_LPG
[09:41:58] [PASSED] 12.71 Xe_LPG
[09:41:58] [PASSED] 12.74 Xe_LPG+
[09:41:58] [PASSED] 20.01 Xe2_HPG
[09:41:58] [PASSED] 20.02 Xe2_HPG
[09:41:58] [PASSED] 20.04 Xe2_LPG
[09:41:58] [PASSED] 30.00 Xe3_LPG
[09:41:58] [PASSED] 30.01 Xe3_LPG
[09:41:58] [PASSED] 30.03 Xe3_LPG
[09:41:58] [PASSED] 30.04 Xe3_LPG
[09:41:58] [PASSED] 30.05 Xe3_LPG
[09:41:58] [PASSED] 35.11 Xe3p_XPC
[09:41:58] ================ [PASSED] check_graphics_ip ================
[09:41:58] ===================== check_media_ip ======================
[09:41:58] [PASSED] 12.00 Xe_M
[09:41:58] [PASSED] 12.55 Xe_HPM
[09:41:58] [PASSED] 13.00 Xe_LPM+
[09:41:58] [PASSED] 13.01 Xe2_HPM
[09:41:58] [PASSED] 20.00 Xe2_LPM
[09:41:58] [PASSED] 30.00 Xe3_LPM
[09:41:58] [PASSED] 30.02 Xe3_LPM
[09:41:58] [PASSED] 35.00 Xe3p_LPM
[09:41:58] [PASSED] 35.03 Xe3p_HPM
[09:41:58] ================= [PASSED] check_media_ip ==================
[09:41:58] ================= check_platform_gt_count =================
[09:41:58] [PASSED] 0x9A60 (TIGERLAKE)
[09:41:58] [PASSED] 0x9A68 (TIGERLAKE)
[09:41:58] [PASSED] 0x9A70 (TIGERLAKE)
[09:41:58] [PASSED] 0x9A40 (TIGERLAKE)
[09:41:58] [PASSED] 0x9A49 (TIGERLAKE)
[09:41:58] [PASSED] 0x9A59 (TIGERLAKE)
[09:41:58] [PASSED] 0x9A78 (TIGERLAKE)
[09:41:58] [PASSED] 0x9AC0 (TIGERLAKE)
[09:41:58] [PASSED] 0x9AC9 (TIGERLAKE)
[09:41:58] [PASSED] 0x9AD9 (TIGERLAKE)
[09:41:58] [PASSED] 0x9AF8 (TIGERLAKE)
[09:41:58] [PASSED] 0x4C80 (ROCKETLAKE)
[09:41:58] [PASSED] 0x4C8A (ROCKETLAKE)
[09:41:58] [PASSED] 0x4C8B (ROCKETLAKE)
[09:41:58] [PASSED] 0x4C8C (ROCKETLAKE)
[09:41:58] [PASSED] 0x4C90 (ROCKETLAKE)
[09:41:58] [PASSED] 0x4C9A (ROCKETLAKE)
[09:41:58] [PASSED] 0x4680 (ALDERLAKE_S)
[09:41:58] [PASSED] 0x4682 (ALDERLAKE_S)
[09:41:58] [PASSED] 0x4688 (ALDERLAKE_S)
[09:41:58] [PASSED] 0x468A (ALDERLAKE_S)
[09:41:58] [PASSED] 0x468B (ALDERLAKE_S)
[09:41:58] [PASSED] 0x4690 (ALDERLAKE_S)
[09:41:58] [PASSED] 0x4692 (ALDERLAKE_S)
[09:41:58] [PASSED] 0x4693 (ALDERLAKE_S)
[09:41:58] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46AA (ALDERLAKE_P)
[09:41:58] [PASSED] 0x462A (ALDERLAKE_P)
[09:41:58] [PASSED] 0x4626 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x4628 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:41:58] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:41:58] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:41:58] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:41:58] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:41:58] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:41:58] [PASSED] 0xA721 (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA720 (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:41:58] [PASSED] 0xA780 (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA781 (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA782 (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA783 (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA788 (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA789 (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA78A (ALDERLAKE_S)
[09:41:58] [PASSED] 0xA78B (ALDERLAKE_S)
[09:41:58] [PASSED] 0x4905 (DG1)
[09:41:58] [PASSED] 0x4906 (DG1)
[09:41:58] [PASSED] 0x4907 (DG1)
[09:41:58] [PASSED] 0x4908 (DG1)
[09:41:58] [PASSED] 0x4909 (DG1)
[09:41:58] [PASSED] 0x56C0 (DG2)
[09:41:58] [PASSED] 0x56C2 (DG2)
[09:41:58] [PASSED] 0x56C1 (DG2)
[09:41:58] [PASSED] 0x7D51 (METEORLAKE)
[09:41:58] [PASSED] 0x7DD1 (METEORLAKE)
[09:41:58] [PASSED] 0x7D41 (METEORLAKE)
[09:41:58] [PASSED] 0x7D67 (METEORLAKE)
[09:41:58] [PASSED] 0xB640 (METEORLAKE)
[09:41:58] [PASSED] 0x56A0 (DG2)
[09:41:58] [PASSED] 0x56A1 (DG2)
[09:41:58] [PASSED] 0x56A2 (DG2)
[09:41:58] [PASSED] 0x56BE (DG2)
[09:41:58] [PASSED] 0x56BF (DG2)
[09:41:58] [PASSED] 0x5690 (DG2)
[09:41:58] [PASSED] 0x5691 (DG2)
[09:41:58] [PASSED] 0x5692 (DG2)
[09:41:58] [PASSED] 0x56A5 (DG2)
[09:41:58] [PASSED] 0x56A6 (DG2)
[09:41:58] [PASSED] 0x56B0 (DG2)
[09:41:58] [PASSED] 0x56B1 (DG2)
[09:41:58] [PASSED] 0x56BA (DG2)
[09:41:58] [PASSED] 0x56BB (DG2)
[09:41:58] [PASSED] 0x56BC (DG2)
[09:41:58] [PASSED] 0x56BD (DG2)
[09:41:58] [PASSED] 0x5693 (DG2)
[09:41:58] [PASSED] 0x5694 (DG2)
[09:41:58] [PASSED] 0x5695 (DG2)
[09:41:58] [PASSED] 0x56A3 (DG2)
[09:41:58] [PASSED] 0x56A4 (DG2)
[09:41:58] [PASSED] 0x56B2 (DG2)
[09:41:58] [PASSED] 0x56B3 (DG2)
[09:41:58] [PASSED] 0x5696 (DG2)
[09:41:58] [PASSED] 0x5697 (DG2)
[09:41:58] [PASSED] 0xB69 (PVC)
[09:41:58] [PASSED] 0xB6E (PVC)
[09:41:58] [PASSED] 0xBD4 (PVC)
[09:41:58] [PASSED] 0xBD5 (PVC)
[09:41:58] [PASSED] 0xBD6 (PVC)
[09:41:58] [PASSED] 0xBD7 (PVC)
[09:41:58] [PASSED] 0xBD8 (PVC)
[09:41:58] [PASSED] 0xBD9 (PVC)
[09:41:58] [PASSED] 0xBDA (PVC)
[09:41:58] [PASSED] 0xBDB (PVC)
[09:41:58] [PASSED] 0xBE0 (PVC)
[09:41:58] [PASSED] 0xBE1 (PVC)
[09:41:58] [PASSED] 0xBE5 (PVC)
[09:41:58] [PASSED] 0x7D40 (METEORLAKE)
[09:41:58] [PASSED] 0x7D45 (METEORLAKE)
[09:41:58] [PASSED] 0x7D55 (METEORLAKE)
[09:41:58] [PASSED] 0x7D60 (METEORLAKE)
[09:41:58] [PASSED] 0x7DD5 (METEORLAKE)
[09:41:58] [PASSED] 0x6420 (LUNARLAKE)
[09:41:58] [PASSED] 0x64A0 (LUNARLAKE)
[09:41:58] [PASSED] 0x64B0 (LUNARLAKE)
[09:41:58] [PASSED] 0xE202 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE209 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE20B (BATTLEMAGE)
[09:41:58] [PASSED] 0xE20C (BATTLEMAGE)
[09:41:58] [PASSED] 0xE20D (BATTLEMAGE)
[09:41:58] [PASSED] 0xE210 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE211 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE212 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE216 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE220 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE221 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE222 (BATTLEMAGE)
[09:41:58] [PASSED] 0xE223 (BATTLEMAGE)
[09:41:58] [PASSED] 0xB080 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB081 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB082 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB083 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB084 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB085 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB086 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB087 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB08F (PANTHERLAKE)
[09:41:58] [PASSED] 0xB090 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:41:58] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:41:58] [PASSED] 0xFD80 (PANTHERLAKE)
[09:41:58] [PASSED] 0xFD81 (PANTHERLAKE)
[09:41:58] [PASSED] 0xD740 (NOVALAKE_S)
[09:41:58] [PASSED] 0xD741 (NOVALAKE_S)
[09:41:58] [PASSED] 0xD742 (NOVALAKE_S)
[09:41:58] [PASSED] 0xD743 (NOVALAKE_S)
[09:41:58] [PASSED] 0xD744 (NOVALAKE_S)
[09:41:58] [PASSED] 0xD745 (NOVALAKE_S)
[09:41:58] ============= [PASSED] check_platform_gt_count =============
[09:41:58] ===================== [PASSED] xe_pci ======================
[09:41:58] =================== xe_rtp (2 subtests) ====================
[09:41:58] =============== xe_rtp_process_to_sr_tests ================
[09:41:58] [PASSED] coalesce-same-reg
[09:41:58] [PASSED] no-match-no-add
[09:41:58] [PASSED] match-or
[09:41:58] [PASSED] match-or-xfail
[09:41:58] [PASSED] no-match-no-add-multiple-rules
[09:41:58] [PASSED] two-regs-two-entries
[09:41:58] [PASSED] clr-one-set-other
[09:41:58] [PASSED] set-field
[09:41:58] [PASSED] conflict-duplicate
[09:41:58] [PASSED] conflict-not-disjoint
[09:41:58] [PASSED] conflict-reg-type
[09:41:58] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:41:58] ================== xe_rtp_process_tests ===================
[09:41:58] [PASSED] active1
[09:41:58] [PASSED] active2
[09:41:58] [PASSED] active-inactive
[09:41:58] [PASSED] inactive-active
[09:41:58] [PASSED] inactive-1st_or_active-inactive
[09:41:58] [PASSED] inactive-2nd_or_active-inactive
[09:41:58] [PASSED] inactive-last_or_active-inactive
[09:41:58] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[09:41:58] ============== [PASSED] xe_rtp_process_tests ===============
[09:41:58] ===================== [PASSED] xe_rtp ======================
[09:41:58] ==================== xe_wa (1 subtest) =====================
[09:41:58] ======================== xe_wa_gt =========================
[09:41:58] [PASSED] TIGERLAKE B0
[09:41:58] [PASSED] DG1 A0
[09:41:58] [PASSED] DG1 B0
[09:41:58] [PASSED] ALDERLAKE_S A0
[09:41:58] [PASSED] ALDERLAKE_S B0
[09:41:58] [PASSED] ALDERLAKE_S C0
[09:41:58] [PASSED] ALDERLAKE_S D0
[09:41:58] [PASSED] ALDERLAKE_P A0
[09:41:58] [PASSED] ALDERLAKE_P B0
[09:41:58] [PASSED] ALDERLAKE_P C0
[09:41:58] [PASSED] ALDERLAKE_S RPLS D0
[09:41:58] [PASSED] ALDERLAKE_P RPLU E0
[09:41:58] [PASSED] DG2 G10 C0
[09:41:58] [PASSED] DG2 G11 B1
[09:41:58] [PASSED] DG2 G12 A1
[09:41:58] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:41:58] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:41:58] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:41:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:41:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:41:58] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:41:58] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:41:58] ==================== [PASSED] xe_wa_gt =====================
[09:41:58] ====================== [PASSED] xe_wa ======================
[09:41:58] ============================================================
[09:41:58] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[09:41:58] Elapsed time: 42.767s total, 4.376s configuring, 38.023s building, 0.342s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:41:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:42: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=25
[09:42:30] Starting KUnit Kernel (1/1)...
[09:42:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:42:30] ============ drm_test_pick_cmdline (2 subtests) ============
[09:42:30] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:42:30] =============== drm_test_pick_cmdline_named ===============
[09:42:30] [PASSED] NTSC
[09:42:30] [PASSED] NTSC-J
[09:42:30] [PASSED] PAL
[09:42:30] [PASSED] PAL-M
[09:42:30] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:42:30] ============== [PASSED] drm_test_pick_cmdline ==============
[09:42:30] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:42:30] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:42:30] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:42:30] =========== drm_validate_clone_mode (2 subtests) ===========
[09:42:30] ============== drm_test_check_in_clone_mode ===============
[09:42:30] [PASSED] in_clone_mode
[09:42:30] [PASSED] not_in_clone_mode
[09:42:30] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:42:30] =============== drm_test_check_valid_clones ===============
[09:42:30] [PASSED] not_in_clone_mode
[09:42:30] [PASSED] valid_clone
[09:42:30] [PASSED] invalid_clone
[09:42:30] =========== [PASSED] drm_test_check_valid_clones ===========
[09:42:30] ============= [PASSED] drm_validate_clone_mode =============
[09:42:30] ============= drm_validate_modeset (1 subtest) =============
[09:42:30] [PASSED] drm_test_check_connector_changed_modeset
[09:42:30] ============== [PASSED] drm_validate_modeset ===============
[09:42:30] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:42:30] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:42:30] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:42:30] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:42:30] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:42:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:42:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:42:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:42:30] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:42:30] ============== drm_bridge_alloc (2 subtests) ===============
[09:42:30] [PASSED] drm_test_drm_bridge_alloc_basic
[09:42:30] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:42:30] ================ [PASSED] drm_bridge_alloc =================
[09:42:30] ================== drm_buddy (8 subtests) ==================
[09:42:30] [PASSED] drm_test_buddy_alloc_limit
[09:42:30] [PASSED] drm_test_buddy_alloc_optimistic
[09:42:30] [PASSED] drm_test_buddy_alloc_pessimistic
[09:42:30] [PASSED] drm_test_buddy_alloc_pathological
[09:42:30] [PASSED] drm_test_buddy_alloc_contiguous
[09:42:30] [PASSED] drm_test_buddy_alloc_clear
[09:42:30] [PASSED] drm_test_buddy_alloc_range_bias
[09:42:30] [PASSED] drm_test_buddy_fragmentation_performance
[09:42:30] ==================== [PASSED] drm_buddy ====================
[09:42:30] ============= drm_cmdline_parser (40 subtests) =============
[09:42:30] [PASSED] drm_test_cmdline_force_d_only
[09:42:30] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:42:30] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:42:30] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:42:30] [PASSED] drm_test_cmdline_force_e_only
[09:42:30] [PASSED] drm_test_cmdline_res
[09:42:30] [PASSED] drm_test_cmdline_res_vesa
[09:42:30] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:42:30] [PASSED] drm_test_cmdline_res_rblank
[09:42:30] [PASSED] drm_test_cmdline_res_bpp
[09:42:30] [PASSED] drm_test_cmdline_res_refresh
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:42:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:42:30] [PASSED] drm_test_cmdline_res_margins_force_on
[09:42:30] [PASSED] drm_test_cmdline_res_vesa_margins
[09:42:30] [PASSED] drm_test_cmdline_name
[09:42:30] [PASSED] drm_test_cmdline_name_bpp
[09:42:30] [PASSED] drm_test_cmdline_name_option
[09:42:30] [PASSED] drm_test_cmdline_name_bpp_option
[09:42:30] [PASSED] drm_test_cmdline_rotate_0
[09:42:30] [PASSED] drm_test_cmdline_rotate_90
[09:42:30] [PASSED] drm_test_cmdline_rotate_180
[09:42:30] [PASSED] drm_test_cmdline_rotate_270
[09:42:30] [PASSED] drm_test_cmdline_hmirror
[09:42:30] [PASSED] drm_test_cmdline_vmirror
[09:42:30] [PASSED] drm_test_cmdline_margin_options
[09:42:30] [PASSED] drm_test_cmdline_multiple_options
[09:42:30] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:42:30] [PASSED] drm_test_cmdline_extra_and_option
[09:42:30] [PASSED] drm_test_cmdline_freestanding_options
[09:42:30] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:42:30] [PASSED] drm_test_cmdline_panel_orientation
[09:42:30] ================ drm_test_cmdline_invalid =================
[09:42:30] [PASSED] margin_only
[09:42:30] [PASSED] interlace_only
[09:42:30] [PASSED] res_missing_x
[09:42:30] [PASSED] res_missing_y
[09:42:30] [PASSED] res_bad_y
[09:42:30] [PASSED] res_missing_y_bpp
[09:42:30] [PASSED] res_bad_bpp
[09:42:30] [PASSED] res_bad_refresh
[09:42:30] [PASSED] res_bpp_refresh_force_on_off
[09:42:30] [PASSED] res_invalid_mode
[09:42:30] [PASSED] res_bpp_wrong_place_mode
[09:42:30] [PASSED] name_bpp_refresh
[09:42:30] [PASSED] name_refresh
[09:42:30] [PASSED] name_refresh_wrong_mode
[09:42:30] [PASSED] name_refresh_invalid_mode
[09:42:30] [PASSED] rotate_multiple
[09:42:30] [PASSED] rotate_invalid_val
[09:42:30] [PASSED] rotate_truncated
[09:42:30] [PASSED] invalid_option
[09:42:30] [PASSED] invalid_tv_option
[09:42:30] [PASSED] truncated_tv_option
[09:42:30] ============ [PASSED] drm_test_cmdline_invalid =============
[09:42:30] =============== drm_test_cmdline_tv_options ===============
[09:42:30] [PASSED] NTSC
[09:42:30] [PASSED] NTSC_443
[09:42:30] [PASSED] NTSC_J
[09:42:30] [PASSED] PAL
[09:42:30] [PASSED] PAL_M
[09:42:30] [PASSED] PAL_N
[09:42:30] [PASSED] SECAM
[09:42:30] [PASSED] MONO_525
[09:42:30] [PASSED] MONO_625
[09:42:30] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:42:30] =============== [PASSED] drm_cmdline_parser ================
[09:42:30] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:42:30] [PASSED] drm_test_connector_hdmi_init_valid
[09:42:30] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:42:30] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:42:30] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:42:30] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:42:30] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:42:30] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:42:30] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:42:30] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:42:30] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:42:30] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:42:30] [PASSED] supported_formats=0x3 yuv420_allowed=1
[09:42:30] [PASSED] supported_formats=0x3 yuv420_allowed=0
[09:42:30] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:42:30] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:42:30] [PASSED] drm_test_connector_hdmi_init_null_product
[09:42:30] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:42:30] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:42:30] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:42:30] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:42:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:42:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:42:30] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:42:30] ========= drm_test_connector_hdmi_init_type_valid =========
[09:42:30] [PASSED] HDMI-A
[09:42:30] [PASSED] HDMI-B
[09:42:30] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:42:30] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:42:30] [PASSED] Unknown
[09:42:30] [PASSED] VGA
[09:42:30] [PASSED] DVI-I
[09:42:30] [PASSED] DVI-D
[09:42:30] [PASSED] DVI-A
[09:42:30] [PASSED] Composite
[09:42:30] [PASSED] SVIDEO
[09:42:30] [PASSED] LVDS
[09:42:30] [PASSED] Component
[09:42:30] [PASSED] DIN
[09:42:30] [PASSED] DP
[09:42:30] [PASSED] TV
[09:42:30] [PASSED] eDP
[09:42:30] [PASSED] Virtual
[09:42:30] [PASSED] DSI
[09:42:30] [PASSED] DPI
[09:42:30] [PASSED] Writeback
[09:42:30] [PASSED] SPI
[09:42:30] [PASSED] USB
[09:42:30] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:42:30] ============ [PASSED] drmm_connector_hdmi_init =============
[09:42:30] ============= drmm_connector_init (3 subtests) =============
[09:42:30] [PASSED] drm_test_drmm_connector_init
[09:42:30] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:42:30] ========= drm_test_drmm_connector_init_type_valid =========
[09:42:30] [PASSED] Unknown
[09:42:30] [PASSED] VGA
[09:42:30] [PASSED] DVI-I
[09:42:30] [PASSED] DVI-D
[09:42:30] [PASSED] DVI-A
[09:42:30] [PASSED] Composite
[09:42:30] [PASSED] SVIDEO
[09:42:30] [PASSED] LVDS
[09:42:30] [PASSED] Component
[09:42:30] [PASSED] DIN
[09:42:30] [PASSED] DP
[09:42:30] [PASSED] HDMI-A
[09:42:30] [PASSED] HDMI-B
[09:42:30] [PASSED] TV
[09:42:30] [PASSED] eDP
[09:42:30] [PASSED] Virtual
[09:42:30] [PASSED] DSI
[09:42:30] [PASSED] DPI
[09:42:30] [PASSED] Writeback
[09:42:30] [PASSED] SPI
[09:42:30] [PASSED] USB
[09:42:30] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:42:30] =============== [PASSED] drmm_connector_init ===============
[09:42:30] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:42:30] [PASSED] drm_test_drm_connector_dynamic_init
[09:42:30] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:42:30] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:42:30] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:42:30] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:42:30] [PASSED] Unknown
[09:42:30] [PASSED] VGA
[09:42:30] [PASSED] DVI-I
[09:42:30] [PASSED] DVI-D
[09:42:30] [PASSED] DVI-A
[09:42:30] [PASSED] Composite
[09:42:30] [PASSED] SVIDEO
[09:42:30] [PASSED] LVDS
[09:42:30] [PASSED] Component
[09:42:30] [PASSED] DIN
[09:42:30] [PASSED] DP
[09:42:30] [PASSED] HDMI-A
[09:42:30] [PASSED] HDMI-B
[09:42:30] [PASSED] TV
[09:42:30] [PASSED] eDP
[09:42:30] [PASSED] Virtual
[09:42:30] [PASSED] DSI
[09:42:30] [PASSED] DPI
[09:42:30] [PASSED] Writeback
[09:42:30] [PASSED] SPI
[09:42:30] [PASSED] USB
[09:42:30] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:42:30] ======== drm_test_drm_connector_dynamic_init_name =========
[09:42:30] [PASSED] Unknown
[09:42:30] [PASSED] VGA
[09:42:30] [PASSED] DVI-I
[09:42:30] [PASSED] DVI-D
[09:42:31] [PASSED] DVI-A
[09:42:31] [PASSED] Composite
[09:42:31] [PASSED] SVIDEO
[09:42:31] [PASSED] LVDS
[09:42:31] [PASSED] Component
[09:42:31] [PASSED] DIN
[09:42:31] [PASSED] DP
[09:42:31] [PASSED] HDMI-A
[09:42:31] [PASSED] HDMI-B
[09:42:31] [PASSED] TV
[09:42:31] [PASSED] eDP
[09:42:31] [PASSED] Virtual
[09:42:31] [PASSED] DSI
[09:42:31] [PASSED] DPI
[09:42:31] [PASSED] Writeback
[09:42:31] [PASSED] SPI
[09:42:31] [PASSED] USB
[09:42:31] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:42:31] =========== [PASSED] drm_connector_dynamic_init ============
[09:42:31] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:42:31] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:42:31] ======= drm_connector_dynamic_register (7 subtests) ========
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:42:31] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:42:31] ========= [PASSED] drm_connector_dynamic_register ==========
[09:42:31] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:42:31] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:42:31] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:42:31] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:42:31] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:42:31] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:42:31] [PASSED] NTSC
[09:42:31] [PASSED] NTSC-443
[09:42:31] [PASSED] NTSC-J
[09:42:31] [PASSED] PAL
[09:42:31] [PASSED] PAL-M
[09:42:31] [PASSED] PAL-N
[09:42:31] [PASSED] SECAM
[09:42:31] [PASSED] Mono
[09:42:31] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:42:31] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:42:31] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:42:31] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:42:31] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:42:31] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:42:31] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:42:31] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:42:31] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:42:31] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:42:31] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:42:31] [PASSED] VIC 96
[09:42:31] [PASSED] VIC 97
[09:42:31] [PASSED] VIC 101
[09:42:31] [PASSED] VIC 102
[09:42:31] [PASSED] VIC 106
[09:42:31] [PASSED] VIC 107
[09:42:31] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:42:31] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:42:31] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:42:31] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:42:31] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:42:31] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:42:31] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:42:31] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:42:31] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:42:31] [PASSED] Automatic
[09:42:31] [PASSED] Full
[09:42:31] [PASSED] Limited 16:235
[09:42:31] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:42:31] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:42:31] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:42:31] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:42:31] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:42:31] [PASSED] RGB
[09:42:31] [PASSED] YUV 4:2:0
[09:42:31] [PASSED] YUV 4:2:2
[09:42:31] [PASSED] YUV 4:4:4
[09:42:31] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:42:31] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:42:31] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:42:31] ============= drm_damage_helper (21 subtests) ==============
[09:42:31] [PASSED] drm_test_damage_iter_no_damage
[09:42:31] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:42:31] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:42:31] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:42:31] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:42:31] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:42:31] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:42:31] [PASSED] drm_test_damage_iter_simple_damage
[09:42:31] [PASSED] drm_test_damage_iter_single_damage
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:42:31] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:42:31] [PASSED] drm_test_damage_iter_damage
[09:42:31] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:42:31] [PASSED] drm_test_damage_iter_damage_one_outside
[09:42:31] [PASSED] drm_test_damage_iter_damage_src_moved
[09:42:31] [PASSED] drm_test_damage_iter_damage_not_visible
[09:42:31] ================ [PASSED] drm_damage_helper ================
[09:42:31] ============== drm_dp_mst_helper (3 subtests) ==============
[09:42:31] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:42:31] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:42:31] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:42:31] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:42:31] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:42:31] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:42:31] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:42:31] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:42:31] [PASSED] Link rate 2000000 lane count 4
[09:42:31] [PASSED] Link rate 2000000 lane count 2
[09:42:31] [PASSED] Link rate 2000000 lane count 1
[09:42:31] [PASSED] Link rate 1350000 lane count 4
[09:42:31] [PASSED] Link rate 1350000 lane count 2
[09:42:31] [PASSED] Link rate 1350000 lane count 1
[09:42:31] [PASSED] Link rate 1000000 lane count 4
[09:42:31] [PASSED] Link rate 1000000 lane count 2
[09:42:31] [PASSED] Link rate 1000000 lane count 1
[09:42:31] [PASSED] Link rate 810000 lane count 4
[09:42:31] [PASSED] Link rate 810000 lane count 2
[09:42:31] [PASSED] Link rate 810000 lane count 1
[09:42:31] [PASSED] Link rate 540000 lane count 4
[09:42:31] [PASSED] Link rate 540000 lane count 2
[09:42:31] [PASSED] Link rate 540000 lane count 1
[09:42:31] [PASSED] Link rate 270000 lane count 4
[09:42:31] [PASSED] Link rate 270000 lane count 2
[09:42:31] [PASSED] Link rate 270000 lane count 1
[09:42:31] [PASSED] Link rate 162000 lane count 4
[09:42:31] [PASSED] Link rate 162000 lane count 2
[09:42:31] [PASSED] Link rate 162000 lane count 1
[09:42:31] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:42:31] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:42:31] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:42:31] [PASSED] DP_POWER_UP_PHY with port number
[09:42:31] [PASSED] DP_POWER_DOWN_PHY with port number
[09:42:31] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:42:31] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:42:31] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:42:31] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:42:31] [PASSED] DP_QUERY_PAYLOAD with port number
[09:42:31] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:42:31] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:42:31] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:42:31] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:42:31] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:42:31] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:42:31] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:42:31] [PASSED] DP_REMOTE_I2C_READ with port number
[09:42:31] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:42:31] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:42:31] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:42:31] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:42:31] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:42:31] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:42:31] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:42:31] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:42:31] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:42:31] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:42:31] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:42:31] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:42:31] ================ [PASSED] drm_dp_mst_helper ================
[09:42:31] ================== drm_exec (7 subtests) ===================
[09:42:31] [PASSED] sanitycheck
[09:42:31] [PASSED] test_lock
[09:42:31] [PASSED] test_lock_unlock
[09:42:31] [PASSED] test_duplicates
[09:42:31] [PASSED] test_prepare
[09:42:31] [PASSED] test_prepare_array
[09:42:31] [PASSED] test_multiple_loops
[09:42:31] ==================== [PASSED] drm_exec =====================
[09:42:31] =========== drm_format_helper_test (17 subtests) ===========
[09:42:31] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:42:31] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:42:31] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:42:31] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:42:31] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:42:31] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:42:31] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:42:31] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:42:31] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:42:31] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:42:31] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:42:31] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:42:31] ==================== drm_test_fb_swab =====================
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ================ [PASSED] drm_test_fb_swab =================
[09:42:31] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:42:31] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:42:31] [PASSED] single_pixel_source_buffer
[09:42:31] [PASSED] single_pixel_clip_rectangle
[09:42:31] [PASSED] well_known_colors
[09:42:31] [PASSED] destination_pitch
[09:42:31] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:42:31] ================= drm_test_fb_clip_offset =================
[09:42:31] [PASSED] pass through
[09:42:31] [PASSED] horizontal offset
[09:42:31] [PASSED] vertical offset
[09:42:31] [PASSED] horizontal and vertical offset
[09:42:31] [PASSED] horizontal offset (custom pitch)
[09:42:31] [PASSED] vertical offset (custom pitch)
[09:42:31] [PASSED] horizontal and vertical offset (custom pitch)
[09:42:31] ============= [PASSED] drm_test_fb_clip_offset =============
[09:42:31] =================== drm_test_fb_memcpy ====================
[09:42:31] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:42:31] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:42:31] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:42:31] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:42:31] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:42:31] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:42:31] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:42:31] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:42:31] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:42:31] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:42:31] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:42:31] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:42:31] =============== [PASSED] drm_test_fb_memcpy ================
[09:42:31] ============= [PASSED] drm_format_helper_test ==============
[09:42:31] ================= drm_format (18 subtests) =================
[09:42:31] [PASSED] drm_test_format_block_width_invalid
[09:42:31] [PASSED] drm_test_format_block_width_one_plane
[09:42:31] [PASSED] drm_test_format_block_width_two_plane
[09:42:31] [PASSED] drm_test_format_block_width_three_plane
[09:42:31] [PASSED] drm_test_format_block_width_tiled
[09:42:31] [PASSED] drm_test_format_block_height_invalid
[09:42:31] [PASSED] drm_test_format_block_height_one_plane
[09:42:31] [PASSED] drm_test_format_block_height_two_plane
[09:42:31] [PASSED] drm_test_format_block_height_three_plane
[09:42:31] [PASSED] drm_test_format_block_height_tiled
[09:42:31] [PASSED] drm_test_format_min_pitch_invalid
[09:42:31] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:42:31] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:42:31] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:42:31] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:42:31] [PASSED] drm_test_format_min_pitch_two_plane
[09:42:31] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:42:31] [PASSED] drm_test_format_min_pitch_tiled
[09:42:31] =================== [PASSED] drm_format ====================
[09:42:31] ============== drm_framebuffer (10 subtests) ===============
[09:42:31] ========== drm_test_framebuffer_check_src_coords ==========
[09:42:31] [PASSED] Success: source fits into fb
[09:42:31] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:42:31] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:42:31] [PASSED] Fail: overflowing fb with source width
[09:42:31] [PASSED] Fail: overflowing fb with source height
[09:42:31] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:42:31] [PASSED] drm_test_framebuffer_cleanup
[09:42:31] =============== drm_test_framebuffer_create ===============
[09:42:31] [PASSED] ABGR8888 normal sizes
[09:42:31] [PASSED] ABGR8888 max sizes
[09:42:31] [PASSED] ABGR8888 pitch greater than min required
[09:42:31] [PASSED] ABGR8888 pitch less than min required
[09:42:31] [PASSED] ABGR8888 Invalid width
[09:42:31] [PASSED] ABGR8888 Invalid buffer handle
[09:42:31] [PASSED] No pixel format
[09:42:31] [PASSED] ABGR8888 Width 0
[09:42:31] [PASSED] ABGR8888 Height 0
[09:42:31] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:42:31] [PASSED] ABGR8888 Large buffer offset
[09:42:31] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:42:31] [PASSED] ABGR8888 Invalid flag
[09:42:31] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:42:31] [PASSED] ABGR8888 Valid buffer modifier
[09:42:31] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:42:31] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] NV12 Normal sizes
[09:42:31] [PASSED] NV12 Max sizes
[09:42:31] [PASSED] NV12 Invalid pitch
[09:42:31] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:42:31] [PASSED] NV12 different modifier per-plane
[09:42:31] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:42:31] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] NV12 Modifier for inexistent plane
[09:42:31] [PASSED] NV12 Handle for inexistent plane
[09:42:31] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:42:31] [PASSED] YVU420 Normal sizes
[09:42:31] [PASSED] YVU420 Max sizes
[09:42:31] [PASSED] YVU420 Invalid pitch
[09:42:31] [PASSED] YVU420 Different pitches
[09:42:31] [PASSED] YVU420 Different buffer offsets/pitches
[09:42:31] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:42:31] [PASSED] YVU420 Valid modifier
[09:42:31] [PASSED] YVU420 Different modifiers per plane
[09:42:31] [PASSED] YVU420 Modifier for inexistent plane
[09:42:31] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:42:31] [PASSED] X0L2 Normal sizes
[09:42:31] [PASSED] X0L2 Max sizes
[09:42:31] [PASSED] X0L2 Invalid pitch
[09:42:31] [PASSED] X0L2 Pitch greater than minimum required
[09:42:31] [PASSED] X0L2 Handle for inexistent plane
[09:42:31] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:42:31] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:42:31] [PASSED] X0L2 Valid modifier
[09:42:31] [PASSED] X0L2 Modifier for inexistent plane
[09:42:31] =========== [PASSED] drm_test_framebuffer_create ===========
[09:42:31] [PASSED] drm_test_framebuffer_free
[09:42:31] [PASSED] drm_test_framebuffer_init
[09:42:31] [PASSED] drm_test_framebuffer_init_bad_format
[09:42:31] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:42:31] [PASSED] drm_test_framebuffer_lookup
[09:42:31] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:42:31] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:42:31] ================= [PASSED] drm_framebuffer =================
[09:42:31] ================ drm_gem_shmem (8 subtests) ================
[09:42:31] [PASSED] drm_gem_shmem_test_obj_create
[09:42:31] [PASSED] drm_gem_shmem_test_obj_create_private
[09:42:31] [PASSED] drm_gem_shmem_test_pin_pages
[09:42:31] [PASSED] drm_gem_shmem_test_vmap
[09:42:31] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:42:31] [PASSED] drm_gem_shmem_test_get_sg_table
[09:42:31] [PASSED] drm_gem_shmem_test_madvise
[09:42:31] [PASSED] drm_gem_shmem_test_purge
[09:42:31] ================== [PASSED] drm_gem_shmem ==================
[09:42:31] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:42:31] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:42:31] [PASSED] Automatic
[09:42:31] [PASSED] Full
[09:42:31] [PASSED] Limited 16:235
[09:42:31] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:42:31] [PASSED] drm_test_check_disable_connector
[09:42:31] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:42:31] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:42:31] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:42:31] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:42:31] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:42:31] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:42:31] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:42:31] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:42:31] [PASSED] drm_test_check_output_bpc_dvi
[09:42:31] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:42:31] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:42:31] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:42:31] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:42:31] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:42:31] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:42:31] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:42:31] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:42:31] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:42:31] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:42:31] [PASSED] drm_test_check_broadcast_rgb_value
[09:42:31] [PASSED] drm_test_check_bpc_8_value
[09:42:31] [PASSED] drm_test_check_bpc_10_value
[09:42:31] [PASSED] drm_test_check_bpc_12_value
[09:42:31] [PASSED] drm_test_check_format_value
[09:42:31] [PASSED] drm_test_check_tmds_char_value
[09:42:31] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:42:31] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:42:31] [PASSED] drm_test_check_mode_valid
[09:42:31] [PASSED] drm_test_check_mode_valid_reject
[09:42:31] [PASSED] drm_test_check_mode_valid_reject_rate
[09:42:31] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:42:31] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:42:31] ================= drm_managed (2 subtests) =================
[09:42:31] [PASSED] drm_test_managed_release_action
[09:42:31] [PASSED] drm_test_managed_run_action
[09:42:31] =================== [PASSED] drm_managed ===================
[09:42:31] =================== drm_mm (6 subtests) ====================
[09:42:31] [PASSED] drm_test_mm_init
[09:42:31] [PASSED] drm_test_mm_debug
[09:42:31] [PASSED] drm_test_mm_align32
[09:42:31] [PASSED] drm_test_mm_align64
[09:42:31] [PASSED] drm_test_mm_lowest
[09:42:31] [PASSED] drm_test_mm_highest
[09:42:31] ===================== [PASSED] drm_mm ======================
[09:42:31] ============= drm_modes_analog_tv (5 subtests) =============
[09:42:31] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:42:31] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:42:31] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:42:31] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:42:31] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:42:31] =============== [PASSED] drm_modes_analog_tv ===============
[09:42:31] ============== drm_plane_helper (2 subtests) ===============
[09:42:31] =============== drm_test_check_plane_state ================
[09:42:31] [PASSED] clipping_simple
[09:42:31] [PASSED] clipping_rotate_reflect
[09:42:31] [PASSED] positioning_simple
[09:42:31] [PASSED] upscaling
[09:42:31] [PASSED] downscaling
[09:42:31] [PASSED] rounding1
[09:42:31] [PASSED] rounding2
[09:42:31] [PASSED] rounding3
[09:42:31] [PASSED] rounding4
[09:42:31] =========== [PASSED] drm_test_check_plane_state ============
[09:42:31] =========== drm_test_check_invalid_plane_state ============
[09:42:31] [PASSED] positioning_invalid
[09:42:31] [PASSED] upscaling_invalid
[09:42:31] [PASSED] downscaling_invalid
[09:42:31] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:42:31] ================ [PASSED] drm_plane_helper =================
[09:42:31] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:42:31] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:42:31] [PASSED] None
[09:42:31] [PASSED] PAL
[09:42:31] [PASSED] NTSC
[09:42:31] [PASSED] Both, NTSC Default
[09:42:31] [PASSED] Both, PAL Default
[09:42:31] [PASSED] Both, NTSC Default, with PAL on command-line
[09:42:31] [PASSED] Both, PAL Default, with NTSC on command-line
[09:42:31] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:42:31] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:42:31] ================== drm_rect (9 subtests) ===================
[09:42:31] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:42:31] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:42:31] [PASSED] drm_test_rect_clip_scaled_clipped
[09:42:31] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:42:31] ================= drm_test_rect_intersect =================
[09:42:31] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:42:31] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:42:31] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:42:31] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:42:31] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:42:31] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:42:31] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:42:31] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:42:31] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:42:31] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:42:31] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:42:31] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:42:31] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:42:31] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:42:31] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:42:31] ============= [PASSED] drm_test_rect_intersect =============
[09:42:31] ================ drm_test_rect_calc_hscale ================
[09:42:31] [PASSED] normal use
[09:42:31] [PASSED] out of max range
[09:42:31] [PASSED] out of min range
[09:42:31] [PASSED] zero dst
[09:42:31] [PASSED] negative src
[09:42:31] [PASSED] negative dst
[09:42:31] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:42:31] ================ drm_test_rect_calc_vscale ================
[09:42:31] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[09:42:31] [PASSED] out of max range
[09:42:31] [PASSED] out of min range
[09:42:31] [PASSED] zero dst
[09:42:31] [PASSED] negative src
[09:42:31] [PASSED] negative dst
[09:42:31] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:42:31] ================== drm_test_rect_rotate ===================
[09:42:31] [PASSED] reflect-x
[09:42:31] [PASSED] reflect-y
[09:42:31] [PASSED] rotate-0
[09:42:31] [PASSED] rotate-90
[09:42:31] [PASSED] rotate-180
[09:42:31] [PASSED] rotate-270
[09:42:31] ============== [PASSED] drm_test_rect_rotate ===============
[09:42:31] ================ drm_test_rect_rotate_inv =================
[09:42:31] [PASSED] reflect-x
[09:42:31] [PASSED] reflect-y
[09:42:31] [PASSED] rotate-0
[09:42:31] [PASSED] rotate-90
[09:42:31] [PASSED] rotate-180
[09:42:31] [PASSED] rotate-270
[09:42:31] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:42:31] ==================== [PASSED] drm_rect =====================
[09:42:31] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:42:31] ============ drm_test_sysfb_build_fourcc_list =============
[09:42:31] [PASSED] no native formats
[09:42:31] [PASSED] XRGB8888 as native format
[09:42:31] [PASSED] remove duplicates
[09:42:31] [PASSED] convert alpha formats
[09:42:31] [PASSED] random formats
[09:42:31] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:42:31] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:42:31] ============================================================
[09:42:31] Testing complete. Ran 622 tests: passed: 622
[09:42:31] Elapsed time: 32.139s total, 1.623s configuring, 29.998s building, 0.502s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:42:31] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:42:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[09:42:41] Starting KUnit Kernel (1/1)...
[09:42:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:42:42] ================= ttm_device (5 subtests) ==================
[09:42:42] [PASSED] ttm_device_init_basic
[09:42:42] [PASSED] ttm_device_init_multiple
[09:42:42] [PASSED] ttm_device_fini_basic
[09:42:42] [PASSED] ttm_device_init_no_vma_man
[09:42:42] ================== ttm_device_init_pools ==================
[09:42:42] [PASSED] No DMA allocations, no DMA32 required
[09:42:42] [PASSED] DMA allocations, DMA32 required
[09:42:42] [PASSED] No DMA allocations, DMA32 required
[09:42:42] [PASSED] DMA allocations, no DMA32 required
[09:42:42] ============== [PASSED] ttm_device_init_pools ==============
[09:42:42] =================== [PASSED] ttm_device ====================
[09:42:42] ================== ttm_pool (8 subtests) ===================
[09:42:42] ================== ttm_pool_alloc_basic ===================
[09:42:42] [PASSED] One page
[09:42:42] [PASSED] More than one page
[09:42:42] [PASSED] Above the allocation limit
[09:42:42] [PASSED] One page, with coherent DMA mappings enabled
[09:42:42] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:42:42] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:42:42] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:42:42] [PASSED] One page
[09:42:42] [PASSED] More than one page
[09:42:42] [PASSED] Above the allocation limit
[09:42:42] [PASSED] One page, with coherent DMA mappings enabled
[09:42:42] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:42:42] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:42:42] [PASSED] ttm_pool_alloc_order_caching_match
[09:42:42] [PASSED] ttm_pool_alloc_caching_mismatch
[09:42:42] [PASSED] ttm_pool_alloc_order_mismatch
[09:42:42] [PASSED] ttm_pool_free_dma_alloc
[09:42:42] [PASSED] ttm_pool_free_no_dma_alloc
[09:42:42] [PASSED] ttm_pool_fini_basic
[09:42:42] ==================== [PASSED] ttm_pool =====================
[09:42:42] ================ ttm_resource (8 subtests) =================
[09:42:42] ================= ttm_resource_init_basic =================
[09:42:42] [PASSED] Init resource in TTM_PL_SYSTEM
[09:42:42] [PASSED] Init resource in TTM_PL_VRAM
[09:42:42] [PASSED] Init resource in a private placement
[09:42:42] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:42:42] ============= [PASSED] ttm_resource_init_basic =============
[09:42:42] [PASSED] ttm_resource_init_pinned
[09:42:42] [PASSED] ttm_resource_fini_basic
[09:42:42] [PASSED] ttm_resource_manager_init_basic
[09:42:42] [PASSED] ttm_resource_manager_usage_basic
[09:42:42] [PASSED] ttm_resource_manager_set_used_basic
[09:42:42] [PASSED] ttm_sys_man_alloc_basic
[09:42:42] [PASSED] ttm_sys_man_free_basic
[09:42:42] ================== [PASSED] ttm_resource ===================
[09:42:42] =================== ttm_tt (15 subtests) ===================
[09:42:42] ==================== ttm_tt_init_basic ====================
[09:42:42] [PASSED] Page-aligned size
[09:42:42] [PASSED] Extra pages requested
[09:42:42] ================ [PASSED] ttm_tt_init_basic ================
[09:42:42] [PASSED] ttm_tt_init_misaligned
[09:42:42] [PASSED] ttm_tt_fini_basic
[09:42:42] [PASSED] ttm_tt_fini_sg
[09:42:42] [PASSED] ttm_tt_fini_shmem
[09:42:42] [PASSED] ttm_tt_create_basic
[09:42:42] [PASSED] ttm_tt_create_invalid_bo_type
[09:42:42] [PASSED] ttm_tt_create_ttm_exists
[09:42:42] [PASSED] ttm_tt_create_failed
[09:42:42] [PASSED] ttm_tt_destroy_basic
[09:42:42] [PASSED] ttm_tt_populate_null_ttm
[09:42:42] [PASSED] ttm_tt_populate_populated_ttm
[09:42:42] [PASSED] ttm_tt_unpopulate_basic
[09:42:42] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:42:42] [PASSED] ttm_tt_swapin_basic
[09:42:42] ===================== [PASSED] ttm_tt ======================
[09:42:42] =================== ttm_bo (14 subtests) ===================
[09:42:42] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:42:42] [PASSED] Cannot be interrupted and sleeps
[09:42:42] [PASSED] Cannot be interrupted, locks straight away
[09:42:42] [PASSED] Can be interrupted, sleeps
[09:42:42] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:42:42] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:42:42] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:42:42] [PASSED] ttm_bo_reserve_double_resv
[09:42:42] [PASSED] ttm_bo_reserve_interrupted
[09:42:42] [PASSED] ttm_bo_reserve_deadlock
[09:42:42] [PASSED] ttm_bo_unreserve_basic
[09:42:42] [PASSED] ttm_bo_unreserve_pinned
[09:42:42] [PASSED] ttm_bo_unreserve_bulk
[09:42:42] [PASSED] ttm_bo_fini_basic
[09:42:42] [PASSED] ttm_bo_fini_shared_resv
[09:42:42] [PASSED] ttm_bo_pin_basic
[09:42:42] [PASSED] ttm_bo_pin_unpin_resource
[09:42:42] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:42:42] ===================== [PASSED] ttm_bo ======================
[09:42:42] ============== ttm_bo_validate (21 subtests) ===============
[09:42:42] ============== ttm_bo_init_reserved_sys_man ===============
[09:42:42] [PASSED] Buffer object for userspace
[09:42:42] [PASSED] Kernel buffer object
[09:42:42] [PASSED] Shared buffer object
[09:42:42] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:42:42] ============== ttm_bo_init_reserved_mock_man ==============
[09:42:42] [PASSED] Buffer object for userspace
[09:42:42] [PASSED] Kernel buffer object
[09:42:42] [PASSED] Shared buffer object
[09:42:42] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:42:42] [PASSED] ttm_bo_init_reserved_resv
[09:42:42] ================== ttm_bo_validate_basic ==================
[09:42:42] [PASSED] Buffer object for userspace
[09:42:42] [PASSED] Kernel buffer object
[09:42:42] [PASSED] Shared buffer object
[09:42:42] ============== [PASSED] ttm_bo_validate_basic ==============
[09:42:42] [PASSED] ttm_bo_validate_invalid_placement
[09:42:42] ============= ttm_bo_validate_same_placement ==============
[09:42:42] [PASSED] System manager
[09:42:42] [PASSED] VRAM manager
[09:42:42] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:42:42] [PASSED] ttm_bo_validate_failed_alloc
[09:42:42] [PASSED] ttm_bo_validate_pinned
[09:42:42] [PASSED] ttm_bo_validate_busy_placement
[09:42:42] ================ ttm_bo_validate_multihop =================
[09:42:42] [PASSED] Buffer object for userspace
[09:42:42] [PASSED] Kernel buffer object
[09:42:42] [PASSED] Shared buffer object
[09:42:42] ============ [PASSED] ttm_bo_validate_multihop =============
[09:42:42] ========== ttm_bo_validate_no_placement_signaled ==========
[09:42:42] [PASSED] Buffer object in system domain, no page vector
[09:42:42] [PASSED] Buffer object in system domain with an existing page vector
[09:42:42] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:42:42] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:42:42] [PASSED] Buffer object for userspace
[09:42:42] [PASSED] Kernel buffer object
[09:42:42] [PASSED] Shared buffer object
[09:42:42] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:42:42] [PASSED] ttm_bo_validate_move_fence_signaled
[09:42:42] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:42:42] [PASSED] Waits for GPU
[09:42:42] [PASSED] Tries to lock straight away
[09:42:42] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:42:42] [PASSED] ttm_bo_validate_happy_evict
[09:42:42] [PASSED] ttm_bo_validate_all_pinned_evict
[09:42:42] [PASSED] ttm_bo_validate_allowed_only_evict
[09:42:42] [PASSED] ttm_bo_validate_deleted_evict
[09:42:42] [PASSED] ttm_bo_validate_busy_domain_evict
[09:42:42] [PASSED] ttm_bo_validate_evict_gutting
[09:42:42] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:42:42] ================= [PASSED] ttm_bo_validate =================
[09:42:42] ============================================================
[09:42:42] Testing complete. Ran 101 tests: passed: 101
[09:42:42] Elapsed time: 11.082s total, 1.709s configuring, 9.107s building, 0.231s 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
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (7 preceding siblings ...)
2025-10-22 9:42 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-22 10:00 ` Patchwork
2025-10-22 11:02 ` ✓ Xe.CI.BAT: success " Patchwork
2025-10-22 13:13 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-22 10:00 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Use display parent interface for runtime pm
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 126bfe822b7fa02f01008cf6f712bd777b1d625b
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/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
+ 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
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (8 preceding siblings ...)
2025-10-22 10:00 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-22 11:02 ` Patchwork
2025-10-22 13:13 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-22 11:02 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 866 bytes --]
== Series Details ==
Series: Use display parent interface for runtime pm
URL : https://patchwork.freedesktop.org/series/156308/
State : success
== Summary ==
CI Bug Log - changes from xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b_BAT -> xe-pw-156308v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b -> xe-pw-156308v1
IGT_8594: 8594
xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b: 126bfe822b7fa02f01008cf6f712bd777b1d625b
xe-pw-156308v1: 156308v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/index.html
[-- Attachment #2: Type: text/html, Size: 1414 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.Full: failure for Use display parent interface for runtime pm
2025-10-22 8:55 [PATCH 0/6] Use display parent interface for runtime pm Jouni Högander
` (9 preceding siblings ...)
2025-10-22 11:02 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-10-22 13:13 ` Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-22 13:13 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 43598 bytes --]
== Series Details ==
Series: Use display parent interface for runtime pm
URL : https://patchwork.freedesktop.org/series/156308/
State : failure
== Summary ==
CI Bug Log - changes from xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b_FULL -> xe-pw-156308v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156308v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156308v1_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-156308v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_ccs@suspend-resume:
- shard-bmg: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-4/igt@xe_ccs@suspend-resume.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-4/igt@xe_ccs@suspend-resume.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-bmg: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
#### Warnings ####
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][5] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
Known issues
------------
Here are the changes found in xe-pw-156308v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1:
- shard-adlp: [PASS][7] -> [DMESG-FAIL][8] ([Intel XE#4543]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#787]) +20 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][17] -> [INCOMPLETE][18] ([Intel XE#6168] / [i915#14968])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#1727] / [Intel XE#3113])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#373]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2320]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-64x64:
- shard-bmg: [PASS][26] -> [DMESG-WARN][27] ([Intel XE#4626]) +1 other test dmesg-warn
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x64.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2291]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-adlp: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#2953] / [Intel XE#4173]) +12 other tests dmesg-warn
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#1475])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#1340])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4331])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#5425])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2316]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#301]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#4543] / [Intel XE#5208])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#4543]) +8 other tests dmesg-warn
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-9/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#5390]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#651]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#653]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2313]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#1503])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_hdr@static-toggle.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#2925])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#4596])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#5020])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2763]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1439] / [Intel XE#836])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@pr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#3414])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2330])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#4459]) +1 other test fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#6360]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#5300])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_eudebug@connect-user:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4837]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@xe_eudebug@connect-user.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#4518])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#6321])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2322]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#288]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2360])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4837]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_exec_system_allocator@fault-threads-same-page-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#4915]) +58 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_exec_system_allocator@fault-threads-same-page-benchmark.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4943]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#3573]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2236])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#4733])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#944])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#944])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#4351])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][87] ([Intel XE#6054]) -> [PASS][88] +3 other tests pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][89] ([Intel XE#3884]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-adlp: [DMESG-WARN][91] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][92] +1 other test pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][93] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][95] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][97] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][99] ([Intel XE#2291]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][101] ([Intel XE#1475]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][103] ([Intel XE#2316]) -> [PASS][104] +2 other tests pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a6:
- shard-dg2-set2: [INCOMPLETE][105] ([Intel XE#2049] / [Intel XE#4842]) -> [PASS][106] +1 other test pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-434/igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a6.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a6.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][107] ([Intel XE#5208]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-8/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][109] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][111] ([Intel XE#4543]) -> [PASS][112] +5 other tests pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x:
- shard-adlp: [DMESG-FAIL][113] ([Intel XE#4543]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][115] ([Intel XE#4596]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][117] ([Intel XE#1435]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][119] ([Intel XE#5893]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
#### Warnings ####
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [DMESG-FAIL][121] ([Intel XE#4543]) -> [FAIL][122] ([Intel XE#3884])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][124] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][125] ([Intel XE#2341]) -> [FAIL][126] ([Intel XE#1178])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_content_protection@srm.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-3/igt@kms_content_protection@srm.html
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][127] ([Intel XE#4543]) -> [TIMEOUT][128] ([Intel XE#4543]) +1 other test timeout
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-4/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/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][129] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-WARN][130] ([Intel XE#2953] / [Intel XE#4173])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][131] ([Intel XE#5390]) -> [SKIP][132] ([Intel XE#2312]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][133] ([Intel XE#2312]) -> [SKIP][134] ([Intel XE#5390]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][135] ([Intel XE#2311]) -> [SKIP][136] ([Intel XE#2312]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#2311]) +11 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][139] ([Intel XE#2312]) -> [SKIP][140] ([Intel XE#2313]) +12 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][141] ([Intel XE#2313]) -> [SKIP][142] ([Intel XE#2312]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][143] ([Intel XE#1729]) -> [SKIP][144] ([Intel XE#2426])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][145] ([Intel XE#5625]) -> [FAIL][146] ([Intel XE#6353])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][147] ([Intel XE#5466]) -> [ABORT][148] ([Intel XE#4917] / [Intel XE#5466])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-bmg: [ABORT][149] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][150] ([Intel XE#5466] / [Intel XE#5530])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[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#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[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#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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[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#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4626
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[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#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[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#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6353
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
Build changes
-------------
* Linux: xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b -> xe-pw-156308v1
IGT_8594: 8594
xe-3963-126bfe822b7fa02f01008cf6f712bd777b1d625b: 126bfe822b7fa02f01008cf6f712bd777b1d625b
xe-pw-156308v1: 156308v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156308v1/index.html
[-- Attachment #2: Type: text/html, Size: 51377 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread