Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Prepare GVT for display modularization
@ 2025-12-19  6:02 Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 1/6] drm/i915/display: Abstract pipe/trans/cursor offset calculation Ankit Nautiyal
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe; +Cc: jani.nikula, Ankit Nautiyal

GVT currently relies on display internals through register macros and
helpers like for_each_pipe(). This tight coupling makes modularization
difficult because GVT should not access struct intel_display directly.
Add an API for GVT code to expose DISPLAY_RUNTIME_INFO()->pipe_mask.
This series introduces changes to make GVT independent of display internals
while keeping existing macros usable:

- Abstract offset calculations in display using
  INTEL_DISPLAY_DEVICE_*_OFFSET() macros.
- Add APIs for GVT to compute offsets and pipe mask via functions.
- Update GVT to use these APIs by overriding helper macros and
  for_each_pipe().

Rev2:
- Remove conflicting headers and get rid of #ifdefs/#undefs in last
  patch.
- Wrap macro arguments in paranthesis.
- Rename for_each_pipe to gvt_for_each_pipe.

PS: I have not yet addressed the question about whether we need to start
    using _MMIO_TRANS2() instead of_MMIO_PIPE2() in TRANSCONF() macro.
    That likely needs a separate patch and discussion.
    For now, I have kept the patch#4 to deal with the
    -Werror=enum-conversion:
     - drm/i915/gvt/display_helpers: Cast argument to enum pipe for
       pipe-offset macro

Rev3:
 - Squash patch to cast arg to enum pipe for the pipe-offset macro.
 - Add FIXME comment about the cast.
 - Add intel_gvt_api.o to Makefile only when CONFIG_DRM_I915_GVT is enabled.
 - Export GVT-facing helpers using EXPORT_SYMBOL_NS_GPL(..., "I915_GVT") to
   limit exposure.

Ankit Nautiyal (6):
  drm/i915/display: Abstract pipe/trans/cursor offset calculation
  drm/i915/display: Add APIs to be used by gvt to get the register
    offsets
  drm/i915/gvt: Add header to use display offset functions in macros
  drm/i915/gvt: Change for_each_pipe to use pipe_valid API
  drm/i915/gvt: Use the appropriate header for the DPLL macro
  drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs

 drivers/gpu/drm/i915/Makefile                 |  3 ++
 .../drm/i915/display/intel_display_device.h   | 17 ++++++++
 .../drm/i915/display/intel_display_limits.c   |  0
 .../drm/i915/display/intel_display_reg_defs.h | 15 ++-----
 drivers/gpu/drm/i915/display/intel_gvt_api.c  | 43 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_gvt_api.h  | 21 +++++++++
 drivers/gpu/drm/i915/gvt/cmd_parser.c         |  2 +-
 drivers/gpu/drm/i915/gvt/display.c            | 13 +++---
 drivers/gpu/drm/i915/gvt/display_helpers.h    | 37 ++++++++++++++++
 drivers/gpu/drm/i915/gvt/fb_decoder.c         |  2 +-
 drivers/gpu/drm/i915/gvt/handlers.c           |  2 +-
 11 files changed, 135 insertions(+), 20 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/display/intel_display_limits.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_gvt_api.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_gvt_api.h
 create mode 100644 drivers/gpu/drm/i915/gvt/display_helpers.h

-- 
2.45.2


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

* [PATCH 1/6] drm/i915/display: Abstract pipe/trans/cursor offset calculation
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
@ 2025-12-19  6:02 ` Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 2/6] drm/i915/display: Add APIs to be used by gvt to get the register offsets Ankit Nautiyal
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe
  Cc: jani.nikula, Ankit Nautiyal, Jani Nikula

Introduce INTEL_DISPLAY_DEVICE_*_OFFSET() macros to compute absolute
MMIO offsets for pipe, transcoder, and cursor registers.

Update _MMIO_PIPE2/_MMIO_TRANS2/_MMIO_CURSOR2 to use these macros
for cleaner abstraction and to prepare for external API usage (e.g. GVT).

Also move DISPLAY_MMIO_BASE() to intel_display_device.h so it can be
abstracted in GVT, allowing register macros to resolve via
exported helpers rather than peeking into struct intel_display.

v2: Wrap the macro argument usages in parenthesis. (Jani)

Suggested-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
 .../gpu/drm/i915/display/intel_display_device.h | 17 +++++++++++++++++
 .../drm/i915/display/intel_display_reg_defs.h   | 15 ++++-----------
 2 files changed, 21 insertions(+), 11 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 50b2e9ae2c18..13b6616bc496 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -260,6 +260,23 @@ struct intel_display_platforms {
 	 ((id) == ARLS_HOST_BRIDGE_PCI_ID3) || \
 	 ((id) == ARLS_HOST_BRIDGE_PCI_ID4))
 
+#define INTEL_DISPLAY_DEVICE_PIPE_OFFSET(display, pipe) \
+	(DISPLAY_INFO((display))->pipe_offsets[(pipe)] - \
+	 DISPLAY_INFO((display))->pipe_offsets[PIPE_A] + \
+	 DISPLAY_MMIO_BASE((display)))
+
+#define INTEL_DISPLAY_DEVICE_TRANS_OFFSET(display, trans) \
+	(DISPLAY_INFO((display))->trans_offsets[(trans)] - \
+	 DISPLAY_INFO((display))->trans_offsets[TRANSCODER_A] + \
+	 DISPLAY_MMIO_BASE((display)))
+
+#define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
+	(DISPLAY_INFO((display))->cursor_offsets[(pipe)] - \
+	 DISPLAY_INFO((display))->cursor_offsets[PIPE_A] + \
+	 DISPLAY_MMIO_BASE((display)))
+
+#define DISPLAY_MMIO_BASE(display)	(DISPLAY_INFO((display))->mmio_offset)
+
 struct intel_display_runtime_info {
 	struct intel_display_ip_ver {
 		u16 ver;
diff --git a/drivers/gpu/drm/i915/display/intel_display_reg_defs.h b/drivers/gpu/drm/i915/display/intel_display_reg_defs.h
index b83ad06f2ea7..175334b41bba 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reg_defs.h
+++ b/drivers/gpu/drm/i915/display/intel_display_reg_defs.h
@@ -8,8 +8,6 @@
 
 #include "i915_reg_defs.h"
 
-#define DISPLAY_MMIO_BASE(dev_priv)	(DISPLAY_INFO(dev_priv)->mmio_offset)
-
 #define VLV_DISPLAY_BASE		0x180000
 
 /*
@@ -36,14 +34,9 @@
  * Device info offset array based helpers for groups of registers with unevenly
  * spaced base offsets.
  */
-#define _MMIO_PIPE2(display, pipe, reg)		_MMIO(DISPLAY_INFO(display)->pipe_offsets[(pipe)] - \
-						      DISPLAY_INFO(display)->pipe_offsets[PIPE_A] + \
-						      DISPLAY_MMIO_BASE(display) + (reg))
-#define _MMIO_TRANS2(display, tran, reg)	_MMIO(DISPLAY_INFO(display)->trans_offsets[(tran)] - \
-						      DISPLAY_INFO(display)->trans_offsets[TRANSCODER_A] + \
-						      DISPLAY_MMIO_BASE(display) + (reg))
-#define _MMIO_CURSOR2(display, pipe, reg)	_MMIO(DISPLAY_INFO(display)->cursor_offsets[(pipe)] - \
-						      DISPLAY_INFO(display)->cursor_offsets[PIPE_A] + \
-						      DISPLAY_MMIO_BASE(display) + (reg))
+
+#define _MMIO_PIPE2(display, pipe, reg)		_MMIO(INTEL_DISPLAY_DEVICE_PIPE_OFFSET((display), (pipe)) + (reg))
+#define _MMIO_TRANS2(display, trans, reg)	_MMIO(INTEL_DISPLAY_DEVICE_TRANS_OFFSET((display), (trans)) + (reg))
+#define _MMIO_CURSOR2(display, pipe, reg)	_MMIO(INTEL_DISPLAY_DEVICE_CURSOR_OFFSET((display), (pipe)) + (reg))
 
 #endif /* __INTEL_DISPLAY_REG_DEFS_H__ */
-- 
2.45.2


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

* [PATCH 2/6] drm/i915/display: Add APIs to be used by gvt to get the register offsets
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 1/6] drm/i915/display: Abstract pipe/trans/cursor offset calculation Ankit Nautiyal
@ 2025-12-19  6:02 ` Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 3/6] drm/i915/gvt: Add header to use display offset functions in macros Ankit Nautiyal
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe
  Cc: jani.nikula, Ankit Nautiyal, Jani Nikula

GVT code uses macros for register offsets that require display internal
structures. This makes clean separation of display code and
modularization difficult.

Introduce APIs to abstract offset calculations:
- intel_display_device_pipe_offset()
- intel_display_device_trans_offset()
- intel_display_device_cursor_offset()
- intel_display_device_mmio_base()

These APIs return absolute base offsets for the respective register
groups, allowing GVT to compute MMIO addresses without using internal
macros or struct fields. This prepares the path to separate
display-dependent code from i915/gvt/*.

v2:
- Build GVT APIs only when GVT is actually enabled. (Jani)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com> (#v1)
---
 drivers/gpu/drm/i915/Makefile                 |  3 ++
 .../drm/i915/display/intel_display_limits.c   |  0
 drivers/gpu/drm/i915/display/intel_gvt_api.c  | 34 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_gvt_api.h  | 20 +++++++++++
 4 files changed, 57 insertions(+)
 create mode 100644 drivers/gpu/drm/i915/display/intel_display_limits.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_gvt_api.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_gvt_api.h

diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index f01b5d8a07c7..2c00d74415f8 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -380,6 +380,9 @@ i915-y += \
 i915-$(CONFIG_DRM_I915_DP_TUNNEL) += \
 	display/intel_dp_tunnel.o
 
+i915-$(CONFIG_DRM_I915_GVT) += \
+	display/intel_gvt_api.o
+
 i915-y += \
 	i915_perf.o
 
diff --git a/drivers/gpu/drm/i915/display/intel_display_limits.c b/drivers/gpu/drm/i915/display/intel_display_limits.c
new file mode 100644
index 000000000000..e69de29bb2d1
diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.c b/drivers/gpu/drm/i915/display/intel_gvt_api.c
new file mode 100644
index 000000000000..b1bfe4843135
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_gvt_api.c
@@ -0,0 +1,34 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include <linux/types.h>
+
+#include "intel_display_core.h"
+#include "intel_display_regs.h"
+#include "intel_gvt_api.h"
+
+u32 intel_display_device_pipe_offset(struct intel_display *display, enum pipe pipe)
+{
+	return INTEL_DISPLAY_DEVICE_PIPE_OFFSET(display, pipe);
+}
+EXPORT_SYMBOL_NS_GPL(intel_display_device_pipe_offset, "I915_GVT");
+
+u32 intel_display_device_trans_offset(struct intel_display *display, enum transcoder trans)
+{
+	return INTEL_DISPLAY_DEVICE_TRANS_OFFSET(display, trans);
+}
+EXPORT_SYMBOL_NS_GPL(intel_display_device_trans_offset, "I915_GVT");
+
+u32 intel_display_device_cursor_offset(struct intel_display *display, enum pipe pipe)
+{
+	return INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe);
+}
+EXPORT_SYMBOL_NS_GPL(intel_display_device_cursor_offset, "I915_GVT");
+
+u32 intel_display_device_mmio_base(struct intel_display *display)
+{
+	return DISPLAY_MMIO_BASE(display);
+}
+EXPORT_SYMBOL_NS_GPL(intel_display_device_mmio_base, "I915_GVT");
diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.h b/drivers/gpu/drm/i915/display/intel_gvt_api.h
new file mode 100644
index 000000000000..e9a1122a988d
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_gvt_api.h
@@ -0,0 +1,20 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __INTEL_GVT_API_H__
+#define __INTEL_GVT_API_H__
+
+#include <linux/types.h>
+
+enum pipe;
+enum transcoder;
+struct intel_display;
+
+u32 intel_display_device_pipe_offset(struct intel_display *display, enum pipe pipe);
+u32 intel_display_device_trans_offset(struct intel_display *display, enum transcoder trans);
+u32 intel_display_device_cursor_offset(struct intel_display *display, enum pipe pipe);
+u32 intel_display_device_mmio_base(struct intel_display *display);
+
+#endif /* __INTEL_GVT_API_H__ */
-- 
2.45.2


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

* [PATCH 3/6] drm/i915/gvt: Add header to use display offset functions in macros
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 1/6] drm/i915/display: Abstract pipe/trans/cursor offset calculation Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 2/6] drm/i915/display: Add APIs to be used by gvt to get the register offsets Ankit Nautiyal
@ 2025-12-19  6:02 ` Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API Ankit Nautiyal
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe
  Cc: jani.nikula, Ankit Nautiyal, Jani Nikula

Introduce gvt/display_helpers.h to make DISPLAY_MMIO_BASE and
INTEL_DISPLAY_DEVICE_*_OFFSET macros call exported display functions.
This lets GVT keep using existing register macros (e.g.,
TRANSCONF(display, pipe)) while ensuring offset calculations happen
through functions instead of accessing display internals.

Ideally, we would remove the display headers that define these macros,
but some macros in GVT still depend on them and have not yet been
ported. Keeping those headers leads to build conflicts, so as a
stopgap, we use temporary ifdef/undef blocks to override the macros
with API-backed versions. These will be removed once all dependent
macros are ported and the conflicting headers can be safely dropped.

Note:
TRANSCONF() expects a pipe index but some GVT callers pass a transcoder,
causing -Werror=enum-conversion.
Fix: cast to enum pipe in the GVT-side macro override.
This works for all cases as TRANSCODER_{A,B,C,D} all have 1:1 mapping to
PIPE_{A,B,C,D} except for TRANSCODER_EDP which is used in one place.
In any case, the cast preserves the previous behaviour.

v2:
 - Remove prefix `gvt/` while including the header file. (Jani)
 - Explain the rationale behind temporary ifdef/undefs and plan to drop
   them. (Jani).
v3:
 - Meld the patch to cast argument to enum pipe for the pipe-offset
   macro. (Jani)
 - Add a FIXME to highlight the cast. (Jani)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/gvt/cmd_parser.c      |  1 +
 drivers/gpu/drm/i915/gvt/display.c         |  1 +
 drivers/gpu/drm/i915/gvt/display_helpers.h | 45 ++++++++++++++++++++++
 drivers/gpu/drm/i915/gvt/fb_decoder.c      |  1 +
 drivers/gpu/drm/i915/gvt/handlers.c        |  1 +
 5 files changed, 49 insertions(+)
 create mode 100644 drivers/gpu/drm/i915/gvt/display_helpers.h

diff --git a/drivers/gpu/drm/i915/gvt/cmd_parser.c b/drivers/gpu/drm/i915/gvt/cmd_parser.c
index df04e4ead8ea..fbc8a5e28576 100644
--- a/drivers/gpu/drm/i915/gvt/cmd_parser.c
+++ b/drivers/gpu/drm/i915/gvt/cmd_parser.c
@@ -58,6 +58,7 @@
 #include "gem/i915_gem_context.h"
 #include "gem/i915_gem_pm.h"
 #include "gt/intel_context.h"
+#include "display_helpers.h"
 
 #define INVALID_OP    (~0U)
 
diff --git a/drivers/gpu/drm/i915/gvt/display.c b/drivers/gpu/drm/i915/gvt/display.c
index 06517d1f07a2..9d6b22b2e4d0 100644
--- a/drivers/gpu/drm/i915/gvt/display.c
+++ b/drivers/gpu/drm/i915/gvt/display.c
@@ -46,6 +46,7 @@
 #include "display/intel_cursor_regs.h"
 #include "display/intel_display.h"
 #include "display/intel_display_core.h"
+#include "display_helpers.h"
 #include "display/intel_dpio_phy.h"
 #include "display/intel_sprite_regs.h"
 
diff --git a/drivers/gpu/drm/i915/gvt/display_helpers.h b/drivers/gpu/drm/i915/gvt/display_helpers.h
new file mode 100644
index 000000000000..46c5192a79a7
--- /dev/null
+++ b/drivers/gpu/drm/i915/gvt/display_helpers.h
@@ -0,0 +1,45 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __DISPLAY_HELPERS_H__
+#define __DISPLAY_HELPERS_H__
+
+#include "display/intel_gvt_api.h"
+
+#ifdef DISPLAY_MMIO_BASE
+#undef DISPLAY_MMIO_BASE
+#endif
+#define DISPLAY_MMIO_BASE(display) \
+	intel_display_device_mmio_base((display))
+
+#ifdef INTEL_DISPLAY_DEVICE_PIPE_OFFSET
+#undef INTEL_DISPLAY_DEVICE_PIPE_OFFSET
+#endif
+/*
+ * #FIXME:
+ * TRANSCONF() uses pipe-based addressing via _MMIO_PIPE2().
+ * Some GVT call sites pass enum transcoder instead of enum pipe.
+ * Cast the argument to enum pipe for now since TRANSCODER_A..D map
+ * 1:1 to PIPE_A..D.
+ * TRANSCODER_EDP is an exception, the cast preserves the existing
+ * behaviour but this needs to be handled later either by using the
+ * correct pipe or by switching TRANSCONF() to use _MMIO_TRANS2().
+ */
+#define INTEL_DISPLAY_DEVICE_PIPE_OFFSET(display, idx) \
+	intel_display_device_pipe_offset((display), (enum pipe)(idx))
+
+#ifdef INTEL_DISPLAY_DEVICE_TRANS_OFFSET
+#undef INTEL_DISPLAY_DEVICE_TRANS_OFFSET
+#endif
+#define INTEL_DISPLAY_DEVICE_TRANS_OFFSET(display, trans) \
+	intel_display_device_trans_offset((display), (trans))
+
+#ifdef INTEL_DISPLAY_DEVICE_CURSOR_OFFSET
+#undef INTEL_DISPLAY_DEVICE_CURSOR_OFFSET
+#endif
+#define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
+	intel_display_device_cursor_offset((display), (pipe))
+
+#endif /* __DISPLAY_HELPERS_H__ */
diff --git a/drivers/gpu/drm/i915/gvt/fb_decoder.c b/drivers/gpu/drm/i915/gvt/fb_decoder.c
index a8079cfa8e1d..c402f3b5a0ab 100644
--- a/drivers/gpu/drm/i915/gvt/fb_decoder.c
+++ b/drivers/gpu/drm/i915/gvt/fb_decoder.c
@@ -46,6 +46,7 @@
 #include "display/intel_display_core.h"
 #include "display/intel_sprite_regs.h"
 #include "display/skl_universal_plane_regs.h"
+#include "display_helpers.h"
 
 #define PRIMARY_FORMAT_NUM	16
 struct pixel_format {
diff --git a/drivers/gpu/drm/i915/gvt/handlers.c b/drivers/gpu/drm/i915/gvt/handlers.c
index 36ea12ade849..9ada97d01b6c 100644
--- a/drivers/gpu/drm/i915/gvt/handlers.c
+++ b/drivers/gpu/drm/i915/gvt/handlers.c
@@ -66,6 +66,7 @@
 #include "display/vlv_dsi_pll_regs.h"
 #include "gt/intel_gt_regs.h"
 #include <linux/vmalloc.h>
+#include "display_helpers.h"
 
 /* XXX FIXME i915 has changed PP_XXX definition */
 #define PCH_PP_STATUS  _MMIO(0xc7200)
-- 
2.45.2


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

* [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (2 preceding siblings ...)
  2025-12-19  6:02 ` [PATCH 3/6] drm/i915/gvt: Add header to use display offset functions in macros Ankit Nautiyal
@ 2025-12-19  6:02 ` Ankit Nautiyal
  2025-12-19 12:34   ` Jani Nikula
  2025-12-19  6:02 ` [PATCH 5/6] drm/i915/gvt: Use the appropriate header for the DPLL macro Ankit Nautiyal
                   ` (6 subsequent siblings)
  10 siblings, 1 reply; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe; +Cc: jani.nikula, Ankit Nautiyal

Add a new API to check if a given pipe is valid using
DISPLAY_RUNTIME_INFO() for GVT.

Update GVT to use this API instead of accessing
`DISPLAY_RUNTIME_INFO->pipe_mask` directly in the `for_each_pipe` macro.

Since `for_each_pipe` is defined in i915/display/intel_display.h, which
also contains other macros used by gvt/display.c, we cannot drop the
intel_display.h header yet. This causes a build error because
`for_each_pipe` is included from both i915/display/intel_display.h and
gvt/display_helpers.h.

To resolve this, rename the GVT macro to `gvt_for_each_pipe` and make it
call the new API. This avoids exposing display internals and prepares for
display modularization.

v2:
 - Expose API to check if pipe is valid rather than the runtime info
   pipe mask. (Jani)
 - Rename the macro to `gvt_for_each_pipe` to resolve build error.
v3:
 - Use EXPORT_SYMBOL_NS_GPL(..., "I915_GVT"); (Jani)
 - Use enum pipe at call sites instead of casting in the macro. (Jani)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_gvt_api.c |  9 +++++++++
 drivers/gpu/drm/i915/display/intel_gvt_api.h |  1 +
 drivers/gpu/drm/i915/gvt/display.c           | 10 +++++-----
 drivers/gpu/drm/i915/gvt/display_helpers.h   |  4 ++++
 4 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.c b/drivers/gpu/drm/i915/display/intel_gvt_api.c
index b1bfe4843135..a69e249395ae 100644
--- a/drivers/gpu/drm/i915/display/intel_gvt_api.c
+++ b/drivers/gpu/drm/i915/display/intel_gvt_api.c
@@ -32,3 +32,12 @@ u32 intel_display_device_mmio_base(struct intel_display *display)
 	return DISPLAY_MMIO_BASE(display);
 }
 EXPORT_SYMBOL_NS_GPL(intel_display_device_mmio_base, "I915_GVT");
+
+bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe)
+{
+	if (pipe < PIPE_A || pipe >= I915_MAX_PIPES)
+		return false;
+
+	return DISPLAY_RUNTIME_INFO(display)->pipe_mask & BIT(pipe);
+}
+EXPORT_SYMBOL_NS_GPL(intel_display_device_pipe_valid, "I915_GVT");
diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.h b/drivers/gpu/drm/i915/display/intel_gvt_api.h
index e9a1122a988d..a53687f7d934 100644
--- a/drivers/gpu/drm/i915/display/intel_gvt_api.h
+++ b/drivers/gpu/drm/i915/display/intel_gvt_api.h
@@ -16,5 +16,6 @@ u32 intel_display_device_pipe_offset(struct intel_display *display, enum pipe pi
 u32 intel_display_device_trans_offset(struct intel_display *display, enum transcoder trans);
 u32 intel_display_device_cursor_offset(struct intel_display *display, enum pipe pipe);
 u32 intel_display_device_mmio_base(struct intel_display *display);
+bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe);
 
 #endif /* __INTEL_GVT_API_H__ */
diff --git a/drivers/gpu/drm/i915/gvt/display.c b/drivers/gpu/drm/i915/gvt/display.c
index 9d6b22b2e4d0..1d0c581a8ccc 100644
--- a/drivers/gpu/drm/i915/gvt/display.c
+++ b/drivers/gpu/drm/i915/gvt/display.c
@@ -188,7 +188,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
 {
 	struct drm_i915_private *dev_priv = vgpu->gvt->gt->i915;
 	struct intel_display *display = dev_priv->display;
-	int pipe;
+	enum pipe pipe;
 
 	if (IS_BROXTON(dev_priv)) {
 		enum transcoder trans;
@@ -200,7 +200,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
 			  GEN8_DE_PORT_HOTPLUG(HPD_PORT_B) |
 			  GEN8_DE_PORT_HOTPLUG(HPD_PORT_C));
 
-		for_each_pipe(display, pipe) {
+		gvt_for_each_pipe(display, pipe) {
 			vgpu_vreg_t(vgpu, TRANSCONF(display, pipe)) &=
 				~(TRANSCONF_ENABLE | TRANSCONF_STATE_ENABLE);
 			vgpu_vreg_t(vgpu, DSPCNTR(display, pipe)) &= ~DISP_ENABLE;
@@ -516,7 +516,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
 		vgpu_vreg_t(vgpu, PCH_ADPA) &= ~ADPA_CRT_HOTPLUG_MONITOR_MASK;
 
 	/* Disable Primary/Sprite/Cursor plane */
-	for_each_pipe(display, pipe) {
+	gvt_for_each_pipe(display, pipe) {
 		vgpu_vreg_t(vgpu, DSPCNTR(display, pipe)) &= ~DISP_ENABLE;
 		vgpu_vreg_t(vgpu, SPRCTL(pipe)) &= ~SPRITE_ENABLE;
 		vgpu_vreg_t(vgpu, CURCNTR(display, pipe)) &= ~MCURSOR_MODE_MASK;
@@ -669,10 +669,10 @@ void intel_vgpu_emulate_vblank(struct intel_vgpu *vgpu)
 {
 	struct drm_i915_private *i915 = vgpu->gvt->gt->i915;
 	struct intel_display *display = i915->display;
-	int pipe;
+	enum pipe pipe;
 
 	mutex_lock(&vgpu->vgpu_lock);
-	for_each_pipe(display, pipe)
+	gvt_for_each_pipe(display, pipe)
 		emulate_vblank_on_pipe(vgpu, pipe);
 	mutex_unlock(&vgpu->vgpu_lock);
 }
diff --git a/drivers/gpu/drm/i915/gvt/display_helpers.h b/drivers/gpu/drm/i915/gvt/display_helpers.h
index 46c5192a79a7..7c6e15aa280a 100644
--- a/drivers/gpu/drm/i915/gvt/display_helpers.h
+++ b/drivers/gpu/drm/i915/gvt/display_helpers.h
@@ -42,4 +42,8 @@
 #define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
 	intel_display_device_cursor_offset((display), (pipe))
 
+#define gvt_for_each_pipe(display, __p) \
+	for ((__p) = PIPE_A; (__p) < I915_MAX_PIPES; (__p)++) \
+		for_each_if(intel_display_device_pipe_valid((display), (__p)))
+
 #endif /* __DISPLAY_HELPERS_H__ */
-- 
2.45.2


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

* [PATCH 5/6] drm/i915/gvt: Use the appropriate header for the DPLL macro
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (3 preceding siblings ...)
  2025-12-19  6:02 ` [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API Ankit Nautiyal
@ 2025-12-19  6:02 ` Ankit Nautiyal
  2025-12-19  6:02 ` [PATCH 6/6] drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs Ankit Nautiyal
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe
  Cc: jani.nikula, Ankit Nautiyal, Jani Nikula

The macro `DPLL_ID_SKL_DPLL0` is defined in
display/intel_dpll_mgr.h. Previously, GVT included the header
display/intel_display_core.h` because other macros also depended on it.
After porting those macros to use the new APIs, the only remaining
dependency was for the DPLL macro.

Replace the indirect include with the correct header and drop
intel_display_core.h to reduce unnecessary dependencies.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/gvt/display.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/gvt/display.c b/drivers/gpu/drm/i915/gvt/display.c
index 1d0c581a8ccc..f230b07a12ae 100644
--- a/drivers/gpu/drm/i915/gvt/display.c
+++ b/drivers/gpu/drm/i915/gvt/display.c
@@ -45,9 +45,9 @@
 #include "display/intel_crt_regs.h"
 #include "display/intel_cursor_regs.h"
 #include "display/intel_display.h"
-#include "display/intel_display_core.h"
 #include "display_helpers.h"
 #include "display/intel_dpio_phy.h"
+#include "display/intel_dpll_mgr.h"
 #include "display/intel_sprite_regs.h"
 
 static int get_edp_pipe(struct intel_vgpu *vgpu)
-- 
2.45.2


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

* [PATCH 6/6] drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (4 preceding siblings ...)
  2025-12-19  6:02 ` [PATCH 5/6] drm/i915/gvt: Use the appropriate header for the DPLL macro Ankit Nautiyal
@ 2025-12-19  6:02 ` Ankit Nautiyal
  2025-12-19  6:23 ` ✗ CI.checkpatch: warning for Prepare GVT for display modularization (rev3) Patchwork
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Ankit Nautiyal @ 2025-12-19  6:02 UTC (permalink / raw)
  To: intel-gfx, intel-gvt-dev, intel-xe
  Cc: jani.nikula, Ankit Nautiyal, Jani Nikula

Now that i915/display macros have been substituted with wrappers that call
the new display-device helpers, we can drop the conflicting includes from
GVT and remove the temporary #ifdef/#undef macro overrides.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/gvt/cmd_parser.c      |  1 -
 drivers/gpu/drm/i915/gvt/display_helpers.h | 12 ------------
 drivers/gpu/drm/i915/gvt/fb_decoder.c      |  1 -
 drivers/gpu/drm/i915/gvt/handlers.c        |  1 -
 4 files changed, 15 deletions(-)

diff --git a/drivers/gpu/drm/i915/gvt/cmd_parser.c b/drivers/gpu/drm/i915/gvt/cmd_parser.c
index fbc8a5e28576..e5301733f4e4 100644
--- a/drivers/gpu/drm/i915/gvt/cmd_parser.c
+++ b/drivers/gpu/drm/i915/gvt/cmd_parser.c
@@ -53,7 +53,6 @@
 #include "trace.h"
 
 #include "display/i9xx_plane_regs.h"
-#include "display/intel_display_core.h"
 #include "display/intel_sprite_regs.h"
 #include "gem/i915_gem_context.h"
 #include "gem/i915_gem_pm.h"
diff --git a/drivers/gpu/drm/i915/gvt/display_helpers.h b/drivers/gpu/drm/i915/gvt/display_helpers.h
index 7c6e15aa280a..6bbf9698eb7d 100644
--- a/drivers/gpu/drm/i915/gvt/display_helpers.h
+++ b/drivers/gpu/drm/i915/gvt/display_helpers.h
@@ -8,15 +8,9 @@
 
 #include "display/intel_gvt_api.h"
 
-#ifdef DISPLAY_MMIO_BASE
-#undef DISPLAY_MMIO_BASE
-#endif
 #define DISPLAY_MMIO_BASE(display) \
 	intel_display_device_mmio_base((display))
 
-#ifdef INTEL_DISPLAY_DEVICE_PIPE_OFFSET
-#undef INTEL_DISPLAY_DEVICE_PIPE_OFFSET
-#endif
 /*
  * #FIXME:
  * TRANSCONF() uses pipe-based addressing via _MMIO_PIPE2().
@@ -30,15 +24,9 @@
 #define INTEL_DISPLAY_DEVICE_PIPE_OFFSET(display, idx) \
 	intel_display_device_pipe_offset((display), (enum pipe)(idx))
 
-#ifdef INTEL_DISPLAY_DEVICE_TRANS_OFFSET
-#undef INTEL_DISPLAY_DEVICE_TRANS_OFFSET
-#endif
 #define INTEL_DISPLAY_DEVICE_TRANS_OFFSET(display, trans) \
 	intel_display_device_trans_offset((display), (trans))
 
-#ifdef INTEL_DISPLAY_DEVICE_CURSOR_OFFSET
-#undef INTEL_DISPLAY_DEVICE_CURSOR_OFFSET
-#endif
 #define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
 	intel_display_device_cursor_offset((display), (pipe))
 
diff --git a/drivers/gpu/drm/i915/gvt/fb_decoder.c b/drivers/gpu/drm/i915/gvt/fb_decoder.c
index c402f3b5a0ab..3d1a7e5c8cd3 100644
--- a/drivers/gpu/drm/i915/gvt/fb_decoder.c
+++ b/drivers/gpu/drm/i915/gvt/fb_decoder.c
@@ -43,7 +43,6 @@
 
 #include "display/i9xx_plane_regs.h"
 #include "display/intel_cursor_regs.h"
-#include "display/intel_display_core.h"
 #include "display/intel_sprite_regs.h"
 #include "display/skl_universal_plane_regs.h"
 #include "display_helpers.h"
diff --git a/drivers/gpu/drm/i915/gvt/handlers.c b/drivers/gpu/drm/i915/gvt/handlers.c
index 9ada97d01b6c..7063d3c77562 100644
--- a/drivers/gpu/drm/i915/gvt/handlers.c
+++ b/drivers/gpu/drm/i915/gvt/handlers.c
@@ -49,7 +49,6 @@
 #include "display/i9xx_plane_regs.h"
 #include "display/intel_crt_regs.h"
 #include "display/intel_cursor_regs.h"
-#include "display/intel_display_core.h"
 #include "display/intel_display_types.h"
 #include "display/intel_dmc_regs.h"
 #include "display/intel_dp_aux_regs.h"
-- 
2.45.2


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

* ✗ CI.checkpatch: warning for Prepare GVT for display modularization (rev3)
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (5 preceding siblings ...)
  2025-12-19  6:02 ` [PATCH 6/6] drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs Ankit Nautiyal
@ 2025-12-19  6:23 ` Patchwork
  2025-12-19  6:24 ` ✓ CI.KUnit: success " Patchwork
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-19  6:23 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Prepare GVT for display modularization (rev3)
URL   : https://patchwork.freedesktop.org/series/159008/
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
5f54f403acc61a45ad2b4d68dfd74b336dce1968
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4b62b40ed299b3a119752e2b39bb5f1fd90657db
Author: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Date:   Fri Dec 19 11:32:59 2025 +0530

    drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs
    
    Now that i915/display macros have been substituted with wrappers that call
    the new display-device helpers, we can drop the conflicting includes from
    GVT and remove the temporary #ifdef/#undef macro overrides.
    
    Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
    Reviewed-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch 93db616df689a410d961e7c614c57e61d17a29a0 drm-intel
4280925b78a7 drm/i915/display: Abstract pipe/trans/cursor offset calculation
-:31: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'display' - possible side-effects?
#31: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:263:
+#define INTEL_DISPLAY_DEVICE_PIPE_OFFSET(display, pipe) \
+	(DISPLAY_INFO((display))->pipe_offsets[(pipe)] - \
+	 DISPLAY_INFO((display))->pipe_offsets[PIPE_A] + \
+	 DISPLAY_MMIO_BASE((display)))

-:36: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'display' - possible side-effects?
#36: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:268:
+#define INTEL_DISPLAY_DEVICE_TRANS_OFFSET(display, trans) \
+	(DISPLAY_INFO((display))->trans_offsets[(trans)] - \
+	 DISPLAY_INFO((display))->trans_offsets[TRANSCODER_A] + \
+	 DISPLAY_MMIO_BASE((display)))

-:41: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'display' - possible side-effects?
#41: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:273:
+#define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
+	(DISPLAY_INFO((display))->cursor_offsets[(pipe)] - \
+	 DISPLAY_INFO((display))->cursor_offsets[PIPE_A] + \
+	 DISPLAY_MMIO_BASE((display)))

-:78: WARNING:LONG_LINE: line length of 114 exceeds 100 columns
#78: FILE: drivers/gpu/drm/i915/display/intel_display_reg_defs.h:38:
+#define _MMIO_PIPE2(display, pipe, reg)		_MMIO(INTEL_DISPLAY_DEVICE_PIPE_OFFSET((display), (pipe)) + (reg))

-:79: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#79: FILE: drivers/gpu/drm/i915/display/intel_display_reg_defs.h:39:
+#define _MMIO_TRANS2(display, trans, reg)	_MMIO(INTEL_DISPLAY_DEVICE_TRANS_OFFSET((display), (trans)) + (reg))

-:80: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#80: FILE: drivers/gpu/drm/i915/display/intel_display_reg_defs.h:40:
+#define _MMIO_CURSOR2(display, pipe, reg)	_MMIO(INTEL_DISPLAY_DEVICE_CURSOR_OFFSET((display), (pipe)) + (reg))

total: 0 errors, 3 warnings, 3 checks, 49 lines checked
84da8be64b49 drm/i915/display: Add APIs to be used by gvt to get the register offsets
-:43: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#43: 
new file mode 100644

-:91: WARNING:SPDX_LICENSE_TAG: Improper SPDX comment style for 'drivers/gpu/drm/i915/display/intel_gvt_api.h', please use '/*' instead
#91: FILE: drivers/gpu/drm/i915/display/intel_gvt_api.h:1:
+// SPDX-License-Identifier: MIT

-:91: WARNING:SPDX_LICENSE_TAG: Missing or malformed SPDX-License-Identifier tag in line 1
#91: FILE: drivers/gpu/drm/i915/display/intel_gvt_api.h:1:
+// SPDX-License-Identifier: MIT

total: 0 errors, 3 warnings, 0 checks, 63 lines checked
92d637de3e97 drm/i915/gvt: Add header to use display offset functions in macros
-:65: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#65: 
new file mode 100644

-:70: WARNING:SPDX_LICENSE_TAG: Improper SPDX comment style for 'drivers/gpu/drm/i915/gvt/display_helpers.h', please use '/*' instead
#70: FILE: drivers/gpu/drm/i915/gvt/display_helpers.h:1:
+// SPDX-License-Identifier: MIT

-:70: WARNING:SPDX_LICENSE_TAG: Missing or malformed SPDX-License-Identifier tag in line 1
#70: FILE: drivers/gpu/drm/i915/gvt/display_helpers.h:1:
+// SPDX-License-Identifier: MIT

total: 0 errors, 3 warnings, 0 checks, 73 lines checked
b33012939683 drm/i915/gvt: Change for_each_pipe to use pipe_valid API
-:112: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__p' - possible side-effects?
#112: FILE: drivers/gpu/drm/i915/gvt/display_helpers.h:45:
+#define gvt_for_each_pipe(display, __p) \
+	for ((__p) = PIPE_A; (__p) < I915_MAX_PIPES; (__p)++) \
+		for_each_if(intel_display_device_pipe_valid((display), (__p)))

total: 0 errors, 0 warnings, 1 checks, 62 lines checked
b664faebf1d9 drm/i915/gvt: Use the appropriate header for the DPLL macro
4b62b40ed299 drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs



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

* ✓ CI.KUnit: success for Prepare GVT for display modularization (rev3)
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (6 preceding siblings ...)
  2025-12-19  6:23 ` ✗ CI.checkpatch: warning for Prepare GVT for display modularization (rev3) Patchwork
@ 2025-12-19  6:24 ` Patchwork
  2025-12-19  6:39 ` ✗ CI.checksparse: warning " Patchwork
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-19  6:24 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Prepare GVT for display modularization (rev3)
URL   : https://patchwork.freedesktop.org/series/159008/
State : success

== Summary ==

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

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

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

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



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

* ✗ CI.checksparse: warning for Prepare GVT for display modularization (rev3)
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (7 preceding siblings ...)
  2025-12-19  6:24 ` ✓ CI.KUnit: success " Patchwork
@ 2025-12-19  6:39 ` Patchwork
  2025-12-19  6:58 ` ✓ Xe.CI.BAT: success " Patchwork
  2025-12-20  8:47 ` ✗ Xe.CI.Full: failure " Patchwork
  10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-19  6:39 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Prepare GVT for display modularization (rev3)
URL   : https://patchwork.freedesktop.org/series/159008/
State : warning

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 93db616df689a410d961e7c614c57e61d17a29a0
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/g4x_dp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/g4x_hdmi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/hsw_ips.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/i9xx_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/i9xx_wm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/icl_dsi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_dsi.h):
+drivers/gpu/drm/i915/display/intel_acpi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_atomic.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_audio.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_backlight.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_bios.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_bw.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_casf.c:147:21: error: too long token expansion
+drivers/gpu/drm/i915/display/intel_casf.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_color.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_color_pipeline.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_colorop.h):
+drivers/gpu/drm/i915/display/intel_combo_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_connector.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_crtc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_crt.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_crtc_state_dump.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cursor.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cx0_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dbuf_bw.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_debugfs.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_device.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_driver.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_irq.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_display_power.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_power_map.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_power_well.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_reset.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_rps.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dmc.c:131:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:134:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:137:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:140:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:143:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:146:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:149:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:153:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:154:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:157:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:160:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:163:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:166:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:170:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:174:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:178:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:182:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:186:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_aux.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_hdcp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpio_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_link_training.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpll.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpll_mgr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_mst.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpt.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpt_common.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_test.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_drrs.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dsb.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dsi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_dsi.h):
+drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dsi_vbt.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dvo.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_encoder.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fb_bo.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fbc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_fb.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fb_pin.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fdi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fifo_underrun.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_flipq.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_frontbuffer.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_global_state.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_gmbus.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hdmi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hotplug_irq.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_link_bw.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_load_detect.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_lspcon.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_lt_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_lvds.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_modeset_setup.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_modeset_verify.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_opregion.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_overlay.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_panel.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_pch_display.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pch_refclk.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pfit.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pipe_crc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_colorop.h):
+drivers/gpu/drm/i915/display/intel_plane_initial.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pmdemand.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_pps.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_quirks.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_sdvo.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_snps_hdmi_pll.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_snps_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_sprite.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_sprite_uapi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_tc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_tv.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vblank.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vdsc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vga.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vrr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_wm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/skl_prefill.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/skl_scaler.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/skl_universal_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/skl_watermark.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_clock.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_dsi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_dsi_pll.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_sideband.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/gt/intel_reset.c:1569:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:191:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:192:1: error: bad constant expression
+drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:193:1: error: bad constant expression
+drivers/gpu/drm/i915/i915_gpu_error.c:692:3: warning: symbol 'guc_hw_reg_state' was not declared. Should it be static?
+drivers/gpu/drm/i915/i915_irq.c:467:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:467:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:475:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:475:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:480:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:480:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:480:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:518:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:518:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:526:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:526:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:531:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:531:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:531:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:575:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:575:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:578:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:578:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:582:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:582:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1931:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1932:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1933:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1998:1: warning: context imbalance in 'gen6_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1999:1: warning: context imbalance in 'gen6_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2000:1: warning: context imbalance in 'gen6_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2020:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2021:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2022:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression

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



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

* ✓ Xe.CI.BAT: success for Prepare GVT for display modularization (rev3)
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (8 preceding siblings ...)
  2025-12-19  6:39 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-12-19  6:58 ` Patchwork
  2025-12-20  8:47 ` ✗ Xe.CI.Full: failure " Patchwork
  10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-19  6:58 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

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

== Series Details ==

Series: Prepare GVT for display modularization (rev3)
URL   : https://patchwork.freedesktop.org/series/159008/
State : success

== Summary ==

CI Bug Log - changes from xe-4272-93db616df689a410d961e7c614c57e61d17a29a0_BAT -> xe-pw-159008v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-159008v3_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_module_load@load:
    - bat-bmg-1:          [PASS][1] -> [ABORT][2] ([Intel XE#6818])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/bat-bmg-1/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/bat-bmg-1/igt@xe_module_load@load.html

  
  [Intel XE#6818]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6818


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

  * Linux: xe-4272-93db616df689a410d961e7c614c57e61d17a29a0 -> xe-pw-159008v3

  IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4272-93db616df689a410d961e7c614c57e61d17a29a0: 93db616df689a410d961e7c614c57e61d17a29a0
  xe-pw-159008v3: 159008v3

== Logs ==

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

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

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

* Re: [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API
  2025-12-19  6:02 ` [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API Ankit Nautiyal
@ 2025-12-19 12:34   ` Jani Nikula
  2025-12-19 14:44     ` Nautiyal, Ankit K
  0 siblings, 1 reply; 14+ messages in thread
From: Jani Nikula @ 2025-12-19 12:34 UTC (permalink / raw)
  To: Ankit Nautiyal, intel-gfx, intel-gvt-dev, intel-xe; +Cc: Ankit Nautiyal

On Fri, 19 Dec 2025, Ankit Nautiyal <ankit.k.nautiyal@intel.com> wrote:
> Add a new API to check if a given pipe is valid using
> DISPLAY_RUNTIME_INFO() for GVT.
>
> Update GVT to use this API instead of accessing
> `DISPLAY_RUNTIME_INFO->pipe_mask` directly in the `for_each_pipe` macro.
>
> Since `for_each_pipe` is defined in i915/display/intel_display.h, which
> also contains other macros used by gvt/display.c, we cannot drop the
> intel_display.h header yet. This causes a build error because
> `for_each_pipe` is included from both i915/display/intel_display.h and
> gvt/display_helpers.h.
>
> To resolve this, rename the GVT macro to `gvt_for_each_pipe` and make it
> call the new API. This avoids exposing display internals and prepares for
> display modularization.

I'm fine with the separate name for this, to underline the difference.

However, I think in the long run gvt should include fewer things from
display/. This may mean refactoring display headers a bit to limit the
exposure. Like, there's current intel_display_types.h and
intel_display.h includes, and we shouldn't have them, but it's beyond
this series.

Reviewed-by: Jani Nikula <jani.nikula@intel.com>

>
> v2:
>  - Expose API to check if pipe is valid rather than the runtime info
>    pipe mask. (Jani)
>  - Rename the macro to `gvt_for_each_pipe` to resolve build error.
> v3:
>  - Use EXPORT_SYMBOL_NS_GPL(..., "I915_GVT"); (Jani)
>  - Use enum pipe at call sites instead of casting in the macro. (Jani)
>
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_gvt_api.c |  9 +++++++++
>  drivers/gpu/drm/i915/display/intel_gvt_api.h |  1 +
>  drivers/gpu/drm/i915/gvt/display.c           | 10 +++++-----
>  drivers/gpu/drm/i915/gvt/display_helpers.h   |  4 ++++
>  4 files changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.c b/drivers/gpu/drm/i915/display/intel_gvt_api.c
> index b1bfe4843135..a69e249395ae 100644
> --- a/drivers/gpu/drm/i915/display/intel_gvt_api.c
> +++ b/drivers/gpu/drm/i915/display/intel_gvt_api.c
> @@ -32,3 +32,12 @@ u32 intel_display_device_mmio_base(struct intel_display *display)
>  	return DISPLAY_MMIO_BASE(display);
>  }
>  EXPORT_SYMBOL_NS_GPL(intel_display_device_mmio_base, "I915_GVT");
> +
> +bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe)
> +{
> +	if (pipe < PIPE_A || pipe >= I915_MAX_PIPES)
> +		return false;
> +
> +	return DISPLAY_RUNTIME_INFO(display)->pipe_mask & BIT(pipe);
> +}
> +EXPORT_SYMBOL_NS_GPL(intel_display_device_pipe_valid, "I915_GVT");
> diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.h b/drivers/gpu/drm/i915/display/intel_gvt_api.h
> index e9a1122a988d..a53687f7d934 100644
> --- a/drivers/gpu/drm/i915/display/intel_gvt_api.h
> +++ b/drivers/gpu/drm/i915/display/intel_gvt_api.h
> @@ -16,5 +16,6 @@ u32 intel_display_device_pipe_offset(struct intel_display *display, enum pipe pi
>  u32 intel_display_device_trans_offset(struct intel_display *display, enum transcoder trans);
>  u32 intel_display_device_cursor_offset(struct intel_display *display, enum pipe pipe);
>  u32 intel_display_device_mmio_base(struct intel_display *display);
> +bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe);
>  
>  #endif /* __INTEL_GVT_API_H__ */
> diff --git a/drivers/gpu/drm/i915/gvt/display.c b/drivers/gpu/drm/i915/gvt/display.c
> index 9d6b22b2e4d0..1d0c581a8ccc 100644
> --- a/drivers/gpu/drm/i915/gvt/display.c
> +++ b/drivers/gpu/drm/i915/gvt/display.c
> @@ -188,7 +188,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
>  {
>  	struct drm_i915_private *dev_priv = vgpu->gvt->gt->i915;
>  	struct intel_display *display = dev_priv->display;
> -	int pipe;
> +	enum pipe pipe;
>  
>  	if (IS_BROXTON(dev_priv)) {
>  		enum transcoder trans;
> @@ -200,7 +200,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
>  			  GEN8_DE_PORT_HOTPLUG(HPD_PORT_B) |
>  			  GEN8_DE_PORT_HOTPLUG(HPD_PORT_C));
>  
> -		for_each_pipe(display, pipe) {
> +		gvt_for_each_pipe(display, pipe) {
>  			vgpu_vreg_t(vgpu, TRANSCONF(display, pipe)) &=
>  				~(TRANSCONF_ENABLE | TRANSCONF_STATE_ENABLE);
>  			vgpu_vreg_t(vgpu, DSPCNTR(display, pipe)) &= ~DISP_ENABLE;
> @@ -516,7 +516,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
>  		vgpu_vreg_t(vgpu, PCH_ADPA) &= ~ADPA_CRT_HOTPLUG_MONITOR_MASK;
>  
>  	/* Disable Primary/Sprite/Cursor plane */
> -	for_each_pipe(display, pipe) {
> +	gvt_for_each_pipe(display, pipe) {
>  		vgpu_vreg_t(vgpu, DSPCNTR(display, pipe)) &= ~DISP_ENABLE;
>  		vgpu_vreg_t(vgpu, SPRCTL(pipe)) &= ~SPRITE_ENABLE;
>  		vgpu_vreg_t(vgpu, CURCNTR(display, pipe)) &= ~MCURSOR_MODE_MASK;
> @@ -669,10 +669,10 @@ void intel_vgpu_emulate_vblank(struct intel_vgpu *vgpu)
>  {
>  	struct drm_i915_private *i915 = vgpu->gvt->gt->i915;
>  	struct intel_display *display = i915->display;
> -	int pipe;
> +	enum pipe pipe;
>  
>  	mutex_lock(&vgpu->vgpu_lock);
> -	for_each_pipe(display, pipe)
> +	gvt_for_each_pipe(display, pipe)
>  		emulate_vblank_on_pipe(vgpu, pipe);
>  	mutex_unlock(&vgpu->vgpu_lock);
>  }
> diff --git a/drivers/gpu/drm/i915/gvt/display_helpers.h b/drivers/gpu/drm/i915/gvt/display_helpers.h
> index 46c5192a79a7..7c6e15aa280a 100644
> --- a/drivers/gpu/drm/i915/gvt/display_helpers.h
> +++ b/drivers/gpu/drm/i915/gvt/display_helpers.h
> @@ -42,4 +42,8 @@
>  #define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
>  	intel_display_device_cursor_offset((display), (pipe))
>  
> +#define gvt_for_each_pipe(display, __p) \
> +	for ((__p) = PIPE_A; (__p) < I915_MAX_PIPES; (__p)++) \
> +		for_each_if(intel_display_device_pipe_valid((display), (__p)))
> +
>  #endif /* __DISPLAY_HELPERS_H__ */

-- 
Jani Nikula, Intel

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

* Re: [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API
  2025-12-19 12:34   ` Jani Nikula
@ 2025-12-19 14:44     ` Nautiyal, Ankit K
  0 siblings, 0 replies; 14+ messages in thread
From: Nautiyal, Ankit K @ 2025-12-19 14:44 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx, intel-gvt-dev, intel-xe


On 12/19/2025 6:04 PM, Jani Nikula wrote:
> On Fri, 19 Dec 2025, Ankit Nautiyal <ankit.k.nautiyal@intel.com> wrote:
>> Add a new API to check if a given pipe is valid using
>> DISPLAY_RUNTIME_INFO() for GVT.
>>
>> Update GVT to use this API instead of accessing
>> `DISPLAY_RUNTIME_INFO->pipe_mask` directly in the `for_each_pipe` macro.
>>
>> Since `for_each_pipe` is defined in i915/display/intel_display.h, which
>> also contains other macros used by gvt/display.c, we cannot drop the
>> intel_display.h header yet. This causes a build error because
>> `for_each_pipe` is included from both i915/display/intel_display.h and
>> gvt/display_helpers.h.
>>
>> To resolve this, rename the GVT macro to `gvt_for_each_pipe` and make it
>> call the new API. This avoids exposing display internals and prepares for
>> display modularization.
> I'm fine with the separate name for this, to underline the difference.
>
> However, I think in the long run gvt should include fewer things from
> display/. This may mean refactoring display headers a bit to limit the
> exposure. Like, there's current intel_display_types.h and
> intel_display.h includes, and we shouldn't have them, but it's beyond
> this series.

I agree.. I have realized this while dealing with the problem with 
for_each_pipe.

display/intel_display_core.h was one such file, now that is removed.

Anyways, will get some things started on intel_gvt_mmio_table.c stuff next.


Thanks for the reviews!

Regards,

Ankit


>
> Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
>> v2:
>>   - Expose API to check if pipe is valid rather than the runtime info
>>     pipe mask. (Jani)
>>   - Rename the macro to `gvt_for_each_pipe` to resolve build error.
>> v3:
>>   - Use EXPORT_SYMBOL_NS_GPL(..., "I915_GVT"); (Jani)
>>   - Use enum pipe at call sites instead of casting in the macro. (Jani)
>>
>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>>   drivers/gpu/drm/i915/display/intel_gvt_api.c |  9 +++++++++
>>   drivers/gpu/drm/i915/display/intel_gvt_api.h |  1 +
>>   drivers/gpu/drm/i915/gvt/display.c           | 10 +++++-----
>>   drivers/gpu/drm/i915/gvt/display_helpers.h   |  4 ++++
>>   4 files changed, 19 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.c b/drivers/gpu/drm/i915/display/intel_gvt_api.c
>> index b1bfe4843135..a69e249395ae 100644
>> --- a/drivers/gpu/drm/i915/display/intel_gvt_api.c
>> +++ b/drivers/gpu/drm/i915/display/intel_gvt_api.c
>> @@ -32,3 +32,12 @@ u32 intel_display_device_mmio_base(struct intel_display *display)
>>   	return DISPLAY_MMIO_BASE(display);
>>   }
>>   EXPORT_SYMBOL_NS_GPL(intel_display_device_mmio_base, "I915_GVT");
>> +
>> +bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe)
>> +{
>> +	if (pipe < PIPE_A || pipe >= I915_MAX_PIPES)
>> +		return false;
>> +
>> +	return DISPLAY_RUNTIME_INFO(display)->pipe_mask & BIT(pipe);
>> +}
>> +EXPORT_SYMBOL_NS_GPL(intel_display_device_pipe_valid, "I915_GVT");
>> diff --git a/drivers/gpu/drm/i915/display/intel_gvt_api.h b/drivers/gpu/drm/i915/display/intel_gvt_api.h
>> index e9a1122a988d..a53687f7d934 100644
>> --- a/drivers/gpu/drm/i915/display/intel_gvt_api.h
>> +++ b/drivers/gpu/drm/i915/display/intel_gvt_api.h
>> @@ -16,5 +16,6 @@ u32 intel_display_device_pipe_offset(struct intel_display *display, enum pipe pi
>>   u32 intel_display_device_trans_offset(struct intel_display *display, enum transcoder trans);
>>   u32 intel_display_device_cursor_offset(struct intel_display *display, enum pipe pipe);
>>   u32 intel_display_device_mmio_base(struct intel_display *display);
>> +bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe);
>>   
>>   #endif /* __INTEL_GVT_API_H__ */
>> diff --git a/drivers/gpu/drm/i915/gvt/display.c b/drivers/gpu/drm/i915/gvt/display.c
>> index 9d6b22b2e4d0..1d0c581a8ccc 100644
>> --- a/drivers/gpu/drm/i915/gvt/display.c
>> +++ b/drivers/gpu/drm/i915/gvt/display.c
>> @@ -188,7 +188,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
>>   {
>>   	struct drm_i915_private *dev_priv = vgpu->gvt->gt->i915;
>>   	struct intel_display *display = dev_priv->display;
>> -	int pipe;
>> +	enum pipe pipe;
>>   
>>   	if (IS_BROXTON(dev_priv)) {
>>   		enum transcoder trans;
>> @@ -200,7 +200,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
>>   			  GEN8_DE_PORT_HOTPLUG(HPD_PORT_B) |
>>   			  GEN8_DE_PORT_HOTPLUG(HPD_PORT_C));
>>   
>> -		for_each_pipe(display, pipe) {
>> +		gvt_for_each_pipe(display, pipe) {
>>   			vgpu_vreg_t(vgpu, TRANSCONF(display, pipe)) &=
>>   				~(TRANSCONF_ENABLE | TRANSCONF_STATE_ENABLE);
>>   			vgpu_vreg_t(vgpu, DSPCNTR(display, pipe)) &= ~DISP_ENABLE;
>> @@ -516,7 +516,7 @@ static void emulate_monitor_status_change(struct intel_vgpu *vgpu)
>>   		vgpu_vreg_t(vgpu, PCH_ADPA) &= ~ADPA_CRT_HOTPLUG_MONITOR_MASK;
>>   
>>   	/* Disable Primary/Sprite/Cursor plane */
>> -	for_each_pipe(display, pipe) {
>> +	gvt_for_each_pipe(display, pipe) {
>>   		vgpu_vreg_t(vgpu, DSPCNTR(display, pipe)) &= ~DISP_ENABLE;
>>   		vgpu_vreg_t(vgpu, SPRCTL(pipe)) &= ~SPRITE_ENABLE;
>>   		vgpu_vreg_t(vgpu, CURCNTR(display, pipe)) &= ~MCURSOR_MODE_MASK;
>> @@ -669,10 +669,10 @@ void intel_vgpu_emulate_vblank(struct intel_vgpu *vgpu)
>>   {
>>   	struct drm_i915_private *i915 = vgpu->gvt->gt->i915;
>>   	struct intel_display *display = i915->display;
>> -	int pipe;
>> +	enum pipe pipe;
>>   
>>   	mutex_lock(&vgpu->vgpu_lock);
>> -	for_each_pipe(display, pipe)
>> +	gvt_for_each_pipe(display, pipe)
>>   		emulate_vblank_on_pipe(vgpu, pipe);
>>   	mutex_unlock(&vgpu->vgpu_lock);
>>   }
>> diff --git a/drivers/gpu/drm/i915/gvt/display_helpers.h b/drivers/gpu/drm/i915/gvt/display_helpers.h
>> index 46c5192a79a7..7c6e15aa280a 100644
>> --- a/drivers/gpu/drm/i915/gvt/display_helpers.h
>> +++ b/drivers/gpu/drm/i915/gvt/display_helpers.h
>> @@ -42,4 +42,8 @@
>>   #define INTEL_DISPLAY_DEVICE_CURSOR_OFFSET(display, pipe) \
>>   	intel_display_device_cursor_offset((display), (pipe))
>>   
>> +#define gvt_for_each_pipe(display, __p) \
>> +	for ((__p) = PIPE_A; (__p) < I915_MAX_PIPES; (__p)++) \
>> +		for_each_if(intel_display_device_pipe_valid((display), (__p)))
>> +
>>   #endif /* __DISPLAY_HELPERS_H__ */

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

* ✗ Xe.CI.Full: failure for Prepare GVT for display modularization (rev3)
  2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
                   ` (9 preceding siblings ...)
  2025-12-19  6:58 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-12-20  8:47 ` Patchwork
  10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-20  8:47 UTC (permalink / raw)
  To: Nautiyal, Ankit K; +Cc: intel-xe

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

== Series Details ==

Series: Prepare GVT for display modularization (rev3)
URL   : https://patchwork.freedesktop.org/series/159008/
State : failure

== Summary ==

CI Bug Log - changes from xe-4272-93db616df689a410d961e7c614c57e61d17a29a0_FULL -> xe-pw-159008v3_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-159008v3_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-bmg:          [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_vblank@ts-continuation-dpms-rpm:
    - shard-lnl:          [PASS][3] -> [SKIP][4] +3 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-rpm.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-lnl-3/igt@kms_vblank@ts-continuation-dpms-rpm.html

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

  Here are the changes found in xe-pw-159008v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotrebind:
    - shard-bmg:          [PASS][5] -> [SKIP][6] ([Intel XE#6779])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@core_hotunplug@hotrebind.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@core_hotunplug@hotrebind.html

  * igt@fbdev@pan:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#2134])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@fbdev@pan.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@fbdev@pan.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2887])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2252])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2320])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][14] -> [SKIP][15] ([Intel XE#2291])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [PASS][16] -> [SKIP][17] ([Intel XE#2316]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2293] / [Intel XE#2380])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2293]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2311]) +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2312]) +2 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2313])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-bmg:          [PASS][23] -> [ABORT][24] ([Intel XE#6740]) +1 other test abort
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_hdr@bpc-switch-suspend.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-8/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#6886]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#6693]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_pm_rpm@i2c.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_pm_rpm@i2c.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr@psr-no-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_psr@psr-no-drrs.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2413])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#4837]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@xe_eudebug@discovery-empty.html

  * igt@xe_exec_basic@many-execqueues-null-defer-bind:
    - shard-bmg:          [PASS][32] -> [SKIP][33] ([Intel XE#6703]) +292 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@xe_exec_basic@many-execqueues-null-defer-bind.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_exec_basic@many-execqueues-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2322])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html

  * igt@xe_exec_multi_queue@many-execs-priority:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#6874]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@xe_exec_multi_queue@many-execs-priority.html

  * igt@xe_exec_system_allocator@once-mmap-race-nomemset:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#6557] / [Intel XE#6703]) +4 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#4943]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-mmap-huge.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
    - shard-lnl:          [PASS][39] -> [FAIL][40] ([Intel XE#6251]) +1 other test fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html

  
#### Possible fixes ####

  * igt@core_setmaster@master-drop-set-user:
    - shard-bmg:          [FAIL][41] ([Intel XE#4674]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@core_setmaster@master-drop-set-user.html

  * igt@fbdev@nullptr:
    - shard-bmg:          [SKIP][43] ([Intel XE#2134]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@fbdev@nullptr.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@fbdev@nullptr.html

  * igt@fbdev@read:
    - shard-bmg:          [FAIL][45] -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@fbdev@read.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@fbdev@read.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          [SKIP][47] ([Intel XE#2291]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][49] ([Intel XE#5299]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][51] ([Intel XE#2373]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-bmg:          [SKIP][53] ([Intel XE#2316]) -> [PASS][54] +5 other tests pass
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [FAIL][55] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-bmg:          [SKIP][57] ([Intel XE#6693]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_vblank@ts-continuation-dpms-rpm:
    - shard-bmg:          [SKIP][59] -> [PASS][60] +3 other tests pass
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-9/igt@kms_vblank@ts-continuation-dpms-rpm.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset:
    - shard-bmg:          [SKIP][61] ([Intel XE#6703]) -> [PASS][62] +368 other tests pass
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise:
    - shard-bmg:          [SKIP][63] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][64] +4 other tests pass
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [FAIL][65] ([Intel XE#6913]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_module_load@many-reload.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@xe_module_load@many-reload.html

  
#### Warnings ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][67] ([Intel XE#2370]) -> [SKIP][68] ([Intel XE#6703])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          [SKIP][69] ([Intel XE#2327]) -> [SKIP][70] ([Intel XE#6703]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-90.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][71] ([Intel XE#6703]) -> [SKIP][72] ([Intel XE#2327]) +3 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-bmg:          [SKIP][73] ([Intel XE#1124]) -> [SKIP][74] ([Intel XE#6703]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          [SKIP][75] ([Intel XE#6703]) -> [SKIP][76] ([Intel XE#1124]) +6 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          [SKIP][77] ([Intel XE#6703]) -> [SKIP][78] ([Intel XE#2314] / [Intel XE#2894])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][79] ([Intel XE#367]) -> [SKIP][80] ([Intel XE#6703]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          [SKIP][81] ([Intel XE#6703]) -> [SKIP][82] ([Intel XE#367])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][83] ([Intel XE#2887]) -> [SKIP][84] ([Intel XE#6703]) +7 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          [SKIP][85] ([Intel XE#6703]) -> [SKIP][86] ([Intel XE#3432])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#2887]) +6 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          [SKIP][89] ([Intel XE#2724]) -> [SKIP][90] ([Intel XE#6703])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_cdclk@mode-transition.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          [SKIP][91] ([Intel XE#2325]) -> [SKIP][92] ([Intel XE#6703])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_chamelium_color@ctm-red-to-blue.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][93] ([Intel XE#2252]) -> [SKIP][94] ([Intel XE#6703]) +5 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
    - shard-bmg:          [SKIP][95] ([Intel XE#6703]) -> [SKIP][96] ([Intel XE#2252]) +4 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          [SKIP][97] ([Intel XE#6703]) -> [SKIP][98] ([Intel XE#2341])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_content_protection@mei-interface.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-bmg:          [SKIP][99] ([Intel XE#2321]) -> [SKIP][100] ([Intel XE#6703]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-bmg:          [SKIP][101] ([Intel XE#6703]) -> [SKIP][102] ([Intel XE#2320]) +3 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          [SKIP][103] ([Intel XE#6703]) -> [SKIP][104] ([Intel XE#2321])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-bmg:          [SKIP][105] ([Intel XE#2320]) -> [SKIP][106] ([Intel XE#6703])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#2286])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          [SKIP][109] ([Intel XE#2286]) -> [SKIP][110] ([Intel XE#6703])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          [SKIP][111] ([Intel XE#4354]) -> [SKIP][112] ([Intel XE#6703])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_dp_link_training@uhbr-mst.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          [SKIP][113] ([Intel XE#6703]) -> [SKIP][114] ([Intel XE#4354])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_dp_link_training@uhbr-sst.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          [SKIP][115] ([Intel XE#2244]) -> [SKIP][116] ([Intel XE#6703])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-bmg:          [SKIP][117] ([Intel XE#4422]) -> [SKIP][118] ([Intel XE#6703])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#1138])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-lnl:          [FAIL][121] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][122] ([Intel XE#301])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-bmg:          [SKIP][123] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][124] ([Intel XE#6703])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][127] ([Intel XE#2311]) -> [SKIP][128] ([Intel XE#6703]) +15 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][129] ([Intel XE#2311]) -> [SKIP][130] ([Intel XE#2312]) +5 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][131] ([Intel XE#2312]) -> [SKIP][132] ([Intel XE#2311]) +9 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
    - shard-bmg:          [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2311]) +16 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#4141]) +11 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#4141]) +2 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][139] ([Intel XE#4141]) -> [SKIP][140] ([Intel XE#2312]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][141] ([Intel XE#4141]) -> [SKIP][142] ([Intel XE#6557] / [Intel XE#6703])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][143] ([Intel XE#4141]) -> [SKIP][144] ([Intel XE#6703]) +5 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          [SKIP][145] ([Intel XE#6703]) -> [SKIP][146] ([Intel XE#2352])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][147] ([Intel XE#2312]) -> [SKIP][148] ([Intel XE#2313]) +7 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-bmg:          [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#2313]) +21 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][151] ([Intel XE#2313]) -> [SKIP][152] ([Intel XE#6703]) +13 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][153] ([Intel XE#2313]) -> [SKIP][154] ([Intel XE#2312]) +7 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#4298])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#6911])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][159] ([Intel XE#5021]) -> [SKIP][160] ([Intel XE#4596])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-y.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][161] ([Intel XE#4596]) -> [SKIP][162] ([Intel XE#5021])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][163] ([Intel XE#5020]) -> [SKIP][164] ([Intel XE#6703])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-bmg:          [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#6886])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-bmg:          [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#2391])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          [SKIP][169] ([Intel XE#6693]) -> [SKIP][170] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-bmg:          [SKIP][171] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][172] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-bmg:          [SKIP][173] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][174] ([Intel XE#1406] / [Intel XE#6703]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-bmg:          [SKIP][175] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][176] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-page-flip.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_psr@psr2-sprite-blt:
    - shard-bmg:          [SKIP][177] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][178] ([Intel XE#1406] / [Intel XE#6703]) +6 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@kms_psr@psr2-sprite-blt.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          [SKIP][181] ([Intel XE#6703]) -> [SKIP][182] ([Intel XE#6503]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          [SKIP][183] ([Intel XE#6503]) -> [SKIP][184] ([Intel XE#6703]) +1 other test skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][185] ([Intel XE#2426]) -> [FAIL][186] ([Intel XE#1729])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][187] ([Intel XE#6703]) -> [SKIP][188] ([Intel XE#1499]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@kms_vrr@flip-basic.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flipline:
    - shard-bmg:          [SKIP][189] ([Intel XE#1499]) -> [SKIP][190] ([Intel XE#6703])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@kms_vrr@flipline.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@kms_vrr@flipline.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#6599])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          [SKIP][193] ([Intel XE#2504]) -> [SKIP][194] ([Intel XE#6703])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@xe_create@multigpu-create-massive-size.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          [SKIP][195] ([Intel XE#4837]) -> [SKIP][196] ([Intel XE#6703]) +4 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug@basic-vm-bind-vm-destroy:
    - shard-bmg:          [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#4837]) +4 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-vm-destroy.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@xe_eudebug@basic-vm-bind-vm-destroy.html

  * igt@xe_eudebug_online@resume-one:
    - shard-bmg:          [SKIP][199] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][200] ([Intel XE#6703]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@xe_eudebug_online@resume-one.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_eudebug_online@resume-one.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          [SKIP][201] ([Intel XE#6703]) -> [SKIP][202] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_eudebug_online@single-step.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@xe_eudebug_online@single-step.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [SKIP][203] ([Intel XE#6703]) -> [INCOMPLETE][204] ([Intel XE#6321])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - shard-bmg:          [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#2322]) +4 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-bmg:          [SKIP][207] ([Intel XE#2322]) -> [SKIP][208] ([Intel XE#6703]) +3 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          [SKIP][209] ([Intel XE#6703]) -> [SKIP][210] ([Intel XE#6874]) +18 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
    - shard-bmg:          [SKIP][211] ([Intel XE#6874]) -> [SKIP][212] ([Intel XE#6703]) +13 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html

  * igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#5007])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][215] ([Intel XE#4943]) -> [SKIP][216] ([Intel XE#6703]) +11 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][217] ([Intel XE#6703]) -> [SKIP][218] ([Intel XE#4943]) +15 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#2284]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
    - shard-bmg:          [SKIP][221] ([Intel XE#6703]) -> [SKIP][222] ([Intel XE#4733])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html

  * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
    - shard-bmg:          [SKIP][223] ([Intel XE#4733]) -> [SKIP][224] ([Intel XE#6703])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-10/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          [SKIP][225] ([Intel XE#6703]) -> [SKIP][226] ([Intel XE#944])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-5/igt@xe_query@multigpu-query-cs-cycles.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-9/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-bmg:          [SKIP][227] ([Intel XE#944]) -> [SKIP][228] ([Intel XE#6703]) +1 other test skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4272-93db616df689a410d961e7c614c57e61d17a29a0/shard-bmg-3/igt@xe_query@multigpu-query-invalid-size.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159008v3/shard-bmg-5/igt@xe_query@multigpu-query-invalid-size.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4674]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4674
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6913]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6913
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4272-93db616df689a410d961e7c614c57e61d17a29a0 -> xe-pw-159008v3

  IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4272-93db616df689a410d961e7c614c57e61d17a29a0: 93db616df689a410d961e7c614c57e61d17a29a0
  xe-pw-159008v3: 159008v3

== Logs ==

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

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

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

end of thread, other threads:[~2025-12-20  8:47 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-19  6:02 [PATCH 0/6] Prepare GVT for display modularization Ankit Nautiyal
2025-12-19  6:02 ` [PATCH 1/6] drm/i915/display: Abstract pipe/trans/cursor offset calculation Ankit Nautiyal
2025-12-19  6:02 ` [PATCH 2/6] drm/i915/display: Add APIs to be used by gvt to get the register offsets Ankit Nautiyal
2025-12-19  6:02 ` [PATCH 3/6] drm/i915/gvt: Add header to use display offset functions in macros Ankit Nautiyal
2025-12-19  6:02 ` [PATCH 4/6] drm/i915/gvt: Change for_each_pipe to use pipe_valid API Ankit Nautiyal
2025-12-19 12:34   ` Jani Nikula
2025-12-19 14:44     ` Nautiyal, Ankit K
2025-12-19  6:02 ` [PATCH 5/6] drm/i915/gvt: Use the appropriate header for the DPLL macro Ankit Nautiyal
2025-12-19  6:02 ` [PATCH 6/6] drm/i915/gvt/display_helper: Get rid of #ifdef/#undefs Ankit Nautiyal
2025-12-19  6:23 ` ✗ CI.checkpatch: warning for Prepare GVT for display modularization (rev3) Patchwork
2025-12-19  6:24 ` ✓ CI.KUnit: success " Patchwork
2025-12-19  6:39 ` ✗ CI.checksparse: warning " Patchwork
2025-12-19  6:58 ` ✓ Xe.CI.BAT: success " Patchwork
2025-12-20  8:47 ` ✗ Xe.CI.Full: failure " Patchwork

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