* [PATCH 1/4] drm/i915/fbdev: stop debug logging i915_ggtt_offset()
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
@ 2026-02-27 17:17 ` Jani Nikula
2026-03-02 20:06 ` Michał Grzelak
2026-02-27 17:17 ` [PATCH 2/4] drm/i915: add VMA to parent interface Jani Nikula
` (6 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Jani Nikula @ 2026-02-27 17:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
The debug logging in fbdev is the only user of i915_ggtt_offset() in
display code. Just stop doing it to drop a dependency on i915_vma.h.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbdev.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index 44f4fcce526e..bdaaf3edba0c 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -47,7 +47,6 @@
#include <drm/drm_managed.h>
#include <drm/drm_print.h>
-#include "i915_vma.h"
#include "intel_bo.h"
#include "intel_display_core.h"
#include "intel_display_rpm.h"
@@ -343,9 +342,7 @@ int intel_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
/* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
- drm_dbg_kms(display->drm, "allocated %dx%d fb: 0x%08x\n",
- fb->base.width, fb->base.height,
- i915_ggtt_offset(vma));
+ drm_dbg_kms(display->drm, "allocated %dx%d fb\n", fb->base.width, fb->base.height);
ifbdev->fb = fb;
ifbdev->vma = vma;
ifbdev->vma_flags = flags;
--
2.47.3
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 1/4] drm/i915/fbdev: stop debug logging i915_ggtt_offset()
2026-02-27 17:17 ` [PATCH 1/4] drm/i915/fbdev: stop debug logging i915_ggtt_offset() Jani Nikula
@ 2026-03-02 20:06 ` Michał Grzelak
2026-03-03 14:16 ` Jani Nikula
0 siblings, 1 reply; 16+ messages in thread
From: Michał Grzelak @ 2026-03-02 20:06 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
[-- Attachment #1: Type: text/plain, Size: 304 bytes --]
On Fri, 27 Feb 2026, Jani Nikula wrote:
> The debug logging in fbdev is the only user of i915_ggtt_offset() in
> display code. Just stop doing it to drop a dependency on i915_vma.h.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
BR,
Michał
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 1/4] drm/i915/fbdev: stop debug logging i915_ggtt_offset()
2026-03-02 20:06 ` Michał Grzelak
@ 2026-03-03 14:16 ` Jani Nikula
0 siblings, 0 replies; 16+ messages in thread
From: Jani Nikula @ 2026-03-03 14:16 UTC (permalink / raw)
To: Michał Grzelak; +Cc: intel-gfx, intel-xe
On Mon, 02 Mar 2026, Michał Grzelak <michal.grzelak@intel.com> wrote:
> On Fri, 27 Feb 2026, Jani Nikula wrote:
>> The debug logging in fbdev is the only user of i915_ggtt_offset() in
>> display code. Just stop doing it to drop a dependency on i915_vma.h.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Thanks for the review, series pushed to drm-intel-next.
BR,
Jani.
>
> BR,
> Michał
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/4] drm/i915: add VMA to parent interface
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
2026-02-27 17:17 ` [PATCH 1/4] drm/i915/fbdev: stop debug logging i915_ggtt_offset() Jani Nikula
@ 2026-02-27 17:17 ` Jani Nikula
2026-03-02 20:07 ` Michał Grzelak
2026-03-03 16:11 ` Ville Syrjälä
2026-02-27 17:17 ` [PATCH 3/4] drm/xe/compat: remove i915_vma.h from compat Jani Nikula
` (5 subsequent siblings)
7 siblings, 2 replies; 16+ messages in thread
From: Jani Nikula @ 2026-02-27 17:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
It's unclear what the direction of the VMA abstraction in the parent
interface should be, but convert i915_vma_fence_id() to parent interface
for starters. This paves the way for making struct i915_vma opaque
towards display.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 5 ++---
drivers/gpu/drm/i915/display/intel_parent.c | 9 +++++++++
drivers/gpu/drm/i915/display/intel_parent.h | 3 +++
drivers/gpu/drm/i915/i915_driver.c | 1 +
drivers/gpu/drm/i915/i915_vma.c | 10 ++++++++++
drivers/gpu/drm/i915/i915_vma.h | 7 ++-----
| 2 --
include/drm/intel/display_parent_interface.h | 7 +++++++
8 files changed, 34 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 91de38379282..3e9b3e532499 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -45,7 +45,6 @@
#include <drm/drm_fourcc.h>
#include <drm/drm_print.h>
-#include "i915_vma.h"
#include "i9xx_plane_regs.h"
#include "intel_de.h"
#include "intel_display_device.h"
@@ -1463,7 +1462,7 @@ static void intel_fbc_update_state(struct intel_atomic_state *state,
!intel_fbc_has_fences(display));
if (plane_state->flags & PLANE_HAS_FENCE)
- fbc_state->fence_id = i915_vma_fence_id(plane_state->ggtt_vma);
+ fbc_state->fence_id = intel_parent_vma_fence_id(display, plane_state->ggtt_vma);
else
fbc_state->fence_id = -1;
@@ -1490,7 +1489,7 @@ static bool intel_fbc_is_fence_ok(const struct intel_plane_state *plane_state)
*/
return DISPLAY_VER(display) >= 9 ||
(plane_state->flags & PLANE_HAS_FENCE &&
- i915_vma_fence_id(plane_state->ggtt_vma) != -1);
+ intel_parent_vma_fence_id(display, plane_state->ggtt_vma) != -1);
}
static bool intel_fbc_is_cfb_ok(const struct intel_plane_state *plane_state)
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index 89f78ca1cd15..0c5962cb2f6d 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -317,6 +317,15 @@ void intel_parent_stolen_node_free(struct intel_display *display, const struct i
display->parent->stolen->node_free(node);
}
+/* vma */
+int intel_parent_vma_fence_id(struct intel_display *display, const struct i915_vma *vma)
+{
+ if (!display->parent->vma)
+ return -1;
+
+ return display->parent->vma->fence_id(vma);
+}
+
/* generic */
void intel_parent_fence_priority_display(struct intel_display *display, struct dma_fence *fence)
{
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 2317482ef072..6e7d09133aee 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -102,6 +102,9 @@ u64 intel_parent_stolen_node_size(struct intel_display *display, const struct in
struct intel_stolen_node *intel_parent_stolen_node_alloc(struct intel_display *display);
void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node);
+/* vma */
+int intel_parent_vma_fence_id(struct intel_display *display, const struct i915_vma *vma);
+
/* generic */
bool intel_parent_has_auxccs(struct intel_display *display);
bool intel_parent_has_fenced_regions(struct intel_display *display);
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index 5f77e891604d..18f912043f90 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -775,6 +775,7 @@ static const struct intel_display_parent_interface parent = {
.rpm = &i915_display_rpm_interface,
.rps = &i915_display_rps_interface,
.stolen = &i915_display_stolen_interface,
+ .vma = &i915_display_vma_interface,
.fence_priority_display = fence_priority_display,
.has_auxccs = has_auxccs,
diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
index afc192d9931b..6a3a4d4244dc 100644
--- a/drivers/gpu/drm/i915/i915_vma.c
+++ b/drivers/gpu/drm/i915/i915_vma.c
@@ -27,6 +27,7 @@
#include <drm/drm_gem.h>
#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
#include "display/intel_fb.h"
#include "display/intel_frontbuffer.h"
@@ -2332,3 +2333,12 @@ int __init i915_vma_module_init(void)
return 0;
}
+
+static int i915_vma_fence_id(const struct i915_vma *vma)
+{
+ return vma->fence ? vma->fence->id : -1;
+}
+
+const struct intel_display_vma_interface i915_display_vma_interface = {
+ .fence_id = i915_vma_fence_id,
+};
diff --git a/drivers/gpu/drm/i915/i915_vma.h b/drivers/gpu/drm/i915/i915_vma.h
index 8054047840aa..fa2d9b429db6 100644
--- a/drivers/gpu/drm/i915/i915_vma.h
+++ b/drivers/gpu/drm/i915/i915_vma.h
@@ -404,11 +404,6 @@ i915_vma_unpin_fence(struct i915_vma *vma)
__i915_vma_unpin_fence(vma);
}
-static inline int i915_vma_fence_id(const struct i915_vma *vma)
-{
- return vma->fence ? vma->fence->id : -1;
-}
-
void i915_vma_parked(struct intel_gt *gt);
static inline bool i915_vma_is_scanout(const struct i915_vma *vma)
@@ -481,4 +476,6 @@ int i915_vma_module_init(void);
I915_SELFTEST_DECLARE(int i915_vma_get_pages(struct i915_vma *vma));
I915_SELFTEST_DECLARE(void i915_vma_put_pages(struct i915_vma *vma));
+extern const struct intel_display_vma_interface i915_display_vma_interface;
+
#endif
--git a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
index c4b5adaaa99a..da1d97b48fee 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
@@ -26,8 +26,6 @@ struct i915_vma {
struct xe_ggtt_node *node;
};
-#define i915_vma_fence_id(vma) -1
-
static inline u32 i915_ggtt_offset(const struct i915_vma *vma)
{
return xe_ggtt_node_addr(vma->node);
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index b4b0f58ae3ee..d02ab7cc1c92 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -149,6 +149,10 @@ struct intel_display_stolen_interface {
void (*node_free)(const struct intel_stolen_node *node);
};
+struct intel_display_vma_interface {
+ int (*fence_id)(const struct i915_vma *vma);
+};
+
/**
* struct intel_display_parent_interface - services parent driver provides to display
*
@@ -198,6 +202,9 @@ struct intel_display_parent_interface {
/** @stolen: Stolen memory. */
const struct intel_display_stolen_interface *stolen;
+ /** @vma: VMA interface. Optional. */
+ const struct intel_display_vma_interface *vma;
+
/* Generic independent functions */
struct {
/** @fence_priority_display: Set display priority. Optional. */
--
2.47.3
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 2/4] drm/i915: add VMA to parent interface
2026-02-27 17:17 ` [PATCH 2/4] drm/i915: add VMA to parent interface Jani Nikula
@ 2026-03-02 20:07 ` Michał Grzelak
2026-03-03 16:11 ` Ville Syrjälä
1 sibling, 0 replies; 16+ messages in thread
From: Michał Grzelak @ 2026-03-02 20:07 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
[-- Attachment #1: Type: text/plain, Size: 396 bytes --]
On Fri, 27 Feb 2026, Jani Nikula wrote:
> It's unclear what the direction of the VMA abstraction in the parent
> interface should be, but convert i915_vma_fence_id() to parent interface
> for starters. This paves the way for making struct i915_vma opaque
> towards display.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
BR,
Michał
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 2/4] drm/i915: add VMA to parent interface
2026-02-27 17:17 ` [PATCH 2/4] drm/i915: add VMA to parent interface Jani Nikula
2026-03-02 20:07 ` Michał Grzelak
@ 2026-03-03 16:11 ` Ville Syrjälä
2026-03-04 10:55 ` Jani Nikula
1 sibling, 1 reply; 16+ messages in thread
From: Ville Syrjälä @ 2026-03-03 16:11 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Feb 27, 2026 at 07:17:12PM +0200, Jani Nikula wrote:
> It's unclear what the direction of the VMA abstraction in the parent
> interface should be, but convert i915_vma_fence_id() to parent interface
> for starters. This paves the way for making struct i915_vma opaque
> towards display.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 5 ++---
> drivers/gpu/drm/i915/display/intel_parent.c | 9 +++++++++
> drivers/gpu/drm/i915/display/intel_parent.h | 3 +++
> drivers/gpu/drm/i915/i915_driver.c | 1 +
> drivers/gpu/drm/i915/i915_vma.c | 10 ++++++++++
> drivers/gpu/drm/i915/i915_vma.h | 7 ++-----
> drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h | 2 --
> include/drm/intel/display_parent_interface.h | 7 +++++++
> 8 files changed, 34 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 91de38379282..3e9b3e532499 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -45,7 +45,6 @@
> #include <drm/drm_fourcc.h>
> #include <drm/drm_print.h>
>
> -#include "i915_vma.h"
> #include "i9xx_plane_regs.h"
> #include "intel_de.h"
> #include "intel_display_device.h"
> @@ -1463,7 +1462,7 @@ static void intel_fbc_update_state(struct intel_atomic_state *state,
> !intel_fbc_has_fences(display));
>
> if (plane_state->flags & PLANE_HAS_FENCE)
> - fbc_state->fence_id = i915_vma_fence_id(plane_state->ggtt_vma);
> + fbc_state->fence_id = intel_parent_vma_fence_id(display, plane_state->ggtt_vma);
Hmm. I think I'd rather just return the fence from the pin stuff
and track it in the plane state, and then nuke plane_state->flags
since it'll no longer be needed.
> else
> fbc_state->fence_id = -1;
>
> @@ -1490,7 +1489,7 @@ static bool intel_fbc_is_fence_ok(const struct intel_plane_state *plane_state)
> */
> return DISPLAY_VER(display) >= 9 ||
> (plane_state->flags & PLANE_HAS_FENCE &&
> - i915_vma_fence_id(plane_state->ggtt_vma) != -1);
> + intel_parent_vma_fence_id(display, plane_state->ggtt_vma) != -1);
> }
>
> static bool intel_fbc_is_cfb_ok(const struct intel_plane_state *plane_state)
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
> index 89f78ca1cd15..0c5962cb2f6d 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.c
> +++ b/drivers/gpu/drm/i915/display/intel_parent.c
> @@ -317,6 +317,15 @@ void intel_parent_stolen_node_free(struct intel_display *display, const struct i
> display->parent->stolen->node_free(node);
> }
>
> +/* vma */
> +int intel_parent_vma_fence_id(struct intel_display *display, const struct i915_vma *vma)
> +{
> + if (!display->parent->vma)
> + return -1;
> +
> + return display->parent->vma->fence_id(vma);
> +}
> +
> /* generic */
> void intel_parent_fence_priority_display(struct intel_display *display, struct dma_fence *fence)
> {
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
> index 2317482ef072..6e7d09133aee 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.h
> +++ b/drivers/gpu/drm/i915/display/intel_parent.h
> @@ -102,6 +102,9 @@ u64 intel_parent_stolen_node_size(struct intel_display *display, const struct in
> struct intel_stolen_node *intel_parent_stolen_node_alloc(struct intel_display *display);
> void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node);
>
> +/* vma */
> +int intel_parent_vma_fence_id(struct intel_display *display, const struct i915_vma *vma);
> +
> /* generic */
> bool intel_parent_has_auxccs(struct intel_display *display);
> bool intel_parent_has_fenced_regions(struct intel_display *display);
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index 5f77e891604d..18f912043f90 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -775,6 +775,7 @@ static const struct intel_display_parent_interface parent = {
> .rpm = &i915_display_rpm_interface,
> .rps = &i915_display_rps_interface,
> .stolen = &i915_display_stolen_interface,
> + .vma = &i915_display_vma_interface,
>
> .fence_priority_display = fence_priority_display,
> .has_auxccs = has_auxccs,
> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
> index afc192d9931b..6a3a4d4244dc 100644
> --- a/drivers/gpu/drm/i915/i915_vma.c
> +++ b/drivers/gpu/drm/i915/i915_vma.c
> @@ -27,6 +27,7 @@
>
> #include <drm/drm_gem.h>
> #include <drm/drm_print.h>
> +#include <drm/intel/display_parent_interface.h>
>
> #include "display/intel_fb.h"
> #include "display/intel_frontbuffer.h"
> @@ -2332,3 +2333,12 @@ int __init i915_vma_module_init(void)
>
> return 0;
> }
> +
> +static int i915_vma_fence_id(const struct i915_vma *vma)
> +{
> + return vma->fence ? vma->fence->id : -1;
> +}
> +
> +const struct intel_display_vma_interface i915_display_vma_interface = {
> + .fence_id = i915_vma_fence_id,
> +};
> diff --git a/drivers/gpu/drm/i915/i915_vma.h b/drivers/gpu/drm/i915/i915_vma.h
> index 8054047840aa..fa2d9b429db6 100644
> --- a/drivers/gpu/drm/i915/i915_vma.h
> +++ b/drivers/gpu/drm/i915/i915_vma.h
> @@ -404,11 +404,6 @@ i915_vma_unpin_fence(struct i915_vma *vma)
> __i915_vma_unpin_fence(vma);
> }
>
> -static inline int i915_vma_fence_id(const struct i915_vma *vma)
> -{
> - return vma->fence ? vma->fence->id : -1;
> -}
> -
> void i915_vma_parked(struct intel_gt *gt);
>
> static inline bool i915_vma_is_scanout(const struct i915_vma *vma)
> @@ -481,4 +476,6 @@ int i915_vma_module_init(void);
> I915_SELFTEST_DECLARE(int i915_vma_get_pages(struct i915_vma *vma));
> I915_SELFTEST_DECLARE(void i915_vma_put_pages(struct i915_vma *vma));
>
> +extern const struct intel_display_vma_interface i915_display_vma_interface;
> +
> #endif
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
> index c4b5adaaa99a..da1d97b48fee 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
> @@ -26,8 +26,6 @@ struct i915_vma {
> struct xe_ggtt_node *node;
> };
>
> -#define i915_vma_fence_id(vma) -1
> -
> static inline u32 i915_ggtt_offset(const struct i915_vma *vma)
> {
> return xe_ggtt_node_addr(vma->node);
> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
> index b4b0f58ae3ee..d02ab7cc1c92 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -149,6 +149,10 @@ struct intel_display_stolen_interface {
> void (*node_free)(const struct intel_stolen_node *node);
> };
>
> +struct intel_display_vma_interface {
> + int (*fence_id)(const struct i915_vma *vma);
> +};
> +
> /**
> * struct intel_display_parent_interface - services parent driver provides to display
> *
> @@ -198,6 +202,9 @@ struct intel_display_parent_interface {
> /** @stolen: Stolen memory. */
> const struct intel_display_stolen_interface *stolen;
>
> + /** @vma: VMA interface. Optional. */
> + const struct intel_display_vma_interface *vma;
> +
> /* Generic independent functions */
> struct {
> /** @fence_priority_display: Set display priority. Optional. */
> --
> 2.47.3
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 2/4] drm/i915: add VMA to parent interface
2026-03-03 16:11 ` Ville Syrjälä
@ 2026-03-04 10:55 ` Jani Nikula
0 siblings, 0 replies; 16+ messages in thread
From: Jani Nikula @ 2026-03-04 10:55 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe
On Tue, 03 Mar 2026, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Feb 27, 2026 at 07:17:12PM +0200, Jani Nikula wrote:
>> It's unclear what the direction of the VMA abstraction in the parent
>> interface should be, but convert i915_vma_fence_id() to parent interface
>> for starters. This paves the way for making struct i915_vma opaque
>> towards display.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> drivers/gpu/drm/i915/display/intel_fbc.c | 5 ++---
>> drivers/gpu/drm/i915/display/intel_parent.c | 9 +++++++++
>> drivers/gpu/drm/i915/display/intel_parent.h | 3 +++
>> drivers/gpu/drm/i915/i915_driver.c | 1 +
>> drivers/gpu/drm/i915/i915_vma.c | 10 ++++++++++
>> drivers/gpu/drm/i915/i915_vma.h | 7 ++-----
>> drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h | 2 --
>> include/drm/intel/display_parent_interface.h | 7 +++++++
>> 8 files changed, 34 insertions(+), 10 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
>> index 91de38379282..3e9b3e532499 100644
>> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
>> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
>> @@ -45,7 +45,6 @@
>> #include <drm/drm_fourcc.h>
>> #include <drm/drm_print.h>
>>
>> -#include "i915_vma.h"
>> #include "i9xx_plane_regs.h"
>> #include "intel_de.h"
>> #include "intel_display_device.h"
>> @@ -1463,7 +1462,7 @@ static void intel_fbc_update_state(struct intel_atomic_state *state,
>> !intel_fbc_has_fences(display));
>>
>> if (plane_state->flags & PLANE_HAS_FENCE)
>> - fbc_state->fence_id = i915_vma_fence_id(plane_state->ggtt_vma);
>> + fbc_state->fence_id = intel_parent_vma_fence_id(display, plane_state->ggtt_vma);
>
> Hmm. I think I'd rather just return the fence from the pin stuff
> and track it in the plane state, and then nuke plane_state->flags
> since it'll no longer be needed.
I'm afraid I merged the lot two hours before your message. :/
BR,
Jani.
>
>> else
>> fbc_state->fence_id = -1;
>>
>> @@ -1490,7 +1489,7 @@ static bool intel_fbc_is_fence_ok(const struct intel_plane_state *plane_state)
>> */
>> return DISPLAY_VER(display) >= 9 ||
>> (plane_state->flags & PLANE_HAS_FENCE &&
>> - i915_vma_fence_id(plane_state->ggtt_vma) != -1);
>> + intel_parent_vma_fence_id(display, plane_state->ggtt_vma) != -1);
>> }
>>
>> static bool intel_fbc_is_cfb_ok(const struct intel_plane_state *plane_state)
>> diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
>> index 89f78ca1cd15..0c5962cb2f6d 100644
>> --- a/drivers/gpu/drm/i915/display/intel_parent.c
>> +++ b/drivers/gpu/drm/i915/display/intel_parent.c
>> @@ -317,6 +317,15 @@ void intel_parent_stolen_node_free(struct intel_display *display, const struct i
>> display->parent->stolen->node_free(node);
>> }
>>
>> +/* vma */
>> +int intel_parent_vma_fence_id(struct intel_display *display, const struct i915_vma *vma)
>> +{
>> + if (!display->parent->vma)
>> + return -1;
>> +
>> + return display->parent->vma->fence_id(vma);
>> +}
>> +
>> /* generic */
>> void intel_parent_fence_priority_display(struct intel_display *display, struct dma_fence *fence)
>> {
>> diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
>> index 2317482ef072..6e7d09133aee 100644
>> --- a/drivers/gpu/drm/i915/display/intel_parent.h
>> +++ b/drivers/gpu/drm/i915/display/intel_parent.h
>> @@ -102,6 +102,9 @@ u64 intel_parent_stolen_node_size(struct intel_display *display, const struct in
>> struct intel_stolen_node *intel_parent_stolen_node_alloc(struct intel_display *display);
>> void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node);
>>
>> +/* vma */
>> +int intel_parent_vma_fence_id(struct intel_display *display, const struct i915_vma *vma);
>> +
>> /* generic */
>> bool intel_parent_has_auxccs(struct intel_display *display);
>> bool intel_parent_has_fenced_regions(struct intel_display *display);
>> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
>> index 5f77e891604d..18f912043f90 100644
>> --- a/drivers/gpu/drm/i915/i915_driver.c
>> +++ b/drivers/gpu/drm/i915/i915_driver.c
>> @@ -775,6 +775,7 @@ static const struct intel_display_parent_interface parent = {
>> .rpm = &i915_display_rpm_interface,
>> .rps = &i915_display_rps_interface,
>> .stolen = &i915_display_stolen_interface,
>> + .vma = &i915_display_vma_interface,
>>
>> .fence_priority_display = fence_priority_display,
>> .has_auxccs = has_auxccs,
>> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
>> index afc192d9931b..6a3a4d4244dc 100644
>> --- a/drivers/gpu/drm/i915/i915_vma.c
>> +++ b/drivers/gpu/drm/i915/i915_vma.c
>> @@ -27,6 +27,7 @@
>>
>> #include <drm/drm_gem.h>
>> #include <drm/drm_print.h>
>> +#include <drm/intel/display_parent_interface.h>
>>
>> #include "display/intel_fb.h"
>> #include "display/intel_frontbuffer.h"
>> @@ -2332,3 +2333,12 @@ int __init i915_vma_module_init(void)
>>
>> return 0;
>> }
>> +
>> +static int i915_vma_fence_id(const struct i915_vma *vma)
>> +{
>> + return vma->fence ? vma->fence->id : -1;
>> +}
>> +
>> +const struct intel_display_vma_interface i915_display_vma_interface = {
>> + .fence_id = i915_vma_fence_id,
>> +};
>> diff --git a/drivers/gpu/drm/i915/i915_vma.h b/drivers/gpu/drm/i915/i915_vma.h
>> index 8054047840aa..fa2d9b429db6 100644
>> --- a/drivers/gpu/drm/i915/i915_vma.h
>> +++ b/drivers/gpu/drm/i915/i915_vma.h
>> @@ -404,11 +404,6 @@ i915_vma_unpin_fence(struct i915_vma *vma)
>> __i915_vma_unpin_fence(vma);
>> }
>>
>> -static inline int i915_vma_fence_id(const struct i915_vma *vma)
>> -{
>> - return vma->fence ? vma->fence->id : -1;
>> -}
>> -
>> void i915_vma_parked(struct intel_gt *gt);
>>
>> static inline bool i915_vma_is_scanout(const struct i915_vma *vma)
>> @@ -481,4 +476,6 @@ int i915_vma_module_init(void);
>> I915_SELFTEST_DECLARE(int i915_vma_get_pages(struct i915_vma *vma));
>> I915_SELFTEST_DECLARE(void i915_vma_put_pages(struct i915_vma *vma));
>>
>> +extern const struct intel_display_vma_interface i915_display_vma_interface;
>> +
>> #endif
>> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
>> index c4b5adaaa99a..da1d97b48fee 100644
>> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
>> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
>> @@ -26,8 +26,6 @@ struct i915_vma {
>> struct xe_ggtt_node *node;
>> };
>>
>> -#define i915_vma_fence_id(vma) -1
>> -
>> static inline u32 i915_ggtt_offset(const struct i915_vma *vma)
>> {
>> return xe_ggtt_node_addr(vma->node);
>> diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
>> index b4b0f58ae3ee..d02ab7cc1c92 100644
>> --- a/include/drm/intel/display_parent_interface.h
>> +++ b/include/drm/intel/display_parent_interface.h
>> @@ -149,6 +149,10 @@ struct intel_display_stolen_interface {
>> void (*node_free)(const struct intel_stolen_node *node);
>> };
>>
>> +struct intel_display_vma_interface {
>> + int (*fence_id)(const struct i915_vma *vma);
>> +};
>> +
>> /**
>> * struct intel_display_parent_interface - services parent driver provides to display
>> *
>> @@ -198,6 +202,9 @@ struct intel_display_parent_interface {
>> /** @stolen: Stolen memory. */
>> const struct intel_display_stolen_interface *stolen;
>>
>> + /** @vma: VMA interface. Optional. */
>> + const struct intel_display_vma_interface *vma;
>> +
>> /* Generic independent functions */
>> struct {
>> /** @fence_priority_display: Set display priority. Optional. */
>> --
>> 2.47.3
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 3/4] drm/xe/compat: remove i915_vma.h from compat
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
2026-02-27 17:17 ` [PATCH 1/4] drm/i915/fbdev: stop debug logging i915_ggtt_offset() Jani Nikula
2026-02-27 17:17 ` [PATCH 2/4] drm/i915: add VMA to parent interface Jani Nikula
@ 2026-02-27 17:17 ` Jani Nikula
2026-03-02 20:07 ` Michał Grzelak
2026-02-27 17:17 ` [PATCH 4/4] drm/xe/display: clean up xe_initial_plane.c includes Jani Nikula
` (4 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Jani Nikula @ 2026-02-27 17:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Move compat i915_vma.h to xe_display_vma.h, and remove all extra
cruft. Drop the i915_ggtt_offset() wrapper in favour of using
xe_ggtt_node_addr() directly.
The usefulness of the I915_TILING_X and I915_TILING_Y undef/define is
unclear, since uapi/drm/i915_drm.h is included in other paths as well.
The naming of struct i915_vma is a bit unfortunate in xe, but (at least
for now) a necessity for maintaining type safety on the opaque type.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
| 34 -------------------
drivers/gpu/drm/xe/display/xe_display_vma.h | 18 ++++++++++
drivers/gpu/drm/xe/display/xe_fb_pin.c | 6 ++--
drivers/gpu/drm/xe/display/xe_initial_plane.c | 4 +--
4 files changed, 23 insertions(+), 39 deletions(-)
delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
create mode 100644 drivers/gpu/drm/xe/display/xe_display_vma.h
diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
deleted file mode 100644
index da1d97b48fee..000000000000
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* SPDX-License-Identifier: MIT */
-/*
- * Copyright © 2023 Intel Corporation
- */
-
-#ifndef I915_VMA_H
-#define I915_VMA_H
-
-#include <uapi/drm/i915_drm.h>
-
-#include "xe_ggtt.h"
-
-#include <linux/refcount.h>
-
-/* We don't want these from i915_drm.h in case of Xe */
-#undef I915_TILING_X
-#undef I915_TILING_Y
-#define I915_TILING_X 0
-#define I915_TILING_Y 0
-
-struct xe_bo;
-
-struct i915_vma {
- refcount_t ref;
- struct xe_bo *bo, *dpt;
- struct xe_ggtt_node *node;
-};
-
-static inline u32 i915_ggtt_offset(const struct i915_vma *vma)
-{
- return xe_ggtt_node_addr(vma->node);
-}
-
-#endif
diff --git a/drivers/gpu/drm/xe/display/xe_display_vma.h b/drivers/gpu/drm/xe/display/xe_display_vma.h
new file mode 100644
index 000000000000..28267be61ae0
--- /dev/null
+++ b/drivers/gpu/drm/xe/display/xe_display_vma.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2026 Intel Corporation */
+
+#ifndef _XE_DISPLAY_VMA_H_
+#define _XE_DISPLAY_VMA_H_
+
+#include <linux/refcount.h>
+
+struct xe_bo;
+struct xe_ggtt_node;
+
+struct i915_vma {
+ refcount_t ref;
+ struct xe_bo *bo, *dpt;
+ struct xe_ggtt_node *node;
+};
+
+#endif
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index f0c89f144563..dbbc61032b7f 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -5,7 +5,6 @@
#include <drm/ttm/ttm_bo.h>
-#include "i915_vma.h"
#include "intel_display_core.h"
#include "intel_display_types.h"
#include "intel_fb.h"
@@ -13,6 +12,7 @@
#include "intel_fbdev.h"
#include "xe_bo.h"
#include "xe_device.h"
+#include "xe_display_vma.h"
#include "xe_ggtt.h"
#include "xe_pm.h"
#include "xe_vram_types.h"
@@ -408,7 +408,7 @@ static bool reuse_vma(struct intel_plane_state *new_plane_state,
refcount_inc(&vma->ref);
new_plane_state->ggtt_vma = vma;
- new_plane_state->surf = i915_ggtt_offset(new_plane_state->ggtt_vma) +
+ new_plane_state->surf = xe_ggtt_node_addr(new_plane_state->ggtt_vma->node) +
plane->surf_offset(new_plane_state);
return true;
@@ -438,7 +438,7 @@ int intel_plane_pin_fb(struct intel_plane_state *new_plane_state,
new_plane_state->ggtt_vma = vma;
- new_plane_state->surf = i915_ggtt_offset(new_plane_state->ggtt_vma) +
+ new_plane_state->surf = xe_ggtt_node_addr(new_plane_state->ggtt_vma->node) +
plane->surf_offset(new_plane_state);
return 0;
diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
index c46e9d8115bd..4be0cfb6d0c1 100644
--- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
+++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
@@ -12,7 +12,6 @@
#include "xe_ggtt.h"
#include "xe_mmio.h"
-#include "i915_vma.h"
#include "intel_crtc.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
@@ -20,6 +19,7 @@
#include "intel_fbdev_fb.h"
#include "intel_fb_pin.h"
#include "xe_bo.h"
+#include "xe_display_vma.h"
#include "xe_vram_types.h"
#include "xe_wa.h"
@@ -165,7 +165,7 @@ xe_initial_plane_setup(struct drm_plane_state *_plane_state,
plane_state->ggtt_vma = vma;
- plane_state->surf = i915_ggtt_offset(plane_state->ggtt_vma);
+ plane_state->surf = xe_ggtt_node_addr(plane_state->ggtt_vma->node);
plane_config->vma = vma;
--
2.47.3
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 4/4] drm/xe/display: clean up xe_initial_plane.c includes
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
` (2 preceding siblings ...)
2026-02-27 17:17 ` [PATCH 3/4] drm/xe/compat: remove i915_vma.h from compat Jani Nikula
@ 2026-02-27 17:17 ` Jani Nikula
2026-03-02 20:07 ` Michał Grzelak
2026-02-27 19:23 ` ✗ CI.checkpatch: warning for drm/i915, drm/xe: clean up i915_vma.h usage for display Patchwork
` (3 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Jani Nikula @ 2026-02-27 17:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Remove excess includes, group and sort include directives.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/xe/display/xe_initial_plane.c | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
index 4be0cfb6d0c1..65cc0b0c934b 100644
--- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
+++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
@@ -3,27 +3,21 @@
* Copyright © 2021 Intel Corporation
*/
-/* for ioread64 */
-#include <linux/io-64-nonatomic-lo-hi.h>
-
#include <drm/intel/display_parent_interface.h>
#include "regs/xe_gtt_defs.h"
-#include "xe_ggtt.h"
-#include "xe_mmio.h"
#include "intel_crtc.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
#include "intel_fb.h"
-#include "intel_fbdev_fb.h"
#include "intel_fb_pin.h"
+#include "intel_fbdev_fb.h"
#include "xe_bo.h"
#include "xe_display_vma.h"
+#include "xe_ggtt.h"
+#include "xe_mmio.h"
#include "xe_vram_types.h"
-#include "xe_wa.h"
-
-#include <generated/xe_device_wa_oob.h>
/* Early xe has no irq */
static void xe_initial_plane_vblank_wait(struct drm_crtc *_crtc)
--
2.47.3
^ permalink raw reply related [flat|nested] 16+ messages in thread* ✗ CI.checkpatch: warning for drm/i915, drm/xe: clean up i915_vma.h usage for display
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
` (3 preceding siblings ...)
2026-02-27 17:17 ` [PATCH 4/4] drm/xe/display: clean up xe_initial_plane.c includes Jani Nikula
@ 2026-02-27 19:23 ` Patchwork
2026-02-27 19:24 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-02-27 19:23 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915, drm/xe: clean up i915_vma.h usage for display
URL : https://patchwork.freedesktop.org/series/162332/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 5f4491ca7244db2cc62e6ccb57da7af29ac61bf5
Author: Jani Nikula <jani.nikula@intel.com>
Date: Fri Feb 27 19:17:14 2026 +0200
drm/xe/display: clean up xe_initial_plane.c includes
Remove excess includes, group and sort include directives.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1 drm-intel
9245d167385b drm/i915/fbdev: stop debug logging i915_ggtt_offset()
bc625d436967 drm/i915: add VMA to parent interface
af253c5462ac drm/xe/compat: remove i915_vma.h from compat
-:19: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#19:
deleted file mode 100644
total: 0 errors, 1 warnings, 0 checks, 70 lines checked
5f4491ca7244 drm/xe/display: clean up xe_initial_plane.c includes
^ permalink raw reply [flat|nested] 16+ messages in thread* ✓ CI.KUnit: success for drm/i915, drm/xe: clean up i915_vma.h usage for display
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
` (4 preceding siblings ...)
2026-02-27 19:23 ` ✗ CI.checkpatch: warning for drm/i915, drm/xe: clean up i915_vma.h usage for display Patchwork
@ 2026-02-27 19:24 ` Patchwork
2026-02-27 20:43 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-28 9:31 ` ✓ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-02-27 19:24 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915, drm/xe: clean up i915_vma.h usage for display
URL : https://patchwork.freedesktop.org/series/162332/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:23:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:23:28] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:23:59] Starting KUnit Kernel (1/1)...
[19:23:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:23:59] ================== guc_buf (11 subtests) ===================
[19:23:59] [PASSED] test_smallest
[19:23:59] [PASSED] test_largest
[19:23:59] [PASSED] test_granular
[19:23:59] [PASSED] test_unique
[19:23:59] [PASSED] test_overlap
[19:23:59] [PASSED] test_reusable
[19:23:59] [PASSED] test_too_big
[19:23:59] [PASSED] test_flush
[19:23:59] [PASSED] test_lookup
[19:23:59] [PASSED] test_data
[19:23:59] [PASSED] test_class
[19:23:59] ===================== [PASSED] guc_buf =====================
[19:23:59] =================== guc_dbm (7 subtests) ===================
[19:23:59] [PASSED] test_empty
[19:23:59] [PASSED] test_default
[19:23:59] ======================== test_size ========================
[19:23:59] [PASSED] 4
[19:23:59] [PASSED] 8
[19:23:59] [PASSED] 32
[19:23:59] [PASSED] 256
[19:23:59] ==================== [PASSED] test_size ====================
[19:23:59] ======================= test_reuse ========================
[19:23:59] [PASSED] 4
[19:23:59] [PASSED] 8
[19:23:59] [PASSED] 32
[19:23:59] [PASSED] 256
[19:23:59] =================== [PASSED] test_reuse ====================
[19:23:59] =================== test_range_overlap ====================
[19:23:59] [PASSED] 4
[19:23:59] [PASSED] 8
[19:23:59] [PASSED] 32
[19:23:59] [PASSED] 256
[19:23:59] =============== [PASSED] test_range_overlap ================
[19:23:59] =================== test_range_compact ====================
[19:23:59] [PASSED] 4
[19:23:59] [PASSED] 8
[19:23:59] [PASSED] 32
[19:23:59] [PASSED] 256
[19:23:59] =============== [PASSED] test_range_compact ================
[19:23:59] ==================== test_range_spare =====================
[19:23:59] [PASSED] 4
[19:23:59] [PASSED] 8
[19:23:59] [PASSED] 32
[19:23:59] [PASSED] 256
[19:23:59] ================ [PASSED] test_range_spare =================
[19:23:59] ===================== [PASSED] guc_dbm =====================
[19:23:59] =================== guc_idm (6 subtests) ===================
[19:23:59] [PASSED] bad_init
[19:23:59] [PASSED] no_init
[19:23:59] [PASSED] init_fini
[19:23:59] [PASSED] check_used
[19:23:59] [PASSED] check_quota
[19:23:59] [PASSED] check_all
[19:23:59] ===================== [PASSED] guc_idm =====================
[19:23:59] ================== no_relay (3 subtests) ===================
[19:23:59] [PASSED] xe_drops_guc2pf_if_not_ready
[19:23:59] [PASSED] xe_drops_guc2vf_if_not_ready
[19:23:59] [PASSED] xe_rejects_send_if_not_ready
[19:23:59] ==================== [PASSED] no_relay =====================
[19:23:59] ================== pf_relay (14 subtests) ==================
[19:23:59] [PASSED] pf_rejects_guc2pf_too_short
[19:23:59] [PASSED] pf_rejects_guc2pf_too_long
[19:23:59] [PASSED] pf_rejects_guc2pf_no_payload
[19:23:59] [PASSED] pf_fails_no_payload
[19:23:59] [PASSED] pf_fails_bad_origin
[19:23:59] [PASSED] pf_fails_bad_type
[19:23:59] [PASSED] pf_txn_reports_error
[19:23:59] [PASSED] pf_txn_sends_pf2guc
[19:23:59] [PASSED] pf_sends_pf2guc
[19:23:59] [SKIPPED] pf_loopback_nop
[19:23:59] [SKIPPED] pf_loopback_echo
[19:23:59] [SKIPPED] pf_loopback_fail
[19:23:59] [SKIPPED] pf_loopback_busy
[19:23:59] [SKIPPED] pf_loopback_retry
[19:23:59] ==================== [PASSED] pf_relay =====================
[19:23:59] ================== vf_relay (3 subtests) ===================
[19:23:59] [PASSED] vf_rejects_guc2vf_too_short
[19:23:59] [PASSED] vf_rejects_guc2vf_too_long
[19:23:59] [PASSED] vf_rejects_guc2vf_no_payload
[19:23:59] ==================== [PASSED] vf_relay =====================
[19:23:59] ================ pf_gt_config (9 subtests) =================
[19:23:59] [PASSED] fair_contexts_1vf
[19:23:59] [PASSED] fair_doorbells_1vf
[19:23:59] [PASSED] fair_ggtt_1vf
[19:23:59] ====================== fair_vram_1vf ======================
[19:23:59] [PASSED] 3.50 GiB
[19:23:59] [PASSED] 11.5 GiB
[19:23:59] [PASSED] 15.5 GiB
[19:23:59] [PASSED] 31.5 GiB
[19:23:59] [PASSED] 63.5 GiB
[19:23:59] [PASSED] 13.9 GiB
[19:23:59] ================== [PASSED] fair_vram_1vf ==================
[19:23:59] ================ fair_vram_1vf_admin_only =================
[19:23:59] [PASSED] 3.50 GiB
[19:23:59] [PASSED] 11.5 GiB
[19:23:59] [PASSED] 15.5 GiB
[19:23:59] [PASSED] 31.5 GiB
[19:23:59] [PASSED] 63.5 GiB
[19:23:59] [PASSED] 13.9 GiB
[19:23:59] ============ [PASSED] fair_vram_1vf_admin_only =============
[19:23:59] ====================== fair_contexts ======================
[19:23:59] [PASSED] 1 VF
[19:23:59] [PASSED] 2 VFs
[19:23:59] [PASSED] 3 VFs
[19:23:59] [PASSED] 4 VFs
[19:23:59] [PASSED] 5 VFs
[19:23:59] [PASSED] 6 VFs
[19:23:59] [PASSED] 7 VFs
[19:23:59] [PASSED] 8 VFs
[19:23:59] [PASSED] 9 VFs
[19:23:59] [PASSED] 10 VFs
[19:23:59] [PASSED] 11 VFs
[19:23:59] [PASSED] 12 VFs
[19:23:59] [PASSED] 13 VFs
[19:23:59] [PASSED] 14 VFs
[19:23:59] [PASSED] 15 VFs
[19:23:59] [PASSED] 16 VFs
[19:23:59] [PASSED] 17 VFs
[19:23:59] [PASSED] 18 VFs
[19:23:59] [PASSED] 19 VFs
[19:23:59] [PASSED] 20 VFs
[19:23:59] [PASSED] 21 VFs
[19:23:59] [PASSED] 22 VFs
[19:23:59] [PASSED] 23 VFs
[19:23:59] [PASSED] 24 VFs
[19:23:59] [PASSED] 25 VFs
[19:23:59] [PASSED] 26 VFs
[19:23:59] [PASSED] 27 VFs
[19:23:59] [PASSED] 28 VFs
[19:23:59] [PASSED] 29 VFs
[19:23:59] [PASSED] 30 VFs
[19:23:59] [PASSED] 31 VFs
[19:23:59] [PASSED] 32 VFs
[19:23:59] [PASSED] 33 VFs
[19:23:59] [PASSED] 34 VFs
[19:23:59] [PASSED] 35 VFs
[19:23:59] [PASSED] 36 VFs
[19:23:59] [PASSED] 37 VFs
[19:23:59] [PASSED] 38 VFs
[19:23:59] [PASSED] 39 VFs
[19:23:59] [PASSED] 40 VFs
[19:23:59] [PASSED] 41 VFs
[19:23:59] [PASSED] 42 VFs
[19:23:59] [PASSED] 43 VFs
[19:23:59] [PASSED] 44 VFs
[19:23:59] [PASSED] 45 VFs
[19:23:59] [PASSED] 46 VFs
[19:23:59] [PASSED] 47 VFs
[19:23:59] [PASSED] 48 VFs
[19:23:59] [PASSED] 49 VFs
[19:23:59] [PASSED] 50 VFs
[19:23:59] [PASSED] 51 VFs
[19:23:59] [PASSED] 52 VFs
[19:23:59] [PASSED] 53 VFs
[19:23:59] [PASSED] 54 VFs
[19:23:59] [PASSED] 55 VFs
[19:23:59] [PASSED] 56 VFs
[19:23:59] [PASSED] 57 VFs
[19:23:59] [PASSED] 58 VFs
[19:23:59] [PASSED] 59 VFs
[19:23:59] [PASSED] 60 VFs
[19:23:59] [PASSED] 61 VFs
[19:23:59] [PASSED] 62 VFs
[19:23:59] [PASSED] 63 VFs
[19:23:59] ================== [PASSED] fair_contexts ==================
[19:23:59] ===================== fair_doorbells ======================
[19:23:59] [PASSED] 1 VF
[19:23:59] [PASSED] 2 VFs
[19:23:59] [PASSED] 3 VFs
[19:23:59] [PASSED] 4 VFs
[19:23:59] [PASSED] 5 VFs
[19:23:59] [PASSED] 6 VFs
[19:23:59] [PASSED] 7 VFs
[19:23:59] [PASSED] 8 VFs
[19:23:59] [PASSED] 9 VFs
[19:23:59] [PASSED] 10 VFs
[19:23:59] [PASSED] 11 VFs
[19:23:59] [PASSED] 12 VFs
[19:23:59] [PASSED] 13 VFs
[19:23:59] [PASSED] 14 VFs
[19:23:59] [PASSED] 15 VFs
[19:23:59] [PASSED] 16 VFs
[19:23:59] [PASSED] 17 VFs
[19:23:59] [PASSED] 18 VFs
[19:23:59] [PASSED] 19 VFs
[19:23:59] [PASSED] 20 VFs
[19:23:59] [PASSED] 21 VFs
[19:23:59] [PASSED] 22 VFs
[19:23:59] [PASSED] 23 VFs
[19:23:59] [PASSED] 24 VFs
[19:23:59] [PASSED] 25 VFs
[19:23:59] [PASSED] 26 VFs
[19:23:59] [PASSED] 27 VFs
[19:23:59] [PASSED] 28 VFs
[19:23:59] [PASSED] 29 VFs
[19:23:59] [PASSED] 30 VFs
[19:23:59] [PASSED] 31 VFs
[19:23:59] [PASSED] 32 VFs
[19:23:59] [PASSED] 33 VFs
[19:23:59] [PASSED] 34 VFs
[19:23:59] [PASSED] 35 VFs
[19:23:59] [PASSED] 36 VFs
[19:23:59] [PASSED] 37 VFs
[19:23:59] [PASSED] 38 VFs
[19:23:59] [PASSED] 39 VFs
[19:23:59] [PASSED] 40 VFs
[19:23:59] [PASSED] 41 VFs
[19:23:59] [PASSED] 42 VFs
[19:23:59] [PASSED] 43 VFs
[19:23:59] [PASSED] 44 VFs
[19:23:59] [PASSED] 45 VFs
[19:23:59] [PASSED] 46 VFs
[19:23:59] [PASSED] 47 VFs
[19:23:59] [PASSED] 48 VFs
[19:23:59] [PASSED] 49 VFs
[19:23:59] [PASSED] 50 VFs
[19:23:59] [PASSED] 51 VFs
[19:23:59] [PASSED] 52 VFs
[19:23:59] [PASSED] 53 VFs
[19:23:59] [PASSED] 54 VFs
[19:23:59] [PASSED] 55 VFs
[19:23:59] [PASSED] 56 VFs
[19:23:59] [PASSED] 57 VFs
[19:23:59] [PASSED] 58 VFs
[19:23:59] [PASSED] 59 VFs
[19:23:59] [PASSED] 60 VFs
[19:23:59] [PASSED] 61 VFs
[19:23:59] [PASSED] 62 VFs
[19:23:59] [PASSED] 63 VFs
[19:23:59] ================= [PASSED] fair_doorbells ==================
[19:23:59] ======================== fair_ggtt ========================
[19:23:59] [PASSED] 1 VF
[19:23:59] [PASSED] 2 VFs
[19:23:59] [PASSED] 3 VFs
[19:23:59] [PASSED] 4 VFs
[19:23:59] [PASSED] 5 VFs
[19:23:59] [PASSED] 6 VFs
[19:23:59] [PASSED] 7 VFs
[19:23:59] [PASSED] 8 VFs
[19:23:59] [PASSED] 9 VFs
[19:23:59] [PASSED] 10 VFs
[19:23:59] [PASSED] 11 VFs
[19:23:59] [PASSED] 12 VFs
[19:23:59] [PASSED] 13 VFs
[19:23:59] [PASSED] 14 VFs
[19:23:59] [PASSED] 15 VFs
[19:23:59] [PASSED] 16 VFs
[19:23:59] [PASSED] 17 VFs
[19:23:59] [PASSED] 18 VFs
[19:23:59] [PASSED] 19 VFs
[19:23:59] [PASSED] 20 VFs
[19:23:59] [PASSED] 21 VFs
[19:23:59] [PASSED] 22 VFs
[19:23:59] [PASSED] 23 VFs
[19:23:59] [PASSED] 24 VFs
[19:23:59] [PASSED] 25 VFs
[19:23:59] [PASSED] 26 VFs
[19:23:59] [PASSED] 27 VFs
[19:23:59] [PASSED] 28 VFs
[19:23:59] [PASSED] 29 VFs
[19:23:59] [PASSED] 30 VFs
[19:23:59] [PASSED] 31 VFs
[19:23:59] [PASSED] 32 VFs
[19:23:59] [PASSED] 33 VFs
[19:23:59] [PASSED] 34 VFs
[19:23:59] [PASSED] 35 VFs
[19:23:59] [PASSED] 36 VFs
[19:23:59] [PASSED] 37 VFs
[19:23:59] [PASSED] 38 VFs
[19:23:59] [PASSED] 39 VFs
[19:23:59] [PASSED] 40 VFs
[19:23:59] [PASSED] 41 VFs
[19:23:59] [PASSED] 42 VFs
[19:23:59] [PASSED] 43 VFs
[19:23:59] [PASSED] 44 VFs
[19:23:59] [PASSED] 45 VFs
[19:23:59] [PASSED] 46 VFs
[19:23:59] [PASSED] 47 VFs
[19:23:59] [PASSED] 48 VFs
[19:23:59] [PASSED] 49 VFs
[19:23:59] [PASSED] 50 VFs
[19:23:59] [PASSED] 51 VFs
[19:23:59] [PASSED] 52 VFs
[19:23:59] [PASSED] 53 VFs
[19:23:59] [PASSED] 54 VFs
[19:23:59] [PASSED] 55 VFs
[19:23:59] [PASSED] 56 VFs
[19:23:59] [PASSED] 57 VFs
[19:23:59] [PASSED] 58 VFs
[19:23:59] [PASSED] 59 VFs
[19:23:59] [PASSED] 60 VFs
[19:23:59] [PASSED] 61 VFs
[19:23:59] [PASSED] 62 VFs
[19:23:59] [PASSED] 63 VFs
[19:23:59] ==================== [PASSED] fair_ggtt ====================
[19:23:59] ======================== fair_vram ========================
[19:23:59] [PASSED] 1 VF
[19:23:59] [PASSED] 2 VFs
[19:23:59] [PASSED] 3 VFs
[19:23:59] [PASSED] 4 VFs
[19:23:59] [PASSED] 5 VFs
[19:23:59] [PASSED] 6 VFs
[19:23:59] [PASSED] 7 VFs
[19:23:59] [PASSED] 8 VFs
[19:23:59] [PASSED] 9 VFs
[19:23:59] [PASSED] 10 VFs
[19:23:59] [PASSED] 11 VFs
[19:23:59] [PASSED] 12 VFs
[19:23:59] [PASSED] 13 VFs
[19:23:59] [PASSED] 14 VFs
[19:23:59] [PASSED] 15 VFs
[19:23:59] [PASSED] 16 VFs
[19:23:59] [PASSED] 17 VFs
[19:23:59] [PASSED] 18 VFs
[19:23:59] [PASSED] 19 VFs
[19:23:59] [PASSED] 20 VFs
[19:23:59] [PASSED] 21 VFs
[19:23:59] [PASSED] 22 VFs
[19:23:59] [PASSED] 23 VFs
[19:23:59] [PASSED] 24 VFs
[19:23:59] [PASSED] 25 VFs
[19:23:59] [PASSED] 26 VFs
[19:23:59] [PASSED] 27 VFs
[19:23:59] [PASSED] 28 VFs
[19:23:59] [PASSED] 29 VFs
[19:23:59] [PASSED] 30 VFs
[19:23:59] [PASSED] 31 VFs
[19:23:59] [PASSED] 32 VFs
[19:23:59] [PASSED] 33 VFs
[19:23:59] [PASSED] 34 VFs
[19:23:59] [PASSED] 35 VFs
[19:23:59] [PASSED] 36 VFs
[19:23:59] [PASSED] 37 VFs
[19:23:59] [PASSED] 38 VFs
[19:23:59] [PASSED] 39 VFs
[19:23:59] [PASSED] 40 VFs
[19:23:59] [PASSED] 41 VFs
[19:23:59] [PASSED] 42 VFs
[19:23:59] [PASSED] 43 VFs
[19:23:59] [PASSED] 44 VFs
[19:23:59] [PASSED] 45 VFs
[19:23:59] [PASSED] 46 VFs
[19:23:59] [PASSED] 47 VFs
[19:23:59] [PASSED] 48 VFs
[19:23:59] [PASSED] 49 VFs
[19:23:59] [PASSED] 50 VFs
[19:23:59] [PASSED] 51 VFs
[19:23:59] [PASSED] 52 VFs
[19:23:59] [PASSED] 53 VFs
[19:23:59] [PASSED] 54 VFs
[19:23:59] [PASSED] 55 VFs
[19:23:59] [PASSED] 56 VFs
[19:23:59] [PASSED] 57 VFs
[19:23:59] [PASSED] 58 VFs
[19:23:59] [PASSED] 59 VFs
[19:23:59] [PASSED] 60 VFs
[19:23:59] [PASSED] 61 VFs
[19:23:59] [PASSED] 62 VFs
[19:23:59] [PASSED] 63 VFs
[19:23:59] ==================== [PASSED] fair_vram ====================
[19:23:59] ================== [PASSED] pf_gt_config ===================
[19:23:59] ===================== lmtt (1 subtest) =====================
[19:23:59] ======================== test_ops =========================
[19:23:59] [PASSED] 2-level
[19:23:59] [PASSED] multi-level
[19:23:59] ==================== [PASSED] test_ops =====================
[19:23:59] ====================== [PASSED] lmtt =======================
[19:23:59] ================= pf_service (11 subtests) =================
[19:23:59] [PASSED] pf_negotiate_any
[19:23:59] [PASSED] pf_negotiate_base_match
[19:23:59] [PASSED] pf_negotiate_base_newer
[19:23:59] [PASSED] pf_negotiate_base_next
[19:23:59] [SKIPPED] pf_negotiate_base_older
[19:23:59] [PASSED] pf_negotiate_base_prev
[19:23:59] [PASSED] pf_negotiate_latest_match
[19:23:59] [PASSED] pf_negotiate_latest_newer
[19:23:59] [PASSED] pf_negotiate_latest_next
[19:23:59] [SKIPPED] pf_negotiate_latest_older
[19:23:59] [SKIPPED] pf_negotiate_latest_prev
[19:23:59] =================== [PASSED] pf_service ====================
[19:23:59] ================= xe_guc_g2g (2 subtests) ==================
[19:23:59] ============== xe_live_guc_g2g_kunit_default ==============
[19:23:59] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:23:59] ============== xe_live_guc_g2g_kunit_allmem ===============
[19:23:59] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:23:59] =================== [SKIPPED] xe_guc_g2g ===================
[19:23:59] =================== xe_mocs (2 subtests) ===================
[19:23:59] ================ xe_live_mocs_kernel_kunit ================
[19:23:59] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:23:59] ================ xe_live_mocs_reset_kunit =================
[19:23:59] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:23:59] ==================== [SKIPPED] xe_mocs =====================
[19:23:59] ================= xe_migrate (2 subtests) ==================
[19:23:59] ================= xe_migrate_sanity_kunit =================
[19:23:59] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:23:59] ================== xe_validate_ccs_kunit ==================
[19:23:59] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:23:59] =================== [SKIPPED] xe_migrate ===================
[19:23:59] ================== xe_dma_buf (1 subtest) ==================
[19:23:59] ==================== xe_dma_buf_kunit =====================
[19:23:59] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:23:59] =================== [SKIPPED] xe_dma_buf ===================
[19:23:59] ================= xe_bo_shrink (1 subtest) =================
[19:23:59] =================== xe_bo_shrink_kunit ====================
[19:23:59] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:23:59] ================== [SKIPPED] xe_bo_shrink ==================
[19:23:59] ==================== xe_bo (2 subtests) ====================
[19:23:59] ================== xe_ccs_migrate_kunit ===================
[19:23:59] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:23:59] ==================== xe_bo_evict_kunit ====================
[19:23:59] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:23:59] ===================== [SKIPPED] xe_bo ======================
[19:23:59] ==================== args (13 subtests) ====================
[19:23:59] [PASSED] count_args_test
[19:23:59] [PASSED] call_args_example
[19:23:59] [PASSED] call_args_test
[19:23:59] [PASSED] drop_first_arg_example
[19:23:59] [PASSED] drop_first_arg_test
[19:23:59] [PASSED] first_arg_example
[19:23:59] [PASSED] first_arg_test
[19:23:59] [PASSED] last_arg_example
[19:23:59] [PASSED] last_arg_test
[19:23:59] [PASSED] pick_arg_example
[19:23:59] [PASSED] if_args_example
[19:23:59] [PASSED] if_args_test
[19:23:59] [PASSED] sep_comma_example
[19:23:59] ====================== [PASSED] args =======================
[19:23:59] =================== xe_pci (3 subtests) ====================
[19:23:59] ==================== check_graphics_ip ====================
[19:23:59] [PASSED] 12.00 Xe_LP
[19:23:59] [PASSED] 12.10 Xe_LP+
[19:23:59] [PASSED] 12.55 Xe_HPG
[19:23:59] [PASSED] 12.60 Xe_HPC
[19:23:59] [PASSED] 12.70 Xe_LPG
[19:23:59] [PASSED] 12.71 Xe_LPG
[19:23:59] [PASSED] 12.74 Xe_LPG+
[19:23:59] [PASSED] 20.01 Xe2_HPG
[19:23:59] [PASSED] 20.02 Xe2_HPG
[19:23:59] [PASSED] 20.04 Xe2_LPG
[19:23:59] [PASSED] 30.00 Xe3_LPG
[19:23:59] [PASSED] 30.01 Xe3_LPG
[19:23:59] [PASSED] 30.03 Xe3_LPG
[19:23:59] [PASSED] 30.04 Xe3_LPG
[19:23:59] [PASSED] 30.05 Xe3_LPG
[19:23:59] [PASSED] 35.10 Xe3p_LPG
[19:23:59] [PASSED] 35.11 Xe3p_XPC
[19:23:59] ================ [PASSED] check_graphics_ip ================
[19:23:59] ===================== check_media_ip ======================
[19:23:59] [PASSED] 12.00 Xe_M
[19:23:59] [PASSED] 12.55 Xe_HPM
[19:23:59] [PASSED] 13.00 Xe_LPM+
[19:23:59] [PASSED] 13.01 Xe2_HPM
[19:23:59] [PASSED] 20.00 Xe2_LPM
[19:23:59] [PASSED] 30.00 Xe3_LPM
[19:23:59] [PASSED] 30.02 Xe3_LPM
[19:23:59] [PASSED] 35.00 Xe3p_LPM
[19:23:59] [PASSED] 35.03 Xe3p_HPM
[19:23:59] ================= [PASSED] check_media_ip ==================
[19:23:59] =================== check_platform_desc ===================
[19:23:59] [PASSED] 0x9A60 (TIGERLAKE)
[19:23:59] [PASSED] 0x9A68 (TIGERLAKE)
[19:23:59] [PASSED] 0x9A70 (TIGERLAKE)
[19:23:59] [PASSED] 0x9A40 (TIGERLAKE)
[19:23:59] [PASSED] 0x9A49 (TIGERLAKE)
[19:23:59] [PASSED] 0x9A59 (TIGERLAKE)
[19:23:59] [PASSED] 0x9A78 (TIGERLAKE)
[19:23:59] [PASSED] 0x9AC0 (TIGERLAKE)
[19:23:59] [PASSED] 0x9AC9 (TIGERLAKE)
[19:23:59] [PASSED] 0x9AD9 (TIGERLAKE)
[19:23:59] [PASSED] 0x9AF8 (TIGERLAKE)
[19:23:59] [PASSED] 0x4C80 (ROCKETLAKE)
[19:23:59] [PASSED] 0x4C8A (ROCKETLAKE)
[19:23:59] [PASSED] 0x4C8B (ROCKETLAKE)
[19:23:59] [PASSED] 0x4C8C (ROCKETLAKE)
[19:23:59] [PASSED] 0x4C90 (ROCKETLAKE)
[19:23:59] [PASSED] 0x4C9A (ROCKETLAKE)
[19:23:59] [PASSED] 0x4680 (ALDERLAKE_S)
[19:23:59] [PASSED] 0x4682 (ALDERLAKE_S)
[19:23:59] [PASSED] 0x4688 (ALDERLAKE_S)
[19:23:59] [PASSED] 0x468A (ALDERLAKE_S)
[19:23:59] [PASSED] 0x468B (ALDERLAKE_S)
[19:23:59] [PASSED] 0x4690 (ALDERLAKE_S)
[19:23:59] [PASSED] 0x4692 (ALDERLAKE_S)
[19:23:59] [PASSED] 0x4693 (ALDERLAKE_S)
[19:23:59] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46AA (ALDERLAKE_P)
[19:23:59] [PASSED] 0x462A (ALDERLAKE_P)
[19:23:59] [PASSED] 0x4626 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x4628 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:23:59] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:23:59] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:23:59] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:23:59] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:23:59] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:23:59] [PASSED] 0xA721 (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA720 (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:23:59] [PASSED] 0xA780 (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA781 (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA782 (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA783 (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA788 (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA789 (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA78A (ALDERLAKE_S)
[19:23:59] [PASSED] 0xA78B (ALDERLAKE_S)
[19:23:59] [PASSED] 0x4905 (DG1)
[19:23:59] [PASSED] 0x4906 (DG1)
[19:23:59] [PASSED] 0x4907 (DG1)
[19:23:59] [PASSED] 0x4908 (DG1)
[19:23:59] [PASSED] 0x4909 (DG1)
[19:23:59] [PASSED] 0x56C0 (DG2)
[19:23:59] [PASSED] 0x56C2 (DG2)
[19:23:59] [PASSED] 0x56C1 (DG2)
[19:23:59] [PASSED] 0x7D51 (METEORLAKE)
[19:23:59] [PASSED] 0x7DD1 (METEORLAKE)
[19:23:59] [PASSED] 0x7D41 (METEORLAKE)
[19:23:59] [PASSED] 0x7D67 (METEORLAKE)
[19:23:59] [PASSED] 0xB640 (METEORLAKE)
[19:23:59] [PASSED] 0x56A0 (DG2)
[19:23:59] [PASSED] 0x56A1 (DG2)
[19:23:59] [PASSED] 0x56A2 (DG2)
[19:23:59] [PASSED] 0x56BE (DG2)
[19:23:59] [PASSED] 0x56BF (DG2)
[19:23:59] [PASSED] 0x5690 (DG2)
[19:23:59] [PASSED] 0x5691 (DG2)
[19:23:59] [PASSED] 0x5692 (DG2)
[19:23:59] [PASSED] 0x56A5 (DG2)
[19:23:59] [PASSED] 0x56A6 (DG2)
[19:23:59] [PASSED] 0x56B0 (DG2)
[19:23:59] [PASSED] 0x56B1 (DG2)
[19:23:59] [PASSED] 0x56BA (DG2)
[19:23:59] [PASSED] 0x56BB (DG2)
[19:23:59] [PASSED] 0x56BC (DG2)
[19:23:59] [PASSED] 0x56BD (DG2)
[19:23:59] [PASSED] 0x5693 (DG2)
[19:23:59] [PASSED] 0x5694 (DG2)
[19:23:59] [PASSED] 0x5695 (DG2)
[19:23:59] [PASSED] 0x56A3 (DG2)
[19:23:59] [PASSED] 0x56A4 (DG2)
[19:23:59] [PASSED] 0x56B2 (DG2)
[19:23:59] [PASSED] 0x56B3 (DG2)
[19:23:59] [PASSED] 0x5696 (DG2)
[19:23:59] [PASSED] 0x5697 (DG2)
[19:23:59] [PASSED] 0xB69 (PVC)
[19:23:59] [PASSED] 0xB6E (PVC)
[19:23:59] [PASSED] 0xBD4 (PVC)
[19:23:59] [PASSED] 0xBD5 (PVC)
[19:23:59] [PASSED] 0xBD6 (PVC)
[19:23:59] [PASSED] 0xBD7 (PVC)
[19:23:59] [PASSED] 0xBD8 (PVC)
[19:23:59] [PASSED] 0xBD9 (PVC)
[19:23:59] [PASSED] 0xBDA (PVC)
[19:23:59] [PASSED] 0xBDB (PVC)
[19:23:59] [PASSED] 0xBE0 (PVC)
[19:23:59] [PASSED] 0xBE1 (PVC)
[19:23:59] [PASSED] 0xBE5 (PVC)
[19:23:59] [PASSED] 0x7D40 (METEORLAKE)
[19:23:59] [PASSED] 0x7D45 (METEORLAKE)
[19:23:59] [PASSED] 0x7D55 (METEORLAKE)
[19:23:59] [PASSED] 0x7D60 (METEORLAKE)
[19:23:59] [PASSED] 0x7DD5 (METEORLAKE)
[19:23:59] [PASSED] 0x6420 (LUNARLAKE)
[19:23:59] [PASSED] 0x64A0 (LUNARLAKE)
[19:23:59] [PASSED] 0x64B0 (LUNARLAKE)
[19:23:59] [PASSED] 0xE202 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE209 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE20B (BATTLEMAGE)
[19:23:59] [PASSED] 0xE20C (BATTLEMAGE)
[19:23:59] [PASSED] 0xE20D (BATTLEMAGE)
[19:23:59] [PASSED] 0xE210 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE211 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE212 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE216 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE220 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE221 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE222 (BATTLEMAGE)
[19:23:59] [PASSED] 0xE223 (BATTLEMAGE)
[19:23:59] [PASSED] 0xB080 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB081 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB082 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB083 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB084 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB085 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB086 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB087 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB08F (PANTHERLAKE)
[19:23:59] [PASSED] 0xB090 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:23:59] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:23:59] [PASSED] 0xFD80 (PANTHERLAKE)
[19:23:59] [PASSED] 0xFD81 (PANTHERLAKE)
[19:23:59] [PASSED] 0xD740 (NOVALAKE_S)
[19:23:59] [PASSED] 0xD741 (NOVALAKE_S)
[19:23:59] [PASSED] 0xD742 (NOVALAKE_S)
[19:23:59] [PASSED] 0xD743 (NOVALAKE_S)
[19:23:59] [PASSED] 0xD744 (NOVALAKE_S)
[19:23:59] [PASSED] 0xD745 (NOVALAKE_S)
[19:23:59] [PASSED] 0x674C (CRESCENTISLAND)
[19:23:59] [PASSED] 0xD750 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD751 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD752 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD753 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD754 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD755 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD756 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD757 (NOVALAKE_P)
[19:23:59] [PASSED] 0xD75F (NOVALAKE_P)
[19:23:59] =============== [PASSED] check_platform_desc ===============
[19:23:59] ===================== [PASSED] xe_pci ======================
[19:23:59] =================== xe_rtp (2 subtests) ====================
[19:23:59] =============== xe_rtp_process_to_sr_tests ================
[19:23:59] [PASSED] coalesce-same-reg
[19:23:59] [PASSED] no-match-no-add
[19:23:59] [PASSED] match-or
[19:23:59] [PASSED] match-or-xfail
[19:23:59] [PASSED] no-match-no-add-multiple-rules
[19:23:59] [PASSED] two-regs-two-entries
[19:23:59] [PASSED] clr-one-set-other
[19:23:59] [PASSED] set-field
[19:23:59] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[19:23:59] [PASSED] conflict-not-disjoint
[19:23:59] [PASSED] conflict-reg-type
[19:23:59] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:23:59] ================== xe_rtp_process_tests ===================
[19:23:59] [PASSED] active1
[19:23:59] [PASSED] active2
[19:23:59] [PASSED] active-inactive
[19:23:59] [PASSED] inactive-active
[19:23:59] [PASSED] inactive-1st_or_active-inactive
[19:23:59] [PASSED] inactive-2nd_or_active-inactive
[19:23:59] [PASSED] inactive-last_or_active-inactive
[19:23:59] [PASSED] inactive-no_or_active-inactive
[19:23:59] ============== [PASSED] xe_rtp_process_tests ===============
[19:23:59] ===================== [PASSED] xe_rtp ======================
[19:23:59] ==================== xe_wa (1 subtest) =====================
[19:23:59] ======================== xe_wa_gt =========================
[19:23:59] [PASSED] TIGERLAKE B0
[19:23:59] [PASSED] DG1 A0
[19:23:59] [PASSED] DG1 B0
[19:23:59] [PASSED] ALDERLAKE_S A0
[19:23:59] [PASSED] ALDERLAKE_S B0
[19:23:59] [PASSED] ALDERLAKE_S C0
[19:23:59] [PASSED] ALDERLAKE_S D0
[19:23:59] [PASSED] ALDERLAKE_P A0
[19:23:59] [PASSED] ALDERLAKE_P B0
[19:23:59] [PASSED] ALDERLAKE_P C0
[19:23:59] [PASSED] ALDERLAKE_S RPLS D0
[19:23:59] [PASSED] ALDERLAKE_P RPLU E0
[19:23:59] [PASSED] DG2 G10 C0
[19:23:59] [PASSED] DG2 G11 B1
[19:23:59] [PASSED] DG2 G12 A1
[19:23:59] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:23:59] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:23:59] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:23:59] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:23:59] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:23:59] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:23:59] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:23:59] ==================== [PASSED] xe_wa_gt =====================
[19:23:59] ====================== [PASSED] xe_wa ======================
[19:23:59] ============================================================
[19:23:59] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[19:23:59] Elapsed time: 35.223s total, 4.220s configuring, 30.335s building, 0.629s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:23:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:24:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:24:25] Starting KUnit Kernel (1/1)...
[19:24:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:24:25] ============ drm_test_pick_cmdline (2 subtests) ============
[19:24:25] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:24:25] =============== drm_test_pick_cmdline_named ===============
[19:24:25] [PASSED] NTSC
[19:24:25] [PASSED] NTSC-J
[19:24:25] [PASSED] PAL
[19:24:25] [PASSED] PAL-M
[19:24:25] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:24:25] ============== [PASSED] drm_test_pick_cmdline ==============
[19:24:25] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:24:25] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:24:25] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:24:25] =========== drm_validate_clone_mode (2 subtests) ===========
[19:24:25] ============== drm_test_check_in_clone_mode ===============
[19:24:25] [PASSED] in_clone_mode
[19:24:25] [PASSED] not_in_clone_mode
[19:24:25] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:24:25] =============== drm_test_check_valid_clones ===============
[19:24:25] [PASSED] not_in_clone_mode
[19:24:25] [PASSED] valid_clone
[19:24:25] [PASSED] invalid_clone
[19:24:25] =========== [PASSED] drm_test_check_valid_clones ===========
[19:24:25] ============= [PASSED] drm_validate_clone_mode =============
[19:24:25] ============= drm_validate_modeset (1 subtest) =============
[19:24:25] [PASSED] drm_test_check_connector_changed_modeset
[19:24:25] ============== [PASSED] drm_validate_modeset ===============
[19:24:25] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:24:25] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:24:25] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:24:25] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:24:25] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[19:24:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:24:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:24:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:24:25] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:24:25] ============== drm_bridge_alloc (2 subtests) ===============
[19:24:25] [PASSED] drm_test_drm_bridge_alloc_basic
[19:24:25] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:24:25] ================ [PASSED] drm_bridge_alloc =================
[19:24:25] ============= drm_cmdline_parser (40 subtests) =============
[19:24:25] [PASSED] drm_test_cmdline_force_d_only
[19:24:25] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:24:25] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:24:25] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:24:25] [PASSED] drm_test_cmdline_force_e_only
[19:24:25] [PASSED] drm_test_cmdline_res
[19:24:25] [PASSED] drm_test_cmdline_res_vesa
[19:24:25] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:24:25] [PASSED] drm_test_cmdline_res_rblank
[19:24:25] [PASSED] drm_test_cmdline_res_bpp
[19:24:25] [PASSED] drm_test_cmdline_res_refresh
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:24:25] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:24:25] [PASSED] drm_test_cmdline_res_margins_force_on
[19:24:25] [PASSED] drm_test_cmdline_res_vesa_margins
[19:24:25] [PASSED] drm_test_cmdline_name
[19:24:25] [PASSED] drm_test_cmdline_name_bpp
[19:24:25] [PASSED] drm_test_cmdline_name_option
[19:24:25] [PASSED] drm_test_cmdline_name_bpp_option
[19:24:25] [PASSED] drm_test_cmdline_rotate_0
[19:24:25] [PASSED] drm_test_cmdline_rotate_90
[19:24:25] [PASSED] drm_test_cmdline_rotate_180
[19:24:25] [PASSED] drm_test_cmdline_rotate_270
[19:24:25] [PASSED] drm_test_cmdline_hmirror
[19:24:25] [PASSED] drm_test_cmdline_vmirror
[19:24:25] [PASSED] drm_test_cmdline_margin_options
[19:24:25] [PASSED] drm_test_cmdline_multiple_options
[19:24:25] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:24:25] [PASSED] drm_test_cmdline_extra_and_option
[19:24:25] [PASSED] drm_test_cmdline_freestanding_options
[19:24:25] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:24:25] [PASSED] drm_test_cmdline_panel_orientation
[19:24:25] ================ drm_test_cmdline_invalid =================
[19:24:25] [PASSED] margin_only
[19:24:25] [PASSED] interlace_only
[19:24:25] [PASSED] res_missing_x
[19:24:25] [PASSED] res_missing_y
[19:24:25] [PASSED] res_bad_y
[19:24:25] [PASSED] res_missing_y_bpp
[19:24:25] [PASSED] res_bad_bpp
[19:24:25] [PASSED] res_bad_refresh
[19:24:25] [PASSED] res_bpp_refresh_force_on_off
[19:24:25] [PASSED] res_invalid_mode
[19:24:25] [PASSED] res_bpp_wrong_place_mode
[19:24:25] [PASSED] name_bpp_refresh
[19:24:25] [PASSED] name_refresh
[19:24:25] [PASSED] name_refresh_wrong_mode
[19:24:25] [PASSED] name_refresh_invalid_mode
[19:24:25] [PASSED] rotate_multiple
[19:24:25] [PASSED] rotate_invalid_val
[19:24:25] [PASSED] rotate_truncated
[19:24:25] [PASSED] invalid_option
[19:24:25] [PASSED] invalid_tv_option
[19:24:25] [PASSED] truncated_tv_option
[19:24:25] ============ [PASSED] drm_test_cmdline_invalid =============
[19:24:25] =============== drm_test_cmdline_tv_options ===============
[19:24:25] [PASSED] NTSC
[19:24:25] [PASSED] NTSC_443
[19:24:25] [PASSED] NTSC_J
[19:24:25] [PASSED] PAL
[19:24:25] [PASSED] PAL_M
[19:24:25] [PASSED] PAL_N
[19:24:25] [PASSED] SECAM
[19:24:25] [PASSED] MONO_525
[19:24:25] [PASSED] MONO_625
[19:24:25] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:24:25] =============== [PASSED] drm_cmdline_parser ================
[19:24:25] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:24:25] [PASSED] drm_test_connector_hdmi_init_valid
[19:24:25] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:24:25] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:24:25] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:24:25] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:24:25] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:24:25] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:24:25] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:24:25] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:24:25] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:24:25] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:24:25] [PASSED] supported_formats=0x3 yuv420_allowed=1
[19:24:25] [PASSED] supported_formats=0x3 yuv420_allowed=0
[19:24:25] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:24:25] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:24:25] [PASSED] drm_test_connector_hdmi_init_null_product
[19:24:25] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:24:25] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:24:25] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:24:25] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:24:25] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:24:25] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:24:25] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:24:25] ========= drm_test_connector_hdmi_init_type_valid =========
[19:24:25] [PASSED] HDMI-A
[19:24:25] [PASSED] HDMI-B
[19:24:25] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:24:25] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:24:25] [PASSED] Unknown
[19:24:25] [PASSED] VGA
[19:24:25] [PASSED] DVI-I
[19:24:25] [PASSED] DVI-D
[19:24:25] [PASSED] DVI-A
[19:24:25] [PASSED] Composite
[19:24:25] [PASSED] SVIDEO
[19:24:25] [PASSED] LVDS
[19:24:25] [PASSED] Component
[19:24:25] [PASSED] DIN
[19:24:25] [PASSED] DP
[19:24:25] [PASSED] TV
[19:24:25] [PASSED] eDP
[19:24:25] [PASSED] Virtual
[19:24:25] [PASSED] DSI
[19:24:25] [PASSED] DPI
[19:24:25] [PASSED] Writeback
[19:24:25] [PASSED] SPI
[19:24:25] [PASSED] USB
[19:24:25] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:24:25] ============ [PASSED] drmm_connector_hdmi_init =============
[19:24:25] ============= drmm_connector_init (3 subtests) =============
[19:24:25] [PASSED] drm_test_drmm_connector_init
[19:24:25] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:24:25] ========= drm_test_drmm_connector_init_type_valid =========
[19:24:25] [PASSED] Unknown
[19:24:25] [PASSED] VGA
[19:24:25] [PASSED] DVI-I
[19:24:25] [PASSED] DVI-D
[19:24:25] [PASSED] DVI-A
[19:24:25] [PASSED] Composite
[19:24:25] [PASSED] SVIDEO
[19:24:25] [PASSED] LVDS
[19:24:25] [PASSED] Component
[19:24:25] [PASSED] DIN
[19:24:25] [PASSED] DP
[19:24:25] [PASSED] HDMI-A
[19:24:25] [PASSED] HDMI-B
[19:24:25] [PASSED] TV
[19:24:25] [PASSED] eDP
[19:24:25] [PASSED] Virtual
[19:24:25] [PASSED] DSI
[19:24:25] [PASSED] DPI
[19:24:25] [PASSED] Writeback
[19:24:25] [PASSED] SPI
[19:24:25] [PASSED] USB
[19:24:25] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:24:25] =============== [PASSED] drmm_connector_init ===============
[19:24:25] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_init
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:24:25] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:24:25] [PASSED] Unknown
[19:24:25] [PASSED] VGA
[19:24:25] [PASSED] DVI-I
[19:24:25] [PASSED] DVI-D
[19:24:25] [PASSED] DVI-A
[19:24:25] [PASSED] Composite
[19:24:25] [PASSED] SVIDEO
[19:24:25] [PASSED] LVDS
[19:24:25] [PASSED] Component
[19:24:25] [PASSED] DIN
[19:24:25] [PASSED] DP
[19:24:25] [PASSED] HDMI-A
[19:24:25] [PASSED] HDMI-B
[19:24:25] [PASSED] TV
[19:24:25] [PASSED] eDP
[19:24:25] [PASSED] Virtual
[19:24:25] [PASSED] DSI
[19:24:25] [PASSED] DPI
[19:24:25] [PASSED] Writeback
[19:24:25] [PASSED] SPI
[19:24:25] [PASSED] USB
[19:24:25] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:24:25] ======== drm_test_drm_connector_dynamic_init_name =========
[19:24:25] [PASSED] Unknown
[19:24:25] [PASSED] VGA
[19:24:25] [PASSED] DVI-I
[19:24:25] [PASSED] DVI-D
[19:24:25] [PASSED] DVI-A
[19:24:25] [PASSED] Composite
[19:24:25] [PASSED] SVIDEO
[19:24:25] [PASSED] LVDS
[19:24:25] [PASSED] Component
[19:24:25] [PASSED] DIN
[19:24:25] [PASSED] DP
[19:24:25] [PASSED] HDMI-A
[19:24:25] [PASSED] HDMI-B
[19:24:25] [PASSED] TV
[19:24:25] [PASSED] eDP
[19:24:25] [PASSED] Virtual
[19:24:25] [PASSED] DSI
[19:24:25] [PASSED] DPI
[19:24:25] [PASSED] Writeback
[19:24:25] [PASSED] SPI
[19:24:25] [PASSED] USB
[19:24:25] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:24:25] =========== [PASSED] drm_connector_dynamic_init ============
[19:24:25] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:24:25] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:24:25] ======= drm_connector_dynamic_register (7 subtests) ========
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:24:25] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:24:25] ========= [PASSED] drm_connector_dynamic_register ==========
[19:24:25] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:24:25] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:24:25] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:24:25] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:24:25] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:24:25] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:24:25] [PASSED] NTSC
[19:24:25] [PASSED] NTSC-443
[19:24:25] [PASSED] NTSC-J
[19:24:25] [PASSED] PAL
[19:24:25] [PASSED] PAL-M
[19:24:25] [PASSED] PAL-N
[19:24:25] [PASSED] SECAM
[19:24:25] [PASSED] Mono
[19:24:25] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:24:25] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:24:25] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:24:25] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:24:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:24:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:24:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:24:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:24:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:24:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:24:25] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:24:25] [PASSED] VIC 96
[19:24:25] [PASSED] VIC 97
[19:24:25] [PASSED] VIC 101
[19:24:25] [PASSED] VIC 102
[19:24:25] [PASSED] VIC 106
[19:24:25] [PASSED] VIC 107
[19:24:25] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:24:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:24:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:24:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:24:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:24:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:24:25] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:24:25] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:24:25] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:24:25] [PASSED] Automatic
[19:24:25] [PASSED] Full
[19:24:25] [PASSED] Limited 16:235
[19:24:25] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:24:25] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:24:25] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:24:25] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:24:25] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:24:25] [PASSED] RGB
[19:24:25] [PASSED] YUV 4:2:0
[19:24:25] [PASSED] YUV 4:2:2
[19:24:25] [PASSED] YUV 4:4:4
[19:24:25] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:24:25] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:24:25] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:24:25] ============= drm_damage_helper (21 subtests) ==============
[19:24:25] [PASSED] drm_test_damage_iter_no_damage
[19:24:25] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:24:25] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:24:25] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:24:25] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:24:25] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:24:25] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:24:25] [PASSED] drm_test_damage_iter_simple_damage
[19:24:25] [PASSED] drm_test_damage_iter_single_damage
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:24:25] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:24:25] [PASSED] drm_test_damage_iter_damage
[19:24:25] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:24:25] [PASSED] drm_test_damage_iter_damage_one_outside
[19:24:25] [PASSED] drm_test_damage_iter_damage_src_moved
[19:24:25] [PASSED] drm_test_damage_iter_damage_not_visible
[19:24:25] ================ [PASSED] drm_damage_helper ================
[19:24:25] ============== drm_dp_mst_helper (3 subtests) ==============
[19:24:25] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:24:25] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:24:25] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:24:25] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:24:25] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:24:25] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:24:25] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:24:25] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:24:25] [PASSED] Link rate 2000000 lane count 4
[19:24:25] [PASSED] Link rate 2000000 lane count 2
[19:24:25] [PASSED] Link rate 2000000 lane count 1
[19:24:25] [PASSED] Link rate 1350000 lane count 4
[19:24:25] [PASSED] Link rate 1350000 lane count 2
[19:24:25] [PASSED] Link rate 1350000 lane count 1
[19:24:25] [PASSED] Link rate 1000000 lane count 4
[19:24:25] [PASSED] Link rate 1000000 lane count 2
[19:24:25] [PASSED] Link rate 1000000 lane count 1
[19:24:25] [PASSED] Link rate 810000 lane count 4
[19:24:25] [PASSED] Link rate 810000 lane count 2
[19:24:25] [PASSED] Link rate 810000 lane count 1
[19:24:25] [PASSED] Link rate 540000 lane count 4
[19:24:25] [PASSED] Link rate 540000 lane count 2
[19:24:25] [PASSED] Link rate 540000 lane count 1
[19:24:25] [PASSED] Link rate 270000 lane count 4
[19:24:25] [PASSED] Link rate 270000 lane count 2
[19:24:25] [PASSED] Link rate 270000 lane count 1
[19:24:25] [PASSED] Link rate 162000 lane count 4
[19:24:25] [PASSED] Link rate 162000 lane count 2
[19:24:25] [PASSED] Link rate 162000 lane count 1
[19:24:25] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:24:25] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:24:25] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:24:25] [PASSED] DP_POWER_UP_PHY with port number
[19:24:25] [PASSED] DP_POWER_DOWN_PHY with port number
[19:24:25] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:24:25] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:24:25] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:24:25] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:24:25] [PASSED] DP_QUERY_PAYLOAD with port number
[19:24:25] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:24:25] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:24:25] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:24:25] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:24:25] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:24:25] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:24:25] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:24:25] [PASSED] DP_REMOTE_I2C_READ with port number
[19:24:25] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:24:25] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:24:25] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:24:25] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:24:25] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:24:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:24:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:24:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:24:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:24:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:24:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:24:25] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:24:25] ================ [PASSED] drm_dp_mst_helper ================
[19:24:25] ================== drm_exec (7 subtests) ===================
[19:24:25] [PASSED] sanitycheck
[19:24:25] [PASSED] test_lock
[19:24:25] [PASSED] test_lock_unlock
[19:24:25] [PASSED] test_duplicates
[19:24:25] [PASSED] test_prepare
[19:24:25] [PASSED] test_prepare_array
[19:24:25] [PASSED] test_multiple_loops
[19:24:25] ==================== [PASSED] drm_exec =====================
[19:24:25] =========== drm_format_helper_test (17 subtests) ===========
[19:24:25] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:24:25] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:24:25] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:24:25] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:24:25] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:24:25] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:24:25] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:24:25] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:24:25] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:24:25] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:24:25] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:24:25] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:24:25] ==================== drm_test_fb_swab =====================
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ================ [PASSED] drm_test_fb_swab =================
[19:24:25] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:24:25] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:24:25] [PASSED] single_pixel_source_buffer
[19:24:25] [PASSED] single_pixel_clip_rectangle
[19:24:25] [PASSED] well_known_colors
[19:24:25] [PASSED] destination_pitch
[19:24:25] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:24:25] ================= drm_test_fb_clip_offset =================
[19:24:25] [PASSED] pass through
[19:24:25] [PASSED] horizontal offset
[19:24:25] [PASSED] vertical offset
[19:24:25] [PASSED] horizontal and vertical offset
[19:24:25] [PASSED] horizontal offset (custom pitch)
[19:24:25] [PASSED] vertical offset (custom pitch)
[19:24:25] [PASSED] horizontal and vertical offset (custom pitch)
[19:24:25] ============= [PASSED] drm_test_fb_clip_offset =============
[19:24:25] =================== drm_test_fb_memcpy ====================
[19:24:25] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:24:25] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:24:25] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:24:25] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:24:25] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:24:25] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:24:25] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:24:25] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:24:25] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:24:25] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:24:25] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:24:25] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:24:25] =============== [PASSED] drm_test_fb_memcpy ================
[19:24:25] ============= [PASSED] drm_format_helper_test ==============
[19:24:25] ================= drm_format (18 subtests) =================
[19:24:25] [PASSED] drm_test_format_block_width_invalid
[19:24:25] [PASSED] drm_test_format_block_width_one_plane
[19:24:25] [PASSED] drm_test_format_block_width_two_plane
[19:24:25] [PASSED] drm_test_format_block_width_three_plane
[19:24:25] [PASSED] drm_test_format_block_width_tiled
[19:24:25] [PASSED] drm_test_format_block_height_invalid
[19:24:25] [PASSED] drm_test_format_block_height_one_plane
[19:24:25] [PASSED] drm_test_format_block_height_two_plane
[19:24:25] [PASSED] drm_test_format_block_height_three_plane
[19:24:25] [PASSED] drm_test_format_block_height_tiled
[19:24:25] [PASSED] drm_test_format_min_pitch_invalid
[19:24:25] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:24:25] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:24:25] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:24:25] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:24:25] [PASSED] drm_test_format_min_pitch_two_plane
[19:24:25] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:24:25] [PASSED] drm_test_format_min_pitch_tiled
[19:24:25] =================== [PASSED] drm_format ====================
[19:24:25] ============== drm_framebuffer (10 subtests) ===============
[19:24:25] ========== drm_test_framebuffer_check_src_coords ==========
[19:24:25] [PASSED] Success: source fits into fb
[19:24:25] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:24:25] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:24:25] [PASSED] Fail: overflowing fb with source width
[19:24:25] [PASSED] Fail: overflowing fb with source height
[19:24:25] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:24:25] [PASSED] drm_test_framebuffer_cleanup
[19:24:25] =============== drm_test_framebuffer_create ===============
[19:24:25] [PASSED] ABGR8888 normal sizes
[19:24:25] [PASSED] ABGR8888 max sizes
[19:24:25] [PASSED] ABGR8888 pitch greater than min required
[19:24:25] [PASSED] ABGR8888 pitch less than min required
[19:24:25] [PASSED] ABGR8888 Invalid width
[19:24:25] [PASSED] ABGR8888 Invalid buffer handle
[19:24:25] [PASSED] No pixel format
[19:24:25] [PASSED] ABGR8888 Width 0
[19:24:25] [PASSED] ABGR8888 Height 0
[19:24:25] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:24:25] [PASSED] ABGR8888 Large buffer offset
[19:24:25] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:24:25] [PASSED] ABGR8888 Invalid flag
[19:24:25] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:24:25] [PASSED] ABGR8888 Valid buffer modifier
[19:24:25] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:24:25] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] NV12 Normal sizes
[19:24:25] [PASSED] NV12 Max sizes
[19:24:25] [PASSED] NV12 Invalid pitch
[19:24:25] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:24:25] [PASSED] NV12 different modifier per-plane
[19:24:25] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:24:25] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] NV12 Modifier for inexistent plane
[19:24:25] [PASSED] NV12 Handle for inexistent plane
[19:24:25] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:24:25] [PASSED] YVU420 Normal sizes
[19:24:25] [PASSED] YVU420 Max sizes
[19:24:25] [PASSED] YVU420 Invalid pitch
[19:24:25] [PASSED] YVU420 Different pitches
[19:24:25] [PASSED] YVU420 Different buffer offsets/pitches
[19:24:25] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:24:25] [PASSED] YVU420 Valid modifier
[19:24:25] [PASSED] YVU420 Different modifiers per plane
[19:24:25] [PASSED] YVU420 Modifier for inexistent plane
[19:24:25] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:24:25] [PASSED] X0L2 Normal sizes
[19:24:25] [PASSED] X0L2 Max sizes
[19:24:25] [PASSED] X0L2 Invalid pitch
[19:24:25] [PASSED] X0L2 Pitch greater than minimum required
[19:24:25] [PASSED] X0L2 Handle for inexistent plane
[19:24:25] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:24:25] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:24:25] [PASSED] X0L2 Valid modifier
[19:24:25] [PASSED] X0L2 Modifier for inexistent plane
[19:24:25] =========== [PASSED] drm_test_framebuffer_create ===========
[19:24:25] [PASSED] drm_test_framebuffer_free
[19:24:25] [PASSED] drm_test_framebuffer_init
[19:24:25] [PASSED] drm_test_framebuffer_init_bad_format
[19:24:25] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:24:25] [PASSED] drm_test_framebuffer_lookup
[19:24:25] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:24:25] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:24:25] ================= [PASSED] drm_framebuffer =================
[19:24:25] ================ drm_gem_shmem (8 subtests) ================
[19:24:25] [PASSED] drm_gem_shmem_test_obj_create
[19:24:25] [PASSED] drm_gem_shmem_test_obj_create_private
[19:24:25] [PASSED] drm_gem_shmem_test_pin_pages
[19:24:25] [PASSED] drm_gem_shmem_test_vmap
[19:24:25] [PASSED] drm_gem_shmem_test_get_sg_table
[19:24:25] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:24:25] [PASSED] drm_gem_shmem_test_madvise
[19:24:25] [PASSED] drm_gem_shmem_test_purge
[19:24:25] ================== [PASSED] drm_gem_shmem ==================
[19:24:25] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:24:25] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:24:25] [PASSED] Automatic
[19:24:25] [PASSED] Full
[19:24:25] [PASSED] Limited 16:235
[19:24:25] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:24:25] [PASSED] drm_test_check_disable_connector
[19:24:25] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:24:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:24:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:24:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:24:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:24:25] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:24:25] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:24:25] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:24:25] [PASSED] drm_test_check_output_bpc_dvi
[19:24:25] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:24:25] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:24:25] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:24:25] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:24:25] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:24:25] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:24:25] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:24:25] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:24:25] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:24:25] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:24:25] [PASSED] drm_test_check_broadcast_rgb_value
[19:24:25] [PASSED] drm_test_check_bpc_8_value
[19:24:25] [PASSED] drm_test_check_bpc_10_value
[19:24:25] [PASSED] drm_test_check_bpc_12_value
[19:24:25] [PASSED] drm_test_check_format_value
[19:24:25] [PASSED] drm_test_check_tmds_char_value
[19:24:25] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:24:25] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[19:24:25] [PASSED] drm_test_check_mode_valid
[19:24:25] [PASSED] drm_test_check_mode_valid_reject
[19:24:25] [PASSED] drm_test_check_mode_valid_reject_rate
[19:24:25] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:24:25] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:24:25] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[19:24:25] [PASSED] drm_test_check_infoframes
[19:24:25] [PASSED] drm_test_check_reject_avi_infoframe
[19:24:25] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[19:24:25] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[19:24:25] [PASSED] drm_test_check_reject_audio_infoframe
[19:24:25] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[19:24:25] ================= drm_managed (2 subtests) =================
[19:24:25] [PASSED] drm_test_managed_release_action
[19:24:25] [PASSED] drm_test_managed_run_action
[19:24:25] =================== [PASSED] drm_managed ===================
[19:24:25] =================== drm_mm (6 subtests) ====================
[19:24:25] [PASSED] drm_test_mm_init
[19:24:25] [PASSED] drm_test_mm_debug
[19:24:25] [PASSED] drm_test_mm_align32
[19:24:25] [PASSED] drm_test_mm_align64
[19:24:25] [PASSED] drm_test_mm_lowest
[19:24:25] [PASSED] drm_test_mm_highest
[19:24:25] ===================== [PASSED] drm_mm ======================
[19:24:25] ============= drm_modes_analog_tv (5 subtests) =============
[19:24:25] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:24:25] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:24:25] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:24:25] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:24:25] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:24:25] =============== [PASSED] drm_modes_analog_tv ===============
[19:24:25] ============== drm_plane_helper (2 subtests) ===============
[19:24:25] =============== drm_test_check_plane_state ================
[19:24:25] [PASSED] clipping_simple
[19:24:25] [PASSED] clipping_rotate_reflect
[19:24:25] [PASSED] positioning_simple
[19:24:25] [PASSED] upscaling
[19:24:25] [PASSED] downscaling
[19:24:25] [PASSED] rounding1
[19:24:25] [PASSED] rounding2
[19:24:25] [PASSED] rounding3
[19:24:25] [PASSED] rounding4
[19:24:25] =========== [PASSED] drm_test_check_plane_state ============
[19:24:25] =========== drm_test_check_invalid_plane_state ============
[19:24:25] [PASSED] positioning_invalid
[19:24:25] [PASSED] upscaling_invalid
[19:24:25] [PASSED] downscaling_invalid
[19:24:25] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:24:25] ================ [PASSED] drm_plane_helper =================
[19:24:25] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:24:25] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:24:25] [PASSED] None
[19:24:25] [PASSED] PAL
[19:24:25] [PASSED] NTSC
[19:24:25] [PASSED] Both, NTSC Default
[19:24:25] [PASSED] Both, PAL Default
[19:24:25] [PASSED] Both, NTSC Default, with PAL on command-line
[19:24:25] [PASSED] Both, PAL Default, with NTSC on command-line
[19:24:25] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:24:25] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:24:25] ================== drm_rect (9 subtests) ===================
[19:24:25] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:24:25] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:24:25] [PASSED] drm_test_rect_clip_scaled_clipped
[19:24:25] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:24:25] ================= drm_test_rect_intersect =================
[19:24:25] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:24:25] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:24:25] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:24:25] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:24:25] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:24:25] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:24:25] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:24:25] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:24:25] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:24:25] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:24:25] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:24:25] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:24:25] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:24:25] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:24:25] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:24:25] ============= [PASSED] drm_test_rect_intersect =============
[19:24:25] ================ drm_test_rect_calc_hscale ================
[19:24:25] [PASSED] normal use
[19:24:25] [PASSED] out of max range
[19:24:25] [PASSED] out of min range
[19:24:25] [PASSED] zero dst
[19:24:25] [PASSED] negative src
[19:24:25] [PASSED] negative dst
[19:24:25] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:24:25] ================ drm_test_rect_calc_vscale ================
[19:24:25] [PASSED] normal use
[19:24:25] [PASSED] out of max range
[19:24:25] [PASSED] out of min range
[19:24:25] [PASSED] zero dst
[19:24:25] [PASSED] negative src
[19:24:25] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[19:24:25] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:24:25] ================== drm_test_rect_rotate ===================
[19:24:25] [PASSED] reflect-x
[19:24:25] [PASSED] reflect-y
[19:24:25] [PASSED] rotate-0
[19:24:25] [PASSED] rotate-90
[19:24:25] [PASSED] rotate-180
[19:24:25] [PASSED] rotate-270
[19:24:25] ============== [PASSED] drm_test_rect_rotate ===============
[19:24:25] ================ drm_test_rect_rotate_inv =================
[19:24:25] [PASSED] reflect-x
[19:24:25] [PASSED] reflect-y
[19:24:25] [PASSED] rotate-0
[19:24:25] [PASSED] rotate-90
[19:24:25] [PASSED] rotate-180
[19:24:25] [PASSED] rotate-270
[19:24:25] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:24:25] ==================== [PASSED] drm_rect =====================
[19:24:25] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:24:25] ============ drm_test_sysfb_build_fourcc_list =============
[19:24:25] [PASSED] no native formats
[19:24:25] [PASSED] XRGB8888 as native format
[19:24:25] [PASSED] remove duplicates
[19:24:25] [PASSED] convert alpha formats
[19:24:25] [PASSED] random formats
[19:24:25] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:24:25] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:24:25] ================== drm_fixp (2 subtests) ===================
[19:24:25] [PASSED] drm_test_int2fixp
[19:24:25] [PASSED] drm_test_sm2fixp
[19:24:25] ==================== [PASSED] drm_fixp =====================
[19:24:25] ============================================================
[19:24:25] Testing complete. Ran 621 tests: passed: 621
[19:24:25] Elapsed time: 26.027s total, 1.697s configuring, 24.159s building, 0.136s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:24:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:24:27] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:24:36] Starting KUnit Kernel (1/1)...
[19:24:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:24:37] ================= ttm_device (5 subtests) ==================
[19:24:37] [PASSED] ttm_device_init_basic
[19:24:37] [PASSED] ttm_device_init_multiple
[19:24:37] [PASSED] ttm_device_fini_basic
[19:24:37] [PASSED] ttm_device_init_no_vma_man
[19:24:37] ================== ttm_device_init_pools ==================
[19:24:37] [PASSED] No DMA allocations, no DMA32 required
[19:24:37] [PASSED] DMA allocations, DMA32 required
[19:24:37] [PASSED] No DMA allocations, DMA32 required
[19:24:37] [PASSED] DMA allocations, no DMA32 required
[19:24:37] ============== [PASSED] ttm_device_init_pools ==============
[19:24:37] =================== [PASSED] ttm_device ====================
[19:24:37] ================== ttm_pool (8 subtests) ===================
[19:24:37] ================== ttm_pool_alloc_basic ===================
[19:24:37] [PASSED] One page
[19:24:37] [PASSED] More than one page
[19:24:37] [PASSED] Above the allocation limit
[19:24:37] [PASSED] One page, with coherent DMA mappings enabled
[19:24:37] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:24:37] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:24:37] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:24:37] [PASSED] One page
[19:24:37] [PASSED] More than one page
[19:24:37] [PASSED] Above the allocation limit
[19:24:37] [PASSED] One page, with coherent DMA mappings enabled
[19:24:37] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:24:37] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:24:37] [PASSED] ttm_pool_alloc_order_caching_match
[19:24:37] [PASSED] ttm_pool_alloc_caching_mismatch
[19:24:37] [PASSED] ttm_pool_alloc_order_mismatch
[19:24:37] [PASSED] ttm_pool_free_dma_alloc
[19:24:37] [PASSED] ttm_pool_free_no_dma_alloc
[19:24:37] [PASSED] ttm_pool_fini_basic
[19:24:37] ==================== [PASSED] ttm_pool =====================
[19:24:37] ================ ttm_resource (8 subtests) =================
[19:24:37] ================= ttm_resource_init_basic =================
[19:24:37] [PASSED] Init resource in TTM_PL_SYSTEM
[19:24:37] [PASSED] Init resource in TTM_PL_VRAM
[19:24:37] [PASSED] Init resource in a private placement
[19:24:37] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:24:37] ============= [PASSED] ttm_resource_init_basic =============
[19:24:37] [PASSED] ttm_resource_init_pinned
[19:24:37] [PASSED] ttm_resource_fini_basic
[19:24:37] [PASSED] ttm_resource_manager_init_basic
[19:24:37] [PASSED] ttm_resource_manager_usage_basic
[19:24:37] [PASSED] ttm_resource_manager_set_used_basic
[19:24:37] [PASSED] ttm_sys_man_alloc_basic
[19:24:37] [PASSED] ttm_sys_man_free_basic
[19:24:37] ================== [PASSED] ttm_resource ===================
[19:24:37] =================== ttm_tt (15 subtests) ===================
[19:24:37] ==================== ttm_tt_init_basic ====================
[19:24:37] [PASSED] Page-aligned size
[19:24:37] [PASSED] Extra pages requested
[19:24:37] ================ [PASSED] ttm_tt_init_basic ================
[19:24:37] [PASSED] ttm_tt_init_misaligned
[19:24:37] [PASSED] ttm_tt_fini_basic
[19:24:37] [PASSED] ttm_tt_fini_sg
[19:24:37] [PASSED] ttm_tt_fini_shmem
[19:24:37] [PASSED] ttm_tt_create_basic
[19:24:37] [PASSED] ttm_tt_create_invalid_bo_type
[19:24:37] [PASSED] ttm_tt_create_ttm_exists
[19:24:37] [PASSED] ttm_tt_create_failed
[19:24:37] [PASSED] ttm_tt_destroy_basic
[19:24:37] [PASSED] ttm_tt_populate_null_ttm
[19:24:37] [PASSED] ttm_tt_populate_populated_ttm
[19:24:37] [PASSED] ttm_tt_unpopulate_basic
[19:24:37] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:24:37] [PASSED] ttm_tt_swapin_basic
[19:24:37] ===================== [PASSED] ttm_tt ======================
[19:24:37] =================== ttm_bo (14 subtests) ===================
[19:24:37] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:24:37] [PASSED] Cannot be interrupted and sleeps
[19:24:37] [PASSED] Cannot be interrupted, locks straight away
[19:24:37] [PASSED] Can be interrupted, sleeps
[19:24:37] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:24:37] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:24:37] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:24:37] [PASSED] ttm_bo_reserve_double_resv
[19:24:37] [PASSED] ttm_bo_reserve_interrupted
[19:24:37] [PASSED] ttm_bo_reserve_deadlock
[19:24:37] [PASSED] ttm_bo_unreserve_basic
[19:24:37] [PASSED] ttm_bo_unreserve_pinned
[19:24:37] [PASSED] ttm_bo_unreserve_bulk
[19:24:37] [PASSED] ttm_bo_fini_basic
[19:24:37] [PASSED] ttm_bo_fini_shared_resv
[19:24:37] [PASSED] ttm_bo_pin_basic
[19:24:37] [PASSED] ttm_bo_pin_unpin_resource
[19:24:37] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:24:37] ===================== [PASSED] ttm_bo ======================
[19:24:37] ============== ttm_bo_validate (21 subtests) ===============
[19:24:37] ============== ttm_bo_init_reserved_sys_man ===============
[19:24:37] [PASSED] Buffer object for userspace
[19:24:37] [PASSED] Kernel buffer object
[19:24:37] [PASSED] Shared buffer object
[19:24:37] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:24:37] ============== ttm_bo_init_reserved_mock_man ==============
[19:24:37] [PASSED] Buffer object for userspace
[19:24:37] [PASSED] Kernel buffer object
[19:24:37] [PASSED] Shared buffer object
[19:24:37] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:24:37] [PASSED] ttm_bo_init_reserved_resv
[19:24:37] ================== ttm_bo_validate_basic ==================
[19:24:37] [PASSED] Buffer object for userspace
[19:24:37] [PASSED] Kernel buffer object
[19:24:37] [PASSED] Shared buffer object
[19:24:37] ============== [PASSED] ttm_bo_validate_basic ==============
[19:24:37] [PASSED] ttm_bo_validate_invalid_placement
[19:24:37] ============= ttm_bo_validate_same_placement ==============
[19:24:37] [PASSED] System manager
[19:24:37] [PASSED] VRAM manager
[19:24:37] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:24:37] [PASSED] ttm_bo_validate_failed_alloc
[19:24:37] [PASSED] ttm_bo_validate_pinned
[19:24:37] [PASSED] ttm_bo_validate_busy_placement
[19:24:37] ================ ttm_bo_validate_multihop =================
[19:24:37] [PASSED] Buffer object for userspace
[19:24:37] [PASSED] Kernel buffer object
[19:24:37] [PASSED] Shared buffer object
[19:24:37] ============ [PASSED] ttm_bo_validate_multihop =============
[19:24:37] ========== ttm_bo_validate_no_placement_signaled ==========
[19:24:37] [PASSED] Buffer object in system domain, no page vector
[19:24:37] [PASSED] Buffer object in system domain with an existing page vector
[19:24:37] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:24:37] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:24:37] [PASSED] Buffer object for userspace
[19:24:37] [PASSED] Kernel buffer object
[19:24:37] [PASSED] Shared buffer object
[19:24:37] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:24:37] [PASSED] ttm_bo_validate_move_fence_signaled
[19:24:37] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:24:37] [PASSED] Waits for GPU
[19:24:37] [PASSED] Tries to lock straight away
[19:24:37] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:24:37] [PASSED] ttm_bo_validate_happy_evict
[19:24:37] [PASSED] ttm_bo_validate_all_pinned_evict
[19:24:37] [PASSED] ttm_bo_validate_allowed_only_evict
[19:24:37] [PASSED] ttm_bo_validate_deleted_evict
[19:24:37] [PASSED] ttm_bo_validate_busy_domain_evict
[19:24:37] [PASSED] ttm_bo_validate_evict_gutting
[19:24:37] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[19:24:37] ================= [PASSED] ttm_bo_validate =================
[19:24:37] ============================================================
[19:24:37] Testing complete. Ran 101 tests: passed: 101
[19:24:37] Elapsed time: 11.250s total, 1.681s configuring, 9.303s building, 0.223s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread* ✓ Xe.CI.BAT: success for drm/i915, drm/xe: clean up i915_vma.h usage for display
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
` (5 preceding siblings ...)
2026-02-27 19:24 ` ✓ CI.KUnit: success " Patchwork
@ 2026-02-27 20:43 ` Patchwork
2026-02-28 9:31 ` ✓ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-02-27 20:43 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 29191 bytes --]
== Series Details ==
Series: drm/i915, drm/xe: clean up i915_vma.h usage for display
URL : https://patchwork.freedesktop.org/series/162332/
State : success
== Summary ==
CI Bug Log - changes from xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1_BAT -> xe-pw-162332v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 14)
------------------------------
Additional (10): bat-bmg-1 bat-lnl-2 bat-lnl-1 bat-ptl-vm bat-atsm-2 bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7
Known issues
------------
Here are the changes found in xe-pw-162332v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-atsm-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@fbdev@info.html
* igt@fbdev@nullptr:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2134]) +4 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@fbdev@nullptr.html
- bat-lnl-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@fbdev@nullptr.html
* igt@fbdev@write:
- bat-wcl-2: NOTRUN -> [SKIP][4] ([Intel XE#7241]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1466])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-wcl-2: NOTRUN -> [SKIP][6] ([Intel XE#7245])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2233])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-1: NOTRUN -> [SKIP][8] ([Intel XE#2233])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-lnl-2: NOTRUN -> [SKIP][9] ([Intel XE#1466] / [Intel XE#2235])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-wcl-1: NOTRUN -> [SKIP][10] ([Intel XE#7245])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-set-prop-any:
- bat-atsm-2: NOTRUN -> [SKIP][11] ([i915#6077]) +30 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][14] ([Intel XE#2244])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@kms_dsc@dsc-basic.html
- bat-adlp-7: NOTRUN -> [SKIP][15] ([Intel XE#2244] / [Intel XE#455])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@kms_dsc@dsc-basic.html
- bat-bmg-1: NOTRUN -> [SKIP][16] ([Intel XE#2244])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@kms_dsc@dsc-basic.html
- bat-atsm-2: NOTRUN -> [SKIP][17] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_dsc@dsc-basic.html
- bat-wcl-1: NOTRUN -> [SKIP][18] ([Intel XE#7244])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: NOTRUN -> [DMESG-WARN][19] ([Intel XE#7483]) +12 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
- bat-lnl-2: NOTRUN -> [SKIP][20] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-wcl-2: NOTRUN -> [SKIP][21] ([Intel XE#7240]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@kms_flip@basic-flip-vs-modeset.html
- bat-bmg-2: NOTRUN -> [SKIP][22] ([Intel XE#2482]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][23] ([Intel XE#352]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
- bat-lnl-2: NOTRUN -> [SKIP][24] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-wcl-2: NOTRUN -> [SKIP][25] ([Intel XE#7246])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@kms_frontbuffer_tracking@basic.html
- bat-bmg-2: NOTRUN -> [SKIP][26] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
- bat-lnl-2: NOTRUN -> [SKIP][27] ([Intel XE#2235] / [Intel XE#2548])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
- bat-atsm-2: NOTRUN -> [SKIP][28] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-atsm-2: NOTRUN -> [SKIP][29] ([Intel XE#540]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html
- bat-lnl-1: NOTRUN -> [SKIP][30] ([Intel XE#1470] / [Intel XE#2853])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
- bat-lnl-2: NOTRUN -> [SKIP][31] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-lnl-2: NOTRUN -> [SKIP][32] ([Intel XE#2235]) +13 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-wcl-2: NOTRUN -> [SKIP][33] ([Intel XE#7237]) +13 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-atsm-2: NOTRUN -> [SKIP][34] ([Intel XE#829] / [i915#1836]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_prop_blob@basic:
- bat-atsm-2: NOTRUN -> [SKIP][35] ([Intel XE#780])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-lnl-2: NOTRUN -> [SKIP][36] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- bat-atsm-2: NOTRUN -> [SKIP][37] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-wcl-2: NOTRUN -> [SKIP][38] ([Intel XE#2850]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-2: NOTRUN -> [SKIP][39] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-1: NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-lnl-1: NOTRUN -> [SKIP][41] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
- bat-lnl-2: NOTRUN -> [SKIP][42] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][43] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_evict@evict-beng-small.html
- bat-lnl-2: NOTRUN -> [SKIP][44] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][45] ([Intel XE#5764]) +10 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
- bat-lnl-1: NOTRUN -> [SKIP][46] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict@evict-small-external-cm:
- bat-wcl-1: NOTRUN -> [SKIP][47] ([Intel XE#7238]) +11 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict@evict-small-multi-vm:
- bat-wcl-2: NOTRUN -> [SKIP][48] ([Intel XE#7238]) +11 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: NOTRUN -> [SKIP][49] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@no-exec-parallel-basic:
- bat-lnl-1: NOTRUN -> [SKIP][50] ([Intel XE#7482]) +17 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_exec_balancer@no-exec-parallel-basic.html
* igt@xe_exec_balancer@no-exec-virtual-basic:
- bat-lnl-2: NOTRUN -> [SKIP][51] ([Intel XE#7482]) +17 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_exec_balancer@no-exec-virtual-basic.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-wcl-2: NOTRUN -> [SKIP][52] ([Intel XE#7482]) +17 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_balancer@twice-parallel-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][53] ([Intel XE#7482]) +17 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_exec_balancer@twice-virtual-rebind:
- bat-wcl-1: NOTRUN -> [SKIP][54] ([Intel XE#7482]) +17 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html
* igt@xe_exec_balancer@twice-virtual-userptr-invalidate:
- bat-adlp-7: NOTRUN -> [SKIP][55] ([Intel XE#7482]) +17 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
- bat-atsm-2: NOTRUN -> [SKIP][56] ([Intel XE#288]) +32 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][57] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_huc_copy@huc_copy:
- bat-atsm-2: NOTRUN -> [SKIP][58] ([Intel XE#255])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: NOTRUN -> [SKIP][59] ([Intel XE#2229]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-wcl-2: NOTRUN -> [SKIP][60] ([Intel XE#7239]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][61] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
- bat-lnl-2: NOTRUN -> [SKIP][62] ([Intel XE#2229]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][63] ([Intel XE#2229])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- bat-bmg-1: NOTRUN -> [SKIP][64] ([Intel XE#2229])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-atsm-2: NOTRUN -> [SKIP][65] ([Intel XE#2229])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-wcl-1: NOTRUN -> [SKIP][66] ([Intel XE#7239]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-ptl-vm: NOTRUN -> [SKIP][67] ([Intel XE#5775])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][68] ([Intel XE#2229] / [Intel XE#5488])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][69] ([Intel XE#5776])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_mmap@vram.html
- bat-lnl-1: NOTRUN -> [SKIP][70] ([Intel XE#1416])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_mmap@vram.html
- bat-wcl-2: NOTRUN -> [SKIP][71] ([Intel XE#7243])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_mmap@vram.html
- bat-adlp-7: NOTRUN -> [SKIP][72] ([Intel XE#1008] / [Intel XE#5591])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_mmap@vram.html
- bat-lnl-2: NOTRUN -> [SKIP][73] ([Intel XE#1416])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_mmap@vram.html
- bat-wcl-1: NOTRUN -> [SKIP][74] ([Intel XE#7243])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-atsm-2: NOTRUN -> [SKIP][75] ([Intel XE#977])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
- bat-adlp-7: NOTRUN -> [SKIP][76] ([Intel XE#977])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][77] ([Intel XE#5777])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
- bat-lnl-1: NOTRUN -> [SKIP][78] ([Intel XE#1420] / [Intel XE#2838])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
- bat-wcl-2: NOTRUN -> [SKIP][79] ([Intel XE#7247])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-2: NOTRUN -> [SKIP][80] ([Intel XE#1420])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-1: NOTRUN -> [SKIP][81] ([Intel XE#1420])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
- bat-adlp-7: NOTRUN -> [SKIP][82] ([Intel XE#2838] / [Intel XE#979])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
- bat-lnl-2: NOTRUN -> [SKIP][83] ([Intel XE#1420] / [Intel XE#2838])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html
- bat-wcl-1: NOTRUN -> [SKIP][84] ([Intel XE#7247])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html
- bat-atsm-2: NOTRUN -> [SKIP][85] ([Intel XE#2838] / [Intel XE#979])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][86] ([Intel XE#2245])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-bmg-1: NOTRUN -> [SKIP][87] ([Intel XE#2245])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-lnl-2: NOTRUN -> [SKIP][88] ([Intel XE#977])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
- bat-wcl-1: NOTRUN -> [SKIP][89] ([Intel XE#7242])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_pat@pat-index-xelp.html
- bat-ptl-vm: NOTRUN -> [SKIP][90] ([Intel XE#5771])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
- bat-wcl-2: NOTRUN -> [SKIP][91] ([Intel XE#7242])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_pat@pat-index-xelp.html
- bat-lnl-1: NOTRUN -> [SKIP][92] ([Intel XE#977])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][93] ([Intel XE#5780])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-1: NOTRUN -> [SKIP][94] ([Intel XE#979])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
- bat-wcl-2: NOTRUN -> [SKIP][95] ([Intel XE#7248])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-2: NOTRUN -> [SKIP][96] ([Intel XE#2236])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-1: NOTRUN -> [SKIP][97] ([Intel XE#2236])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
- bat-adlp-7: NOTRUN -> [SKIP][98] ([Intel XE#979])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-2: NOTRUN -> [SKIP][99] ([Intel XE#2236] / [Intel XE#979])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html
- bat-wcl-1: NOTRUN -> [SKIP][100] ([Intel XE#7248])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html
- bat-atsm-2: NOTRUN -> [SKIP][101] ([Intel XE#979])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][102] ([Intel XE#6566]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-lnl-2: NOTRUN -> [SKIP][103] ([Intel XE#3342])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-lnl-1: NOTRUN -> [SKIP][104] ([Intel XE#3342])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][105] -> [FAIL][106] ([Intel XE#6520])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7237
[Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238
[Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239
[Intel XE#7240]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7240
[Intel XE#7241]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7241
[Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242
[Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243
[Intel XE#7244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7244
[Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245
[Intel XE#7246]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7246
[Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247
[Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1 -> xe-pw-162332v1
IGT_8775: 8775
xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
xe-pw-162332v1: 162332v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/index.html
[-- Attachment #2: Type: text/html, Size: 35798 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* ✓ Xe.CI.FULL: success for drm/i915, drm/xe: clean up i915_vma.h usage for display
2026-02-27 17:17 [PATCH 0/4] drm/i915, drm/xe: clean up i915_vma.h usage for display Jani Nikula
` (6 preceding siblings ...)
2026-02-27 20:43 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-28 9:31 ` Patchwork
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-02-28 9:31 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 18926 bytes --]
== Series Details ==
Series: drm/i915, drm/xe: clean up i915_vma.h usage for display
URL : https://patchwork.freedesktop.org/series/162332/
State : success
== Summary ==
CI Bug Log - changes from xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1_FULL -> xe-pw-162332v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-162332v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#1407])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#2191])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: [PASS][4] -> [SKIP][5] ([Intel XE#367])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2652]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#373]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3278] / [Intel XE#6973])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#3304]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1424]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2321])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#309])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#4422])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1421]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#301])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#656]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#7061]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#6900])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#356])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7130]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#599])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2893])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1406]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3414] / [Intel XE#3904])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1499])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@kms_vrr@negative-basic.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#6010] / [Intel XE#7317])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_configfs@survivability-mode.html
* igt@xe_eudebug@read-metadata:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#4837]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_eudebug@read-metadata.html
* igt@xe_evict@evict-mixed-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_evict@evict-mixed-threads-large-multi-vm.html
* igt@xe_exec_balancer@twice-cm-parallel-rebind:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7482]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_exec_balancer@twice-cm-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1392]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7136]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html
* igt@xe_exec_multi_queue@one-queue-basic:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#6874]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_exec_multi_queue@one-queue-basic.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7138]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2229])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6964])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1:
- shard-lnl: [DMESG-FAIL][42] ([Intel XE#1727]) -> [PASS][43] +1 other test pass
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][44] ([Intel XE#7480]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][46] ([Intel XE#301]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][48] ([Intel XE#1503]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][50] ([Intel XE#7340]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][52] -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_pm_residency@aspm_link_residency:
- shard-bmg: [SKIP][54] ([Intel XE#7258]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-1/igt@xe_pm_residency@aspm_link_residency.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][56] ([Intel XE#3544]) -> [SKIP][57] ([Intel XE#3374] / [Intel XE#3544])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[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#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258
[Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7480
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
Build changes
-------------
* Linux: xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1 -> xe-pw-162332v1
IGT_8775: 8775
xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
xe-pw-162332v1: 162332v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162332v1/index.html
[-- Attachment #2: Type: text/html, Size: 20694 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread