* [PATCH v3 1/6] drm/xe: Export xe_step_name for kunit tests
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
@ 2025-06-30 17:34 ` Matt Roper
2025-06-30 23:54 ` Lucas De Marchi
2025-06-30 17:34 ` [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis Matt Roper
` (11 subsequent siblings)
12 siblings, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-06-30 17:34 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Michal Wajdeczko
xe_step_name() is used by xe_assert(), so adding assertions to functions
like xe_device_get_gt() will result in
ERROR: modpost: "xe_step_name" [drivers/gpu/drm/xe/tests/xe_test.ko] undefined!
while building the kunit tests. Export xe_step_name to avoid these
build failures when adding assertions.
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_step.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_step.c b/drivers/gpu/drm/xe/xe_step.c
index c77b5c317fa0..10e88f2c9615 100644
--- a/drivers/gpu/drm/xe/xe_step.c
+++ b/drivers/gpu/drm/xe/xe_step.c
@@ -5,6 +5,7 @@
#include "xe_step.h"
+#include <kunit/visibility.h>
#include <linux/bitfield.h>
#include "xe_device.h"
@@ -255,3 +256,4 @@ const char *xe_step_name(enum xe_step step)
return "**";
}
}
+EXPORT_SYMBOL_IF_KUNIT(xe_step_name);
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* Re: [PATCH v3 1/6] drm/xe: Export xe_step_name for kunit tests
2025-06-30 17:34 ` [PATCH v3 1/6] drm/xe: Export xe_step_name for kunit tests Matt Roper
@ 2025-06-30 23:54 ` Lucas De Marchi
0 siblings, 0 replies; 26+ messages in thread
From: Lucas De Marchi @ 2025-06-30 23:54 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe, Michal Wajdeczko
On Mon, Jun 30, 2025 at 10:34:40AM -0700, Matt Roper wrote:
>xe_step_name() is used by xe_assert(), so adding assertions to functions
>like xe_device_get_gt() will result in
>
> ERROR: modpost: "xe_step_name" [drivers/gpu/drm/xe/tests/xe_test.ko] undefined!
>
>while building the kunit tests. Export xe_step_name to avoid these
>build failures when adding assertions.
>
>Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
2025-06-30 17:34 ` [PATCH v3 1/6] drm/xe: Export xe_step_name for kunit tests Matt Roper
@ 2025-06-30 17:34 ` Matt Roper
2025-07-01 5:05 ` Riana Tauro
2025-06-30 17:34 ` [PATCH v3 3/6] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count Matt Roper
` (10 subsequent siblings)
12 siblings, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-06-30 17:34 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Lucas De Marchi
Today all of our platforms fall into one of three cases:
* Single tile platforms with a single (primary) GT
* Single tile platforms with two GTs (primary + media)
* Two-tile platforms with a single GT (primary) in each
Our numbering of GTs has been a bit inconsistent between platforms
(e.g., GT1 is the media GT on some platforms, but the second tile's
primary GT on others). In the future we'll likely have platforms that
are both multi-tile and multi-GT, which will make the situation more
confusing. We could also wind up with more than just two types of GTs
at some point in the future.
Going forward we should standardize the way we assign uapi GT IDs to
internal GT structures. Let's declare that for userspace GT ID n,
GT[n]'s tile = n / (max gt per tile)
GT[n]'s slot within tile = n % (max gt per tile)
We don't want the GT numbering to change for any of our current
platforms since the current IDs are part of our ABI contract with
userspace so this means we should track the 'max gt per tile' value on a
per-platform basis rather than just using a single value across the
driver. Encode this into device descriptors in xe_pci.c and use the
per-platform number for various checks in the code. Constant
XE_MAX_GT_PER_TILE will remain just as the maximum across all platforms
for easy of sizing array allocations.
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_device.h | 41 +++++++++++++---------------
drivers/gpu/drm/xe/xe_device_types.h | 2 ++
drivers/gpu/drm/xe/xe_pci.c | 18 ++++++++++++
drivers/gpu/drm/xe/xe_pmu.c | 4 ++-
drivers/gpu/drm/xe/xe_query.c | 2 +-
5 files changed, 43 insertions(+), 24 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index e4da797a984b..4e719d398c88 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -60,35 +60,32 @@ static inline struct xe_tile *xe_device_get_root_tile(struct xe_device *xe)
return &xe->tiles[0];
}
+/*
+ * Highest GT/tile count for any platform. Used only for memory allocation
+ * sizing. Any logic looping over GTs or mapping userspace GT IDs into GT
+ * structures should use the per-platform xe->info.max_gt_per_tile instead.
+ */
#define XE_MAX_GT_PER_TILE 2
-static inline struct xe_gt *xe_tile_get_gt(struct xe_tile *tile, u8 gt_id)
-{
- if (drm_WARN_ON(&tile_to_xe(tile)->drm, gt_id >= XE_MAX_GT_PER_TILE))
- gt_id = 0;
-
- return gt_id ? tile->media_gt : tile->primary_gt;
-}
-
static inline struct xe_gt *xe_device_get_gt(struct xe_device *xe, u8 gt_id)
{
- struct xe_tile *root_tile = xe_device_get_root_tile(xe);
+ struct xe_tile *tile;
struct xe_gt *gt;
- /*
- * FIXME: This only works for now because multi-tile and standalone
- * media are mutually exclusive on the platforms we have today.
- *
- * id => GT mapping may change once we settle on how we want to handle
- * our UAPI.
- */
- if (MEDIA_VER(xe) >= 13) {
- gt = xe_tile_get_gt(root_tile, gt_id);
- } else {
- if (drm_WARN_ON(&xe->drm, gt_id >= XE_MAX_TILES_PER_DEVICE))
- gt_id = 0;
+ if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile)
+ return NULL;
- gt = xe->tiles[gt_id].primary_gt;
+ tile = &xe->tiles[gt_id / xe->info.max_gt_per_tile];
+ switch (gt_id % xe->info.max_gt_per_tile) {
+ default:
+ xe_assert(xe, false);
+ fallthrough;
+ case 0:
+ gt = tile->primary_gt;
+ break;
+ case 1:
+ gt = tile->media_gt;
+ break;
}
if (!gt)
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 7e4f6d846af6..78c4acafd268 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -294,6 +294,8 @@ struct xe_device {
u8 vram_flags;
/** @info.tile_count: Number of tiles */
u8 tile_count;
+ /** @info.max_gt_per_tile: Number of GT IDs allocated to each tile */
+ u8 max_gt_per_tile;
/** @info.gt_count: Total number of GTs for entire device */
u8 gt_count;
/** @info.vm_max_level: Max VM level */
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 824461c31288..316031854c26 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -57,6 +57,7 @@ struct xe_device_desc {
u8 dma_mask_size;
u8 max_remote_tiles:2;
+ u8 max_gt_per_tile:2;
u8 require_force_probe:1;
u8 is_dgfx:1;
@@ -208,6 +209,7 @@ static const struct xe_device_desc tgl_desc = {
.dma_mask_size = 39,
.has_display = true,
.has_llc = true,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -218,6 +220,7 @@ static const struct xe_device_desc rkl_desc = {
.dma_mask_size = 39,
.has_display = true,
.has_llc = true,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -231,6 +234,7 @@ static const struct xe_device_desc adl_s_desc = {
.has_display = true,
.has_llc = true,
.has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
+ .max_gt_per_tile = 1,
.require_force_probe = true,
.subplatforms = (const struct xe_subplatform_desc[]) {
{ XE_SUBPLATFORM_ALDERLAKE_S_RPLS, "RPLS", adls_rpls_ids },
@@ -248,6 +252,7 @@ static const struct xe_device_desc adl_p_desc = {
.has_display = true,
.has_llc = true,
.has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
+ .max_gt_per_tile = 1,
.require_force_probe = true,
.subplatforms = (const struct xe_subplatform_desc[]) {
{ XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
@@ -263,6 +268,7 @@ static const struct xe_device_desc adl_n_desc = {
.has_display = true,
.has_llc = true,
.has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -278,6 +284,7 @@ static const struct xe_device_desc dg1_desc = {
.has_display = true,
.has_gsc_nvm = 1,
.has_heci_gscfi = 1,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -301,6 +308,7 @@ static const struct xe_device_desc ats_m_desc = {
.pre_gmdid_graphics_ip = &graphics_ip_xehpg,
.pre_gmdid_media_ip = &media_ip_xehpm,
.dma_mask_size = 46,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
DG2_FEATURES,
@@ -312,6 +320,7 @@ static const struct xe_device_desc dg2_desc = {
.pre_gmdid_graphics_ip = &graphics_ip_xehpg,
.pre_gmdid_media_ip = &media_ip_xehpm,
.dma_mask_size = 46,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
DG2_FEATURES,
@@ -328,6 +337,7 @@ static const __maybe_unused struct xe_device_desc pvc_desc = {
.has_display = false,
.has_gsc_nvm = 1,
.has_heci_gscfi = 1,
+ .max_gt_per_tile = 1,
.max_remote_tiles = 1,
.require_force_probe = true,
.has_mbx_power_limits = false,
@@ -340,6 +350,7 @@ static const struct xe_device_desc mtl_desc = {
.dma_mask_size = 46,
.has_display = true,
.has_pxp = true,
+ .max_gt_per_tile = 2,
};
static const struct xe_device_desc lnl_desc = {
@@ -347,6 +358,7 @@ static const struct xe_device_desc lnl_desc = {
.dma_mask_size = 46,
.has_display = true,
.has_pxp = true,
+ .max_gt_per_tile = 2,
.needs_scratch = true,
};
@@ -359,6 +371,7 @@ static const struct xe_device_desc bmg_desc = {
.has_mbx_power_limits = true,
.has_gsc_nvm = 1,
.has_heci_cscfi = 1,
+ .max_gt_per_tile = 2,
.needs_scratch = true,
};
@@ -367,6 +380,7 @@ static const struct xe_device_desc ptl_desc = {
.dma_mask_size = 46,
.has_display = true,
.has_sriov = true,
+ .max_gt_per_tile = 2,
.require_force_probe = true,
.needs_scratch = true,
};
@@ -616,6 +630,10 @@ static int xe_info_init_early(struct xe_device *xe,
xe->info.probe_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
xe_modparam.probe_display &&
desc->has_display;
+
+ xe_assert(xe, desc->max_gt_per_tile > 0);
+ xe_assert(xe, desc->max_gt_per_tile <= XE_MAX_GT_PER_TILE);
+ xe->info.max_gt_per_tile = desc->max_gt_per_tile;
xe->info.tile_count = 1 + desc->max_remote_tiles;
err = xe_tile_init_early(xe_device_get_root_tile(xe), xe, 0);
diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
index 69df0e3520a5..94a8e1db71e4 100644
--- a/drivers/gpu/drm/xe/xe_pmu.c
+++ b/drivers/gpu/drm/xe/xe_pmu.c
@@ -160,7 +160,9 @@ static bool event_gt_forcewake(struct perf_event *event)
static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
unsigned int id)
{
- if (gt >= XE_MAX_GT_PER_TILE)
+ struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
+
+ if (gt >= xe->info.max_gt_per_tile)
return false;
return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index e8e1743dcb1e..e615b0916217 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -141,7 +141,7 @@ query_engine_cycles(struct xe_device *xe,
return -EINVAL;
eci = &resp.eci;
- if (eci->gt_id >= XE_MAX_GT_PER_TILE)
+ if (eci->gt_id >= xe->info.max_gt_per_tile)
return -EINVAL;
gt = xe_device_get_gt(xe, eci->gt_id);
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* Re: [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis
2025-06-30 17:34 ` [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis Matt Roper
@ 2025-07-01 5:05 ` Riana Tauro
2025-07-01 16:55 ` Matt Roper
0 siblings, 1 reply; 26+ messages in thread
From: Riana Tauro @ 2025-07-01 5:05 UTC (permalink / raw)
To: Matt Roper, intel-xe; +Cc: Lucas De Marchi
Hi Matt
On 6/30/2025 11:04 PM, Matt Roper wrote:
> Today all of our platforms fall into one of three cases:
> * Single tile platforms with a single (primary) GT
> * Single tile platforms with two GTs (primary + media)
> * Two-tile platforms with a single GT (primary) in each
>
> Our numbering of GTs has been a bit inconsistent between platforms
> (e.g., GT1 is the media GT on some platforms, but the second tile's
> primary GT on others). In the future we'll likely have platforms that
> are both multi-tile and multi-GT, which will make the situation more
> confusing. We could also wind up with more than just two types of GTs
> at some point in the future.
>
> Going forward we should standardize the way we assign uapi GT IDs to
> internal GT structures. Let's declare that for userspace GT ID n,
>
> GT[n]'s tile = n / (max gt per tile)
> GT[n]'s slot within tile = n % (max gt per tile)
>
> We don't want the GT numbering to change for any of our current
> platforms since the current IDs are part of our ABI contract with
> userspace so this means we should track the 'max gt per tile' value on a
> per-platform basis rather than just using a single value across the
> driver. Encode this into device descriptors in xe_pci.c and use the
> per-platform number for various checks in the code. Constant
> XE_MAX_GT_PER_TILE will remain just as the maximum across all platforms
> for easy of sizing array allocations.
>
> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device.h | 41 +++++++++++++---------------
> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> drivers/gpu/drm/xe/xe_pci.c | 18 ++++++++++++
> drivers/gpu/drm/xe/xe_pmu.c | 4 ++-
> drivers/gpu/drm/xe/xe_query.c | 2 +-
> 5 files changed, 43 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
> index e4da797a984b..4e719d398c88 100644
> --- a/drivers/gpu/drm/xe/xe_device.h
> +++ b/drivers/gpu/drm/xe/xe_device.h
> @@ -60,35 +60,32 @@ static inline struct xe_tile *xe_device_get_root_tile(struct xe_device *xe)
> return &xe->tiles[0];
> }
>
> +/*
> + * Highest GT/tile count for any platform. Used only for memory allocation
> + * sizing. Any logic looping over GTs or mapping userspace GT IDs into GT
> + * structures should use the per-platform xe->info.max_gt_per_tile instead.
> + */
> #define XE_MAX_GT_PER_TILE 2
>
> -static inline struct xe_gt *xe_tile_get_gt(struct xe_tile *tile, u8 gt_id)
> -{
> - if (drm_WARN_ON(&tile_to_xe(tile)->drm, gt_id >= XE_MAX_GT_PER_TILE))
> - gt_id = 0;
> -
> - return gt_id ? tile->media_gt : tile->primary_gt;
> -}
> -
> static inline struct xe_gt *xe_device_get_gt(struct xe_device *xe, u8 gt_id)
> {
> - struct xe_tile *root_tile = xe_device_get_root_tile(xe);
> + struct xe_tile *tile;
> struct xe_gt *gt;
>
> - /*
> - * FIXME: This only works for now because multi-tile and standalone
> - * media are mutually exclusive on the platforms we have today.
> - *
> - * id => GT mapping may change once we settle on how we want to handle
> - * our UAPI.
> - */
> - if (MEDIA_VER(xe) >= 13) {
> - gt = xe_tile_get_gt(root_tile, gt_id);
> - } else {
> - if (drm_WARN_ON(&xe->drm, gt_id >= XE_MAX_TILES_PER_DEVICE))
> - gt_id = 0;
> + if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile)
> + return NULL;
>
> - gt = xe->tiles[gt_id].primary_gt;
> + tile = &xe->tiles[gt_id / xe->info.max_gt_per_tile];
> + switch (gt_id % xe->info.max_gt_per_tile) {
> + default:
> + xe_assert(xe, false);
> + fallthrough;
> + case 0:
> + gt = tile->primary_gt;
> + break;
> + case 1:
> + gt = tile->media_gt;
> + break;
> }
>
> if (!gt)
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index 7e4f6d846af6..78c4acafd268 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -294,6 +294,8 @@ struct xe_device {
> u8 vram_flags;
> /** @info.tile_count: Number of tiles */
> u8 tile_count;
> + /** @info.max_gt_per_tile: Number of GT IDs allocated to each tile */
> + u8 max_gt_per_tile;
> /** @info.gt_count: Total number of GTs for entire device */
> u8 gt_count;
> /** @info.vm_max_level: Max VM level */
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 824461c31288..316031854c26 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -57,6 +57,7 @@ struct xe_device_desc {
>
> u8 dma_mask_size;
> u8 max_remote_tiles:2;
> + u8 max_gt_per_tile:2;
>
> u8 require_force_probe:1;
> u8 is_dgfx:1;
> @@ -208,6 +209,7 @@ static const struct xe_device_desc tgl_desc = {
> .dma_mask_size = 39,
> .has_display = true,
> .has_llc = true,
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
> };
>
> @@ -218,6 +220,7 @@ static const struct xe_device_desc rkl_desc = {
> .dma_mask_size = 39,
> .has_display = true,
> .has_llc = true,
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
> };
>
> @@ -231,6 +234,7 @@ static const struct xe_device_desc adl_s_desc = {
> .has_display = true,
> .has_llc = true,
> .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
> .subplatforms = (const struct xe_subplatform_desc[]) {
> { XE_SUBPLATFORM_ALDERLAKE_S_RPLS, "RPLS", adls_rpls_ids },
> @@ -248,6 +252,7 @@ static const struct xe_device_desc adl_p_desc = {
> .has_display = true,
> .has_llc = true,
> .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
> .subplatforms = (const struct xe_subplatform_desc[]) {
> { XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
> @@ -263,6 +268,7 @@ static const struct xe_device_desc adl_n_desc = {
> .has_display = true,
> .has_llc = true,
> .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
> };
>
> @@ -278,6 +284,7 @@ static const struct xe_device_desc dg1_desc = {
> .has_display = true,
> .has_gsc_nvm = 1,
> .has_heci_gscfi = 1,
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
> };
>
> @@ -301,6 +308,7 @@ static const struct xe_device_desc ats_m_desc = {
> .pre_gmdid_graphics_ip = &graphics_ip_xehpg,
> .pre_gmdid_media_ip = &media_ip_xehpm,
> .dma_mask_size = 46,
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
>
> DG2_FEATURES,
> @@ -312,6 +320,7 @@ static const struct xe_device_desc dg2_desc = {
> .pre_gmdid_graphics_ip = &graphics_ip_xehpg,
> .pre_gmdid_media_ip = &media_ip_xehpm,
> .dma_mask_size = 46,
> + .max_gt_per_tile = 1,
> .require_force_probe = true,
>
> DG2_FEATURES,
> @@ -328,6 +337,7 @@ static const __maybe_unused struct xe_device_desc pvc_desc = {
> .has_display = false,
> .has_gsc_nvm = 1,
> .has_heci_gscfi = 1,
> + .max_gt_per_tile = 1,
> .max_remote_tiles = 1,
> .require_force_probe = true,
> .has_mbx_power_limits = false,
> @@ -340,6 +350,7 @@ static const struct xe_device_desc mtl_desc = {
> .dma_mask_size = 46,
> .has_display = true,
> .has_pxp = true,
> + .max_gt_per_tile = 2,
> };
>
> static const struct xe_device_desc lnl_desc = {
> @@ -347,6 +358,7 @@ static const struct xe_device_desc lnl_desc = {
> .dma_mask_size = 46,
> .has_display = true,
> .has_pxp = true,
> + .max_gt_per_tile = 2,
> .needs_scratch = true,
> };
>
> @@ -359,6 +371,7 @@ static const struct xe_device_desc bmg_desc = {
> .has_mbx_power_limits = true,
> .has_gsc_nvm = 1,
> .has_heci_cscfi = 1,
> + .max_gt_per_tile = 2,
> .needs_scratch = true,
> };
>
> @@ -367,6 +380,7 @@ static const struct xe_device_desc ptl_desc = {
> .dma_mask_size = 46,
> .has_display = true,
> .has_sriov = true,
> + .max_gt_per_tile = 2,
> .require_force_probe = true,
> .needs_scratch = true,
> };
> @@ -616,6 +630,10 @@ static int xe_info_init_early(struct xe_device *xe,
> xe->info.probe_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
> xe_modparam.probe_display &&
> desc->has_display;
> +
> + xe_assert(xe, desc->max_gt_per_tile > 0);
> + xe_assert(xe, desc->max_gt_per_tile <= XE_MAX_GT_PER_TILE);
> + xe->info.max_gt_per_tile = desc->max_gt_per_tile;
> xe->info.tile_count = 1 + desc->max_remote_tiles;
>
> err = xe_tile_init_early(xe_device_get_root_tile(xe), xe, 0);
> diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
> index 69df0e3520a5..94a8e1db71e4 100644
> --- a/drivers/gpu/drm/xe/xe_pmu.c
> +++ b/drivers/gpu/drm/xe/xe_pmu.c
> @@ -160,7 +160,9 @@ static bool event_gt_forcewake(struct perf_event *event)
> static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
> unsigned int id)
> {
> - if (gt >= XE_MAX_GT_PER_TILE)
> + struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
> +
> + if (gt >= xe->info.max_gt_per_tile)
> return false;
This will not work. For pmu events, gt will be across multiple tiles.
Here for example, if a tile has 2 gts and there are 2 tiles. Then a
valid gt id is 3. But max_gt_per_tile is 2. So it will return a false
Can we have
if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile) or a
xe_device_get_gt check similar to
https://patchwork.freedesktop.org/series/150943/
Thanks
Riana>
> return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> index e8e1743dcb1e..e615b0916217 100644
> --- a/drivers/gpu/drm/xe/xe_query.c
> +++ b/drivers/gpu/drm/xe/xe_query.c
> @@ -141,7 +141,7 @@ query_engine_cycles(struct xe_device *xe,
> return -EINVAL;
>
> eci = &resp.eci;
> - if (eci->gt_id >= XE_MAX_GT_PER_TILE)
> + if (eci->gt_id >= xe->info.max_gt_per_tile)
> return -EINVAL;
>
> gt = xe_device_get_gt(xe, eci->gt_id);
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis
2025-07-01 5:05 ` Riana Tauro
@ 2025-07-01 16:55 ` Matt Roper
2025-07-02 4:50 ` Riana Tauro
0 siblings, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-07-01 16:55 UTC (permalink / raw)
To: Riana Tauro; +Cc: intel-xe, Lucas De Marchi
On Tue, Jul 01, 2025 at 10:35:50AM +0530, Riana Tauro wrote:
> Hi Matt
>
> On 6/30/2025 11:04 PM, Matt Roper wrote:
> > Today all of our platforms fall into one of three cases:
> > * Single tile platforms with a single (primary) GT
> > * Single tile platforms with two GTs (primary + media)
> > * Two-tile platforms with a single GT (primary) in each
> >
> > Our numbering of GTs has been a bit inconsistent between platforms
> > (e.g., GT1 is the media GT on some platforms, but the second tile's
> > primary GT on others). In the future we'll likely have platforms that
> > are both multi-tile and multi-GT, which will make the situation more
> > confusing. We could also wind up with more than just two types of GTs
> > at some point in the future.
> >
> > Going forward we should standardize the way we assign uapi GT IDs to
> > internal GT structures. Let's declare that for userspace GT ID n,
> >
> > GT[n]'s tile = n / (max gt per tile)
> > GT[n]'s slot within tile = n % (max gt per tile)
> >
> > We don't want the GT numbering to change for any of our current
> > platforms since the current IDs are part of our ABI contract with
> > userspace so this means we should track the 'max gt per tile' value on a
> > per-platform basis rather than just using a single value across the
> > driver. Encode this into device descriptors in xe_pci.c and use the
> > per-platform number for various checks in the code. Constant
> > XE_MAX_GT_PER_TILE will remain just as the maximum across all platforms
> > for easy of sizing array allocations.
> >
> > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_device.h | 41 +++++++++++++---------------
> > drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> > drivers/gpu/drm/xe/xe_pci.c | 18 ++++++++++++
> > drivers/gpu/drm/xe/xe_pmu.c | 4 ++-
> > drivers/gpu/drm/xe/xe_query.c | 2 +-
> > 5 files changed, 43 insertions(+), 24 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
> > index e4da797a984b..4e719d398c88 100644
> > --- a/drivers/gpu/drm/xe/xe_device.h
> > +++ b/drivers/gpu/drm/xe/xe_device.h
> > @@ -60,35 +60,32 @@ static inline struct xe_tile *xe_device_get_root_tile(struct xe_device *xe)
> > return &xe->tiles[0];
> > }
> > +/*
> > + * Highest GT/tile count for any platform. Used only for memory allocation
> > + * sizing. Any logic looping over GTs or mapping userspace GT IDs into GT
> > + * structures should use the per-platform xe->info.max_gt_per_tile instead.
> > + */
> > #define XE_MAX_GT_PER_TILE 2
> > -static inline struct xe_gt *xe_tile_get_gt(struct xe_tile *tile, u8 gt_id)
> > -{
> > - if (drm_WARN_ON(&tile_to_xe(tile)->drm, gt_id >= XE_MAX_GT_PER_TILE))
> > - gt_id = 0;
> > -
> > - return gt_id ? tile->media_gt : tile->primary_gt;
> > -}
> > -
> > static inline struct xe_gt *xe_device_get_gt(struct xe_device *xe, u8 gt_id)
> > {
> > - struct xe_tile *root_tile = xe_device_get_root_tile(xe);
> > + struct xe_tile *tile;
> > struct xe_gt *gt;
> > - /*
> > - * FIXME: This only works for now because multi-tile and standalone
> > - * media are mutually exclusive on the platforms we have today.
> > - *
> > - * id => GT mapping may change once we settle on how we want to handle
> > - * our UAPI.
> > - */
> > - if (MEDIA_VER(xe) >= 13) {
> > - gt = xe_tile_get_gt(root_tile, gt_id);
> > - } else {
> > - if (drm_WARN_ON(&xe->drm, gt_id >= XE_MAX_TILES_PER_DEVICE))
> > - gt_id = 0;
> > + if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile)
> > + return NULL;
> > - gt = xe->tiles[gt_id].primary_gt;
> > + tile = &xe->tiles[gt_id / xe->info.max_gt_per_tile];
> > + switch (gt_id % xe->info.max_gt_per_tile) {
> > + default:
> > + xe_assert(xe, false);
> > + fallthrough;
> > + case 0:
> > + gt = tile->primary_gt;
> > + break;
> > + case 1:
> > + gt = tile->media_gt;
> > + break;
> > }
> > if (!gt)
> > diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> > index 7e4f6d846af6..78c4acafd268 100644
> > --- a/drivers/gpu/drm/xe/xe_device_types.h
> > +++ b/drivers/gpu/drm/xe/xe_device_types.h
> > @@ -294,6 +294,8 @@ struct xe_device {
> > u8 vram_flags;
> > /** @info.tile_count: Number of tiles */
> > u8 tile_count;
> > + /** @info.max_gt_per_tile: Number of GT IDs allocated to each tile */
> > + u8 max_gt_per_tile;
> > /** @info.gt_count: Total number of GTs for entire device */
> > u8 gt_count;
> > /** @info.vm_max_level: Max VM level */
> > diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> > index 824461c31288..316031854c26 100644
> > --- a/drivers/gpu/drm/xe/xe_pci.c
> > +++ b/drivers/gpu/drm/xe/xe_pci.c
> > @@ -57,6 +57,7 @@ struct xe_device_desc {
> > u8 dma_mask_size;
> > u8 max_remote_tiles:2;
> > + u8 max_gt_per_tile:2;
> > u8 require_force_probe:1;
> > u8 is_dgfx:1;
> > @@ -208,6 +209,7 @@ static const struct xe_device_desc tgl_desc = {
> > .dma_mask_size = 39,
> > .has_display = true,
> > .has_llc = true,
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > };
> > @@ -218,6 +220,7 @@ static const struct xe_device_desc rkl_desc = {
> > .dma_mask_size = 39,
> > .has_display = true,
> > .has_llc = true,
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > };
> > @@ -231,6 +234,7 @@ static const struct xe_device_desc adl_s_desc = {
> > .has_display = true,
> > .has_llc = true,
> > .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > .subplatforms = (const struct xe_subplatform_desc[]) {
> > { XE_SUBPLATFORM_ALDERLAKE_S_RPLS, "RPLS", adls_rpls_ids },
> > @@ -248,6 +252,7 @@ static const struct xe_device_desc adl_p_desc = {
> > .has_display = true,
> > .has_llc = true,
> > .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > .subplatforms = (const struct xe_subplatform_desc[]) {
> > { XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
> > @@ -263,6 +268,7 @@ static const struct xe_device_desc adl_n_desc = {
> > .has_display = true,
> > .has_llc = true,
> > .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > };
> > @@ -278,6 +284,7 @@ static const struct xe_device_desc dg1_desc = {
> > .has_display = true,
> > .has_gsc_nvm = 1,
> > .has_heci_gscfi = 1,
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > };
> > @@ -301,6 +308,7 @@ static const struct xe_device_desc ats_m_desc = {
> > .pre_gmdid_graphics_ip = &graphics_ip_xehpg,
> > .pre_gmdid_media_ip = &media_ip_xehpm,
> > .dma_mask_size = 46,
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > DG2_FEATURES,
> > @@ -312,6 +320,7 @@ static const struct xe_device_desc dg2_desc = {
> > .pre_gmdid_graphics_ip = &graphics_ip_xehpg,
> > .pre_gmdid_media_ip = &media_ip_xehpm,
> > .dma_mask_size = 46,
> > + .max_gt_per_tile = 1,
> > .require_force_probe = true,
> > DG2_FEATURES,
> > @@ -328,6 +337,7 @@ static const __maybe_unused struct xe_device_desc pvc_desc = {
> > .has_display = false,
> > .has_gsc_nvm = 1,
> > .has_heci_gscfi = 1,
> > + .max_gt_per_tile = 1,
> > .max_remote_tiles = 1,
> > .require_force_probe = true,
> > .has_mbx_power_limits = false,
> > @@ -340,6 +350,7 @@ static const struct xe_device_desc mtl_desc = {
> > .dma_mask_size = 46,
> > .has_display = true,
> > .has_pxp = true,
> > + .max_gt_per_tile = 2,
> > };
> > static const struct xe_device_desc lnl_desc = {
> > @@ -347,6 +358,7 @@ static const struct xe_device_desc lnl_desc = {
> > .dma_mask_size = 46,
> > .has_display = true,
> > .has_pxp = true,
> > + .max_gt_per_tile = 2,
> > .needs_scratch = true,
> > };
> > @@ -359,6 +371,7 @@ static const struct xe_device_desc bmg_desc = {
> > .has_mbx_power_limits = true,
> > .has_gsc_nvm = 1,
> > .has_heci_cscfi = 1,
> > + .max_gt_per_tile = 2,
> > .needs_scratch = true,
> > };
> > @@ -367,6 +380,7 @@ static const struct xe_device_desc ptl_desc = {
> > .dma_mask_size = 46,
> > .has_display = true,
> > .has_sriov = true,
> > + .max_gt_per_tile = 2,
> > .require_force_probe = true,
> > .needs_scratch = true,
> > };
> > @@ -616,6 +630,10 @@ static int xe_info_init_early(struct xe_device *xe,
> > xe->info.probe_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
> > xe_modparam.probe_display &&
> > desc->has_display;
> > +
> > + xe_assert(xe, desc->max_gt_per_tile > 0);
> > + xe_assert(xe, desc->max_gt_per_tile <= XE_MAX_GT_PER_TILE);
> > + xe->info.max_gt_per_tile = desc->max_gt_per_tile;
> > xe->info.tile_count = 1 + desc->max_remote_tiles;
> > err = xe_tile_init_early(xe_device_get_root_tile(xe), xe, 0);
> > diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
> > index 69df0e3520a5..94a8e1db71e4 100644
> > --- a/drivers/gpu/drm/xe/xe_pmu.c
> > +++ b/drivers/gpu/drm/xe/xe_pmu.c
> > @@ -160,7 +160,9 @@ static bool event_gt_forcewake(struct perf_event *event)
> > static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
> > unsigned int id)
> > {
> > - if (gt >= XE_MAX_GT_PER_TILE)
> > + struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
> > +
> > + if (gt >= xe->info.max_gt_per_tile)
> > return false;
>
> This will not work. For pmu events, gt will be across multiple tiles.
>
> Here for example, if a tile has 2 gts and there are 2 tiles. Then a valid gt
> id is 3. But max_gt_per_tile is 2. So it will return a false
So it sounds like the change here is an accurate conversion of the
existing code (changing the global constant XE_MAX_GT_PER_TILE into a
platform-specific xe->info.max_gt_per_tile value), but the original
logic is already problematic? In that case we should probably fix this
as a follow-up patch to avoid mixing two different kinds of changes into
the same patch.
>
> Can we have
>
> if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile) or a
> xe_device_get_gt check similar to
> https://patchwork.freedesktop.org/series/150943/
If we're trying to make sure the GT itself is valid, then it would
probably be easier (and more accurate) to just do
if (!xe_device_get_gt(xe, gt_id))
return -EINVAL;
since that would also accurately raise an error on unused GT IDs that
fall in the middle of the valid range. E.g., if a platform only has GT
IDs 0, 2, and 3 (media fused off on the first tile), then it would warn
if an ID of 1 is passed too.
Matt
>
> Thanks
> Riana>
> > return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
> > diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> > index e8e1743dcb1e..e615b0916217 100644
> > --- a/drivers/gpu/drm/xe/xe_query.c
> > +++ b/drivers/gpu/drm/xe/xe_query.c
> > @@ -141,7 +141,7 @@ query_engine_cycles(struct xe_device *xe,
> > return -EINVAL;
> > eci = &resp.eci;
> > - if (eci->gt_id >= XE_MAX_GT_PER_TILE)
> > + if (eci->gt_id >= xe->info.max_gt_per_tile)
> > return -EINVAL;
> > gt = xe_device_get_gt(xe, eci->gt_id);
>
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis
2025-07-01 16:55 ` Matt Roper
@ 2025-07-02 4:50 ` Riana Tauro
0 siblings, 0 replies; 26+ messages in thread
From: Riana Tauro @ 2025-07-02 4:50 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe, Lucas De Marchi
Hi Matt
On 7/1/2025 10:25 PM, Matt Roper wrote:
> On Tue, Jul 01, 2025 at 10:35:50AM +0530, Riana Tauro wrote:
>> Hi Matt
>>
>> On 6/30/2025 11:04 PM, Matt Roper wrote:
>>> Today all of our platforms fall into one of three cases:
>>> * Single tile platforms with a single (primary) GT
>>> * Single tile platforms with two GTs (primary + media)
>>> * Two-tile platforms with a single GT (primary) in each
>>>
>>> Our numbering of GTs has been a bit inconsistent between platforms
>>> (e.g., GT1 is the media GT on some platforms, but the second tile's
>>> primary GT on others). In the future we'll likely have platforms that
>>> are both multi-tile and multi-GT, which will make the situation more
>>> confusing. We could also wind up with more than just two types of GTs
>>> at some point in the future.
>>>
>>> Going forward we should standardize the way we assign uapi GT IDs to
>>> internal GT structures. Let's declare that for userspace GT ID n,
>>>
>>> GT[n]'s tile = n / (max gt per tile)
>>> GT[n]'s slot within tile = n % (max gt per tile)
>>>
>>> We don't want the GT numbering to change for any of our current
>>> platforms since the current IDs are part of our ABI contract with
>>> userspace so this means we should track the 'max gt per tile' value on a
>>> per-platform basis rather than just using a single value across the
>>> driver. Encode this into device descriptors in xe_pci.c and use the
>>> per-platform number for various checks in the code. Constant
>>> XE_MAX_GT_PER_TILE will remain just as the maximum across all platforms
>>> for easy of sizing array allocations.
>>>
>>> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
>>> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_device.h | 41 +++++++++++++---------------
>>> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
>>> drivers/gpu/drm/xe/xe_pci.c | 18 ++++++++++++
>>> drivers/gpu/drm/xe/xe_pmu.c | 4 ++-
>>> drivers/gpu/drm/xe/xe_query.c | 2 +-
>>> 5 files changed, 43 insertions(+), 24 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
>>> index e4da797a984b..4e719d398c88 100644
>>> --- a/drivers/gpu/drm/xe/xe_device.h
>>> +++ b/drivers/gpu/drm/xe/xe_device.h
>>> @@ -60,35 +60,32 @@ static inline struct xe_tile *xe_device_get_root_tile(struct xe_device *xe)
>>> return &xe->tiles[0];
>>> }
>>> +/*
>>> + * Highest GT/tile count for any platform. Used only for memory allocation
>>> + * sizing. Any logic looping over GTs or mapping userspace GT IDs into GT
>>> + * structures should use the per-platform xe->info.max_gt_per_tile instead.
>>> + */
>>> #define XE_MAX_GT_PER_TILE 2
>>> -static inline struct xe_gt *xe_tile_get_gt(struct xe_tile *tile, u8 gt_id)
>>> -{
>>> - if (drm_WARN_ON(&tile_to_xe(tile)->drm, gt_id >= XE_MAX_GT_PER_TILE))
>>> - gt_id = 0;
>>> -
>>> - return gt_id ? tile->media_gt : tile->primary_gt;
>>> -}
>>> -
>>> static inline struct xe_gt *xe_device_get_gt(struct xe_device *xe, u8 gt_id)
>>> {
>>> - struct xe_tile *root_tile = xe_device_get_root_tile(xe);
>>> + struct xe_tile *tile;
>>> struct xe_gt *gt;
>>> - /*
>>> - * FIXME: This only works for now because multi-tile and standalone
>>> - * media are mutually exclusive on the platforms we have today.
>>> - *
>>> - * id => GT mapping may change once we settle on how we want to handle
>>> - * our UAPI.
>>> - */
>>> - if (MEDIA_VER(xe) >= 13) {
>>> - gt = xe_tile_get_gt(root_tile, gt_id);
>>> - } else {
>>> - if (drm_WARN_ON(&xe->drm, gt_id >= XE_MAX_TILES_PER_DEVICE))
>>> - gt_id = 0;
>>> + if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile)
>>> + return NULL;
>>> - gt = xe->tiles[gt_id].primary_gt;
>>> + tile = &xe->tiles[gt_id / xe->info.max_gt_per_tile];
>>> + switch (gt_id % xe->info.max_gt_per_tile) {
>>> + default:
>>> + xe_assert(xe, false);
>>> + fallthrough;
>>> + case 0:
>>> + gt = tile->primary_gt;
>>> + break;
>>> + case 1:
>>> + gt = tile->media_gt;
>>> + break;
>>> }
>>> if (!gt)
>>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
>>> index 7e4f6d846af6..78c4acafd268 100644
>>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>>> @@ -294,6 +294,8 @@ struct xe_device {
>>> u8 vram_flags;
>>> /** @info.tile_count: Number of tiles */
>>> u8 tile_count;
>>> + /** @info.max_gt_per_tile: Number of GT IDs allocated to each tile */
>>> + u8 max_gt_per_tile;
>>> /** @info.gt_count: Total number of GTs for entire device */
>>> u8 gt_count;
>>> /** @info.vm_max_level: Max VM level */
>>> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
>>> index 824461c31288..316031854c26 100644
>>> --- a/drivers/gpu/drm/xe/xe_pci.c
>>> +++ b/drivers/gpu/drm/xe/xe_pci.c
>>> @@ -57,6 +57,7 @@ struct xe_device_desc {
>>> u8 dma_mask_size;
>>> u8 max_remote_tiles:2;
>>> + u8 max_gt_per_tile:2;
>>> u8 require_force_probe:1;
>>> u8 is_dgfx:1;
>>> @@ -208,6 +209,7 @@ static const struct xe_device_desc tgl_desc = {
>>> .dma_mask_size = 39,
>>> .has_display = true,
>>> .has_llc = true,
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> };
>>> @@ -218,6 +220,7 @@ static const struct xe_device_desc rkl_desc = {
>>> .dma_mask_size = 39,
>>> .has_display = true,
>>> .has_llc = true,
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> };
>>> @@ -231,6 +234,7 @@ static const struct xe_device_desc adl_s_desc = {
>>> .has_display = true,
>>> .has_llc = true,
>>> .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> .subplatforms = (const struct xe_subplatform_desc[]) {
>>> { XE_SUBPLATFORM_ALDERLAKE_S_RPLS, "RPLS", adls_rpls_ids },
>>> @@ -248,6 +252,7 @@ static const struct xe_device_desc adl_p_desc = {
>>> .has_display = true,
>>> .has_llc = true,
>>> .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> .subplatforms = (const struct xe_subplatform_desc[]) {
>>> { XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
>>> @@ -263,6 +268,7 @@ static const struct xe_device_desc adl_n_desc = {
>>> .has_display = true,
>>> .has_llc = true,
>>> .has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> };
>>> @@ -278,6 +284,7 @@ static const struct xe_device_desc dg1_desc = {
>>> .has_display = true,
>>> .has_gsc_nvm = 1,
>>> .has_heci_gscfi = 1,
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> };
>>> @@ -301,6 +308,7 @@ static const struct xe_device_desc ats_m_desc = {
>>> .pre_gmdid_graphics_ip = &graphics_ip_xehpg,
>>> .pre_gmdid_media_ip = &media_ip_xehpm,
>>> .dma_mask_size = 46,
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> DG2_FEATURES,
>>> @@ -312,6 +320,7 @@ static const struct xe_device_desc dg2_desc = {
>>> .pre_gmdid_graphics_ip = &graphics_ip_xehpg,
>>> .pre_gmdid_media_ip = &media_ip_xehpm,
>>> .dma_mask_size = 46,
>>> + .max_gt_per_tile = 1,
>>> .require_force_probe = true,
>>> DG2_FEATURES,
>>> @@ -328,6 +337,7 @@ static const __maybe_unused struct xe_device_desc pvc_desc = {
>>> .has_display = false,
>>> .has_gsc_nvm = 1,
>>> .has_heci_gscfi = 1,
>>> + .max_gt_per_tile = 1,
>>> .max_remote_tiles = 1,
>>> .require_force_probe = true,
>>> .has_mbx_power_limits = false,
>>> @@ -340,6 +350,7 @@ static const struct xe_device_desc mtl_desc = {
>>> .dma_mask_size = 46,
>>> .has_display = true,
>>> .has_pxp = true,
>>> + .max_gt_per_tile = 2,
>>> };
>>> static const struct xe_device_desc lnl_desc = {
>>> @@ -347,6 +358,7 @@ static const struct xe_device_desc lnl_desc = {
>>> .dma_mask_size = 46,
>>> .has_display = true,
>>> .has_pxp = true,
>>> + .max_gt_per_tile = 2,
>>> .needs_scratch = true,
>>> };
>>> @@ -359,6 +371,7 @@ static const struct xe_device_desc bmg_desc = {
>>> .has_mbx_power_limits = true,
>>> .has_gsc_nvm = 1,
>>> .has_heci_cscfi = 1,
>>> + .max_gt_per_tile = 2,
>>> .needs_scratch = true,
>>> };
>>> @@ -367,6 +380,7 @@ static const struct xe_device_desc ptl_desc = {
>>> .dma_mask_size = 46,
>>> .has_display = true,
>>> .has_sriov = true,
>>> + .max_gt_per_tile = 2,
>>> .require_force_probe = true,
>>> .needs_scratch = true,
>>> };
>>> @@ -616,6 +630,10 @@ static int xe_info_init_early(struct xe_device *xe,
>>> xe->info.probe_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
>>> xe_modparam.probe_display &&
>>> desc->has_display;
>>> +
>>> + xe_assert(xe, desc->max_gt_per_tile > 0);
>>> + xe_assert(xe, desc->max_gt_per_tile <= XE_MAX_GT_PER_TILE);
>>> + xe->info.max_gt_per_tile = desc->max_gt_per_tile;
>>> xe->info.tile_count = 1 + desc->max_remote_tiles;
>>> err = xe_tile_init_early(xe_device_get_root_tile(xe), xe, 0);
>>> diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
>>> index 69df0e3520a5..94a8e1db71e4 100644
>>> --- a/drivers/gpu/drm/xe/xe_pmu.c
>>> +++ b/drivers/gpu/drm/xe/xe_pmu.c
>>> @@ -160,7 +160,9 @@ static bool event_gt_forcewake(struct perf_event *event)
>>> static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
>>> unsigned int id)
>>> {
>>> - if (gt >= XE_MAX_GT_PER_TILE)
>>> + struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
>>> +
>>> + if (gt >= xe->info.max_gt_per_tile)
>>> return false;
>>
>> This will not work. For pmu events, gt will be across multiple tiles.
>>
>> Here for example, if a tile has 2 gts and there are 2 tiles. Then a valid gt
>> id is 3. But max_gt_per_tile is 2. So it will return a false
>
> So it sounds like the change here is an accurate conversion of the
> existing code (changing the global constant XE_MAX_GT_PER_TILE into a
> platform-specific xe->info.max_gt_per_tile value), but the original
> logic is already problematic?
Yes the original logic is problematic. Have sent a separate patch
too.
> In that case we should probably fix this
> as a follow-up patch to avoid mixing two different kinds of changes into
> the same patch.>
>>
>> Can we have
>>
>> if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile) or a
>> xe_device_get_gt check similar to
>> https://patchwork.freedesktop.org/series/150943/
>
> If we're trying to make sure the GT itself is valid, then it would
> probably be easier (and more accurate) to just do
>
> if (!xe_device_get_gt(xe, gt_id))
> return -EINVAL;
>
> since that would also accurately raise an error on unused GT IDs that
> fall in the middle of the valid range. E.g., if a platform only has GT
> IDs 0, 2, and 3 (media fused off on the first tile), then it would warn
> if an ID of 1 is passed too.
Yeah this should be the case. If the gt id passed in pmu config does not
exist then it should return event not supported
Thanks
Riana
>
>
> Matt
>
>>
>> Thanks
>> Riana>
>>> return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
>>> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
>>> index e8e1743dcb1e..e615b0916217 100644
>>> --- a/drivers/gpu/drm/xe/xe_query.c
>>> +++ b/drivers/gpu/drm/xe/xe_query.c
>>> @@ -141,7 +141,7 @@ query_engine_cycles(struct xe_device *xe,
>>> return -EINVAL;
>>> eci = &resp.eci;
>>> - if (eci->gt_id >= XE_MAX_GT_PER_TILE)
>>> + if (eci->gt_id >= xe->info.max_gt_per_tile)
>>> return -EINVAL;
>>> gt = xe_device_get_gt(xe, eci->gt_id);
>>
>>
>
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v3 3/6] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
2025-06-30 17:34 ` [PATCH v3 1/6] drm/xe: Export xe_step_name for kunit tests Matt Roper
2025-06-30 17:34 ` [PATCH v3 2/6] drm/xe: Track maximum GTs per tile on a per-platform basis Matt Roper
@ 2025-06-30 17:34 ` Matt Roper
2025-06-30 17:34 ` [PATCH v3 4/6] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
` (9 subsequent siblings)
12 siblings, 0 replies; 26+ messages in thread
From: Matt Roper @ 2025-06-30 17:34 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Michal Wajdeczko, Ravi Kumar Vodapalli
Add a simple kunit test to ensure each platform's GT per tile count is
non-zero and does not exceed the global XE_MAX_GT_PER_TILE definition.
We need to move 'struct xe_subplatform_desc' from the .c file to the
types header to ensure it is accessible from the kunit test.
v2:
- Rebase on latest xe_pci test rework from Michal and convert to
a parameterized test that runs on each PCI ID supported by the
driver.
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Ravi Kumar Vodapalli<ravi.kumar.vodapalli@intel.com>
---
drivers/gpu/drm/xe/tests/xe_pci.c | 31 +++++++++++++++++++
drivers/gpu/drm/xe/tests/xe_pci_test.c | 12 ++++++++
drivers/gpu/drm/xe/tests/xe_pci_test.h | 1 +
drivers/gpu/drm/xe/xe_pci.c | 39 ------------------------
drivers/gpu/drm/xe/xe_pci_types.h | 41 ++++++++++++++++++++++++++
5 files changed, 85 insertions(+), 39 deletions(-)
diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
index baccb657bd05..9c715e59f030 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci.c
+++ b/drivers/gpu/drm/xe/tests/xe_pci.c
@@ -21,6 +21,18 @@ static void xe_ip_kunit_desc(const struct xe_ip *param, char *desc)
KUNIT_ARRAY_PARAM(graphics_ip, graphics_ips, xe_ip_kunit_desc);
KUNIT_ARRAY_PARAM(media_ip, media_ips, xe_ip_kunit_desc);
+static void xe_pci_id_kunit_desc(const struct pci_device_id *param, char *desc)
+{
+ const struct xe_device_desc *dev_desc =
+ (const struct xe_device_desc *)param->driver_data;
+
+ if (dev_desc)
+ snprintf(desc, KUNIT_PARAM_DESC_SIZE, "0x%X (%s)",
+ param->device, dev_desc->platform_name);
+}
+
+KUNIT_ARRAY_PARAM(pci_id, pciidlist, xe_pci_id_kunit_desc);
+
/**
* xe_pci_graphics_ip_gen_param - Generate graphics struct xe_ip parameters
* @prev: the pointer to the previous parameter to iterate from or NULL
@@ -55,6 +67,25 @@ const void *xe_pci_media_ip_gen_param(const void *prev, char *desc)
}
EXPORT_SYMBOL_IF_KUNIT(xe_pci_media_ip_gen_param);
+/**
+ * xe_pci_id_gen_param - Generate struct pci_device_id parameters
+ * @prev: the pointer to the previous parameter to iterate from or NULL
+ * @desc: output buffer with minimum size of KUNIT_PARAM_DESC_SIZE
+ *
+ * This function prepares struct pci_device_id parameter.
+ *
+ * To be used only as a parameter generator function in &KUNIT_CASE_PARAM.
+ *
+ * Return: pointer to the next parameter or NULL if no more parameters
+ */
+const void *xe_pci_id_gen_param(const void *prev, char *desc)
+{
+ const struct pci_device_id *pci = pci_id_gen_params(prev, desc);
+
+ return pci->driver_data ? pci : NULL;
+}
+EXPORT_SYMBOL_IF_KUNIT(xe_pci_id_gen_param);
+
static void fake_read_gmdid(struct xe_device *xe, enum xe_gmdid_type type,
u32 *ver, u32 *revid)
{
diff --git a/drivers/gpu/drm/xe/tests/xe_pci_test.c b/drivers/gpu/drm/xe/tests/xe_pci_test.c
index 95fed41f7ff2..37b344df2dc3 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci_test.c
+++ b/drivers/gpu/drm/xe/tests/xe_pci_test.c
@@ -44,9 +44,21 @@ static void check_media_ip(struct kunit *test)
KUNIT_ASSERT_EQ(test, mask, 0);
}
+static void check_platform_gt_count(struct kunit *test)
+{
+ const struct pci_device_id *pci = test->param_value;
+ const struct xe_device_desc *desc =
+ (const struct xe_device_desc *)pci->driver_data;
+ int max_gt = desc->max_gt_per_tile;
+
+ KUNIT_ASSERT_GT(test, max_gt, 0);
+ KUNIT_ASSERT_LE(test, max_gt, XE_MAX_GT_PER_TILE);
+}
+
static struct kunit_case xe_pci_tests[] = {
KUNIT_CASE_PARAM(check_graphics_ip, xe_pci_graphics_ip_gen_param),
KUNIT_CASE_PARAM(check_media_ip, xe_pci_media_ip_gen_param),
+ KUNIT_CASE_PARAM(check_platform_gt_count, xe_pci_id_gen_param),
{}
};
diff --git a/drivers/gpu/drm/xe/tests/xe_pci_test.h b/drivers/gpu/drm/xe/tests/xe_pci_test.h
index 3a1df7a5e291..ce4d2b86b778 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci_test.h
+++ b/drivers/gpu/drm/xe/tests/xe_pci_test.h
@@ -27,6 +27,7 @@ int xe_pci_fake_device_init(struct xe_device *xe);
const void *xe_pci_graphics_ip_gen_param(const void *prev, char *desc);
const void *xe_pci_media_ip_gen_param(const void *prev, char *desc);
+const void *xe_pci_id_gen_param(const void *prev, char *desc);
const void *xe_pci_live_device_gen_param(const void *prev, char *desc);
#endif
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 316031854c26..658bfbddf9a8 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -38,45 +38,6 @@ enum toggle_d3cold {
D3COLD_ENABLE,
};
-struct xe_subplatform_desc {
- enum xe_subplatform subplatform;
- const char *name;
- const u16 *pciidlist;
-};
-
-struct xe_device_desc {
- /* Should only ever be set for platforms without GMD_ID */
- const struct xe_ip *pre_gmdid_graphics_ip;
- /* Should only ever be set for platforms without GMD_ID */
- const struct xe_ip *pre_gmdid_media_ip;
-
- const char *platform_name;
- const struct xe_subplatform_desc *subplatforms;
-
- enum xe_platform platform;
-
- u8 dma_mask_size;
- u8 max_remote_tiles:2;
- u8 max_gt_per_tile:2;
-
- u8 require_force_probe:1;
- u8 is_dgfx:1;
-
- u8 has_display:1;
- u8 has_fan_control:1;
- u8 has_gsc_nvm:1;
- u8 has_heci_gscfi:1;
- u8 has_heci_cscfi:1;
- u8 has_llc:1;
- u8 has_mbx_power_limits:1;
- u8 has_pxp:1;
- u8 has_sriov:1;
- u8 needs_scratch:1;
- u8 skip_guc_pc:1;
- u8 skip_mtcfg:1;
- u8 skip_pcode:1;
-};
-
__diag_push();
__diag_ignore_all("-Woverride-init", "Allow field overrides in table");
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index ca6b10d35573..4de6f69ed975 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -8,6 +8,47 @@
#include <linux/types.h>
+#include "xe_platform_types.h"
+
+struct xe_subplatform_desc {
+ enum xe_subplatform subplatform;
+ const char *name;
+ const u16 *pciidlist;
+};
+
+struct xe_device_desc {
+ /* Should only ever be set for platforms without GMD_ID */
+ const struct xe_ip *pre_gmdid_graphics_ip;
+ /* Should only ever be set for platforms without GMD_ID */
+ const struct xe_ip *pre_gmdid_media_ip;
+
+ const char *platform_name;
+ const struct xe_subplatform_desc *subplatforms;
+
+ enum xe_platform platform;
+
+ u8 dma_mask_size;
+ u8 max_remote_tiles:2;
+ u8 max_gt_per_tile:2;
+
+ u8 require_force_probe:1;
+ u8 is_dgfx:1;
+
+ u8 has_display:1;
+ u8 has_fan_control:1;
+ u8 has_gsc_nvm:1;
+ u8 has_heci_gscfi:1;
+ u8 has_heci_cscfi:1;
+ u8 has_llc:1;
+ u8 has_mbx_power_limits:1;
+ u8 has_pxp:1;
+ u8 has_sriov:1;
+ u8 needs_scratch:1;
+ u8 skip_guc_pc:1;
+ u8 skip_mtcfg:1;
+ u8 skip_pcode:1;
+};
+
struct xe_graphics_desc {
u8 va_bits;
u8 vm_max_level;
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH v3 4/6] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (2 preceding siblings ...)
2025-06-30 17:34 ` [PATCH v3 3/6] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count Matt Roper
@ 2025-06-30 17:34 ` Matt Roper
2025-06-30 22:08 ` Cavitt, Jonathan
2025-06-30 17:34 ` [PATCH v3 5/6] drm/xe: Don't compare GT ID to GT count when determining valid GTs Matt Roper
` (8 subsequent siblings)
12 siblings, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-06-30 17:34 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
Although "multi-tile" and "multiple GTs per tile" are mutually-exclusive
characteristics on all of our platforms today, this may not always be
true. Assign GT IDs according to xe->info.max_gt_per_tile in a way that
should work even if future platforms have different configurations.
This patch should not change the behavior of current platforms; it only
future-proofs for potential future designs.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_mmio.c | 8 --------
drivers/gpu/drm/xe/xe_pci.c | 14 ++++----------
2 files changed, 4 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
index 7357458bc0d2..b65d888ee8e4 100644
--- a/drivers/gpu/drm/xe/xe_mmio.c
+++ b/drivers/gpu/drm/xe/xe_mmio.c
@@ -82,14 +82,6 @@ static void mmio_multi_tile_setup(struct xe_device *xe, size_t tile_mmio_size)
drm_info(&xe->drm, "tile_count: %d, reduced_tile_count %d\n",
xe->info.tile_count, tile_count);
xe->info.tile_count = tile_count;
-
- /*
- * FIXME: Needs some work for standalone media, but
- * should be impossible with multi-tile for now:
- * multi-tile platform with standalone media doesn't
- * exist
- */
- xe->info.gt_count = xe->info.tile_count;
}
}
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 658bfbddf9a8..bccd81e19bb0 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -694,10 +694,11 @@ static int xe_info_init(struct xe_device *xe,
*/
for_each_tile(tile, xe, id) {
gt = tile->primary_gt;
- gt->info.id = xe->info.gt_count++;
gt->info.type = XE_GT_TYPE_MAIN;
+ gt->info.id = tile->id * xe->info.max_gt_per_tile;
gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
gt->info.engine_mask = graphics_desc->hw_engine_mask;
+ xe->info.gt_count++;
if (MEDIA_VER(xe) < 13 && media_desc)
gt->info.engine_mask |= media_desc->hw_engine_mask;
@@ -715,17 +716,10 @@ static int xe_info_init(struct xe_device *xe,
gt = tile->media_gt;
gt->info.type = XE_GT_TYPE_MEDIA;
+ gt->info.id = tile->id * xe->info.max_gt_per_tile + 1;
gt->info.has_indirect_ring_state = media_desc->has_indirect_ring_state;
gt->info.engine_mask = media_desc->hw_engine_mask;
-
- /*
- * FIXME: At the moment multi-tile and standalone media are
- * mutually exclusive on current platforms. We'll need to
- * come up with a better way to number GTs if we ever wind
- * up with platforms that support both together.
- */
- drm_WARN_ON(&xe->drm, id != 0);
- gt->info.id = xe->info.gt_count++;
+ xe->info.gt_count++;
}
return 0;
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* RE: [PATCH v3 4/6] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
2025-06-30 17:34 ` [PATCH v3 4/6] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
@ 2025-06-30 22:08 ` Cavitt, Jonathan
0 siblings, 0 replies; 26+ messages in thread
From: Cavitt, Jonathan @ 2025-06-30 22:08 UTC (permalink / raw)
To: Roper, Matthew D, intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D, Cavitt, Jonathan
-----Original Message-----
From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Matt Roper
Sent: Monday, June 30, 2025 10:35 AM
To: intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D <matthew.d.roper@intel.com>
Subject: [PATCH v3 4/6] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
>
> Although "multi-tile" and "multiple GTs per tile" are mutually-exclusive
> characteristics on all of our platforms today, this may not always be
> true. Assign GT IDs according to xe->info.max_gt_per_tile in a way that
> should work even if future platforms have different configurations.
>
> This patch should not change the behavior of current platforms; it only
> future-proofs for potential future designs.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
LGTM.
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> drivers/gpu/drm/xe/xe_mmio.c | 8 --------
> drivers/gpu/drm/xe/xe_pci.c | 14 ++++----------
> 2 files changed, 4 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
> index 7357458bc0d2..b65d888ee8e4 100644
> --- a/drivers/gpu/drm/xe/xe_mmio.c
> +++ b/drivers/gpu/drm/xe/xe_mmio.c
> @@ -82,14 +82,6 @@ static void mmio_multi_tile_setup(struct xe_device *xe, size_t tile_mmio_size)
> drm_info(&xe->drm, "tile_count: %d, reduced_tile_count %d\n",
> xe->info.tile_count, tile_count);
> xe->info.tile_count = tile_count;
> -
> - /*
> - * FIXME: Needs some work for standalone media, but
> - * should be impossible with multi-tile for now:
> - * multi-tile platform with standalone media doesn't
> - * exist
> - */
> - xe->info.gt_count = xe->info.tile_count;
> }
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 658bfbddf9a8..bccd81e19bb0 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -694,10 +694,11 @@ static int xe_info_init(struct xe_device *xe,
> */
> for_each_tile(tile, xe, id) {
> gt = tile->primary_gt;
> - gt->info.id = xe->info.gt_count++;
> gt->info.type = XE_GT_TYPE_MAIN;
> + gt->info.id = tile->id * xe->info.max_gt_per_tile;
> gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
> gt->info.engine_mask = graphics_desc->hw_engine_mask;
> + xe->info.gt_count++;
>
> if (MEDIA_VER(xe) < 13 && media_desc)
> gt->info.engine_mask |= media_desc->hw_engine_mask;
> @@ -715,17 +716,10 @@ static int xe_info_init(struct xe_device *xe,
>
> gt = tile->media_gt;
> gt->info.type = XE_GT_TYPE_MEDIA;
> + gt->info.id = tile->id * xe->info.max_gt_per_tile + 1;
> gt->info.has_indirect_ring_state = media_desc->has_indirect_ring_state;
> gt->info.engine_mask = media_desc->hw_engine_mask;
> -
> - /*
> - * FIXME: At the moment multi-tile and standalone media are
> - * mutually exclusive on current platforms. We'll need to
> - * come up with a better way to number GTs if we ever wind
> - * up with platforms that support both together.
> - */
> - drm_WARN_ON(&xe->drm, id != 0);
> - gt->info.id = xe->info.gt_count++;
> + xe->info.gt_count++;
> }
>
> return 0;
> --
> 2.49.0
>
>
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v3 5/6] drm/xe: Don't compare GT ID to GT count when determining valid GTs
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (3 preceding siblings ...)
2025-06-30 17:34 ` [PATCH v3 4/6] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
@ 2025-06-30 17:34 ` Matt Roper
2025-06-30 22:08 ` Cavitt, Jonathan
2025-06-30 17:34 ` [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list Matt Roper
` (7 subsequent siblings)
12 siblings, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-06-30 17:34 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
On current platforms with multiple GTs, all of the GT IDs are
consecutive; as a result we know that the GT IDs range from 0 to
gt_count-1 and can determine if a GT ID is valid by comparing against
the count. The consecutive nature of GT IDs may not hold true on future
platforms if/when we have platforms that are both multi-tile and have
multiple GTs within each tile. Once such platforms exist, it's quite
possible that we could wind up with something like a GT list composed of
IDs 0, 2, and 3 with no GT 1 (which would be a 2-tile platform with
media only on the second tile).
To future-proof the code we should stop comparing against the GT count
to determine whether a GT ID is valid or not. Instead we should do an
actual lookup of the ID to determine whether the GT exists. This also
means that our GT loop macro should not end at the GT count, but should
rather examine the entire space up to (# of tiles) * (max GT per tile)
to ensure it doesn't stop prematurely.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_device.h | 6 +-----
drivers/gpu/drm/xe/xe_eu_stall.c | 6 ++++--
drivers/gpu/drm/xe/xe_exec_queue.c | 2 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 3 ++-
4 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index 4e719d398c88..f0eb8150f185 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -127,12 +127,8 @@ static inline bool xe_device_uc_enabled(struct xe_device *xe)
for ((id__) = 1; (id__) < (xe__)->info.tile_count; (id__)++) \
for_each_if((tile__) = &(xe__)->tiles[(id__)])
-/*
- * FIXME: This only works for now since multi-tile and standalone media
- * happen to be mutually exclusive. Future platforms may change this...
- */
#define for_each_gt(gt__, xe__, id__) \
- for ((id__) = 0; (id__) < (xe__)->info.gt_count; (id__)++) \
+ for ((id__) = 0; (id__) < (xe__)->info.tile_count * (xe__)->info.max_gt_per_tile; (id__)++) \
for_each_if((gt__) = xe_device_get_gt((xe__), (id__)))
static inline struct xe_force_wake *gt_to_fw(struct xe_gt *gt)
diff --git a/drivers/gpu/drm/xe/xe_eu_stall.c b/drivers/gpu/drm/xe/xe_eu_stall.c
index 96732613b4b7..af7916315ac6 100644
--- a/drivers/gpu/drm/xe/xe_eu_stall.c
+++ b/drivers/gpu/drm/xe/xe_eu_stall.c
@@ -258,11 +258,13 @@ static int set_prop_eu_stall_wait_num_reports(struct xe_device *xe, u64 value,
static int set_prop_eu_stall_gt_id(struct xe_device *xe, u64 value,
struct eu_stall_open_properties *props)
{
- if (value >= xe->info.gt_count) {
+ struct xe_gt *gt = xe_device_get_gt(xe, value);
+
+ if (!gt) {
drm_dbg(&xe->drm, "Invalid GT ID %llu for EU stall sampling\n", value);
return -EINVAL;
}
- props->gt = xe_device_get_gt(xe, value);
+ props->gt = gt;
return 0;
}
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index fee22358cc09..8991b4aed440 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -610,7 +610,7 @@ int xe_exec_queue_create_ioctl(struct drm_device *dev, void *data,
if (XE_IOCTL_DBG(xe, err))
return -EFAULT;
- if (XE_IOCTL_DBG(xe, eci[0].gt_id >= xe->info.gt_count))
+ if (XE_IOCTL_DBG(xe, !xe_device_get_gt(xe, eci[0].gt_id)))
return -EINVAL;
if (args->flags & DRM_XE_EXEC_QUEUE_LOW_LATENCY_HINT)
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index 3439c8522d01..796ba8c34a16 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -1059,12 +1059,13 @@ struct xe_hw_engine *
xe_hw_engine_lookup(struct xe_device *xe,
struct drm_xe_engine_class_instance eci)
{
+ struct xe_gt *gt = xe_device_get_gt(xe, eci.gt_id);
unsigned int idx;
if (eci.engine_class >= ARRAY_SIZE(user_to_xe_engine_class))
return NULL;
- if (eci.gt_id >= xe->info.gt_count)
+ if (!gt)
return NULL;
idx = array_index_nospec(eci.engine_class,
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* RE: [PATCH v3 5/6] drm/xe: Don't compare GT ID to GT count when determining valid GTs
2025-06-30 17:34 ` [PATCH v3 5/6] drm/xe: Don't compare GT ID to GT count when determining valid GTs Matt Roper
@ 2025-06-30 22:08 ` Cavitt, Jonathan
0 siblings, 0 replies; 26+ messages in thread
From: Cavitt, Jonathan @ 2025-06-30 22:08 UTC (permalink / raw)
To: Roper, Matthew D, intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D, Cavitt, Jonathan
-----Original Message-----
From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Matt Roper
Sent: Monday, June 30, 2025 10:35 AM
To: intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D <matthew.d.roper@intel.com>
Subject: [PATCH v3 5/6] drm/xe: Don't compare GT ID to GT count when determining valid GTs
>
> On current platforms with multiple GTs, all of the GT IDs are
> consecutive; as a result we know that the GT IDs range from 0 to
> gt_count-1 and can determine if a GT ID is valid by comparing against
> the count. The consecutive nature of GT IDs may not hold true on future
> platforms if/when we have platforms that are both multi-tile and have
> multiple GTs within each tile. Once such platforms exist, it's quite
> possible that we could wind up with something like a GT list composed of
> IDs 0, 2, and 3 with no GT 1 (which would be a 2-tile platform with
> media only on the second tile).
>
> To future-proof the code we should stop comparing against the GT count
> to determine whether a GT ID is valid or not. Instead we should do an
> actual lookup of the ID to determine whether the GT exists. This also
> means that our GT loop macro should not end at the GT count, but should
> rather examine the entire space up to (# of tiles) * (max GT per tile)
> to ensure it doesn't stop prematurely.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Maybe it would be good to have a macro to generate the
(# of tiles) * (max GT per tile) value (or just save that value to xe->info),
as well as a mask of all the active GTs. So, in the above example, we'd have
4 max GTs with an active mask of 1011.
It would mean we wouldn't need to call into xe_device_get_gt in
xe_exec_queue_create_ioctl or xe_hw_engine_lookup (just
compare eci[0].gt_id to the active GT mask instead).
This isn't a blocking ask, mind. Just a potential optimization to consider.
LGTM otherwise.
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> drivers/gpu/drm/xe/xe_device.h | 6 +-----
> drivers/gpu/drm/xe/xe_eu_stall.c | 6 ++++--
> drivers/gpu/drm/xe/xe_exec_queue.c | 2 +-
> drivers/gpu/drm/xe/xe_hw_engine.c | 3 ++-
> 4 files changed, 8 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
> index 4e719d398c88..f0eb8150f185 100644
> --- a/drivers/gpu/drm/xe/xe_device.h
> +++ b/drivers/gpu/drm/xe/xe_device.h
> @@ -127,12 +127,8 @@ static inline bool xe_device_uc_enabled(struct xe_device *xe)
> for ((id__) = 1; (id__) < (xe__)->info.tile_count; (id__)++) \
> for_each_if((tile__) = &(xe__)->tiles[(id__)])
>
> -/*
> - * FIXME: This only works for now since multi-tile and standalone media
> - * happen to be mutually exclusive. Future platforms may change this...
> - */
> #define for_each_gt(gt__, xe__, id__) \
> - for ((id__) = 0; (id__) < (xe__)->info.gt_count; (id__)++) \
> + for ((id__) = 0; (id__) < (xe__)->info.tile_count * (xe__)->info.max_gt_per_tile; (id__)++) \
> for_each_if((gt__) = xe_device_get_gt((xe__), (id__)))
>
> static inline struct xe_force_wake *gt_to_fw(struct xe_gt *gt)
> diff --git a/drivers/gpu/drm/xe/xe_eu_stall.c b/drivers/gpu/drm/xe/xe_eu_stall.c
> index 96732613b4b7..af7916315ac6 100644
> --- a/drivers/gpu/drm/xe/xe_eu_stall.c
> +++ b/drivers/gpu/drm/xe/xe_eu_stall.c
> @@ -258,11 +258,13 @@ static int set_prop_eu_stall_wait_num_reports(struct xe_device *xe, u64 value,
> static int set_prop_eu_stall_gt_id(struct xe_device *xe, u64 value,
> struct eu_stall_open_properties *props)
> {
> - if (value >= xe->info.gt_count) {
> + struct xe_gt *gt = xe_device_get_gt(xe, value);
> +
> + if (!gt) {
> drm_dbg(&xe->drm, "Invalid GT ID %llu for EU stall sampling\n", value);
> return -EINVAL;
> }
> - props->gt = xe_device_get_gt(xe, value);
> + props->gt = gt;
> return 0;
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
> index fee22358cc09..8991b4aed440 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.c
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.c
> @@ -610,7 +610,7 @@ int xe_exec_queue_create_ioctl(struct drm_device *dev, void *data,
> if (XE_IOCTL_DBG(xe, err))
> return -EFAULT;
>
> - if (XE_IOCTL_DBG(xe, eci[0].gt_id >= xe->info.gt_count))
> + if (XE_IOCTL_DBG(xe, !xe_device_get_gt(xe, eci[0].gt_id)))
> return -EINVAL;
>
> if (args->flags & DRM_XE_EXEC_QUEUE_LOW_LATENCY_HINT)
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
> index 3439c8522d01..796ba8c34a16 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.c
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.c
> @@ -1059,12 +1059,13 @@ struct xe_hw_engine *
> xe_hw_engine_lookup(struct xe_device *xe,
> struct drm_xe_engine_class_instance eci)
> {
> + struct xe_gt *gt = xe_device_get_gt(xe, eci.gt_id);
> unsigned int idx;
>
> if (eci.engine_class >= ARRAY_SIZE(user_to_xe_engine_class))
> return NULL;
>
> - if (eci.gt_id >= xe->info.gt_count)
> + if (!gt)
> return NULL;
>
> idx = array_index_nospec(eci.engine_class,
> --
> 2.49.0
>
>
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (4 preceding siblings ...)
2025-06-30 17:34 ` [PATCH v3 5/6] drm/xe: Don't compare GT ID to GT count when determining valid GTs Matt Roper
@ 2025-06-30 17:34 ` Matt Roper
2025-06-30 22:08 ` Cavitt, Jonathan
2025-06-30 22:15 ` [PATCH v3.1 " Matt Roper
2025-07-01 7:31 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev4) Patchwork
` (6 subsequent siblings)
12 siblings, 2 replies; 26+ messages in thread
From: Matt Roper @ 2025-06-30 17:34 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
being iterated over, and may skip over values if a GT is not present on
the device. Use a separate iterator for GT list array assignments to
ensure that the array will be filled properly on future platforms where
index in the GT query list may not match the uapi ID.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_query.c | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index e615b0916217..c3e0a22f09f0 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -368,6 +368,7 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
struct drm_xe_query_gt_list __user *query_ptr =
u64_to_user_ptr(query->data);
struct drm_xe_query_gt_list *gt_list;
+ int iter = 0;
u8 id;
if (query->size == 0) {
@@ -385,12 +386,12 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
for_each_gt(gt, xe, id) {
if (xe_gt_is_media_type(gt))
- gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
+ gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
else
- gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MAIN;
- gt_list->gt_list[id].tile_id = gt_to_tile(gt)->id;
- gt_list->gt_list[id].gt_id = gt->info.id;
- gt_list->gt_list[id].reference_clock = gt->info.reference_clock;
+ gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MAIN;
+ gt_list->gt_list[iter].tile_id = gt_to_tile(gt)->id;
+ gt_list->gt_list[iter].gt_id = gt->info.id;
+ gt_list->gt_list[iter].reference_clock = gt->info.reference_clock;
/*
* The mem_regions indexes in the mask below need to
* directly identify the struct
@@ -406,18 +407,18 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
* assumption.
*/
if (!IS_DGFX(xe))
- gt_list->gt_list[id].near_mem_regions = 0x1;
+ gt_list->gt_list[iter].near_mem_regions = 0x1;
else
- gt_list->gt_list[id].near_mem_regions =
+ gt_list->gt_list[iter].near_mem_regions =
BIT(gt_to_tile(gt)->id) << 1;
- gt_list->gt_list[id].far_mem_regions = xe->info.mem_region_mask ^
- gt_list->gt_list[id].near_mem_regions;
+ gt_list->gt_list[iter].far_mem_regions = xe->info.mem_region_mask ^
+ gt_list->gt_list[iter].near_mem_regions;
- gt_list->gt_list[id].ip_ver_major =
+ gt_list->gt_list[iter].ip_ver_major =
REG_FIELD_GET(GMD_ID_ARCH_MASK, gt->info.gmdid);
- gt_list->gt_list[id].ip_ver_minor =
+ gt_list->gt_list[iter].ip_ver_minor =
REG_FIELD_GET(GMD_ID_RELEASE_MASK, gt->info.gmdid);
- gt_list->gt_list[id].ip_ver_rev =
+ gt_list->gt_list[iter].ip_ver_rev =
REG_FIELD_GET(GMD_ID_REVID, gt->info.gmdid);
}
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* RE: [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
2025-06-30 17:34 ` [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list Matt Roper
@ 2025-06-30 22:08 ` Cavitt, Jonathan
2025-06-30 22:14 ` Matt Roper
2025-06-30 22:15 ` [PATCH v3.1 " Matt Roper
1 sibling, 1 reply; 26+ messages in thread
From: Cavitt, Jonathan @ 2025-06-30 22:08 UTC (permalink / raw)
To: Roper, Matthew D, intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D, Cavitt, Jonathan
-----Original Message-----
From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Matt Roper
Sent: Monday, June 30, 2025 10:35 AM
To: intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D <matthew.d.roper@intel.com>
Subject: [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
>
> The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
> being iterated over, and may skip over values if a GT is not present on
> the device. Use a separate iterator for GT list array assignments to
> ensure that the array will be filled properly on future platforms where
> index in the GT query list may not match the uapi ID.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/xe_query.c | 25 +++++++++++++------------
> 1 file changed, 13 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> index e615b0916217..c3e0a22f09f0 100644
> --- a/drivers/gpu/drm/xe/xe_query.c
> +++ b/drivers/gpu/drm/xe/xe_query.c
> @@ -368,6 +368,7 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> struct drm_xe_query_gt_list __user *query_ptr =
> u64_to_user_ptr(query->data);
> struct drm_xe_query_gt_list *gt_list;
> + int iter = 0;
It doesn't look like iter is being updated below. Is it expected to always be zero?
-Jonathan Cavitt
> u8 id;
>
> if (query->size == 0) {
> @@ -385,12 +386,12 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
>
> for_each_gt(gt, xe, id) {
> if (xe_gt_is_media_type(gt))
> - gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
> + gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
> else
> - gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MAIN;
> - gt_list->gt_list[id].tile_id = gt_to_tile(gt)->id;
> - gt_list->gt_list[id].gt_id = gt->info.id;
> - gt_list->gt_list[id].reference_clock = gt->info.reference_clock;
> + gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MAIN;
> + gt_list->gt_list[iter].tile_id = gt_to_tile(gt)->id;
> + gt_list->gt_list[iter].gt_id = gt->info.id;
> + gt_list->gt_list[iter].reference_clock = gt->info.reference_clock;
> /*
> * The mem_regions indexes in the mask below need to
> * directly identify the struct
> @@ -406,18 +407,18 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> * assumption.
> */
> if (!IS_DGFX(xe))
> - gt_list->gt_list[id].near_mem_regions = 0x1;
> + gt_list->gt_list[iter].near_mem_regions = 0x1;
> else
> - gt_list->gt_list[id].near_mem_regions =
> + gt_list->gt_list[iter].near_mem_regions =
> BIT(gt_to_tile(gt)->id) << 1;
> - gt_list->gt_list[id].far_mem_regions = xe->info.mem_region_mask ^
> - gt_list->gt_list[id].near_mem_regions;
> + gt_list->gt_list[iter].far_mem_regions = xe->info.mem_region_mask ^
> + gt_list->gt_list[iter].near_mem_regions;
>
> - gt_list->gt_list[id].ip_ver_major =
> + gt_list->gt_list[iter].ip_ver_major =
> REG_FIELD_GET(GMD_ID_ARCH_MASK, gt->info.gmdid);
> - gt_list->gt_list[id].ip_ver_minor =
> + gt_list->gt_list[iter].ip_ver_minor =
> REG_FIELD_GET(GMD_ID_RELEASE_MASK, gt->info.gmdid);
> - gt_list->gt_list[id].ip_ver_rev =
> + gt_list->gt_list[iter].ip_ver_rev =
> REG_FIELD_GET(GMD_ID_REVID, gt->info.gmdid);
> }
>
> --
> 2.49.0
>
>
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
2025-06-30 22:08 ` Cavitt, Jonathan
@ 2025-06-30 22:14 ` Matt Roper
0 siblings, 0 replies; 26+ messages in thread
From: Matt Roper @ 2025-06-30 22:14 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: intel-xe@lists.freedesktop.org
On Mon, Jun 30, 2025 at 03:08:45PM -0700, Cavitt, Jonathan wrote:
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Matt Roper
> Sent: Monday, June 30, 2025 10:35 AM
> To: intel-xe@lists.freedesktop.org
> Cc: Roper, Matthew D <matthew.d.roper@intel.com>
> Subject: [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
> >
> > The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
> > being iterated over, and may skip over values if a GT is not present on
> > the device. Use a separate iterator for GT list array assignments to
> > ensure that the array will be filled properly on future platforms where
> > index in the GT query list may not match the uapi ID.
> >
> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_query.c | 25 +++++++++++++------------
> > 1 file changed, 13 insertions(+), 12 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> > index e615b0916217..c3e0a22f09f0 100644
> > --- a/drivers/gpu/drm/xe/xe_query.c
> > +++ b/drivers/gpu/drm/xe/xe_query.c
> > @@ -368,6 +368,7 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> > struct drm_xe_query_gt_list __user *query_ptr =
> > u64_to_user_ptr(query->data);
> > struct drm_xe_query_gt_list *gt_list;
> > + int iter = 0;
>
> It doesn't look like iter is being updated below. Is it expected to always be zero?
> -Jonathan Cavitt
No, looks like I forgot to 'git add' the final change of the patch; I'll
send an updated version shortly.
Matt
>
> > u8 id;
> >
> > if (query->size == 0) {
> > @@ -385,12 +386,12 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> >
> > for_each_gt(gt, xe, id) {
> > if (xe_gt_is_media_type(gt))
> > - gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
> > + gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
> > else
> > - gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MAIN;
> > - gt_list->gt_list[id].tile_id = gt_to_tile(gt)->id;
> > - gt_list->gt_list[id].gt_id = gt->info.id;
> > - gt_list->gt_list[id].reference_clock = gt->info.reference_clock;
> > + gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MAIN;
> > + gt_list->gt_list[iter].tile_id = gt_to_tile(gt)->id;
> > + gt_list->gt_list[iter].gt_id = gt->info.id;
> > + gt_list->gt_list[iter].reference_clock = gt->info.reference_clock;
> > /*
> > * The mem_regions indexes in the mask below need to
> > * directly identify the struct
> > @@ -406,18 +407,18 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> > * assumption.
> > */
> > if (!IS_DGFX(xe))
> > - gt_list->gt_list[id].near_mem_regions = 0x1;
> > + gt_list->gt_list[iter].near_mem_regions = 0x1;
> > else
> > - gt_list->gt_list[id].near_mem_regions =
> > + gt_list->gt_list[iter].near_mem_regions =
> > BIT(gt_to_tile(gt)->id) << 1;
> > - gt_list->gt_list[id].far_mem_regions = xe->info.mem_region_mask ^
> > - gt_list->gt_list[id].near_mem_regions;
> > + gt_list->gt_list[iter].far_mem_regions = xe->info.mem_region_mask ^
> > + gt_list->gt_list[iter].near_mem_regions;
> >
> > - gt_list->gt_list[id].ip_ver_major =
> > + gt_list->gt_list[iter].ip_ver_major =
> > REG_FIELD_GET(GMD_ID_ARCH_MASK, gt->info.gmdid);
> > - gt_list->gt_list[id].ip_ver_minor =
> > + gt_list->gt_list[iter].ip_ver_minor =
> > REG_FIELD_GET(GMD_ID_RELEASE_MASK, gt->info.gmdid);
> > - gt_list->gt_list[id].ip_ver_rev =
> > + gt_list->gt_list[iter].ip_ver_rev =
> > REG_FIELD_GET(GMD_ID_REVID, gt->info.gmdid);
> > }
> >
> > --
> > 2.49.0
> >
> >
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v3.1 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
2025-06-30 17:34 ` [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list Matt Roper
2025-06-30 22:08 ` Cavitt, Jonathan
@ 2025-06-30 22:15 ` Matt Roper
2025-07-01 14:05 ` Cavitt, Jonathan
1 sibling, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-06-30 22:15 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Jonathan Cavitt
The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
being iterated over, and may skip over values if a GT is not present on
the device. Use a separate iterator for GT list array assignments to
ensure that the array will be filled properly on future platforms where
index in the GT query list may not match the uapi ID.
v2:
- Include the missing increment of the iterator. (Jonathan)
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_query.c | 27 +++++++++++++++------------
1 file changed, 15 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index e615b0916217..d517ec9ddcbf 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -368,6 +368,7 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
struct drm_xe_query_gt_list __user *query_ptr =
u64_to_user_ptr(query->data);
struct drm_xe_query_gt_list *gt_list;
+ int iter = 0;
u8 id;
if (query->size == 0) {
@@ -385,12 +386,12 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
for_each_gt(gt, xe, id) {
if (xe_gt_is_media_type(gt))
- gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
+ gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
else
- gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MAIN;
- gt_list->gt_list[id].tile_id = gt_to_tile(gt)->id;
- gt_list->gt_list[id].gt_id = gt->info.id;
- gt_list->gt_list[id].reference_clock = gt->info.reference_clock;
+ gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MAIN;
+ gt_list->gt_list[iter].tile_id = gt_to_tile(gt)->id;
+ gt_list->gt_list[iter].gt_id = gt->info.id;
+ gt_list->gt_list[iter].reference_clock = gt->info.reference_clock;
/*
* The mem_regions indexes in the mask below need to
* directly identify the struct
@@ -406,19 +407,21 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
* assumption.
*/
if (!IS_DGFX(xe))
- gt_list->gt_list[id].near_mem_regions = 0x1;
+ gt_list->gt_list[iter].near_mem_regions = 0x1;
else
- gt_list->gt_list[id].near_mem_regions =
+ gt_list->gt_list[iter].near_mem_regions =
BIT(gt_to_tile(gt)->id) << 1;
- gt_list->gt_list[id].far_mem_regions = xe->info.mem_region_mask ^
- gt_list->gt_list[id].near_mem_regions;
+ gt_list->gt_list[iter].far_mem_regions = xe->info.mem_region_mask ^
+ gt_list->gt_list[iter].near_mem_regions;
- gt_list->gt_list[id].ip_ver_major =
+ gt_list->gt_list[iter].ip_ver_major =
REG_FIELD_GET(GMD_ID_ARCH_MASK, gt->info.gmdid);
- gt_list->gt_list[id].ip_ver_minor =
+ gt_list->gt_list[iter].ip_ver_minor =
REG_FIELD_GET(GMD_ID_RELEASE_MASK, gt->info.gmdid);
- gt_list->gt_list[id].ip_ver_rev =
+ gt_list->gt_list[iter].ip_ver_rev =
REG_FIELD_GET(GMD_ID_REVID, gt->info.gmdid);
+
+ iter++;
}
if (copy_to_user(query_ptr, gt_list, size)) {
--
2.49.0
^ permalink raw reply related [flat|nested] 26+ messages in thread* RE: [PATCH v3.1 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
2025-06-30 22:15 ` [PATCH v3.1 " Matt Roper
@ 2025-07-01 14:05 ` Cavitt, Jonathan
0 siblings, 0 replies; 26+ messages in thread
From: Cavitt, Jonathan @ 2025-07-01 14:05 UTC (permalink / raw)
To: Roper, Matthew D, intel-xe@lists.freedesktop.org; +Cc: Cavitt, Jonathan
-----Original Message-----
From: Roper, Matthew D <matthew.d.roper@intel.com>
Sent: Monday, June 30, 2025 3:15 PM
To: intel-xe@lists.freedesktop.org
Cc: Roper, Matthew D <matthew.d.roper@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>
Subject: [PATCH v3.1 6/6] drm/xe/xe_query: Use separate iterator while filling GT list
>
> The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
> being iterated over, and may skip over values if a GT is not present on
> the device. Use a separate iterator for GT list array assignments to
> ensure that the array will be filled properly on future platforms where
> index in the GT query list may not match the uapi ID.
>
> v2:
> - Include the missing increment of the iterator. (Jonathan)
>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
This is just to prevent the query ioctl from changing its behavior
after the update, yes?
If that's the case:
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> drivers/gpu/drm/xe/xe_query.c | 27 +++++++++++++++------------
> 1 file changed, 15 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> index e615b0916217..d517ec9ddcbf 100644
> --- a/drivers/gpu/drm/xe/xe_query.c
> +++ b/drivers/gpu/drm/xe/xe_query.c
> @@ -368,6 +368,7 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> struct drm_xe_query_gt_list __user *query_ptr =
> u64_to_user_ptr(query->data);
> struct drm_xe_query_gt_list *gt_list;
> + int iter = 0;
> u8 id;
>
> if (query->size == 0) {
> @@ -385,12 +386,12 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
>
> for_each_gt(gt, xe, id) {
> if (xe_gt_is_media_type(gt))
> - gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
> + gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MEDIA;
> else
> - gt_list->gt_list[id].type = DRM_XE_QUERY_GT_TYPE_MAIN;
> - gt_list->gt_list[id].tile_id = gt_to_tile(gt)->id;
> - gt_list->gt_list[id].gt_id = gt->info.id;
> - gt_list->gt_list[id].reference_clock = gt->info.reference_clock;
> + gt_list->gt_list[iter].type = DRM_XE_QUERY_GT_TYPE_MAIN;
> + gt_list->gt_list[iter].tile_id = gt_to_tile(gt)->id;
> + gt_list->gt_list[iter].gt_id = gt->info.id;
> + gt_list->gt_list[iter].reference_clock = gt->info.reference_clock;
> /*
> * The mem_regions indexes in the mask below need to
> * directly identify the struct
> @@ -406,19 +407,21 @@ static int query_gt_list(struct xe_device *xe, struct drm_xe_device_query *query
> * assumption.
> */
> if (!IS_DGFX(xe))
> - gt_list->gt_list[id].near_mem_regions = 0x1;
> + gt_list->gt_list[iter].near_mem_regions = 0x1;
> else
> - gt_list->gt_list[id].near_mem_regions =
> + gt_list->gt_list[iter].near_mem_regions =
> BIT(gt_to_tile(gt)->id) << 1;
> - gt_list->gt_list[id].far_mem_regions = xe->info.mem_region_mask ^
> - gt_list->gt_list[id].near_mem_regions;
> + gt_list->gt_list[iter].far_mem_regions = xe->info.mem_region_mask ^
> + gt_list->gt_list[iter].near_mem_regions;
>
> - gt_list->gt_list[id].ip_ver_major =
> + gt_list->gt_list[iter].ip_ver_major =
> REG_FIELD_GET(GMD_ID_ARCH_MASK, gt->info.gmdid);
> - gt_list->gt_list[id].ip_ver_minor =
> + gt_list->gt_list[iter].ip_ver_minor =
> REG_FIELD_GET(GMD_ID_RELEASE_MASK, gt->info.gmdid);
> - gt_list->gt_list[id].ip_ver_rev =
> + gt_list->gt_list[iter].ip_ver_rev =
> REG_FIELD_GET(GMD_ID_REVID, gt->info.gmdid);
> +
> + iter++;
> }
>
> if (copy_to_user(query_ptr, gt_list, size)) {
> --
> 2.49.0
>
>
^ permalink raw reply [flat|nested] 26+ messages in thread
* ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev4)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (5 preceding siblings ...)
2025-06-30 17:34 ` [PATCH v3 6/6] drm/xe/xe_query: Use separate iterator while filling GT list Matt Roper
@ 2025-07-01 7:31 ` Patchwork
2025-07-01 7:32 ` ✓ CI.KUnit: success " Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-07-01 7:31 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev4)
URL : https://patchwork.freedesktop.org/series/150192/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit e20a6116a385364f1fad8374f25dbf8fb5391147
Author: Matt Roper <matthew.d.roper@intel.com>
Date: Mon Jun 30 15:15:16 2025 -0700
drm/xe/xe_query: Use separate iterator while filling GT list
The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
being iterated over, and may skip over values if a GT is not present on
the device. Use a separate iterator for GT list array assignments to
ensure that the array will be filled properly on future platforms where
index in the GT query list may not match the uapi ID.
v2:
- Include the missing increment of the iterator. (Jonathan)
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
+ /mt/dim checkpatch e6e27e79a726f8bf333d13521aba32f6466035a8 drm-intel
b49c223441fd drm/xe: Export xe_step_name for kunit tests
-:9: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#9:
ERROR: modpost: "xe_step_name" [drivers/gpu/drm/xe/tests/xe_test.ko] undefined!
total: 0 errors, 1 warnings, 0 checks, 11 lines checked
37a3f8ac3faa drm/xe: Track maximum GTs per tile on a per-platform basis
36e930fe4fe0 drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
4c4b7962bcee drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
bae9661d504f drm/xe: Don't compare GT ID to GT count when determining valid GTs
-:41: WARNING:LONG_LINE: line length of 101 exceeds 100 columns
#41: FILE: drivers/gpu/drm/xe/xe_device.h:131:
+ for ((id__) = 0; (id__) < (xe__)->info.tile_count * (xe__)->info.max_gt_per_tile; (id__)++) \
total: 0 errors, 1 warnings, 0 checks, 50 lines checked
e20a6116a385 drm/xe/xe_query: Use separate iterator while filling GT list
^ permalink raw reply [flat|nested] 26+ messages in thread* ✓ CI.KUnit: success for Future-proof for multi-tile + multi-GT cases (rev4)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (6 preceding siblings ...)
2025-07-01 7:31 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev4) Patchwork
@ 2025-07-01 7:32 ` Patchwork
2025-07-01 8:10 ` ✗ Xe.CI.BAT: failure " Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-07-01 7:32 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev4)
URL : https://patchwork.freedesktop.org/series/150192/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:31:39] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:31:43] 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
[07:32:10] Starting KUnit Kernel (1/1)...
[07:32:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:32:11] ================== guc_buf (11 subtests) ===================
[07:32:11] [PASSED] test_smallest
[07:32:11] [PASSED] test_largest
[07:32:11] [PASSED] test_granular
[07:32:11] [PASSED] test_unique
[07:32:11] [PASSED] test_overlap
[07:32:11] [PASSED] test_reusable
[07:32:11] [PASSED] test_too_big
[07:32:11] [PASSED] test_flush
[07:32:11] [PASSED] test_lookup
[07:32:11] [PASSED] test_data
[07:32:11] [PASSED] test_class
[07:32:11] ===================== [PASSED] guc_buf =====================
[07:32:11] =================== guc_dbm (7 subtests) ===================
[07:32:11] [PASSED] test_empty
[07:32:11] [PASSED] test_default
[07:32:11] ======================== test_size ========================
[07:32:11] [PASSED] 4
[07:32:11] [PASSED] 8
[07:32:11] [PASSED] 32
[07:32:11] [PASSED] 256
[07:32:11] ==================== [PASSED] test_size ====================
[07:32:11] ======================= test_reuse ========================
[07:32:11] [PASSED] 4
[07:32:11] [PASSED] 8
[07:32:11] [PASSED] 32
[07:32:11] [PASSED] 256
[07:32:11] =================== [PASSED] test_reuse ====================
[07:32:11] =================== test_range_overlap ====================
[07:32:11] [PASSED] 4
[07:32:11] [PASSED] 8
[07:32:11] [PASSED] 32
[07:32:11] [PASSED] 256
[07:32:11] =============== [PASSED] test_range_overlap ================
[07:32:11] =================== test_range_compact ====================
[07:32:11] [PASSED] 4
[07:32:11] [PASSED] 8
[07:32:11] [PASSED] 32
[07:32:11] [PASSED] 256
[07:32:11] =============== [PASSED] test_range_compact ================
[07:32:11] ==================== test_range_spare =====================
[07:32:11] [PASSED] 4
[07:32:11] [PASSED] 8
[07:32:11] [PASSED] 32
[07:32:11] [PASSED] 256
[07:32:11] ================ [PASSED] test_range_spare =================
[07:32:11] ===================== [PASSED] guc_dbm =====================
[07:32:11] =================== guc_idm (6 subtests) ===================
[07:32:11] [PASSED] bad_init
[07:32:11] [PASSED] no_init
[07:32:11] [PASSED] init_fini
[07:32:11] [PASSED] check_used
[07:32:11] [PASSED] check_quota
[07:32:11] [PASSED] check_all
[07:32:11] ===================== [PASSED] guc_idm =====================
[07:32:11] ================== no_relay (3 subtests) ===================
[07:32:11] [PASSED] xe_drops_guc2pf_if_not_ready
[07:32:11] [PASSED] xe_drops_guc2vf_if_not_ready
[07:32:11] [PASSED] xe_rejects_send_if_not_ready
[07:32:11] ==================== [PASSED] no_relay =====================
[07:32:11] ================== pf_relay (14 subtests) ==================
[07:32:11] [PASSED] pf_rejects_guc2pf_too_short
[07:32:11] [PASSED] pf_rejects_guc2pf_too_long
[07:32:11] [PASSED] pf_rejects_guc2pf_no_payload
[07:32:11] [PASSED] pf_fails_no_payload
[07:32:11] [PASSED] pf_fails_bad_origin
[07:32:11] [PASSED] pf_fails_bad_type
[07:32:11] [PASSED] pf_txn_reports_error
[07:32:11] [PASSED] pf_txn_sends_pf2guc
[07:32:11] [PASSED] pf_sends_pf2guc
[07:32:11] [SKIPPED] pf_loopback_nop
[07:32:11] [SKIPPED] pf_loopback_echo
[07:32:11] [SKIPPED] pf_loopback_fail
[07:32:11] [SKIPPED] pf_loopback_busy
[07:32:11] [SKIPPED] pf_loopback_retry
[07:32:11] ==================== [PASSED] pf_relay =====================
[07:32:11] ================== vf_relay (3 subtests) ===================
[07:32:11] [PASSED] vf_rejects_guc2vf_too_short
[07:32:11] [PASSED] vf_rejects_guc2vf_too_long
[07:32:11] [PASSED] vf_rejects_guc2vf_no_payload
[07:32:11] ==================== [PASSED] vf_relay =====================
[07:32:11] ================= pf_service (11 subtests) =================
[07:32:11] [PASSED] pf_negotiate_any
[07:32:11] [PASSED] pf_negotiate_base_match
[07:32:11] [PASSED] pf_negotiate_base_newer
[07:32:11] [PASSED] pf_negotiate_base_next
[07:32:11] [SKIPPED] pf_negotiate_base_older
[07:32:11] [PASSED] pf_negotiate_base_prev
[07:32:11] [PASSED] pf_negotiate_latest_match
[07:32:11] [PASSED] pf_negotiate_latest_newer
[07:32:11] [PASSED] pf_negotiate_latest_next
[07:32:11] [SKIPPED] pf_negotiate_latest_older
[07:32:11] [SKIPPED] pf_negotiate_latest_prev
[07:32:11] =================== [PASSED] pf_service ====================
[07:32:11] ===================== lmtt (1 subtest) =====================
[07:32:11] ======================== test_ops =========================
[07:32:11] [PASSED] 2-level
[07:32:11] [PASSED] multi-level
[07:32:11] ==================== [PASSED] test_ops =====================
[07:32:11] ====================== [PASSED] lmtt =======================
[07:32:11] =================== xe_mocs (2 subtests) ===================
[07:32:11] ================ xe_live_mocs_kernel_kunit ================
[07:32:11] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:32:11] ================ xe_live_mocs_reset_kunit =================
[07:32:11] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:32:11] ==================== [SKIPPED] xe_mocs =====================
[07:32:11] ================= xe_migrate (2 subtests) ==================
[07:32:11] ================= xe_migrate_sanity_kunit =================
[07:32:11] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:32:11] ================== xe_validate_ccs_kunit ==================
[07:32:11] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:32:11] =================== [SKIPPED] xe_migrate ===================
[07:32:11] ================== xe_dma_buf (1 subtest) ==================
[07:32:11] ==================== xe_dma_buf_kunit =====================
[07:32:11] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:32:11] =================== [SKIPPED] xe_dma_buf ===================
[07:32:11] ================= xe_bo_shrink (1 subtest) =================
[07:32:11] =================== xe_bo_shrink_kunit ====================
[07:32:11] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:32:11] ================== [SKIPPED] xe_bo_shrink ==================
[07:32:11] ==================== xe_bo (2 subtests) ====================
[07:32:11] ================== xe_ccs_migrate_kunit ===================
[07:32:11] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:32:11] ==================== xe_bo_evict_kunit ====================
[07:32:11] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:32:11] ===================== [SKIPPED] xe_bo ======================
[07:32:11] ==================== args (11 subtests) ====================
[07:32:11] [PASSED] count_args_test
[07:32:11] [PASSED] call_args_example
[07:32:11] [PASSED] call_args_test
[07:32:11] [PASSED] drop_first_arg_example
[07:32:11] [PASSED] drop_first_arg_test
[07:32:11] [PASSED] first_arg_example
[07:32:11] [PASSED] first_arg_test
[07:32:11] [PASSED] last_arg_example
[07:32:11] [PASSED] last_arg_test
[07:32:11] [PASSED] pick_arg_example
[07:32:11] [PASSED] sep_comma_example
[07:32:11] ====================== [PASSED] args =======================
[07:32:11] =================== xe_pci (3 subtests) ====================
[07:32:11] ==================== check_graphics_ip ====================
[07:32:11] [PASSED] 12.70 Xe_LPG
[07:32:11] [PASSED] 12.71 Xe_LPG
[07:32:11] [PASSED] 12.74 Xe_LPG+
[07:32:11] [PASSED] 20.01 Xe2_HPG
[07:32:11] [PASSED] 20.02 Xe2_HPG
[07:32:11] [PASSED] 20.04 Xe2_LPG
[07:32:11] [PASSED] 30.00 Xe3_LPG
[07:32:11] [PASSED] 30.01 Xe3_LPG
[07:32:11] [PASSED] 30.03 Xe3_LPG
[07:32:11] ================ [PASSED] check_graphics_ip ================
[07:32:11] ===================== check_media_ip ======================
[07:32:11] [PASSED] 13.00 Xe_LPM+
[07:32:11] [PASSED] 13.01 Xe2_HPM
[07:32:11] [PASSED] 20.00 Xe2_LPM
[07:32:11] [PASSED] 30.00 Xe3_LPM
[07:32:11] [PASSED] 30.02 Xe3_LPM
[07:32:11] ================= [PASSED] check_media_ip ==================
[07:32:11] ================= check_platform_gt_count =================
[07:32:11] [PASSED] 0x9A60 (TIGERLAKE)
[07:32:11] [PASSED] 0x9A68 (TIGERLAKE)
[07:32:11] [PASSED] 0x9A70 (TIGERLAKE)
[07:32:11] [PASSED] 0x9A40 (TIGERLAKE)
[07:32:11] [PASSED] 0x9A49 (TIGERLAKE)
[07:32:11] [PASSED] 0x9A59 (TIGERLAKE)
[07:32:11] [PASSED] 0x9A78 (TIGERLAKE)
[07:32:11] [PASSED] 0x9AC0 (TIGERLAKE)
[07:32:11] [PASSED] 0x9AC9 (TIGERLAKE)
[07:32:11] [PASSED] 0x9AD9 (TIGERLAKE)
[07:32:11] [PASSED] 0x9AF8 (TIGERLAKE)
[07:32:11] [PASSED] 0x4C80 (ROCKETLAKE)
[07:32:11] [PASSED] 0x4C8A (ROCKETLAKE)
[07:32:11] [PASSED] 0x4C8B (ROCKETLAKE)
[07:32:11] [PASSED] 0x4C8C (ROCKETLAKE)
[07:32:11] [PASSED] 0x4C90 (ROCKETLAKE)
[07:32:11] [PASSED] 0x4C9A (ROCKETLAKE)
[07:32:11] [PASSED] 0x4680 (ALDERLAKE_S)
[07:32:11] [PASSED] 0x4682 (ALDERLAKE_S)
[07:32:11] [PASSED] 0x4688 (ALDERLAKE_S)
[07:32:11] [PASSED] 0x468A (ALDERLAKE_S)
[07:32:11] [PASSED] 0x468B (ALDERLAKE_S)
[07:32:11] [PASSED] 0x4690 (ALDERLAKE_S)
[07:32:11] [PASSED] 0x4692 (ALDERLAKE_S)
[07:32:11] [PASSED] 0x4693 (ALDERLAKE_S)
[07:32:11] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46AA (ALDERLAKE_P)
[07:32:11] [PASSED] 0x462A (ALDERLAKE_P)
[07:32:11] [PASSED] 0x4626 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x4628 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:32:11] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:32:11] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:32:11] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:32:11] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:32:11] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:32:11] [PASSED] 0xA721 (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA720 (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:32:11] [PASSED] 0xA780 (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA781 (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA782 (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA783 (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA788 (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA789 (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA78A (ALDERLAKE_S)
[07:32:11] [PASSED] 0xA78B (ALDERLAKE_S)
[07:32:11] [PASSED] 0x4905 (DG1)
[07:32:11] [PASSED] 0x4906 (DG1)
[07:32:11] [PASSED] 0x4907 (DG1)
[07:32:11] [PASSED] 0x4908 (DG1)
[07:32:11] [PASSED] 0x4909 (DG1)
[07:32:11] [PASSED] 0x56C0 (DG2)
[07:32:11] [PASSED] 0x56C2 (DG2)
[07:32:11] [PASSED] 0x56C1 (DG2)
[07:32:11] [PASSED] 0x7D51 (METEORLAKE)
[07:32:11] [PASSED] 0x7DD1 (METEORLAKE)
[07:32:11] [PASSED] 0x7D41 (METEORLAKE)
[07:32:11] [PASSED] 0x7D67 (METEORLAKE)
[07:32:11] [PASSED] 0xB640 (METEORLAKE)
[07:32:11] [PASSED] 0x56A0 (DG2)
[07:32:11] [PASSED] 0x56A1 (DG2)
[07:32:11] [PASSED] 0x56A2 (DG2)
[07:32:11] [PASSED] 0x56BE (DG2)
[07:32:11] [PASSED] 0x56BF (DG2)
[07:32:11] [PASSED] 0x5690 (DG2)
[07:32:11] [PASSED] 0x5691 (DG2)
[07:32:11] [PASSED] 0x5692 (DG2)
[07:32:11] [PASSED] 0x56A5 (DG2)
[07:32:11] [PASSED] 0x56A6 (DG2)
[07:32:11] [PASSED] 0x56B0 (DG2)
[07:32:11] [PASSED] 0x56B1 (DG2)
[07:32:11] [PASSED] 0x56BA (DG2)
[07:32:11] [PASSED] 0x56BB (DG2)
[07:32:11] [PASSED] 0x56BC (DG2)
[07:32:11] [PASSED] 0x56BD (DG2)
[07:32:11] [PASSED] 0x5693 (DG2)
[07:32:11] [PASSED] 0x5694 (DG2)
[07:32:11] [PASSED] 0x5695 (DG2)
[07:32:11] [PASSED] 0x56A3 (DG2)
[07:32:11] [PASSED] 0x56A4 (DG2)
[07:32:11] [PASSED] 0x56B2 (DG2)
[07:32:11] [PASSED] 0x56B3 (DG2)
[07:32:11] [PASSED] 0x5696 (DG2)
[07:32:11] [PASSED] 0x5697 (DG2)
[07:32:11] [PASSED] 0xB69 (PVC)
[07:32:11] [PASSED] 0xB6E (PVC)
[07:32:11] [PASSED] 0xBD4 (PVC)
[07:32:11] [PASSED] 0xBD5 (PVC)
[07:32:11] [PASSED] 0xBD6 (PVC)
[07:32:11] [PASSED] 0xBD7 (PVC)
[07:32:11] [PASSED] 0xBD8 (PVC)
[07:32:11] [PASSED] 0xBD9 (PVC)
[07:32:11] [PASSED] 0xBDA (PVC)
[07:32:11] [PASSED] 0xBDB (PVC)
[07:32:11] [PASSED] 0xBE0 (PVC)
[07:32:11] [PASSED] 0xBE1 (PVC)
[07:32:11] [PASSED] 0xBE5 (PVC)
[07:32:11] [PASSED] 0x7D40 (METEORLAKE)
[07:32:11] [PASSED] 0x7D45 (METEORLAKE)
[07:32:11] [PASSED] 0x7D55 (METEORLAKE)
[07:32:11] [PASSED] 0x7D60 (METEORLAKE)
[07:32:11] [PASSED] 0x7DD5 (METEORLAKE)
[07:32:11] [PASSED] 0x6420 (LUNARLAKE)
[07:32:11] [PASSED] 0x64A0 (LUNARLAKE)
[07:32:11] [PASSED] 0x64B0 (LUNARLAKE)
[07:32:11] [PASSED] 0xE202 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE20B (BATTLEMAGE)
[07:32:11] [PASSED] 0xE20C (BATTLEMAGE)
[07:32:11] [PASSED] 0xE20D (BATTLEMAGE)
[07:32:11] [PASSED] 0xE210 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE211 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE212 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE216 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE220 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE221 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE222 (BATTLEMAGE)
[07:32:11] [PASSED] 0xE223 (BATTLEMAGE)
[07:32:11] [PASSED] 0xB080 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB081 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB082 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB083 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB084 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB085 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB086 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB087 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB08F (PANTHERLAKE)
[07:32:11] [PASSED] 0xB090 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:32:11] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:32:11] [PASSED] 0xFD80 (PANTHERLAKE)
[07:32:11] [PASSED] 0xFD81 (PANTHERLAKE)
[07:32:11] ============= [PASSED] check_platform_gt_count =============
[07:32:11] ===================== [PASSED] xe_pci ======================
[07:32:11] =================== xe_rtp (2 subtests) ====================
[07:32:11] =============== xe_rtp_process_to_sr_tests ================
[07:32:11] [PASSED] coalesce-same-reg
[07:32:11] [PASSED] no-match-no-add
[07:32:11] [PASSED] match-or
[07:32:11] [PASSED] match-or-xfail
[07:32:11] [PASSED] no-match-no-add-multiple-rules
[07:32:11] [PASSED] two-regs-two-entries
[07:32:11] [PASSED] clr-one-set-other
[07:32:11] [PASSED] set-field
[07:32:11] [PASSED] conflict-duplicate
[07:32:11] [PASSED] conflict-not-disjoint
[07:32:11] [PASSED] conflict-reg-type
[07:32:11] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:32:11] ================== xe_rtp_process_tests ===================
[07:32:11] [PASSED] active1
[07:32:11] [PASSED] active2
[07:32:11] [PASSED] active-inactive
[07:32:11] [PASSED] inactive-active
[07:32:11] [PASSED] inactive-1st_or_active-inactive
[07:32:11] [PASSED] inactive-2nd_or_active-inactive
[07:32:11] [PASSED] inactive-last_or_active-inactive
[07:32:11] [PASSED] inactive-no_or_active-inactive
[07:32:11] ============== [PASSED] xe_rtp_process_tests ===============
[07:32:11] ===================== [PASSED] xe_rtp ======================
[07:32:11] ==================== xe_wa (1 subtest) =====================
[07:32:11] ======================== xe_wa_gt =========================
[07:32:11] [PASSED] TIGERLAKE (B0)
[07:32:11] [PASSED] DG1 (A0)
[07:32:11] [PASSED] DG1 (B0)
[07:32:11] [PASSED] ALDERLAKE_S (A0)
[07:32:11] [PASSED] ALDERLAKE_S (B0)
[07:32:11] [PASSED] ALDERLAKE_S (C0)
[07:32:11] [PASSED] ALDERLAKE_S (D0)
[07:32:11] [PASSED] ALDERLAKE_P (A0)
[07:32:11] [PASSED] ALDERLAKE_P (B0)
[07:32:11] [PASSED] ALDERLAKE_P (C0)
[07:32:11] [PASSED] ALDERLAKE_S_RPLS (D0)
[07:32:11] [PASSED] ALDERLAKE_P_RPLU (E0)
[07:32:11] [PASSED] DG2_G10 (C0)
[07:32:11] [PASSED] DG2_G11 (B1)
[07:32:11] [PASSED] DG2_G12 (A1)
[07:32:11] [PASSED] METEORLAKE (g:A0, m:A0)
[07:32:11] [PASSED] METEORLAKE (g:A0, m:A0)
[07:32:11] [PASSED] METEORLAKE (g:A0, m:A0)
[07:32:11] [PASSED] LUNARLAKE (g:A0, m:A0)
[07:32:11] [PASSED] LUNARLAKE (g:B0, m:A0)
[07:32:11] [PASSED] BATTLEMAGE (g:A0, m:A1)
stty: 'standard input': Inappropriate ioctl for device
[07:32:11] ==================== [PASSED] xe_wa_gt =====================
[07:32:11] ====================== [PASSED] xe_wa ======================
[07:32:11] ============================================================
[07:32:11] Testing complete. Ran 296 tests: passed: 280, skipped: 16
[07:32:11] Elapsed time: 31.308s total, 4.111s configuring, 26.880s building, 0.308s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:32:11] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:32:12] 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
[07:32:34] Starting KUnit Kernel (1/1)...
[07:32:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:32:34] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:32:34] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:32:34] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:32:34] =========== drm_validate_clone_mode (2 subtests) ===========
[07:32:34] ============== drm_test_check_in_clone_mode ===============
[07:32:34] [PASSED] in_clone_mode
[07:32:34] [PASSED] not_in_clone_mode
[07:32:34] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:32:34] =============== drm_test_check_valid_clones ===============
[07:32:34] [PASSED] not_in_clone_mode
[07:32:34] [PASSED] valid_clone
[07:32:34] [PASSED] invalid_clone
[07:32:34] =========== [PASSED] drm_test_check_valid_clones ===========
[07:32:34] ============= [PASSED] drm_validate_clone_mode =============
[07:32:34] ============= drm_validate_modeset (1 subtest) =============
[07:32:34] [PASSED] drm_test_check_connector_changed_modeset
[07:32:34] ============== [PASSED] drm_validate_modeset ===============
[07:32:34] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:32:34] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:32:34] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:32:34] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:32:34] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:32:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:32:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:32:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:32:34] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:32:34] ============== drm_bridge_alloc (2 subtests) ===============
[07:32:34] [PASSED] drm_test_drm_bridge_alloc_basic
[07:32:34] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:32:34] ================ [PASSED] drm_bridge_alloc =================
[07:32:34] ================== drm_buddy (7 subtests) ==================
[07:32:34] [PASSED] drm_test_buddy_alloc_limit
[07:32:34] [PASSED] drm_test_buddy_alloc_optimistic
[07:32:34] [PASSED] drm_test_buddy_alloc_pessimistic
[07:32:34] [PASSED] drm_test_buddy_alloc_pathological
[07:32:34] [PASSED] drm_test_buddy_alloc_contiguous
[07:32:34] [PASSED] drm_test_buddy_alloc_clear
[07:32:34] [PASSED] drm_test_buddy_alloc_range_bias
[07:32:34] ==================== [PASSED] drm_buddy ====================
[07:32:34] ============= drm_cmdline_parser (40 subtests) =============
[07:32:34] [PASSED] drm_test_cmdline_force_d_only
[07:32:34] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:32:34] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:32:34] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:32:34] [PASSED] drm_test_cmdline_force_e_only
[07:32:34] [PASSED] drm_test_cmdline_res
[07:32:34] [PASSED] drm_test_cmdline_res_vesa
[07:32:34] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:32:34] [PASSED] drm_test_cmdline_res_rblank
[07:32:34] [PASSED] drm_test_cmdline_res_bpp
[07:32:34] [PASSED] drm_test_cmdline_res_refresh
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:32:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:32:34] [PASSED] drm_test_cmdline_res_margins_force_on
[07:32:34] [PASSED] drm_test_cmdline_res_vesa_margins
[07:32:34] [PASSED] drm_test_cmdline_name
[07:32:34] [PASSED] drm_test_cmdline_name_bpp
[07:32:34] [PASSED] drm_test_cmdline_name_option
[07:32:34] [PASSED] drm_test_cmdline_name_bpp_option
[07:32:34] [PASSED] drm_test_cmdline_rotate_0
[07:32:34] [PASSED] drm_test_cmdline_rotate_90
[07:32:34] [PASSED] drm_test_cmdline_rotate_180
[07:32:34] [PASSED] drm_test_cmdline_rotate_270
[07:32:34] [PASSED] drm_test_cmdline_hmirror
[07:32:34] [PASSED] drm_test_cmdline_vmirror
[07:32:34] [PASSED] drm_test_cmdline_margin_options
[07:32:34] [PASSED] drm_test_cmdline_multiple_options
[07:32:34] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:32:34] [PASSED] drm_test_cmdline_extra_and_option
[07:32:34] [PASSED] drm_test_cmdline_freestanding_options
[07:32:34] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:32:34] [PASSED] drm_test_cmdline_panel_orientation
[07:32:34] ================ drm_test_cmdline_invalid =================
[07:32:34] [PASSED] margin_only
[07:32:34] [PASSED] interlace_only
[07:32:34] [PASSED] res_missing_x
[07:32:34] [PASSED] res_missing_y
[07:32:34] [PASSED] res_bad_y
[07:32:34] [PASSED] res_missing_y_bpp
[07:32:34] [PASSED] res_bad_bpp
[07:32:34] [PASSED] res_bad_refresh
[07:32:34] [PASSED] res_bpp_refresh_force_on_off
[07:32:34] [PASSED] res_invalid_mode
[07:32:34] [PASSED] res_bpp_wrong_place_mode
[07:32:34] [PASSED] name_bpp_refresh
[07:32:34] [PASSED] name_refresh
[07:32:34] [PASSED] name_refresh_wrong_mode
[07:32:34] [PASSED] name_refresh_invalid_mode
[07:32:34] [PASSED] rotate_multiple
[07:32:34] [PASSED] rotate_invalid_val
[07:32:34] [PASSED] rotate_truncated
[07:32:34] [PASSED] invalid_option
[07:32:34] [PASSED] invalid_tv_option
[07:32:34] [PASSED] truncated_tv_option
[07:32:34] ============ [PASSED] drm_test_cmdline_invalid =============
[07:32:34] =============== drm_test_cmdline_tv_options ===============
[07:32:34] [PASSED] NTSC
[07:32:34] [PASSED] NTSC_443
[07:32:34] [PASSED] NTSC_J
[07:32:34] [PASSED] PAL
[07:32:34] [PASSED] PAL_M
[07:32:34] [PASSED] PAL_N
[07:32:34] [PASSED] SECAM
[07:32:34] [PASSED] MONO_525
[07:32:34] [PASSED] MONO_625
[07:32:34] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:32:34] =============== [PASSED] drm_cmdline_parser ================
[07:32:34] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:32:34] [PASSED] drm_test_connector_hdmi_init_valid
[07:32:34] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:32:34] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:32:34] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:32:34] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:32:34] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:32:34] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:32:34] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:32:34] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:32:34] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:32:34] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:32:34] [PASSED] supported_formats=0x3 yuv420_allowed=1
[07:32:34] [PASSED] supported_formats=0x3 yuv420_allowed=0
[07:32:34] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:32:34] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:32:34] [PASSED] drm_test_connector_hdmi_init_null_product
[07:32:34] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:32:34] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:32:34] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:32:34] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:32:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:32:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:32:34] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:32:34] ========= drm_test_connector_hdmi_init_type_valid =========
[07:32:34] [PASSED] HDMI-A
[07:32:34] [PASSED] HDMI-B
[07:32:34] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:32:34] ======== drm_test_connector_hdmi_init_type_invalid ========
[07:32:34] [PASSED] Unknown
[07:32:34] [PASSED] VGA
[07:32:34] [PASSED] DVI-I
[07:32:34] [PASSED] DVI-D
[07:32:34] [PASSED] DVI-A
[07:32:34] [PASSED] Composite
[07:32:34] [PASSED] SVIDEO
[07:32:34] [PASSED] LVDS
[07:32:34] [PASSED] Component
[07:32:34] [PASSED] DIN
[07:32:34] [PASSED] DP
[07:32:34] [PASSED] TV
[07:32:34] [PASSED] eDP
[07:32:34] [PASSED] Virtual
[07:32:34] [PASSED] DSI
[07:32:34] [PASSED] DPI
[07:32:34] [PASSED] Writeback
[07:32:34] [PASSED] SPI
[07:32:34] [PASSED] USB
[07:32:34] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:32:34] ============ [PASSED] drmm_connector_hdmi_init =============
[07:32:34] ============= drmm_connector_init (3 subtests) =============
[07:32:34] [PASSED] drm_test_drmm_connector_init
[07:32:34] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:32:34] ========= drm_test_drmm_connector_init_type_valid =========
[07:32:34] [PASSED] Unknown
[07:32:34] [PASSED] VGA
[07:32:34] [PASSED] DVI-I
[07:32:34] [PASSED] DVI-D
[07:32:34] [PASSED] DVI-A
[07:32:34] [PASSED] Composite
[07:32:34] [PASSED] SVIDEO
[07:32:34] [PASSED] LVDS
[07:32:34] [PASSED] Component
[07:32:34] [PASSED] DIN
[07:32:34] [PASSED] DP
[07:32:34] [PASSED] HDMI-A
[07:32:34] [PASSED] HDMI-B
[07:32:34] [PASSED] TV
[07:32:34] [PASSED] eDP
[07:32:34] [PASSED] Virtual
[07:32:34] [PASSED] DSI
[07:32:34] [PASSED] DPI
[07:32:34] [PASSED] Writeback
[07:32:34] [PASSED] SPI
[07:32:34] [PASSED] USB
[07:32:34] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:32:34] =============== [PASSED] drmm_connector_init ===============
[07:32:34] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_init
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:32:34] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[07:32:34] [PASSED] Unknown
[07:32:34] [PASSED] VGA
[07:32:34] [PASSED] DVI-I
[07:32:34] [PASSED] DVI-D
[07:32:34] [PASSED] DVI-A
[07:32:34] [PASSED] Composite
[07:32:34] [PASSED] SVIDEO
[07:32:34] [PASSED] LVDS
[07:32:34] [PASSED] Component
[07:32:34] [PASSED] DIN
[07:32:34] [PASSED] DP
[07:32:34] [PASSED] HDMI-A
[07:32:34] [PASSED] HDMI-B
[07:32:34] [PASSED] TV
[07:32:34] [PASSED] eDP
[07:32:34] [PASSED] Virtual
[07:32:34] [PASSED] DSI
[07:32:34] [PASSED] DPI
[07:32:34] [PASSED] Writeback
[07:32:34] [PASSED] SPI
[07:32:34] [PASSED] USB
[07:32:34] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:32:34] ======== drm_test_drm_connector_dynamic_init_name =========
[07:32:34] [PASSED] Unknown
[07:32:34] [PASSED] VGA
[07:32:34] [PASSED] DVI-I
[07:32:34] [PASSED] DVI-D
[07:32:34] [PASSED] DVI-A
[07:32:34] [PASSED] Composite
[07:32:34] [PASSED] SVIDEO
[07:32:34] [PASSED] LVDS
[07:32:34] [PASSED] Component
[07:32:34] [PASSED] DIN
[07:32:34] [PASSED] DP
[07:32:34] [PASSED] HDMI-A
[07:32:34] [PASSED] HDMI-B
[07:32:34] [PASSED] TV
[07:32:34] [PASSED] eDP
[07:32:34] [PASSED] Virtual
[07:32:34] [PASSED] DSI
[07:32:34] [PASSED] DPI
[07:32:34] [PASSED] Writeback
[07:32:34] [PASSED] SPI
[07:32:34] [PASSED] USB
[07:32:34] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:32:34] =========== [PASSED] drm_connector_dynamic_init ============
[07:32:34] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:32:34] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:32:34] ======= drm_connector_dynamic_register (7 subtests) ========
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:32:34] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:32:34] ========= [PASSED] drm_connector_dynamic_register ==========
[07:32:34] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:32:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:32:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:32:34] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:32:34] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:32:34] ========== drm_test_get_tv_mode_from_name_valid ===========
[07:32:34] [PASSED] NTSC
[07:32:34] [PASSED] NTSC-443
[07:32:34] [PASSED] NTSC-J
[07:32:34] [PASSED] PAL
[07:32:34] [PASSED] PAL-M
[07:32:34] [PASSED] PAL-N
[07:32:34] [PASSED] SECAM
[07:32:34] [PASSED] Mono
[07:32:34] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:32:34] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:32:34] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:32:34] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:32:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:32:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:32:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:32:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:32:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:32:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:32:34] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[07:32:34] [PASSED] VIC 96
[07:32:34] [PASSED] VIC 97
[07:32:34] [PASSED] VIC 101
[07:32:34] [PASSED] VIC 102
[07:32:34] [PASSED] VIC 106
[07:32:34] [PASSED] VIC 107
[07:32:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:32:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:32:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:32:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:32:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:32:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:32:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:32:34] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:32:34] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[07:32:34] [PASSED] Automatic
[07:32:34] [PASSED] Full
[07:32:34] [PASSED] Limited 16:235
[07:32:34] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:32:34] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:32:34] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:32:34] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:32:34] === drm_test_drm_hdmi_connector_get_output_format_name ====
[07:32:34] [PASSED] RGB
[07:32:34] [PASSED] YUV 4:2:0
[07:32:34] [PASSED] YUV 4:2:2
[07:32:34] [PASSED] YUV 4:4:4
[07:32:34] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:32:34] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:32:34] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:32:34] ============= drm_damage_helper (21 subtests) ==============
[07:32:34] [PASSED] drm_test_damage_iter_no_damage
[07:32:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:32:34] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:32:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:32:34] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:32:34] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:32:34] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:32:34] [PASSED] drm_test_damage_iter_simple_damage
[07:32:34] [PASSED] drm_test_damage_iter_single_damage
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:32:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:32:34] [PASSED] drm_test_damage_iter_damage
[07:32:34] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:32:34] [PASSED] drm_test_damage_iter_damage_one_outside
[07:32:34] [PASSED] drm_test_damage_iter_damage_src_moved
[07:32:34] [PASSED] drm_test_damage_iter_damage_not_visible
[07:32:34] ================ [PASSED] drm_damage_helper ================
[07:32:34] ============== drm_dp_mst_helper (3 subtests) ==============
[07:32:34] ============== drm_test_dp_mst_calc_pbn_mode ==============
[07:32:34] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:32:34] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:32:34] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:32:34] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:32:34] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:32:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:32:34] ============== drm_test_dp_mst_calc_pbn_div ===============
[07:32:34] [PASSED] Link rate 2000000 lane count 4
[07:32:34] [PASSED] Link rate 2000000 lane count 2
[07:32:34] [PASSED] Link rate 2000000 lane count 1
[07:32:34] [PASSED] Link rate 1350000 lane count 4
[07:32:34] [PASSED] Link rate 1350000 lane count 2
[07:32:34] [PASSED] Link rate 1350000 lane count 1
[07:32:34] [PASSED] Link rate 1000000 lane count 4
[07:32:34] [PASSED] Link rate 1000000 lane count 2
[07:32:34] [PASSED] Link rate 1000000 lane count 1
[07:32:34] [PASSED] Link rate 810000 lane count 4
[07:32:34] [PASSED] Link rate 810000 lane count 2
[07:32:34] [PASSED] Link rate 810000 lane count 1
[07:32:34] [PASSED] Link rate 540000 lane count 4
[07:32:34] [PASSED] Link rate 540000 lane count 2
[07:32:34] [PASSED] Link rate 540000 lane count 1
[07:32:34] [PASSED] Link rate 270000 lane count 4
[07:32:34] [PASSED] Link rate 270000 lane count 2
[07:32:34] [PASSED] Link rate 270000 lane count 1
[07:32:34] [PASSED] Link rate 162000 lane count 4
[07:32:34] [PASSED] Link rate 162000 lane count 2
[07:32:34] [PASSED] Link rate 162000 lane count 1
[07:32:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:32:34] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[07:32:34] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:32:34] [PASSED] DP_POWER_UP_PHY with port number
[07:32:34] [PASSED] DP_POWER_DOWN_PHY with port number
[07:32:34] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:32:34] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:32:34] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:32:34] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:32:34] [PASSED] DP_QUERY_PAYLOAD with port number
[07:32:34] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:32:34] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:32:34] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:32:34] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:32:34] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:32:34] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:32:34] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:32:34] [PASSED] DP_REMOTE_I2C_READ with port number
[07:32:34] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:32:34] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:32:34] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:32:34] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:32:34] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:32:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:32:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:32:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:32:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:32:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:32:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:32:34] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:32:34] ================ [PASSED] drm_dp_mst_helper ================
[07:32:34] ================== drm_exec (7 subtests) ===================
[07:32:34] [PASSED] sanitycheck
[07:32:34] [PASSED] test_lock
[07:32:34] [PASSED] test_lock_unlock
[07:32:34] [PASSED] test_duplicates
[07:32:34] [PASSED] test_prepare
[07:32:34] [PASSED] test_prepare_array
[07:32:34] [PASSED] test_multiple_loops
[07:32:34] ==================== [PASSED] drm_exec =====================
[07:32:34] =========== drm_format_helper_test (17 subtests) ===========
[07:32:34] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:32:34] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:32:34] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:32:34] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:32:34] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:32:34] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:32:34] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:32:34] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:32:34] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:32:34] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:32:34] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:32:34] ============== drm_test_fb_xrgb8888_to_mono ===============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:32:34] ==================== drm_test_fb_swab =====================
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ================ [PASSED] drm_test_fb_swab =================
[07:32:34] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:32:34] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[07:32:34] [PASSED] single_pixel_source_buffer
[07:32:34] [PASSED] single_pixel_clip_rectangle
[07:32:34] [PASSED] well_known_colors
[07:32:34] [PASSED] destination_pitch
[07:32:34] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:32:34] ================= drm_test_fb_clip_offset =================
[07:32:34] [PASSED] pass through
[07:32:34] [PASSED] horizontal offset
[07:32:34] [PASSED] vertical offset
[07:32:34] [PASSED] horizontal and vertical offset
[07:32:34] [PASSED] horizontal offset (custom pitch)
[07:32:34] [PASSED] vertical offset (custom pitch)
[07:32:34] [PASSED] horizontal and vertical offset (custom pitch)
[07:32:34] ============= [PASSED] drm_test_fb_clip_offset =============
[07:32:34] =================== drm_test_fb_memcpy ====================
[07:32:34] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:32:34] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:32:34] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:32:34] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:32:34] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:32:34] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:32:34] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:32:34] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:32:34] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:32:34] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:32:34] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:32:34] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:32:34] =============== [PASSED] drm_test_fb_memcpy ================
[07:32:34] ============= [PASSED] drm_format_helper_test ==============
[07:32:34] ================= drm_format (18 subtests) =================
[07:32:34] [PASSED] drm_test_format_block_width_invalid
[07:32:34] [PASSED] drm_test_format_block_width_one_plane
[07:32:34] [PASSED] drm_test_format_block_width_two_plane
[07:32:34] [PASSED] drm_test_format_block_width_three_plane
[07:32:34] [PASSED] drm_test_format_block_width_tiled
[07:32:34] [PASSED] drm_test_format_block_height_invalid
[07:32:34] [PASSED] drm_test_format_block_height_one_plane
[07:32:34] [PASSED] drm_test_format_block_height_two_plane
[07:32:34] [PASSED] drm_test_format_block_height_three_plane
[07:32:34] [PASSED] drm_test_format_block_height_tiled
[07:32:34] [PASSED] drm_test_format_min_pitch_invalid
[07:32:34] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:32:34] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:32:34] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:32:34] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:32:34] [PASSED] drm_test_format_min_pitch_two_plane
[07:32:34] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:32:34] [PASSED] drm_test_format_min_pitch_tiled
[07:32:34] =================== [PASSED] drm_format ====================
[07:32:34] ============== drm_framebuffer (10 subtests) ===============
[07:32:34] ========== drm_test_framebuffer_check_src_coords ==========
[07:32:34] [PASSED] Success: source fits into fb
[07:32:34] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:32:34] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:32:34] [PASSED] Fail: overflowing fb with source width
[07:32:34] [PASSED] Fail: overflowing fb with source height
[07:32:34] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:32:34] [PASSED] drm_test_framebuffer_cleanup
[07:32:34] =============== drm_test_framebuffer_create ===============
[07:32:34] [PASSED] ABGR8888 normal sizes
[07:32:34] [PASSED] ABGR8888 max sizes
[07:32:34] [PASSED] ABGR8888 pitch greater than min required
[07:32:34] [PASSED] ABGR8888 pitch less than min required
[07:32:34] [PASSED] ABGR8888 Invalid width
[07:32:34] [PASSED] ABGR8888 Invalid buffer handle
[07:32:34] [PASSED] No pixel format
[07:32:34] [PASSED] ABGR8888 Width 0
[07:32:34] [PASSED] ABGR8888 Height 0
[07:32:34] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:32:34] [PASSED] ABGR8888 Large buffer offset
[07:32:34] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:32:34] [PASSED] ABGR8888 Invalid flag
[07:32:34] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:32:34] [PASSED] ABGR8888 Valid buffer modifier
[07:32:34] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:32:34] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] NV12 Normal sizes
[07:32:34] [PASSED] NV12 Max sizes
[07:32:34] [PASSED] NV12 Invalid pitch
[07:32:34] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:32:34] [PASSED] NV12 different modifier per-plane
[07:32:34] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:32:34] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] NV12 Modifier for inexistent plane
[07:32:34] [PASSED] NV12 Handle for inexistent plane
[07:32:34] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:32:34] [PASSED] YVU420 Normal sizes
[07:32:34] [PASSED] YVU420 Max sizes
[07:32:34] [PASSED] YVU420 Invalid pitch
[07:32:34] [PASSED] YVU420 Different pitches
[07:32:34] [PASSED] YVU420 Different buffer offsets/pitches
[07:32:34] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:32:34] [PASSED] YVU420 Valid modifier
[07:32:34] [PASSED] YVU420 Different modifiers per plane
[07:32:34] [PASSED] YVU420 Modifier for inexistent plane
[07:32:34] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:32:34] [PASSED] X0L2 Normal sizes
[07:32:34] [PASSED] X0L2 Max sizes
[07:32:34] [PASSED] X0L2 Invalid pitch
[07:32:34] [PASSED] X0L2 Pitch greater than minimum required
[07:32:34] [PASSED] X0L2 Handle for inexistent plane
[07:32:34] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:32:34] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:32:34] [PASSED] X0L2 Valid modifier
[07:32:34] [PASSED] X0L2 Modifier for inexistent plane
[07:32:34] =========== [PASSED] drm_test_framebuffer_create ===========
[07:32:34] [PASSED] drm_test_framebuffer_free
[07:32:34] [PASSED] drm_test_framebuffer_init
[07:32:34] [PASSED] drm_test_framebuffer_init_bad_format
[07:32:34] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:32:34] [PASSED] drm_test_framebuffer_lookup
[07:32:34] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:32:34] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:32:34] ================= [PASSED] drm_framebuffer =================
[07:32:34] ================ drm_gem_shmem (8 subtests) ================
[07:32:34] [PASSED] drm_gem_shmem_test_obj_create
[07:32:34] [PASSED] drm_gem_shmem_test_obj_create_private
[07:32:34] [PASSED] drm_gem_shmem_test_pin_pages
[07:32:34] [PASSED] drm_gem_shmem_test_vmap
[07:32:34] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:32:34] [PASSED] drm_gem_shmem_test_get_sg_table
[07:32:34] [PASSED] drm_gem_shmem_test_madvise
[07:32:34] [PASSED] drm_gem_shmem_test_purge
[07:32:34] ================== [PASSED] drm_gem_shmem ==================
[07:32:34] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:32:34] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[07:32:34] [PASSED] Automatic
[07:32:34] [PASSED] Full
[07:32:34] [PASSED] Limited 16:235
[07:32:34] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:32:34] [PASSED] drm_test_check_disable_connector
[07:32:34] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:32:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:32:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:32:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:32:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:32:34] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:32:34] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:32:34] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:32:34] [PASSED] drm_test_check_output_bpc_dvi
[07:32:34] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:32:34] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:32:34] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:32:34] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:32:34] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:32:34] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:32:34] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:32:34] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:32:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:32:34] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:32:34] [PASSED] drm_test_check_broadcast_rgb_value
[07:32:34] [PASSED] drm_test_check_bpc_8_value
[07:32:34] [PASSED] drm_test_check_bpc_10_value
[07:32:34] [PASSED] drm_test_check_bpc_12_value
[07:32:34] [PASSED] drm_test_check_format_value
[07:32:34] [PASSED] drm_test_check_tmds_char_value
[07:32:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:32:34] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:32:34] [PASSED] drm_test_check_mode_valid
[07:32:34] [PASSED] drm_test_check_mode_valid_reject
[07:32:34] [PASSED] drm_test_check_mode_valid_reject_rate
[07:32:34] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:32:34] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:32:34] ================= drm_managed (2 subtests) =================
[07:32:34] [PASSED] drm_test_managed_release_action
[07:32:34] [PASSED] drm_test_managed_run_action
[07:32:34] =================== [PASSED] drm_managed ===================
[07:32:34] =================== drm_mm (6 subtests) ====================
[07:32:34] [PASSED] drm_test_mm_init
[07:32:34] [PASSED] drm_test_mm_debug
[07:32:34] [PASSED] drm_test_mm_align32
[07:32:34] [PASSED] drm_test_mm_align64
[07:32:34] [PASSED] drm_test_mm_lowest
[07:32:34] [PASSED] drm_test_mm_highest
[07:32:34] ===================== [PASSED] drm_mm ======================
[07:32:34] ============= drm_modes_analog_tv (5 subtests) =============
[07:32:34] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:32:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:32:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:32:34] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:32:34] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:32:34] =============== [PASSED] drm_modes_analog_tv ===============
[07:32:34] ============== drm_plane_helper (2 subtests) ===============
[07:32:34] =============== drm_test_check_plane_state ================
[07:32:34] [PASSED] clipping_simple
[07:32:34] [PASSED] clipping_rotate_reflect
[07:32:34] [PASSED] positioning_simple
[07:32:34] [PASSED] upscaling
[07:32:34] [PASSED] downscaling
[07:32:34] [PASSED] rounding1
[07:32:34] [PASSED] rounding2
[07:32:34] [PASSED] rounding3
[07:32:34] [PASSED] rounding4
[07:32:34] =========== [PASSED] drm_test_check_plane_state ============
[07:32:34] =========== drm_test_check_invalid_plane_state ============
[07:32:34] [PASSED] positioning_invalid
[07:32:34] [PASSED] upscaling_invalid
[07:32:34] [PASSED] downscaling_invalid
[07:32:34] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:32:34] ================ [PASSED] drm_plane_helper =================
[07:32:34] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:32:34] ====== drm_test_connector_helper_tv_get_modes_check =======
[07:32:34] [PASSED] None
[07:32:34] [PASSED] PAL
[07:32:34] [PASSED] NTSC
[07:32:34] [PASSED] Both, NTSC Default
[07:32:34] [PASSED] Both, PAL Default
[07:32:34] [PASSED] Both, NTSC Default, with PAL on command-line
[07:32:34] [PASSED] Both, PAL Default, with NTSC on command-line
[07:32:34] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:32:34] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:32:34] ================== drm_rect (9 subtests) ===================
[07:32:34] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:32:34] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:32:34] [PASSED] drm_test_rect_clip_scaled_clipped
[07:32:34] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:32:34] ================= drm_test_rect_intersect =================
[07:32:34] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:32:34] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:32:34] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:32:34] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:32:34] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:32:34] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:32:34] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:32:34] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:32:34] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:32:34] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:32:34] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:32:34] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:32:34] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:32:34] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:32:34] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:32:34] ============= [PASSED] drm_test_rect_intersect =============
[07:32:34] ================ drm_test_rect_calc_hscale ================
[07:32:34] [PASSED] normal use
[07:32:34] [PASSED] out of max range
[07:32:34] [PASSED] out of min range
[07:32:34] [PASSED] zero dst
[07:32:34] [PASSED] negative src
[07:32:34] [PASSED] negative dst
[07:32:34] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:32:34] ================ drm_test_rect_calc_vscale ================
[07:32:34] [PASSED] normal use
[07:32:34] [PASSED] out of max range
[07:32:34] [PASSED] out of min range
[07:32:34] [PASSED] zero dst
[07:32:34] [PASSED] negative src
[07:32:34] [PASSED] negative dst
[07:32:34] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:32:34] ================== drm_test_rect_rotate ===================
[07:32:34] [PASSED] reflect-x
[07:32:34] [PASSED] reflect-y
[07:32:34] [PASSED] rotate-0
[07:32:34] [PASSED] rotate-90
[07:32:34] [PASSED] rotate-180
[07:32:34] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[07:32:34] ============== [PASSED] drm_test_rect_rotate ===============
[07:32:34] ================ drm_test_rect_rotate_inv =================
[07:32:34] [PASSED] reflect-x
[07:32:34] [PASSED] reflect-y
[07:32:34] [PASSED] rotate-0
[07:32:34] [PASSED] rotate-90
[07:32:34] [PASSED] rotate-180
[07:32:34] [PASSED] rotate-270
[07:32:34] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:32:34] ==================== [PASSED] drm_rect =====================
[07:32:34] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:32:34] ============ drm_test_sysfb_build_fourcc_list =============
[07:32:34] [PASSED] no native formats
[07:32:34] [PASSED] XRGB8888 as native format
[07:32:34] [PASSED] remove duplicates
[07:32:34] [PASSED] convert alpha formats
[07:32:34] [PASSED] random formats
[07:32:34] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:32:34] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:32:34] ============================================================
[07:32:34] Testing complete. Ran 616 tests: passed: 616
[07:32:34] Elapsed time: 23.512s total, 1.686s configuring, 21.608s building, 0.194s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:32:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:32:36] 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
[07:32:44] Starting KUnit Kernel (1/1)...
[07:32:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:32:44] ================= ttm_device (5 subtests) ==================
[07:32:44] [PASSED] ttm_device_init_basic
[07:32:44] [PASSED] ttm_device_init_multiple
[07:32:44] [PASSED] ttm_device_fini_basic
[07:32:44] [PASSED] ttm_device_init_no_vma_man
[07:32:44] ================== ttm_device_init_pools ==================
[07:32:44] [PASSED] No DMA allocations, no DMA32 required
[07:32:44] [PASSED] DMA allocations, DMA32 required
[07:32:44] [PASSED] No DMA allocations, DMA32 required
[07:32:44] [PASSED] DMA allocations, no DMA32 required
[07:32:44] ============== [PASSED] ttm_device_init_pools ==============
[07:32:44] =================== [PASSED] ttm_device ====================
[07:32:44] ================== ttm_pool (8 subtests) ===================
[07:32:44] ================== ttm_pool_alloc_basic ===================
[07:32:44] [PASSED] One page
[07:32:44] [PASSED] More than one page
[07:32:44] [PASSED] Above the allocation limit
[07:32:44] [PASSED] One page, with coherent DMA mappings enabled
[07:32:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:32:44] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:32:44] ============== ttm_pool_alloc_basic_dma_addr ==============
[07:32:44] [PASSED] One page
[07:32:44] [PASSED] More than one page
[07:32:44] [PASSED] Above the allocation limit
[07:32:44] [PASSED] One page, with coherent DMA mappings enabled
[07:32:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:32:44] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:32:44] [PASSED] ttm_pool_alloc_order_caching_match
[07:32:44] [PASSED] ttm_pool_alloc_caching_mismatch
[07:32:44] [PASSED] ttm_pool_alloc_order_mismatch
[07:32:44] [PASSED] ttm_pool_free_dma_alloc
[07:32:44] [PASSED] ttm_pool_free_no_dma_alloc
[07:32:44] [PASSED] ttm_pool_fini_basic
[07:32:44] ==================== [PASSED] ttm_pool =====================
[07:32:44] ================ ttm_resource (8 subtests) =================
[07:32:44] ================= ttm_resource_init_basic =================
[07:32:44] [PASSED] Init resource in TTM_PL_SYSTEM
[07:32:44] [PASSED] Init resource in TTM_PL_VRAM
[07:32:44] [PASSED] Init resource in a private placement
[07:32:44] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:32:44] ============= [PASSED] ttm_resource_init_basic =============
[07:32:44] [PASSED] ttm_resource_init_pinned
[07:32:44] [PASSED] ttm_resource_fini_basic
[07:32:44] [PASSED] ttm_resource_manager_init_basic
[07:32:44] [PASSED] ttm_resource_manager_usage_basic
[07:32:44] [PASSED] ttm_resource_manager_set_used_basic
[07:32:44] [PASSED] ttm_sys_man_alloc_basic
[07:32:44] [PASSED] ttm_sys_man_free_basic
[07:32:44] ================== [PASSED] ttm_resource ===================
[07:32:44] =================== ttm_tt (15 subtests) ===================
[07:32:44] ==================== ttm_tt_init_basic ====================
[07:32:44] [PASSED] Page-aligned size
[07:32:44] [PASSED] Extra pages requested
[07:32:44] ================ [PASSED] ttm_tt_init_basic ================
[07:32:44] [PASSED] ttm_tt_init_misaligned
[07:32:44] [PASSED] ttm_tt_fini_basic
[07:32:44] [PASSED] ttm_tt_fini_sg
[07:32:44] [PASSED] ttm_tt_fini_shmem
[07:32:44] [PASSED] ttm_tt_create_basic
[07:32:44] [PASSED] ttm_tt_create_invalid_bo_type
[07:32:44] [PASSED] ttm_tt_create_ttm_exists
[07:32:44] [PASSED] ttm_tt_create_failed
[07:32:44] [PASSED] ttm_tt_destroy_basic
[07:32:44] [PASSED] ttm_tt_populate_null_ttm
[07:32:44] [PASSED] ttm_tt_populate_populated_ttm
[07:32:44] [PASSED] ttm_tt_unpopulate_basic
[07:32:44] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:32:44] [PASSED] ttm_tt_swapin_basic
[07:32:44] ===================== [PASSED] ttm_tt ======================
[07:32:44] =================== ttm_bo (14 subtests) ===================
[07:32:44] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[07:32:44] [PASSED] Cannot be interrupted and sleeps
[07:32:44] [PASSED] Cannot be interrupted, locks straight away
[07:32:44] [PASSED] Can be interrupted, sleeps
[07:32:44] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:32:44] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:32:44] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:32:44] [PASSED] ttm_bo_reserve_double_resv
[07:32:44] [PASSED] ttm_bo_reserve_interrupted
[07:32:44] [PASSED] ttm_bo_reserve_deadlock
[07:32:44] [PASSED] ttm_bo_unreserve_basic
[07:32:44] [PASSED] ttm_bo_unreserve_pinned
[07:32:44] [PASSED] ttm_bo_unreserve_bulk
[07:32:44] [PASSED] ttm_bo_put_basic
[07:32:44] [PASSED] ttm_bo_put_shared_resv
[07:32:44] [PASSED] ttm_bo_pin_basic
[07:32:44] [PASSED] ttm_bo_pin_unpin_resource
[07:32:44] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:32:44] ===================== [PASSED] ttm_bo ======================
[07:32:44] ============== ttm_bo_validate (22 subtests) ===============
[07:32:44] ============== ttm_bo_init_reserved_sys_man ===============
[07:32:44] [PASSED] Buffer object for userspace
[07:32:44] [PASSED] Kernel buffer object
[07:32:44] [PASSED] Shared buffer object
[07:32:44] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:32:44] ============== ttm_bo_init_reserved_mock_man ==============
[07:32:44] [PASSED] Buffer object for userspace
[07:32:44] [PASSED] Kernel buffer object
[07:32:44] [PASSED] Shared buffer object
[07:32:44] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:32:44] [PASSED] ttm_bo_init_reserved_resv
[07:32:44] ================== ttm_bo_validate_basic ==================
[07:32:44] [PASSED] Buffer object for userspace
[07:32:44] [PASSED] Kernel buffer object
[07:32:44] [PASSED] Shared buffer object
[07:32:44] ============== [PASSED] ttm_bo_validate_basic ==============
[07:32:44] [PASSED] ttm_bo_validate_invalid_placement
[07:32:44] ============= ttm_bo_validate_same_placement ==============
[07:32:44] [PASSED] System manager
[07:32:44] [PASSED] VRAM manager
[07:32:44] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:32:44] [PASSED] ttm_bo_validate_failed_alloc
[07:32:44] [PASSED] ttm_bo_validate_pinned
[07:32:44] [PASSED] ttm_bo_validate_busy_placement
[07:32:44] ================ ttm_bo_validate_multihop =================
[07:32:44] [PASSED] Buffer object for userspace
[07:32:44] [PASSED] Kernel buffer object
[07:32:44] [PASSED] Shared buffer object
[07:32:44] ============ [PASSED] ttm_bo_validate_multihop =============
[07:32:44] ========== ttm_bo_validate_no_placement_signaled ==========
[07:32:44] [PASSED] Buffer object in system domain, no page vector
[07:32:44] [PASSED] Buffer object in system domain with an existing page vector
[07:32:44] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:32:44] ======== ttm_bo_validate_no_placement_not_signaled ========
[07:32:44] [PASSED] Buffer object for userspace
[07:32:44] [PASSED] Kernel buffer object
[07:32:44] [PASSED] Shared buffer object
[07:32:44] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:32:44] [PASSED] ttm_bo_validate_move_fence_signaled
[07:32:44] ========= ttm_bo_validate_move_fence_not_signaled =========
[07:32:44] [PASSED] Waits for GPU
[07:32:44] [PASSED] Tries to lock straight away
[07:32:44] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:32:44] [PASSED] ttm_bo_validate_swapout
[07:32:44] [PASSED] ttm_bo_validate_happy_evict
[07:32:44] [PASSED] ttm_bo_validate_all_pinned_evict
[07:32:44] [PASSED] ttm_bo_validate_allowed_only_evict
[07:32:44] [PASSED] ttm_bo_validate_deleted_evict
[07:32:44] [PASSED] ttm_bo_validate_busy_domain_evict
[07:32:44] [PASSED] ttm_bo_validate_evict_gutting
[07:32:44] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[07:32:44] ================= [PASSED] ttm_bo_validate =================
[07:32:44] ============================================================
[07:32:44] Testing complete. Ran 102 tests: passed: 102
[07:32:44] Elapsed time: 10.029s total, 1.693s configuring, 7.719s building, 0.527s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 26+ messages in thread* ✗ Xe.CI.BAT: failure for Future-proof for multi-tile + multi-GT cases (rev4)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (7 preceding siblings ...)
2025-07-01 7:32 ` ✓ CI.KUnit: success " Patchwork
@ 2025-07-01 8:10 ` Patchwork
2025-07-01 16:18 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev5) Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-07-01 8:10 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 9714 bytes --]
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev4)
URL : https://patchwork.freedesktop.org/series/150192/
State : failure
== Summary ==
CI Bug Log - changes from xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8_BAT -> xe-pw-150192v4_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150192v4_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150192v4_BAT, 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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150192v4_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_intel_bb@intel-bb-blit-y:
- bat-pvc-2: [PASS][1] -> [FAIL][2] +182 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-pvc-2: [SKIP][3] ([i915#6077]) -> [FAIL][4] +30 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-pvc-2: [SKIP][5] ([Intel XE#1024] / [Intel XE#782]) -> [FAIL][6] +5 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-basic:
- bat-pvc-2: [SKIP][7] ([Intel XE#1024] / [Intel XE#784]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_dsc@dsc-basic.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-pvc-2: [SKIP][9] ([Intel XE#1024] / [Intel XE#947]) -> [FAIL][10] +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-pvc-2: [SKIP][11] ([Intel XE#540]) -> [FAIL][12] +3 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-pvc-2: [SKIP][13] ([Intel XE#1024] / [Intel XE#783]) -> [FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-pvc-2: [SKIP][15] ([Intel XE#829]) -> [FAIL][16] +6 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-pvc-2: [SKIP][17] ([Intel XE#780]) -> [FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_prop_blob@basic.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-pvc-2: [SKIP][19] ([Intel XE#1024]) -> [FAIL][20] +2 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-pvc-2: [SKIP][21] ([Intel XE#2849]) -> [FAIL][22] +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_gt_freq@freq_fixed_idle:
- bat-pvc-2: [SKIP][23] ([Intel XE#1021]) -> [FAIL][24] +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_huc_copy@huc_copy:
- bat-pvc-2: [SKIP][25] ([Intel XE#255]) -> [FAIL][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_intel_bb@render:
- bat-pvc-2: [SKIP][27] ([Intel XE#532]) -> [FAIL][28]
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_intel_bb@render.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_intel_bb@render.html
* igt@xe_pat@pat-index-xe2:
- bat-pvc-2: [SKIP][29] ([Intel XE#977]) -> [FAIL][30] +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- bat-pvc-2: [SKIP][31] ([Intel XE#979]) -> [FAIL][32]
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-pvc-2: [SKIP][33] ([Intel XE#531]) -> [FAIL][34]
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-pvc-2: [SKIP][35] ([Intel XE#3342]) -> [FAIL][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
[Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8 -> xe-pw-150192v4
IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8: e6e27e79a726f8bf333d13521aba32f6466035a8
xe-pw-150192v4: 150192v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/index.html
[-- Attachment #2: Type: text/html, Size: 10968 bytes --]
^ permalink raw reply [flat|nested] 26+ messages in thread* ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev5)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (8 preceding siblings ...)
2025-07-01 8:10 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-07-01 16:18 ` Patchwork
2025-07-01 16:19 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-07-01 16:18 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev5)
URL : https://patchwork.freedesktop.org/series/150192/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4172f0352fac8184817bca689f35cdadd935250f
Author: Matt Roper <matthew.d.roper@intel.com>
Date: Mon Jun 30 15:15:16 2025 -0700
drm/xe/xe_query: Use separate iterator while filling GT list
The 'id' value updated by for_each_gt() is the uapi GT ID of the GTs
being iterated over, and may skip over values if a GT is not present on
the device. Use a separate iterator for GT list array assignments to
ensure that the array will be filled properly on future platforms where
index in the GT query list may not match the uapi ID.
v2:
- Include the missing increment of the iterator. (Jonathan)
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
+ /mt/dim checkpatch a7091520e1e57b88990d2f3b92a20c7df416f416 drm-intel
8a2ea298c81f drm/xe: Export xe_step_name for kunit tests
-:9: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#9:
ERROR: modpost: "xe_step_name" [drivers/gpu/drm/xe/tests/xe_test.ko] undefined!
total: 0 errors, 1 warnings, 0 checks, 11 lines checked
1bf36fd14069 drm/xe: Track maximum GTs per tile on a per-platform basis
627a0496c01d drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
fe4b39306ca1 drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
9da3fe528900 drm/xe: Don't compare GT ID to GT count when determining valid GTs
-:41: WARNING:LONG_LINE: line length of 101 exceeds 100 columns
#41: FILE: drivers/gpu/drm/xe/xe_device.h:131:
+ for ((id__) = 0; (id__) < (xe__)->info.tile_count * (xe__)->info.max_gt_per_tile; (id__)++) \
total: 0 errors, 1 warnings, 0 checks, 50 lines checked
4172f0352fac drm/xe/xe_query: Use separate iterator while filling GT list
^ permalink raw reply [flat|nested] 26+ messages in thread* ✓ CI.KUnit: success for Future-proof for multi-tile + multi-GT cases (rev5)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (9 preceding siblings ...)
2025-07-01 16:18 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev5) Patchwork
@ 2025-07-01 16:19 ` Patchwork
2025-07-02 22:41 ` ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev4) Patchwork
2025-07-03 10:23 ` ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev5) Patchwork
12 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-07-01 16:19 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev5)
URL : https://patchwork.freedesktop.org/series/150192/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:18:47] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:18:51] 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
[16:19:18] Starting KUnit Kernel (1/1)...
[16:19:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:19:18] ================== guc_buf (11 subtests) ===================
[16:19:18] [PASSED] test_smallest
[16:19:18] [PASSED] test_largest
[16:19:18] [PASSED] test_granular
[16:19:18] [PASSED] test_unique
[16:19:18] [PASSED] test_overlap
[16:19:18] [PASSED] test_reusable
[16:19:18] [PASSED] test_too_big
[16:19:18] [PASSED] test_flush
[16:19:18] [PASSED] test_lookup
[16:19:18] [PASSED] test_data
[16:19:18] [PASSED] test_class
[16:19:18] ===================== [PASSED] guc_buf =====================
[16:19:18] =================== guc_dbm (7 subtests) ===================
[16:19:18] [PASSED] test_empty
[16:19:18] [PASSED] test_default
[16:19:18] ======================== test_size ========================
[16:19:18] [PASSED] 4
[16:19:18] [PASSED] 8
[16:19:18] [PASSED] 32
[16:19:18] [PASSED] 256
[16:19:18] ==================== [PASSED] test_size ====================
[16:19:18] ======================= test_reuse ========================
[16:19:18] [PASSED] 4
[16:19:18] [PASSED] 8
[16:19:18] [PASSED] 32
[16:19:18] [PASSED] 256
[16:19:18] =================== [PASSED] test_reuse ====================
[16:19:18] =================== test_range_overlap ====================
[16:19:18] [PASSED] 4
[16:19:18] [PASSED] 8
[16:19:18] [PASSED] 32
[16:19:18] [PASSED] 256
[16:19:18] =============== [PASSED] test_range_overlap ================
[16:19:18] =================== test_range_compact ====================
[16:19:18] [PASSED] 4
[16:19:18] [PASSED] 8
[16:19:18] [PASSED] 32
[16:19:18] [PASSED] 256
[16:19:18] =============== [PASSED] test_range_compact ================
[16:19:18] ==================== test_range_spare =====================
[16:19:18] [PASSED] 4
[16:19:18] [PASSED] 8
[16:19:18] [PASSED] 32
[16:19:18] [PASSED] 256
[16:19:18] ================ [PASSED] test_range_spare =================
[16:19:18] ===================== [PASSED] guc_dbm =====================
[16:19:18] =================== guc_idm (6 subtests) ===================
[16:19:18] [PASSED] bad_init
[16:19:18] [PASSED] no_init
[16:19:18] [PASSED] init_fini
[16:19:18] [PASSED] check_used
[16:19:18] [PASSED] check_quota
[16:19:18] [PASSED] check_all
[16:19:18] ===================== [PASSED] guc_idm =====================
[16:19:18] ================== no_relay (3 subtests) ===================
[16:19:18] [PASSED] xe_drops_guc2pf_if_not_ready
[16:19:18] [PASSED] xe_drops_guc2vf_if_not_ready
[16:19:18] [PASSED] xe_rejects_send_if_not_ready
[16:19:18] ==================== [PASSED] no_relay =====================
[16:19:18] ================== pf_relay (14 subtests) ==================
[16:19:18] [PASSED] pf_rejects_guc2pf_too_short
[16:19:18] [PASSED] pf_rejects_guc2pf_too_long
[16:19:18] [PASSED] pf_rejects_guc2pf_no_payload
[16:19:18] [PASSED] pf_fails_no_payload
[16:19:18] [PASSED] pf_fails_bad_origin
[16:19:18] [PASSED] pf_fails_bad_type
[16:19:18] [PASSED] pf_txn_reports_error
[16:19:18] [PASSED] pf_txn_sends_pf2guc
[16:19:18] [PASSED] pf_sends_pf2guc
[16:19:18] [SKIPPED] pf_loopback_nop
[16:19:18] [SKIPPED] pf_loopback_echo
[16:19:18] [SKIPPED] pf_loopback_fail
[16:19:18] [SKIPPED] pf_loopback_busy
[16:19:18] [SKIPPED] pf_loopback_retry
[16:19:18] ==================== [PASSED] pf_relay =====================
[16:19:18] ================== vf_relay (3 subtests) ===================
[16:19:18] [PASSED] vf_rejects_guc2vf_too_short
[16:19:18] [PASSED] vf_rejects_guc2vf_too_long
[16:19:18] [PASSED] vf_rejects_guc2vf_no_payload
[16:19:18] ==================== [PASSED] vf_relay =====================
[16:19:18] ================= pf_service (11 subtests) =================
[16:19:18] [PASSED] pf_negotiate_any
[16:19:18] [PASSED] pf_negotiate_base_match
[16:19:18] [PASSED] pf_negotiate_base_newer
[16:19:18] [PASSED] pf_negotiate_base_next
[16:19:18] [SKIPPED] pf_negotiate_base_older
[16:19:18] [PASSED] pf_negotiate_base_prev
[16:19:18] [PASSED] pf_negotiate_latest_match
[16:19:18] [PASSED] pf_negotiate_latest_newer
[16:19:18] [PASSED] pf_negotiate_latest_next
[16:19:18] [SKIPPED] pf_negotiate_latest_older
[16:19:18] [SKIPPED] pf_negotiate_latest_prev
[16:19:18] =================== [PASSED] pf_service ====================
[16:19:18] ===================== lmtt (1 subtest) =====================
[16:19:18] ======================== test_ops =========================
[16:19:18] [PASSED] 2-level
[16:19:18] [PASSED] multi-level
[16:19:18] ==================== [PASSED] test_ops =====================
[16:19:18] ====================== [PASSED] lmtt =======================
[16:19:18] =================== xe_mocs (2 subtests) ===================
[16:19:18] ================ xe_live_mocs_kernel_kunit ================
[16:19:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:19:18] ================ xe_live_mocs_reset_kunit =================
[16:19:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:19:18] ==================== [SKIPPED] xe_mocs =====================
[16:19:18] ================= xe_migrate (2 subtests) ==================
[16:19:18] ================= xe_migrate_sanity_kunit =================
[16:19:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:19:18] ================== xe_validate_ccs_kunit ==================
[16:19:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:19:18] =================== [SKIPPED] xe_migrate ===================
[16:19:18] ================== xe_dma_buf (1 subtest) ==================
[16:19:18] ==================== xe_dma_buf_kunit =====================
[16:19:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:19:18] =================== [SKIPPED] xe_dma_buf ===================
[16:19:18] ================= xe_bo_shrink (1 subtest) =================
[16:19:18] =================== xe_bo_shrink_kunit ====================
[16:19:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:19:18] ================== [SKIPPED] xe_bo_shrink ==================
[16:19:18] ==================== xe_bo (2 subtests) ====================
[16:19:18] ================== xe_ccs_migrate_kunit ===================
[16:19:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:19:18] ==================== xe_bo_evict_kunit ====================
[16:19:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:19:18] ===================== [SKIPPED] xe_bo ======================
[16:19:18] ==================== args (11 subtests) ====================
[16:19:18] [PASSED] count_args_test
[16:19:18] [PASSED] call_args_example
[16:19:18] [PASSED] call_args_test
[16:19:18] [PASSED] drop_first_arg_example
[16:19:18] [PASSED] drop_first_arg_test
[16:19:18] [PASSED] first_arg_example
[16:19:18] [PASSED] first_arg_test
[16:19:18] [PASSED] last_arg_example
[16:19:18] [PASSED] last_arg_test
[16:19:18] [PASSED] pick_arg_example
[16:19:18] [PASSED] sep_comma_example
[16:19:18] ====================== [PASSED] args =======================
[16:19:18] =================== xe_pci (3 subtests) ====================
[16:19:18] ==================== check_graphics_ip ====================
[16:19:18] [PASSED] 12.70 Xe_LPG
[16:19:18] [PASSED] 12.71 Xe_LPG
[16:19:18] [PASSED] 12.74 Xe_LPG+
[16:19:18] [PASSED] 20.01 Xe2_HPG
[16:19:18] [PASSED] 20.02 Xe2_HPG
[16:19:18] [PASSED] 20.04 Xe2_LPG
[16:19:18] [PASSED] 30.00 Xe3_LPG
[16:19:18] [PASSED] 30.01 Xe3_LPG
[16:19:18] [PASSED] 30.03 Xe3_LPG
[16:19:18] ================ [PASSED] check_graphics_ip ================
[16:19:18] ===================== check_media_ip ======================
[16:19:18] [PASSED] 13.00 Xe_LPM+
[16:19:18] [PASSED] 13.01 Xe2_HPM
[16:19:18] [PASSED] 20.00 Xe2_LPM
[16:19:18] [PASSED] 30.00 Xe3_LPM
[16:19:18] [PASSED] 30.02 Xe3_LPM
[16:19:18] ================= [PASSED] check_media_ip ==================
[16:19:18] ================= check_platform_gt_count =================
[16:19:18] [PASSED] 0x9A60 (TIGERLAKE)
[16:19:18] [PASSED] 0x9A68 (TIGERLAKE)
[16:19:18] [PASSED] 0x9A70 (TIGERLAKE)
[16:19:18] [PASSED] 0x9A40 (TIGERLAKE)
[16:19:18] [PASSED] 0x9A49 (TIGERLAKE)
[16:19:18] [PASSED] 0x9A59 (TIGERLAKE)
[16:19:18] [PASSED] 0x9A78 (TIGERLAKE)
[16:19:18] [PASSED] 0x9AC0 (TIGERLAKE)
[16:19:18] [PASSED] 0x9AC9 (TIGERLAKE)
[16:19:18] [PASSED] 0x9AD9 (TIGERLAKE)
[16:19:18] [PASSED] 0x9AF8 (TIGERLAKE)
[16:19:18] [PASSED] 0x4C80 (ROCKETLAKE)
[16:19:18] [PASSED] 0x4C8A (ROCKETLAKE)
[16:19:18] [PASSED] 0x4C8B (ROCKETLAKE)
[16:19:18] [PASSED] 0x4C8C (ROCKETLAKE)
[16:19:18] [PASSED] 0x4C90 (ROCKETLAKE)
[16:19:18] [PASSED] 0x4C9A (ROCKETLAKE)
[16:19:18] [PASSED] 0x4680 (ALDERLAKE_S)
[16:19:18] [PASSED] 0x4682 (ALDERLAKE_S)
[16:19:18] [PASSED] 0x4688 (ALDERLAKE_S)
[16:19:18] [PASSED] 0x468A (ALDERLAKE_S)
[16:19:18] [PASSED] 0x468B (ALDERLAKE_S)
[16:19:18] [PASSED] 0x4690 (ALDERLAKE_S)
[16:19:18] [PASSED] 0x4692 (ALDERLAKE_S)
[16:19:18] [PASSED] 0x4693 (ALDERLAKE_S)
[16:19:18] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46AA (ALDERLAKE_P)
[16:19:18] [PASSED] 0x462A (ALDERLAKE_P)
[16:19:18] [PASSED] 0x4626 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x4628 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:19:18] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:19:18] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:19:18] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:19:18] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:19:18] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:19:18] [PASSED] 0xA721 (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA720 (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:19:18] [PASSED] 0xA780 (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA781 (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA782 (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA783 (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA788 (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA789 (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA78A (ALDERLAKE_S)
[16:19:18] [PASSED] 0xA78B (ALDERLAKE_S)
[16:19:18] [PASSED] 0x4905 (DG1)
[16:19:18] [PASSED] 0x4906 (DG1)
[16:19:18] [PASSED] 0x4907 (DG1)
[16:19:18] [PASSED] 0x4908 (DG1)
[16:19:18] [PASSED] 0x4909 (DG1)
[16:19:18] [PASSED] 0x56C0 (DG2)
[16:19:18] [PASSED] 0x56C2 (DG2)
[16:19:18] [PASSED] 0x56C1 (DG2)
[16:19:18] [PASSED] 0x7D51 (METEORLAKE)
[16:19:18] [PASSED] 0x7DD1 (METEORLAKE)
[16:19:18] [PASSED] 0x7D41 (METEORLAKE)
[16:19:18] [PASSED] 0x7D67 (METEORLAKE)
[16:19:18] [PASSED] 0xB640 (METEORLAKE)
[16:19:18] [PASSED] 0x56A0 (DG2)
[16:19:18] [PASSED] 0x56A1 (DG2)
[16:19:18] [PASSED] 0x56A2 (DG2)
[16:19:18] [PASSED] 0x56BE (DG2)
[16:19:18] [PASSED] 0x56BF (DG2)
[16:19:18] [PASSED] 0x5690 (DG2)
[16:19:18] [PASSED] 0x5691 (DG2)
[16:19:18] [PASSED] 0x5692 (DG2)
[16:19:18] [PASSED] 0x56A5 (DG2)
[16:19:18] [PASSED] 0x56A6 (DG2)
[16:19:18] [PASSED] 0x56B0 (DG2)
[16:19:18] [PASSED] 0x56B1 (DG2)
[16:19:18] [PASSED] 0x56BA (DG2)
[16:19:18] [PASSED] 0x56BB (DG2)
[16:19:18] [PASSED] 0x56BC (DG2)
[16:19:18] [PASSED] 0x56BD (DG2)
[16:19:18] [PASSED] 0x5693 (DG2)
[16:19:18] [PASSED] 0x5694 (DG2)
[16:19:18] [PASSED] 0x5695 (DG2)
[16:19:18] [PASSED] 0x56A3 (DG2)
[16:19:18] [PASSED] 0x56A4 (DG2)
[16:19:18] [PASSED] 0x56B2 (DG2)
[16:19:18] [PASSED] 0x56B3 (DG2)
[16:19:18] [PASSED] 0x5696 (DG2)
[16:19:18] [PASSED] 0x5697 (DG2)
[16:19:18] [PASSED] 0xB69 (PVC)
[16:19:18] [PASSED] 0xB6E (PVC)
[16:19:18] [PASSED] 0xBD4 (PVC)
[16:19:18] [PASSED] 0xBD5 (PVC)
[16:19:18] [PASSED] 0xBD6 (PVC)
[16:19:18] [PASSED] 0xBD7 (PVC)
[16:19:18] [PASSED] 0xBD8 (PVC)
[16:19:18] [PASSED] 0xBD9 (PVC)
[16:19:18] [PASSED] 0xBDA (PVC)
[16:19:18] [PASSED] 0xBDB (PVC)
[16:19:18] [PASSED] 0xBE0 (PVC)
[16:19:18] [PASSED] 0xBE1 (PVC)
[16:19:18] [PASSED] 0xBE5 (PVC)
[16:19:18] [PASSED] 0x7D40 (METEORLAKE)
[16:19:18] [PASSED] 0x7D45 (METEORLAKE)
[16:19:18] [PASSED] 0x7D55 (METEORLAKE)
[16:19:18] [PASSED] 0x7D60 (METEORLAKE)
[16:19:18] [PASSED] 0x7DD5 (METEORLAKE)
[16:19:18] [PASSED] 0x6420 (LUNARLAKE)
[16:19:18] [PASSED] 0x64A0 (LUNARLAKE)
[16:19:18] [PASSED] 0x64B0 (LUNARLAKE)
[16:19:18] [PASSED] 0xE202 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE20B (BATTLEMAGE)
[16:19:18] [PASSED] 0xE20C (BATTLEMAGE)
[16:19:18] [PASSED] 0xE20D (BATTLEMAGE)
[16:19:18] [PASSED] 0xE210 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE211 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE212 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE216 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE220 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE221 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE222 (BATTLEMAGE)
[16:19:18] [PASSED] 0xE223 (BATTLEMAGE)
[16:19:18] [PASSED] 0xB080 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB081 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB082 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB083 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB084 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB085 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB086 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB087 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB08F (PANTHERLAKE)
[16:19:18] [PASSED] 0xB090 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:19:18] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:19:18] [PASSED] 0xFD80 (PANTHERLAKE)
[16:19:18] [PASSED] 0xFD81 (PANTHERLAKE)
[16:19:18] ============= [PASSED] check_platform_gt_count =============
[16:19:18] ===================== [PASSED] xe_pci ======================
[16:19:18] =================== xe_rtp (2 subtests) ====================
[16:19:18] =============== xe_rtp_process_to_sr_tests ================
[16:19:18] [PASSED] coalesce-same-reg
[16:19:18] [PASSED] no-match-no-add
[16:19:18] [PASSED] match-or
[16:19:18] [PASSED] match-or-xfail
[16:19:18] [PASSED] no-match-no-add-multiple-rules
[16:19:18] [PASSED] two-regs-two-entries
[16:19:18] [PASSED] clr-one-set-other
[16:19:18] [PASSED] set-field
[16:19:18] [PASSED] conflict-duplicate
[16:19:18] [PASSED] conflict-not-disjoint
[16:19:18] [PASSED] conflict-reg-type
[16:19:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:19:18] ================== xe_rtp_process_tests ===================
[16:19:18] [PASSED] active1
[16:19:18] [PASSED] active2
[16:19:18] [PASSED] active-inactive
[16:19:18] [PASSED] inactive-active
[16:19:18] [PASSED] inactive-1st_or_active-inactive
[16:19:18] [PASSED] inactive-2nd_or_active-inactive
[16:19:18] [PASSED] inactive-last_or_active-inactive
[16:19:18] [PASSED] inactive-no_or_active-inactive
[16:19:18] ============== [PASSED] xe_rtp_process_tests ===============
[16:19:18] ===================== [PASSED] xe_rtp ======================
[16:19:18] ==================== xe_wa (1 subtest) =====================
[16:19:18] ======================== xe_wa_gt =========================
[16:19:18] [PASSED] TIGERLAKE (B0)
[16:19:18] [PASSED] DG1 (A0)
[16:19:18] [PASSED] DG1 (B0)
[16:19:18] [PASSED] ALDERLAKE_S (A0)
[16:19:18] [PASSED] ALDERLAKE_S (B0)
[16:19:18] [PASSED] ALDERLAKE_S (C0)
[16:19:18] [PASSED] ALDERLAKE_S (D0)
[16:19:18] [PASSED] ALDERLAKE_P (A0)
[16:19:18] [PASSED] ALDERLAKE_P (B0)
[16:19:18] [PASSED] ALDERLAKE_P (C0)
[16:19:18] [PASSED] ALDERLAKE_S_RPLS (D0)
[16:19:18] [PASSED] ALDERLAKE_P_RPLU (E0)
[16:19:18] [PASSED] DG2_G10 (C0)
[16:19:18] [PASSED] DG2_G11 (B1)
[16:19:18] [PASSED] DG2_G12 (A1)
[16:19:18] [PASSED] METEORLAKE (g:A0, m:A0)
[16:19:18] [PASSED] METEORLAKE (g:A0, m:A0)
[16:19:18] [PASSED] METEORLAKE (g:A0, m:A0)
[16:19:18] [PASSED] LUNARLAKE (g:A0, m:A0)
[16:19:18] [PASSED] LUNARLAKE (g:B0, m:A0)
[16:19:18] [PASSED] BATTLEMAGE (g:A0, m:A1)
stty: 'standard input': Inappropriate ioctl for device
[16:19:18] ==================== [PASSED] xe_wa_gt =====================
[16:19:18] ====================== [PASSED] xe_wa ======================
[16:19:18] ============================================================
[16:19:18] Testing complete. Ran 296 tests: passed: 280, skipped: 16
[16:19:18] Elapsed time: 31.365s total, 4.162s configuring, 26.836s building, 0.315s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:19:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:19:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[16:19:41] Starting KUnit Kernel (1/1)...
[16:19:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:19:41] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:19:41] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:19:41] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:19:41] =========== drm_validate_clone_mode (2 subtests) ===========
[16:19:41] ============== drm_test_check_in_clone_mode ===============
[16:19:41] [PASSED] in_clone_mode
[16:19:41] [PASSED] not_in_clone_mode
[16:19:41] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:19:41] =============== drm_test_check_valid_clones ===============
[16:19:41] [PASSED] not_in_clone_mode
[16:19:41] [PASSED] valid_clone
[16:19:41] [PASSED] invalid_clone
[16:19:41] =========== [PASSED] drm_test_check_valid_clones ===========
[16:19:41] ============= [PASSED] drm_validate_clone_mode =============
[16:19:41] ============= drm_validate_modeset (1 subtest) =============
[16:19:41] [PASSED] drm_test_check_connector_changed_modeset
[16:19:41] ============== [PASSED] drm_validate_modeset ===============
[16:19:41] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:19:41] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:19:41] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:19:41] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:19:41] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:19:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:19:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:19:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:19:41] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:19:41] ============== drm_bridge_alloc (2 subtests) ===============
[16:19:41] [PASSED] drm_test_drm_bridge_alloc_basic
[16:19:41] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:19:41] ================ [PASSED] drm_bridge_alloc =================
[16:19:41] ================== drm_buddy (7 subtests) ==================
[16:19:41] [PASSED] drm_test_buddy_alloc_limit
[16:19:41] [PASSED] drm_test_buddy_alloc_optimistic
[16:19:41] [PASSED] drm_test_buddy_alloc_pessimistic
[16:19:41] [PASSED] drm_test_buddy_alloc_pathological
[16:19:42] [PASSED] drm_test_buddy_alloc_contiguous
[16:19:42] [PASSED] drm_test_buddy_alloc_clear
[16:19:42] [PASSED] drm_test_buddy_alloc_range_bias
[16:19:42] ==================== [PASSED] drm_buddy ====================
[16:19:42] ============= drm_cmdline_parser (40 subtests) =============
[16:19:42] [PASSED] drm_test_cmdline_force_d_only
[16:19:42] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:19:42] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:19:42] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:19:42] [PASSED] drm_test_cmdline_force_e_only
[16:19:42] [PASSED] drm_test_cmdline_res
[16:19:42] [PASSED] drm_test_cmdline_res_vesa
[16:19:42] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:19:42] [PASSED] drm_test_cmdline_res_rblank
[16:19:42] [PASSED] drm_test_cmdline_res_bpp
[16:19:42] [PASSED] drm_test_cmdline_res_refresh
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:19:42] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:19:42] [PASSED] drm_test_cmdline_res_margins_force_on
[16:19:42] [PASSED] drm_test_cmdline_res_vesa_margins
[16:19:42] [PASSED] drm_test_cmdline_name
[16:19:42] [PASSED] drm_test_cmdline_name_bpp
[16:19:42] [PASSED] drm_test_cmdline_name_option
[16:19:42] [PASSED] drm_test_cmdline_name_bpp_option
[16:19:42] [PASSED] drm_test_cmdline_rotate_0
[16:19:42] [PASSED] drm_test_cmdline_rotate_90
[16:19:42] [PASSED] drm_test_cmdline_rotate_180
[16:19:42] [PASSED] drm_test_cmdline_rotate_270
[16:19:42] [PASSED] drm_test_cmdline_hmirror
[16:19:42] [PASSED] drm_test_cmdline_vmirror
[16:19:42] [PASSED] drm_test_cmdline_margin_options
[16:19:42] [PASSED] drm_test_cmdline_multiple_options
[16:19:42] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:19:42] [PASSED] drm_test_cmdline_extra_and_option
[16:19:42] [PASSED] drm_test_cmdline_freestanding_options
[16:19:42] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:19:42] [PASSED] drm_test_cmdline_panel_orientation
[16:19:42] ================ drm_test_cmdline_invalid =================
[16:19:42] [PASSED] margin_only
[16:19:42] [PASSED] interlace_only
[16:19:42] [PASSED] res_missing_x
[16:19:42] [PASSED] res_missing_y
[16:19:42] [PASSED] res_bad_y
[16:19:42] [PASSED] res_missing_y_bpp
[16:19:42] [PASSED] res_bad_bpp
[16:19:42] [PASSED] res_bad_refresh
[16:19:42] [PASSED] res_bpp_refresh_force_on_off
[16:19:42] [PASSED] res_invalid_mode
[16:19:42] [PASSED] res_bpp_wrong_place_mode
[16:19:42] [PASSED] name_bpp_refresh
[16:19:42] [PASSED] name_refresh
[16:19:42] [PASSED] name_refresh_wrong_mode
[16:19:42] [PASSED] name_refresh_invalid_mode
[16:19:42] [PASSED] rotate_multiple
[16:19:42] [PASSED] rotate_invalid_val
[16:19:42] [PASSED] rotate_truncated
[16:19:42] [PASSED] invalid_option
[16:19:42] [PASSED] invalid_tv_option
[16:19:42] [PASSED] truncated_tv_option
[16:19:42] ============ [PASSED] drm_test_cmdline_invalid =============
[16:19:42] =============== drm_test_cmdline_tv_options ===============
[16:19:42] [PASSED] NTSC
[16:19:42] [PASSED] NTSC_443
[16:19:42] [PASSED] NTSC_J
[16:19:42] [PASSED] PAL
[16:19:42] [PASSED] PAL_M
[16:19:42] [PASSED] PAL_N
[16:19:42] [PASSED] SECAM
[16:19:42] [PASSED] MONO_525
[16:19:42] [PASSED] MONO_625
[16:19:42] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:19:42] =============== [PASSED] drm_cmdline_parser ================
[16:19:42] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:19:42] [PASSED] drm_test_connector_hdmi_init_valid
[16:19:42] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:19:42] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:19:42] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:19:42] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:19:42] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:19:42] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:19:42] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:19:42] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:19:42] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:19:42] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:19:42] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:19:42] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:19:42] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:19:42] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:19:42] [PASSED] drm_test_connector_hdmi_init_null_product
[16:19:42] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:19:42] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:19:42] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:19:42] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:19:42] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:19:42] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:19:42] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:19:42] ========= drm_test_connector_hdmi_init_type_valid =========
[16:19:42] [PASSED] HDMI-A
[16:19:42] [PASSED] HDMI-B
[16:19:42] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:19:42] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:19:42] [PASSED] Unknown
[16:19:42] [PASSED] VGA
[16:19:42] [PASSED] DVI-I
[16:19:42] [PASSED] DVI-D
[16:19:42] [PASSED] DVI-A
[16:19:42] [PASSED] Composite
[16:19:42] [PASSED] SVIDEO
[16:19:42] [PASSED] LVDS
[16:19:42] [PASSED] Component
[16:19:42] [PASSED] DIN
[16:19:42] [PASSED] DP
[16:19:42] [PASSED] TV
[16:19:42] [PASSED] eDP
[16:19:42] [PASSED] Virtual
[16:19:42] [PASSED] DSI
[16:19:42] [PASSED] DPI
[16:19:42] [PASSED] Writeback
[16:19:42] [PASSED] SPI
[16:19:42] [PASSED] USB
[16:19:42] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:19:42] ============ [PASSED] drmm_connector_hdmi_init =============
[16:19:42] ============= drmm_connector_init (3 subtests) =============
[16:19:42] [PASSED] drm_test_drmm_connector_init
[16:19:42] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:19:42] ========= drm_test_drmm_connector_init_type_valid =========
[16:19:42] [PASSED] Unknown
[16:19:42] [PASSED] VGA
[16:19:42] [PASSED] DVI-I
[16:19:42] [PASSED] DVI-D
[16:19:42] [PASSED] DVI-A
[16:19:42] [PASSED] Composite
[16:19:42] [PASSED] SVIDEO
[16:19:42] [PASSED] LVDS
[16:19:42] [PASSED] Component
[16:19:42] [PASSED] DIN
[16:19:42] [PASSED] DP
[16:19:42] [PASSED] HDMI-A
[16:19:42] [PASSED] HDMI-B
[16:19:42] [PASSED] TV
[16:19:42] [PASSED] eDP
[16:19:42] [PASSED] Virtual
[16:19:42] [PASSED] DSI
[16:19:42] [PASSED] DPI
[16:19:42] [PASSED] Writeback
[16:19:42] [PASSED] SPI
[16:19:42] [PASSED] USB
[16:19:42] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:19:42] =============== [PASSED] drmm_connector_init ===============
[16:19:42] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_init
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:19:42] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:19:42] [PASSED] Unknown
[16:19:42] [PASSED] VGA
[16:19:42] [PASSED] DVI-I
[16:19:42] [PASSED] DVI-D
[16:19:42] [PASSED] DVI-A
[16:19:42] [PASSED] Composite
[16:19:42] [PASSED] SVIDEO
[16:19:42] [PASSED] LVDS
[16:19:42] [PASSED] Component
[16:19:42] [PASSED] DIN
[16:19:42] [PASSED] DP
[16:19:42] [PASSED] HDMI-A
[16:19:42] [PASSED] HDMI-B
[16:19:42] [PASSED] TV
[16:19:42] [PASSED] eDP
[16:19:42] [PASSED] Virtual
[16:19:42] [PASSED] DSI
[16:19:42] [PASSED] DPI
[16:19:42] [PASSED] Writeback
[16:19:42] [PASSED] SPI
[16:19:42] [PASSED] USB
[16:19:42] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:19:42] ======== drm_test_drm_connector_dynamic_init_name =========
[16:19:42] [PASSED] Unknown
[16:19:42] [PASSED] VGA
[16:19:42] [PASSED] DVI-I
[16:19:42] [PASSED] DVI-D
[16:19:42] [PASSED] DVI-A
[16:19:42] [PASSED] Composite
[16:19:42] [PASSED] SVIDEO
[16:19:42] [PASSED] LVDS
[16:19:42] [PASSED] Component
[16:19:42] [PASSED] DIN
[16:19:42] [PASSED] DP
[16:19:42] [PASSED] HDMI-A
[16:19:42] [PASSED] HDMI-B
[16:19:42] [PASSED] TV
[16:19:42] [PASSED] eDP
[16:19:42] [PASSED] Virtual
[16:19:42] [PASSED] DSI
[16:19:42] [PASSED] DPI
[16:19:42] [PASSED] Writeback
[16:19:42] [PASSED] SPI
[16:19:42] [PASSED] USB
[16:19:42] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:19:42] =========== [PASSED] drm_connector_dynamic_init ============
[16:19:42] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:19:42] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:19:42] ======= drm_connector_dynamic_register (7 subtests) ========
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:19:42] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:19:42] ========= [PASSED] drm_connector_dynamic_register ==========
[16:19:42] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:19:42] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:19:42] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:19:42] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:19:42] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:19:42] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:19:42] [PASSED] NTSC
[16:19:42] [PASSED] NTSC-443
[16:19:42] [PASSED] NTSC-J
[16:19:42] [PASSED] PAL
[16:19:42] [PASSED] PAL-M
[16:19:42] [PASSED] PAL-N
[16:19:42] [PASSED] SECAM
[16:19:42] [PASSED] Mono
[16:19:42] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:19:42] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:19:42] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:19:42] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:19:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:19:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:19:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:19:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:19:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:19:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:19:42] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:19:42] [PASSED] VIC 96
[16:19:42] [PASSED] VIC 97
[16:19:42] [PASSED] VIC 101
[16:19:42] [PASSED] VIC 102
[16:19:42] [PASSED] VIC 106
[16:19:42] [PASSED] VIC 107
[16:19:42] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:19:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:19:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:19:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:19:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:19:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:19:42] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:19:42] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:19:42] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:19:42] [PASSED] Automatic
[16:19:42] [PASSED] Full
[16:19:42] [PASSED] Limited 16:235
[16:19:42] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:19:42] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:19:42] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:19:42] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:19:42] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:19:42] [PASSED] RGB
[16:19:42] [PASSED] YUV 4:2:0
[16:19:42] [PASSED] YUV 4:2:2
[16:19:42] [PASSED] YUV 4:4:4
[16:19:42] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:19:42] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:19:42] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:19:42] ============= drm_damage_helper (21 subtests) ==============
[16:19:42] [PASSED] drm_test_damage_iter_no_damage
[16:19:42] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:19:42] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:19:42] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:19:42] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:19:42] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:19:42] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:19:42] [PASSED] drm_test_damage_iter_simple_damage
[16:19:42] [PASSED] drm_test_damage_iter_single_damage
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:19:42] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:19:42] [PASSED] drm_test_damage_iter_damage
[16:19:42] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:19:42] [PASSED] drm_test_damage_iter_damage_one_outside
[16:19:42] [PASSED] drm_test_damage_iter_damage_src_moved
[16:19:42] [PASSED] drm_test_damage_iter_damage_not_visible
[16:19:42] ================ [PASSED] drm_damage_helper ================
[16:19:42] ============== drm_dp_mst_helper (3 subtests) ==============
[16:19:42] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:19:42] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:19:42] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:19:42] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:19:42] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:19:42] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:19:42] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:19:42] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:19:42] [PASSED] Link rate 2000000 lane count 4
[16:19:42] [PASSED] Link rate 2000000 lane count 2
[16:19:42] [PASSED] Link rate 2000000 lane count 1
[16:19:42] [PASSED] Link rate 1350000 lane count 4
[16:19:42] [PASSED] Link rate 1350000 lane count 2
[16:19:42] [PASSED] Link rate 1350000 lane count 1
[16:19:42] [PASSED] Link rate 1000000 lane count 4
[16:19:42] [PASSED] Link rate 1000000 lane count 2
[16:19:42] [PASSED] Link rate 1000000 lane count 1
[16:19:42] [PASSED] Link rate 810000 lane count 4
[16:19:42] [PASSED] Link rate 810000 lane count 2
[16:19:42] [PASSED] Link rate 810000 lane count 1
[16:19:42] [PASSED] Link rate 540000 lane count 4
[16:19:42] [PASSED] Link rate 540000 lane count 2
[16:19:42] [PASSED] Link rate 540000 lane count 1
[16:19:42] [PASSED] Link rate 270000 lane count 4
[16:19:42] [PASSED] Link rate 270000 lane count 2
[16:19:42] [PASSED] Link rate 270000 lane count 1
[16:19:42] [PASSED] Link rate 162000 lane count 4
[16:19:42] [PASSED] Link rate 162000 lane count 2
[16:19:42] [PASSED] Link rate 162000 lane count 1
[16:19:42] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:19:42] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:19:42] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:19:42] [PASSED] DP_POWER_UP_PHY with port number
[16:19:42] [PASSED] DP_POWER_DOWN_PHY with port number
[16:19:42] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:19:42] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:19:42] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:19:42] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:19:42] [PASSED] DP_QUERY_PAYLOAD with port number
[16:19:42] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:19:42] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:19:42] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:19:42] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:19:42] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:19:42] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:19:42] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:19:42] [PASSED] DP_REMOTE_I2C_READ with port number
[16:19:42] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:19:42] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:19:42] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:19:42] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:19:42] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:19:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:19:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:19:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:19:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:19:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:19:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:19:42] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:19:42] ================ [PASSED] drm_dp_mst_helper ================
[16:19:42] ================== drm_exec (7 subtests) ===================
[16:19:42] [PASSED] sanitycheck
[16:19:42] [PASSED] test_lock
[16:19:42] [PASSED] test_lock_unlock
[16:19:42] [PASSED] test_duplicates
[16:19:42] [PASSED] test_prepare
[16:19:42] [PASSED] test_prepare_array
[16:19:42] [PASSED] test_multiple_loops
[16:19:42] ==================== [PASSED] drm_exec =====================
[16:19:42] =========== drm_format_helper_test (17 subtests) ===========
[16:19:42] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:19:42] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:19:42] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:19:42] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:19:42] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:19:42] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:19:42] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:19:42] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:19:42] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:19:42] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:19:42] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:19:42] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:19:42] ==================== drm_test_fb_swab =====================
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ================ [PASSED] drm_test_fb_swab =================
[16:19:42] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:19:42] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:19:42] [PASSED] single_pixel_source_buffer
[16:19:42] [PASSED] single_pixel_clip_rectangle
[16:19:42] [PASSED] well_known_colors
[16:19:42] [PASSED] destination_pitch
[16:19:42] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:19:42] ================= drm_test_fb_clip_offset =================
[16:19:42] [PASSED] pass through
[16:19:42] [PASSED] horizontal offset
[16:19:42] [PASSED] vertical offset
[16:19:42] [PASSED] horizontal and vertical offset
[16:19:42] [PASSED] horizontal offset (custom pitch)
[16:19:42] [PASSED] vertical offset (custom pitch)
[16:19:42] [PASSED] horizontal and vertical offset (custom pitch)
[16:19:42] ============= [PASSED] drm_test_fb_clip_offset =============
[16:19:42] =================== drm_test_fb_memcpy ====================
[16:19:42] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:19:42] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:19:42] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:19:42] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:19:42] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:19:42] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:19:42] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:19:42] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:19:42] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:19:42] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:19:42] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:19:42] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:19:42] =============== [PASSED] drm_test_fb_memcpy ================
[16:19:42] ============= [PASSED] drm_format_helper_test ==============
[16:19:42] ================= drm_format (18 subtests) =================
[16:19:42] [PASSED] drm_test_format_block_width_invalid
[16:19:42] [PASSED] drm_test_format_block_width_one_plane
[16:19:42] [PASSED] drm_test_format_block_width_two_plane
[16:19:42] [PASSED] drm_test_format_block_width_three_plane
[16:19:42] [PASSED] drm_test_format_block_width_tiled
[16:19:42] [PASSED] drm_test_format_block_height_invalid
[16:19:42] [PASSED] drm_test_format_block_height_one_plane
[16:19:42] [PASSED] drm_test_format_block_height_two_plane
[16:19:42] [PASSED] drm_test_format_block_height_three_plane
[16:19:42] [PASSED] drm_test_format_block_height_tiled
[16:19:42] [PASSED] drm_test_format_min_pitch_invalid
[16:19:42] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:19:42] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:19:42] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:19:42] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:19:42] [PASSED] drm_test_format_min_pitch_two_plane
[16:19:42] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:19:42] [PASSED] drm_test_format_min_pitch_tiled
[16:19:42] =================== [PASSED] drm_format ====================
[16:19:42] ============== drm_framebuffer (10 subtests) ===============
[16:19:42] ========== drm_test_framebuffer_check_src_coords ==========
[16:19:42] [PASSED] Success: source fits into fb
[16:19:42] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:19:42] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:19:42] [PASSED] Fail: overflowing fb with source width
[16:19:42] [PASSED] Fail: overflowing fb with source height
[16:19:42] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:19:42] [PASSED] drm_test_framebuffer_cleanup
[16:19:42] =============== drm_test_framebuffer_create ===============
[16:19:42] [PASSED] ABGR8888 normal sizes
[16:19:42] [PASSED] ABGR8888 max sizes
[16:19:42] [PASSED] ABGR8888 pitch greater than min required
[16:19:42] [PASSED] ABGR8888 pitch less than min required
[16:19:42] [PASSED] ABGR8888 Invalid width
[16:19:42] [PASSED] ABGR8888 Invalid buffer handle
[16:19:42] [PASSED] No pixel format
[16:19:42] [PASSED] ABGR8888 Width 0
[16:19:42] [PASSED] ABGR8888 Height 0
[16:19:42] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:19:42] [PASSED] ABGR8888 Large buffer offset
[16:19:42] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:19:42] [PASSED] ABGR8888 Invalid flag
[16:19:42] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:19:42] [PASSED] ABGR8888 Valid buffer modifier
[16:19:42] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:19:42] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] NV12 Normal sizes
[16:19:42] [PASSED] NV12 Max sizes
[16:19:42] [PASSED] NV12 Invalid pitch
[16:19:42] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:19:42] [PASSED] NV12 different modifier per-plane
[16:19:42] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:19:42] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] NV12 Modifier for inexistent plane
[16:19:42] [PASSED] NV12 Handle for inexistent plane
[16:19:42] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:19:42] [PASSED] YVU420 Normal sizes
[16:19:42] [PASSED] YVU420 Max sizes
[16:19:42] [PASSED] YVU420 Invalid pitch
[16:19:42] [PASSED] YVU420 Different pitches
[16:19:42] [PASSED] YVU420 Different buffer offsets/pitches
[16:19:42] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:19:42] [PASSED] YVU420 Valid modifier
[16:19:42] [PASSED] YVU420 Different modifiers per plane
[16:19:42] [PASSED] YVU420 Modifier for inexistent plane
[16:19:42] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:19:42] [PASSED] X0L2 Normal sizes
[16:19:42] [PASSED] X0L2 Max sizes
[16:19:42] [PASSED] X0L2 Invalid pitch
[16:19:42] [PASSED] X0L2 Pitch greater than minimum required
[16:19:42] [PASSED] X0L2 Handle for inexistent plane
[16:19:42] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:19:42] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:19:42] [PASSED] X0L2 Valid modifier
[16:19:42] [PASSED] X0L2 Modifier for inexistent plane
[16:19:42] =========== [PASSED] drm_test_framebuffer_create ===========
[16:19:42] [PASSED] drm_test_framebuffer_free
[16:19:42] [PASSED] drm_test_framebuffer_init
[16:19:42] [PASSED] drm_test_framebuffer_init_bad_format
[16:19:42] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:19:42] [PASSED] drm_test_framebuffer_lookup
[16:19:42] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:19:42] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:19:42] ================= [PASSED] drm_framebuffer =================
[16:19:42] ================ drm_gem_shmem (8 subtests) ================
[16:19:42] [PASSED] drm_gem_shmem_test_obj_create
[16:19:42] [PASSED] drm_gem_shmem_test_obj_create_private
[16:19:42] [PASSED] drm_gem_shmem_test_pin_pages
[16:19:42] [PASSED] drm_gem_shmem_test_vmap
[16:19:42] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:19:42] [PASSED] drm_gem_shmem_test_get_sg_table
[16:19:42] [PASSED] drm_gem_shmem_test_madvise
[16:19:42] [PASSED] drm_gem_shmem_test_purge
[16:19:42] ================== [PASSED] drm_gem_shmem ==================
[16:19:42] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:19:42] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:19:42] [PASSED] Automatic
[16:19:42] [PASSED] Full
[16:19:42] [PASSED] Limited 16:235
[16:19:42] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:19:42] [PASSED] drm_test_check_disable_connector
[16:19:42] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:19:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:19:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:19:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:19:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:19:42] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:19:42] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:19:42] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:19:42] [PASSED] drm_test_check_output_bpc_dvi
[16:19:42] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:19:42] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:19:42] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:19:42] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:19:42] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:19:42] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:19:42] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:19:42] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:19:42] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:19:42] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:19:42] [PASSED] drm_test_check_broadcast_rgb_value
[16:19:42] [PASSED] drm_test_check_bpc_8_value
[16:19:42] [PASSED] drm_test_check_bpc_10_value
[16:19:42] [PASSED] drm_test_check_bpc_12_value
[16:19:42] [PASSED] drm_test_check_format_value
[16:19:42] [PASSED] drm_test_check_tmds_char_value
[16:19:42] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:19:42] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:19:42] [PASSED] drm_test_check_mode_valid
[16:19:42] [PASSED] drm_test_check_mode_valid_reject
[16:19:42] [PASSED] drm_test_check_mode_valid_reject_rate
[16:19:42] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:19:42] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:19:42] ================= drm_managed (2 subtests) =================
[16:19:42] [PASSED] drm_test_managed_release_action
[16:19:42] [PASSED] drm_test_managed_run_action
[16:19:42] =================== [PASSED] drm_managed ===================
[16:19:42] =================== drm_mm (6 subtests) ====================
[16:19:42] [PASSED] drm_test_mm_init
[16:19:42] [PASSED] drm_test_mm_debug
[16:19:42] [PASSED] drm_test_mm_align32
[16:19:42] [PASSED] drm_test_mm_align64
[16:19:42] [PASSED] drm_test_mm_lowest
[16:19:42] [PASSED] drm_test_mm_highest
[16:19:42] ===================== [PASSED] drm_mm ======================
[16:19:42] ============= drm_modes_analog_tv (5 subtests) =============
[16:19:42] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:19:42] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:19:42] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:19:42] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:19:42] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:19:42] =============== [PASSED] drm_modes_analog_tv ===============
[16:19:42] ============== drm_plane_helper (2 subtests) ===============
[16:19:42] =============== drm_test_check_plane_state ================
[16:19:42] [PASSED] clipping_simple
[16:19:42] [PASSED] clipping_rotate_reflect
[16:19:42] [PASSED] positioning_simple
[16:19:42] [PASSED] upscaling
[16:19:42] [PASSED] downscaling
[16:19:42] [PASSED] rounding1
[16:19:42] [PASSED] rounding2
[16:19:42] [PASSED] rounding3
[16:19:42] [PASSED] rounding4
[16:19:42] =========== [PASSED] drm_test_check_plane_state ============
[16:19:42] =========== drm_test_check_invalid_plane_state ============
[16:19:42] [PASSED] positioning_invalid
[16:19:42] [PASSED] upscaling_invalid
[16:19:42] [PASSED] downscaling_invalid
[16:19:42] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:19:42] ================ [PASSED] drm_plane_helper =================
[16:19:42] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:19:42] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:19:42] [PASSED] None
[16:19:42] [PASSED] PAL
[16:19:42] [PASSED] NTSC
[16:19:42] [PASSED] Both, NTSC Default
[16:19:42] [PASSED] Both, PAL Default
[16:19:42] [PASSED] Both, NTSC Default, with PAL on command-line
[16:19:42] [PASSED] Both, PAL Default, with NTSC on command-line
[16:19:42] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:19:42] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:19:42] ================== drm_rect (9 subtests) ===================
[16:19:42] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:19:42] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:19:42] [PASSED] drm_test_rect_clip_scaled_clipped
[16:19:42] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:19:42] ================= drm_test_rect_intersect =================
[16:19:42] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:19:42] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:19:42] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:19:42] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:19:42] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:19:42] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:19:42] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:19:42] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:19:42] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:19:42] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:19:42] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:19:42] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:19:42] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:19:42] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:19:42] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:19:42] ============= [PASSED] drm_test_rect_intersect =============
[16:19:42] ================ drm_test_rect_calc_hscale ================
[16:19:42] [PASSED] normal use
[16:19:42] [PASSED] out of max range
[16:19:42] [PASSED] out of min range
[16:19:42] [PASSED] zero dst
[16:19:42] [PASSED] negative src
[16:19:42] [PASSED] negative dst
[16:19:42] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:19:42] ================ drm_test_rect_calc_vscale ================
[16:19:42] [PASSED] normal use
[16:19:42] [PASSED] out of max range
[16:19:42] [PASSED] out of min range
[16:19:42] [PASSED] zero dst
[16:19:42] [PASSED] negative src
[16:19:42] [PASSED] negative dst
[16:19:42] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:19:42] ================== drm_test_rect_rotate ===================
[16:19:42] [PASSED] reflect-x
[16:19:42] [PASSED] reflect-y
[16:19:42] [PASSED] rotate-0
[16:19:42] [PASSED] rotate-90
[16:19:42] [PASSED] rotate-180
[16:19:42] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[16:19:42] ============== [PASSED] drm_test_rect_rotate ===============
[16:19:42] ================ drm_test_rect_rotate_inv =================
[16:19:42] [PASSED] reflect-x
[16:19:42] [PASSED] reflect-y
[16:19:42] [PASSED] rotate-0
[16:19:42] [PASSED] rotate-90
[16:19:42] [PASSED] rotate-180
[16:19:42] [PASSED] rotate-270
[16:19:42] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:19:42] ==================== [PASSED] drm_rect =====================
[16:19:42] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:19:42] ============ drm_test_sysfb_build_fourcc_list =============
[16:19:42] [PASSED] no native formats
[16:19:42] [PASSED] XRGB8888 as native format
[16:19:42] [PASSED] remove duplicates
[16:19:42] [PASSED] convert alpha formats
[16:19:42] [PASSED] random formats
[16:19:42] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:19:42] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:19:42] ============================================================
[16:19:42] Testing complete. Ran 616 tests: passed: 616
[16:19:42] Elapsed time: 23.152s total, 1.665s configuring, 21.319s building, 0.145s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:19:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:19:43] 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
[16:19:51] Starting KUnit Kernel (1/1)...
[16:19:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:19:51] ================= ttm_device (5 subtests) ==================
[16:19:51] [PASSED] ttm_device_init_basic
[16:19:51] [PASSED] ttm_device_init_multiple
[16:19:51] [PASSED] ttm_device_fini_basic
[16:19:51] [PASSED] ttm_device_init_no_vma_man
[16:19:51] ================== ttm_device_init_pools ==================
[16:19:51] [PASSED] No DMA allocations, no DMA32 required
[16:19:51] [PASSED] DMA allocations, DMA32 required
[16:19:51] [PASSED] No DMA allocations, DMA32 required
[16:19:51] [PASSED] DMA allocations, no DMA32 required
[16:19:51] ============== [PASSED] ttm_device_init_pools ==============
[16:19:51] =================== [PASSED] ttm_device ====================
[16:19:51] ================== ttm_pool (8 subtests) ===================
[16:19:51] ================== ttm_pool_alloc_basic ===================
[16:19:51] [PASSED] One page
[16:19:51] [PASSED] More than one page
[16:19:51] [PASSED] Above the allocation limit
[16:19:51] [PASSED] One page, with coherent DMA mappings enabled
[16:19:51] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:19:51] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:19:51] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:19:51] [PASSED] One page
[16:19:51] [PASSED] More than one page
[16:19:51] [PASSED] Above the allocation limit
[16:19:51] [PASSED] One page, with coherent DMA mappings enabled
[16:19:51] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:19:51] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:19:51] [PASSED] ttm_pool_alloc_order_caching_match
[16:19:51] [PASSED] ttm_pool_alloc_caching_mismatch
[16:19:51] [PASSED] ttm_pool_alloc_order_mismatch
[16:19:51] [PASSED] ttm_pool_free_dma_alloc
[16:19:51] [PASSED] ttm_pool_free_no_dma_alloc
[16:19:51] [PASSED] ttm_pool_fini_basic
[16:19:51] ==================== [PASSED] ttm_pool =====================
[16:19:51] ================ ttm_resource (8 subtests) =================
[16:19:51] ================= ttm_resource_init_basic =================
[16:19:51] [PASSED] Init resource in TTM_PL_SYSTEM
[16:19:51] [PASSED] Init resource in TTM_PL_VRAM
[16:19:51] [PASSED] Init resource in a private placement
[16:19:51] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:19:51] ============= [PASSED] ttm_resource_init_basic =============
[16:19:51] [PASSED] ttm_resource_init_pinned
[16:19:51] [PASSED] ttm_resource_fini_basic
[16:19:51] [PASSED] ttm_resource_manager_init_basic
[16:19:51] [PASSED] ttm_resource_manager_usage_basic
[16:19:51] [PASSED] ttm_resource_manager_set_used_basic
[16:19:51] [PASSED] ttm_sys_man_alloc_basic
[16:19:51] [PASSED] ttm_sys_man_free_basic
[16:19:51] ================== [PASSED] ttm_resource ===================
[16:19:51] =================== ttm_tt (15 subtests) ===================
[16:19:51] ==================== ttm_tt_init_basic ====================
[16:19:51] [PASSED] Page-aligned size
[16:19:51] [PASSED] Extra pages requested
[16:19:51] ================ [PASSED] ttm_tt_init_basic ================
[16:19:51] [PASSED] ttm_tt_init_misaligned
[16:19:51] [PASSED] ttm_tt_fini_basic
[16:19:51] [PASSED] ttm_tt_fini_sg
[16:19:51] [PASSED] ttm_tt_fini_shmem
[16:19:51] [PASSED] ttm_tt_create_basic
[16:19:51] [PASSED] ttm_tt_create_invalid_bo_type
[16:19:51] [PASSED] ttm_tt_create_ttm_exists
[16:19:51] [PASSED] ttm_tt_create_failed
[16:19:51] [PASSED] ttm_tt_destroy_basic
[16:19:51] [PASSED] ttm_tt_populate_null_ttm
[16:19:51] [PASSED] ttm_tt_populate_populated_ttm
[16:19:51] [PASSED] ttm_tt_unpopulate_basic
[16:19:51] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:19:51] [PASSED] ttm_tt_swapin_basic
[16:19:51] ===================== [PASSED] ttm_tt ======================
[16:19:51] =================== ttm_bo (14 subtests) ===================
[16:19:51] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:19:51] [PASSED] Cannot be interrupted and sleeps
[16:19:51] [PASSED] Cannot be interrupted, locks straight away
[16:19:51] [PASSED] Can be interrupted, sleeps
[16:19:51] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:19:51] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:19:51] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:19:51] [PASSED] ttm_bo_reserve_double_resv
[16:19:51] [PASSED] ttm_bo_reserve_interrupted
[16:19:51] [PASSED] ttm_bo_reserve_deadlock
[16:19:51] [PASSED] ttm_bo_unreserve_basic
[16:19:51] [PASSED] ttm_bo_unreserve_pinned
[16:19:51] [PASSED] ttm_bo_unreserve_bulk
[16:19:51] [PASSED] ttm_bo_put_basic
[16:19:51] [PASSED] ttm_bo_put_shared_resv
[16:19:51] [PASSED] ttm_bo_pin_basic
[16:19:51] [PASSED] ttm_bo_pin_unpin_resource
[16:19:51] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:19:51] ===================== [PASSED] ttm_bo ======================
[16:19:51] ============== ttm_bo_validate (22 subtests) ===============
[16:19:51] ============== ttm_bo_init_reserved_sys_man ===============
[16:19:51] [PASSED] Buffer object for userspace
[16:19:51] [PASSED] Kernel buffer object
[16:19:51] [PASSED] Shared buffer object
[16:19:51] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:19:51] ============== ttm_bo_init_reserved_mock_man ==============
[16:19:51] [PASSED] Buffer object for userspace
[16:19:51] [PASSED] Kernel buffer object
[16:19:51] [PASSED] Shared buffer object
[16:19:51] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:19:51] [PASSED] ttm_bo_init_reserved_resv
[16:19:51] ================== ttm_bo_validate_basic ==================
[16:19:51] [PASSED] Buffer object for userspace
[16:19:51] [PASSED] Kernel buffer object
[16:19:51] [PASSED] Shared buffer object
[16:19:51] ============== [PASSED] ttm_bo_validate_basic ==============
[16:19:51] [PASSED] ttm_bo_validate_invalid_placement
[16:19:51] ============= ttm_bo_validate_same_placement ==============
[16:19:51] [PASSED] System manager
[16:19:51] [PASSED] VRAM manager
[16:19:51] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:19:51] [PASSED] ttm_bo_validate_failed_alloc
[16:19:51] [PASSED] ttm_bo_validate_pinned
[16:19:51] [PASSED] ttm_bo_validate_busy_placement
[16:19:51] ================ ttm_bo_validate_multihop =================
[16:19:51] [PASSED] Buffer object for userspace
[16:19:51] [PASSED] Kernel buffer object
[16:19:51] [PASSED] Shared buffer object
[16:19:51] ============ [PASSED] ttm_bo_validate_multihop =============
[16:19:51] ========== ttm_bo_validate_no_placement_signaled ==========
[16:19:51] [PASSED] Buffer object in system domain, no page vector
[16:19:51] [PASSED] Buffer object in system domain with an existing page vector
[16:19:51] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:19:51] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:19:51] [PASSED] Buffer object for userspace
[16:19:51] [PASSED] Kernel buffer object
[16:19:51] [PASSED] Shared buffer object
[16:19:51] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:19:51] [PASSED] ttm_bo_validate_move_fence_signaled
[16:19:51] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:19:51] [PASSED] Waits for GPU
[16:19:51] [PASSED] Tries to lock straight away
[16:19:52] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:19:52] [PASSED] ttm_bo_validate_swapout
[16:19:52] [PASSED] ttm_bo_validate_happy_evict
[16:19:52] [PASSED] ttm_bo_validate_all_pinned_evict
[16:19:52] [PASSED] ttm_bo_validate_allowed_only_evict
[16:19:52] [PASSED] ttm_bo_validate_deleted_evict
[16:19:52] [PASSED] ttm_bo_validate_busy_domain_evict
[16:19:52] [PASSED] ttm_bo_validate_evict_gutting
[16:19:52] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:19:52] ================= [PASSED] ttm_bo_validate =================
[16:19:52] ============================================================
[16:19:52] Testing complete. Ran 102 tests: passed: 102
[16:19:52] Elapsed time: 9.976s total, 1.647s configuring, 7.663s building, 0.563s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 26+ messages in thread* ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev4)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (10 preceding siblings ...)
2025-07-01 16:19 ` ✓ CI.KUnit: success " Patchwork
@ 2025-07-02 22:41 ` Patchwork
2025-07-02 23:14 ` Matt Roper
2025-07-03 10:23 ` ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev5) Patchwork
12 siblings, 1 reply; 26+ messages in thread
From: Patchwork @ 2025-07-02 22:41 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 44784 bytes --]
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev4)
URL : https://patchwork.freedesktop.org/series/150192/
State : failure
== Summary ==
CI Bug Log - changes from xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8_FULL -> xe-pw-150192v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150192v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150192v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150192v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
Known issues
------------
Here are the changes found in xe-pw-150192v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3768])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][8] -> [FAIL][9] ([Intel XE#3908]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#316])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-lnl: [PASS][12] -> [ABORT][13] ([Intel XE#4760])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][14] ([Intel XE#4543]) +1 other test dmesg-fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#367])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#2907])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#3862]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +76 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3113])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2:
- shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#3113])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2724])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#455])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#308]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#5354])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#309])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1135])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [PASS][44] -> [FAIL][45] ([Intel XE#3098]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-3/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#301]) +1 other test fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#4543]) +4 other tests dmesg-warn
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check:
- shard-adlp: NOTRUN -> [DMESG-WARN][52] ([Intel XE#4543]) +4 other tests dmesg-warn
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: NOTRUN -> [DMESG-FAIL][53] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-adlp: [PASS][54] -> [DMESG-FAIL][55] ([Intel XE#4543]) +1 other test dmesg-fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#651])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#651]) +5 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#653]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#656]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2313]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2486])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2938])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-73:
- shard-adlp: NOTRUN -> [DMESG-WARN][65] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_pm_rpm@legacy-planes-dpms@plane-73.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1489]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1489])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#3414])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#1127])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#1435]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4837]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug_online@pagefault-read:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#4837]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_eudebug_online@pagefault-read.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4837]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#1392]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1392])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2322])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#288]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@once-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#288]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#3876])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#4915]) +36 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#4915]) +53 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4943]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: NOTRUN -> [ABORT][89] ([Intel XE#4917])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#255])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#2541] / [Intel XE#3573])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#1173])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [PASS][93] -> [ABORT][94] ([Intel XE#5255])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@xe_pm@s4-mocs.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@xe_pm@s4-mocs.html
* igt@xe_query@multigpu-query-config:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#944])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#944])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_query@multigpu-query-uc-fw-version-guc.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [FAIL][97] ([Intel XE#911]) -> [PASS][98] +3 other tests pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_big_fb@linear-addfb:
- shard-dg2-set2: [SKIP][99] ([Intel XE#4208]) -> [PASS][100] +2 other tests pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_big_fb@linear-addfb.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_big_fb@linear-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][101] ([Intel XE#4543]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][103] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][105] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][107] ([Intel XE#3124]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][109] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][111] ([Intel XE#2291]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][113] ([Intel XE#4302]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][115] ([Intel XE#2316]) -> [PASS][116] +3 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][117] ([Intel XE#301]) -> [PASS][118] +2 other tests pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][119] ([Intel XE#455]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][121] ([Intel XE#1503]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_hdr@static-toggle.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_hdr@static-toggle.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [FAIL][123] ([Intel XE#4741]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][125] ([Intel XE#2883]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-1/igt@kms_setmode@basic@pipe-a-edp-1.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-7/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-dg2-set2: [SKIP][127] ([Intel XE#1392]) -> [PASS][128] +2 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: [DMESG-WARN][129] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][130] +7 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-8/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][131] ([Intel XE#4819]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-435/igt@xe_pmu@gt-frequency.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][133] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][134] ([Intel XE#316])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][135] ([Intel XE#1178]) -> [SKIP][136] ([Intel XE#2341])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_content_protection@srm.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#2311]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- 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-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][141] ([Intel XE#2312]) -> [SKIP][142] ([Intel XE#4141]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#2312]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][145] ([Intel XE#2313]) -> [SKIP][146] ([Intel XE#2312]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][147] ([Intel XE#2312]) -> [SKIP][148] ([Intel XE#2313]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][149] ([Intel XE#4208]) -> [SKIP][150] ([Intel XE#653])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@xe_exec_system_allocator@once-malloc-race:
- shard-dg2-set2: [SKIP][151] ([Intel XE#4208]) -> [SKIP][152] ([Intel XE#4915]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@xe_exec_system_allocator@once-malloc-race.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@xe_exec_system_allocator@once-malloc-race.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][153] ([Intel XE#1061]) -> [FAIL][154] ([Intel XE#1173])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@xe_peer2peer@read.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_peer2peer@read.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [SKIP][155] ([Intel XE#4208]) -> [TIMEOUT][156] ([Intel XE#5328])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@xe_pm_residency@cpg-basic.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@xe_pm_residency@cpg-basic.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5255
[Intel XE#5328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5328
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8 -> xe-pw-150192v4
IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8: e6e27e79a726f8bf333d13521aba32f6466035a8
xe-pw-150192v4: 150192v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/index.html
[-- Attachment #2: Type: text/html, Size: 51722 bytes --]
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev4)
2025-07-02 22:41 ` ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev4) Patchwork
@ 2025-07-02 23:14 ` Matt Roper
2025-07-02 23:22 ` Matt Roper
0 siblings, 1 reply; 26+ messages in thread
From: Matt Roper @ 2025-07-02 23:14 UTC (permalink / raw)
To: intel-xe
On Wed, Jul 02, 2025 at 10:41:51PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: Future-proof for multi-tile + multi-GT cases (rev4)
> URL : https://patchwork.freedesktop.org/series/150192/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8_FULL -> xe-pw-150192v4_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with xe-pw-150192v4_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-150192v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
>
> Participating hosts (4 -> 4)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in xe-pw-150192v4_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap:
> - shard-bmg: [PASS][1] -> [FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5058
>
> * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset:
> - shard-lnl: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5165
>
> * igt@xe_gt_freq@freq_suspend:
> - shard-bmg: [PASS][5] -> [INCOMPLETE][6]
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
System never came back from suspend.
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4620 covered this,
but it was closed as 'cannot_reproduce' a couple weeks ago.
Patches 2-7 applied to drm-xe-next, and
https://patchwork.freedesktop.org/series/150943/ , which is equivalent
to my patch #1, applied after them as discussed on the email threads.
Matt
>
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-150192v4_FULL that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@kms_async_flips@invalid-async-flip-atomic:
> - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3768])
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
> - shard-adlp: [PASS][8] -> [FAIL][9] ([Intel XE#3908]) +1 other test fail
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
>
> * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
> - shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
> - shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#316])
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-180:
> - shard-lnl: [PASS][12] -> [ABORT][13] ([Intel XE#4760])
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> - shard-adlp: NOTRUN -> [DMESG-FAIL][14] ([Intel XE#4543]) +1 other test dmesg-fail
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +2 other tests skip
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
>
> * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
> - shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#367])
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
>
> * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
> - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367])
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
>
> * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
> - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887])
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
>
> * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
> - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
>
> * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
> - shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#2907])
> [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1:
> - shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +11 other tests skip
> [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
> - shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#3862]) +1 other test incomplete
> [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
>
> * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
> - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
> - shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
> - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +76 other tests skip
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
> - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3113])
> [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2:
> - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#3113])
> [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
> [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
>
> * igt@kms_cdclk@mode-transition-all-outputs:
> - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2724])
> [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
>
> * igt@kms_chamelium_frames@dp-crc-fast:
> - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252])
> [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_chamelium_frames@dp-crc-fast.html
>
> * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
> - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +2 other tests skip
> [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
>
> * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
> - shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail
> [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
>
> * igt@kms_cursor_crc@cursor-offscreen-32x10:
> - shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#455])
> [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#308]) +1 other test skip
> [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +1 other test skip
> [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
> - shard-bmg: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#5354])
> [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
> [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
> - shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#309])
> [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
>
> * igt@kms_feature_discovery@psr1:
> - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1135])
> [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_feature_discovery@psr1.html
>
> * igt@kms_flip@2x-plain-flip-ts-check:
> - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316])
> [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check.html
> [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html
>
> * igt@kms_flip@basic-flip-vs-wf_vblank:
> - shard-adlp: [PASS][44] -> [FAIL][45] ([Intel XE#3098]) +1 other test fail
> [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
> [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-3/igt@kms_flip@basic-flip-vs-wf_vblank.html
>
> * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
> - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#301]) +1 other test fail
> [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
> [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
>
> * igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1:
> - shard-adlp: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#4543]) +4 other tests dmesg-warn
> [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
> [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible:
> - shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
> [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
> [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
>
> * igt@kms_flip@plain-flip-ts-check:
> - shard-adlp: NOTRUN -> [DMESG-WARN][52] ([Intel XE#4543]) +4 other tests dmesg-warn
> [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_flip@plain-flip-ts-check.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
> - shard-adlp: NOTRUN -> [DMESG-FAIL][53] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
> [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
>
> * igt@kms_flip_tiling@flip-change-tiling:
> - shard-adlp: [PASS][54] -> [DMESG-FAIL][55] ([Intel XE#4543]) +1 other test dmesg-fail
> [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling.html
> [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
> - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +2 other tests skip
> [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
> - shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#651])
> [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
> - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#651]) +5 other tests skip
> [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
> - shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#653]) +2 other tests skip
> [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
> - shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#656]) +2 other tests skip
> [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
> - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2313]) +2 other tests skip
> [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
> - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +5 other tests skip
> [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
>
> * igt@kms_panel_fitting@legacy:
> - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2486])
> [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_panel_fitting@legacy.html
>
> * igt@kms_pm_backlight@brightness-with-dpms:
> - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2938])
> [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
>
> * igt@kms_pm_rpm@legacy-planes-dpms@plane-73:
> - shard-adlp: NOTRUN -> [DMESG-WARN][65] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
> [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_pm_rpm@legacy-planes-dpms@plane-73.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
> - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1489]) +1 other test skip
> [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
>
> * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
> - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +2 other tests skip
> [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
>
> * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
> - shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1489])
> [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
>
> * igt@kms_psr@pr-sprite-plane-onoff:
> - shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
> [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_psr@pr-sprite-plane-onoff.html
>
> * igt@kms_psr@psr2-sprite-blt:
> - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
> [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_psr@psr2-sprite-blt.html
>
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
> - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#3414])
> [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
> - shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#1127])
> [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
>
> * igt@kms_setmode@clone-exclusive-crtc:
> - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#1435]) +1 other test skip
> [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
> [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
>
> * igt@xe_eudebug@basic-vm-access-parameters-userptr:
> - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4837]) +1 other test skip
> [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
>
> * igt@xe_eudebug_online@pagefault-read:
> - shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#4837]) +1 other test skip
> [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_eudebug_online@pagefault-read.html
>
> * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
> - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4837]) +2 other tests skip
> [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
>
> * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
> - shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#1392]) +1 other test skip
> [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
> [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
>
> * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
> - shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1392])
> [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
>
> * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
> - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2322])
> [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
>
> * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
> - shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#288]) +1 other test skip
> [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
>
> * igt@xe_exec_fault_mode@once-userptr:
> - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#288]) +4 other tests skip
> [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr.html
>
> * igt@xe_exec_reset@parallel-gt-reset:
> - shard-bmg: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#3876])
> [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
> [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
>
> * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap:
> - shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#4915]) +36 other tests skip
> [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap.html
>
> * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
> - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#4915]) +53 other tests skip
> [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
>
> * igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
> - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4943]) +3 other tests skip
> [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
>
> * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
> - shard-adlp: NOTRUN -> [ABORT][89] ([Intel XE#4917])
> [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
>
> * igt@xe_huc_copy@huc_copy:
> - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#255])
> [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
>
> * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
> - shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#2541] / [Intel XE#3573])
> [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
>
> * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
> - shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#1173])
> [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
>
> * igt@xe_pm@s4-mocs:
> - shard-bmg: [PASS][93] -> [ABORT][94] ([Intel XE#5255])
> [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@xe_pm@s4-mocs.html
> [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@xe_pm@s4-mocs.html
>
> * igt@xe_query@multigpu-query-config:
> - shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#944])
> [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_query@multigpu-query-config.html
>
> * igt@xe_query@multigpu-query-uc-fw-version-guc:
> - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#944])
> [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_query@multigpu-query-uc-fw-version-guc.html
>
>
> #### Possible fixes ####
>
> * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
> - shard-lnl: [FAIL][97] ([Intel XE#911]) -> [PASS][98] +3 other tests pass
> [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
> [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
>
> * igt@kms_big_fb@linear-addfb:
> - shard-dg2-set2: [SKIP][99] ([Intel XE#4208]) -> [PASS][100] +2 other tests pass
> [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_big_fb@linear-addfb.html
> [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_big_fb@linear-addfb.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> - shard-adlp: [DMESG-FAIL][101] ([Intel XE#4543]) -> [PASS][102] +1 other test pass
> [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
> - shard-bmg: [SKIP][103] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][104]
> [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
> [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> - shard-dg2-set2: [INCOMPLETE][105] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][106]
> [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
> - shard-dg2-set2: [INCOMPLETE][107] ([Intel XE#3124]) -> [PASS][108]
> [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
> [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
> - shard-dg2-set2: [DMESG-WARN][109] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][110]
> [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
> [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
> - shard-bmg: [SKIP][111] ([Intel XE#2291]) -> [PASS][112]
> [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
> [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
>
> * igt@kms_display_modes@extended-mode-basic:
> - shard-bmg: [SKIP][113] ([Intel XE#4302]) -> [PASS][114]
> [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
> [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
>
> * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
> - shard-bmg: [SKIP][115] ([Intel XE#2316]) -> [PASS][116] +3 other tests pass
> [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
> [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
>
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
> - shard-lnl: [FAIL][117] ([Intel XE#301]) -> [PASS][118] +2 other tests pass
> [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
> [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
>
> * igt@kms_hdr@invalid-hdr:
> - shard-dg2-set2: [SKIP][119] ([Intel XE#455]) -> [PASS][120]
> [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
> [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
>
> * igt@kms_hdr@static-toggle:
> - shard-bmg: [SKIP][121] ([Intel XE#1503]) -> [PASS][122]
> [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_hdr@static-toggle.html
> [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_hdr@static-toggle.html
>
> * igt@kms_pm_rpm@basic-pci-d3-state:
> - shard-dg2-set2: [FAIL][123] ([Intel XE#4741]) -> [PASS][124]
> [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
> [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
>
> * igt@kms_setmode@basic@pipe-a-edp-1:
> - shard-lnl: [FAIL][125] ([Intel XE#2883]) -> [PASS][126]
> [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-1/igt@kms_setmode@basic@pipe-a-edp-1.html
> [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-7/igt@kms_setmode@basic@pipe-a-edp-1.html
>
> * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
> - shard-dg2-set2: [SKIP][127] ([Intel XE#1392]) -> [PASS][128] +2 other tests pass
> [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
> [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
>
> * igt@xe_pm@s2idle-basic-exec:
> - shard-adlp: [DMESG-WARN][129] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][130] +7 other tests pass
> [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
> [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-8/igt@xe_pm@s2idle-basic-exec.html
>
> * igt@xe_pmu@gt-frequency:
> - shard-dg2-set2: [FAIL][131] ([Intel XE#4819]) -> [PASS][132] +1 other test pass
> [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-435/igt@xe_pmu@gt-frequency.html
> [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_pmu@gt-frequency.html
>
>
> #### Warnings ####
>
> * igt@kms_big_fb@linear-64bpp-rotate-270:
> - shard-dg2-set2: [SKIP][133] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][134] ([Intel XE#316])
> [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
> [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
>
> * igt@kms_content_protection@srm:
> - shard-bmg: [FAIL][135] ([Intel XE#1178]) -> [SKIP][136] ([Intel XE#2341])
> [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_content_protection@srm.html
> [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_content_protection@srm.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
> - shard-bmg: [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#2311]) +4 other tests skip
> [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> - 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-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
> [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
> - shard-bmg: [SKIP][141] ([Intel XE#2312]) -> [SKIP][142] ([Intel XE#4141]) +2 other tests skip
> [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
> - shard-bmg: [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#2312]) +3 other tests skip
> [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
> [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
> - shard-bmg: [SKIP][145] ([Intel XE#2313]) -> [SKIP][146] ([Intel XE#2312]) +3 other tests skip
> [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
> - shard-bmg: [SKIP][147] ([Intel XE#2312]) -> [SKIP][148] ([Intel XE#2313]) +4 other tests skip
> [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
> [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
> - shard-dg2-set2: [SKIP][149] ([Intel XE#4208]) -> [SKIP][150] ([Intel XE#653])
> [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
> [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
>
> * igt@xe_exec_system_allocator@once-malloc-race:
> - shard-dg2-set2: [SKIP][151] ([Intel XE#4208]) -> [SKIP][152] ([Intel XE#4915]) +3 other tests skip
> [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@xe_exec_system_allocator@once-malloc-race.html
> [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@xe_exec_system_allocator@once-malloc-race.html
>
> * igt@xe_peer2peer@read:
> - shard-dg2-set2: [SKIP][153] ([Intel XE#1061]) -> [FAIL][154] ([Intel XE#1173])
> [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@xe_peer2peer@read.html
> [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_peer2peer@read.html
>
> * igt@xe_pm_residency@cpg-basic:
> - shard-dg2-set2: [SKIP][155] ([Intel XE#4208]) -> [TIMEOUT][156] ([Intel XE#5328])
> [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@xe_pm_residency@cpg-basic.html
> [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@xe_pm_residency@cpg-basic.html
>
>
> [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
> [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
> [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
> [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
> [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
> [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
> [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
> [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
> [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
> [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
> [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
> [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
> [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
> [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
> [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
> [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
> [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
> [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
> [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
> [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
> [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
> [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
> [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
> [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
> [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
> [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
> [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
> [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
> [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
> [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
> [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
> [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
> [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
> [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
> [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
> [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
> [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
> [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
> [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
> [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
> [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
> [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
> [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
> [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
> [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
> [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
> [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
> [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
> [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
> [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
> [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
> [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
> [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
> [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
> [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
> [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
> [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
> [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
> [Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
> [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
> [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
> [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
> [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
> [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
> [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
> [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
> [Intel XE#5255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5255
> [Intel XE#5328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5328
> [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
> [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
> [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
> [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
> [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
> [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
> [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
> [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
>
>
> Build changes
> -------------
>
> * Linux: xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8 -> xe-pw-150192v4
>
> IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8: e6e27e79a726f8bf333d13521aba32f6466035a8
> xe-pw-150192v4: 150192v4
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev4)
2025-07-02 23:14 ` Matt Roper
@ 2025-07-02 23:22 ` Matt Roper
0 siblings, 0 replies; 26+ messages in thread
From: Matt Roper @ 2025-07-02 23:22 UTC (permalink / raw)
To: intel-xe
On Wed, Jul 02, 2025 at 04:14:26PM -0700, Matt Roper wrote:
> On Wed, Jul 02, 2025 at 10:41:51PM +0000, Patchwork wrote:
> > == Series Details ==
> >
> > Series: Future-proof for multi-tile + multi-GT cases (rev4)
> > URL : https://patchwork.freedesktop.org/series/150192/
> > State : failure
> >
> > == Summary ==
> >
> > CI Bug Log - changes from xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8_FULL -> xe-pw-150192v4_FULL
> > ====================================================
> >
> > Summary
> > -------
> >
> > **FAILURE**
> >
> > Serious unknown changes coming with xe-pw-150192v4_FULL absolutely need to be
> > verified manually.
> >
> > If you think the reported changes have nothing to do with the changes
> > introduced in xe-pw-150192v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> > to document this new failure mode, which will reduce false positives in CI.
> >
> >
> >
> > Participating hosts (4 -> 4)
> > ------------------------------
> >
> > No changes in participating hosts
> >
> > Possible new issues
> > -------------------
> >
> > Here are the unknown changes that may have been introduced in xe-pw-150192v4_FULL:
> >
> > ### IGT changes ###
> >
> > #### Possible regressions ####
> >
> > * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap:
> > - shard-bmg: [PASS][1] -> [FAIL][2]
> > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html
> > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html
>
> https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5058
>
> >
> > * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset:
> > - shard-lnl: [PASS][3] -> [FAIL][4]
> > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
> > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
>
> https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5165
>
> >
> > * igt@xe_gt_freq@freq_suspend:
> > - shard-bmg: [PASS][5] -> [INCOMPLETE][6]
> > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
> > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
>
> System never came back from suspend.
>
> https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4620 covered this,
> but it was closed as 'cannot_reproduce' a couple weeks ago.
>
>
> Patches 2-7 applied to drm-xe-next, and
> https://patchwork.freedesktop.org/series/150943/ , which is equivalent
> to my patch #1, applied after them as discussed on the email threads.
Hmm, I just noticed that this CI email is reporting on v3 of my series
that was sent over two days ago, rather than the v4 I sent yesterday. I
didn't notice how slow and far behind the CI system had fallen and
assumed this was the latest. :-( I think v4 should still be okay since
the changes were pretty minor and self contained, but I'll keep an eye
on the v4 results whenever they eventually show up to make sure.
Matt
>
>
> Matt
>
> >
> >
> > Known issues
> > ------------
> >
> > Here are the changes found in xe-pw-150192v4_FULL that come from known issues:
> >
> > ### IGT changes ###
> >
> > #### Issues hit ####
> >
> > * igt@kms_async_flips@invalid-async-flip-atomic:
> > - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3768])
> > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html
> >
> > * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
> > - shard-adlp: [PASS][8] -> [FAIL][9] ([Intel XE#3908]) +1 other test fail
> > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
> > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
> >
> > * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
> > - shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip
> > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
> >
> > * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
> > - shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#316])
> > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
> >
> > * igt@kms_big_fb@x-tiled-8bpp-rotate-180:
> > - shard-lnl: [PASS][12] -> [ABORT][13] ([Intel XE#4760])
> > [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
> > [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
> >
> > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> > - shard-adlp: NOTRUN -> [DMESG-FAIL][14] ([Intel XE#4543]) +1 other test dmesg-fail
> > [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> >
> > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> > - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +2 other tests skip
> > [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
> >
> > * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
> > - shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#367])
> > [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
> >
> > * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
> > - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367])
> > [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
> >
> > * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
> > - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887])
> > [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
> >
> > * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
> > - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
> > [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
> >
> > * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
> > - shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#2907])
> > [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
> >
> > * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1:
> > - shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +11 other tests skip
> > [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1.html
> >
> > * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
> > - shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#3862]) +1 other test incomplete
> > [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
> >
> > * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
> > - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
> > [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
> >
> > * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
> > - shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
> > [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
> >
> > * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
> > - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +76 other tests skip
> > [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
> >
> > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
> > - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3113])
> > [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> > [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> >
> > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2:
> > - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#3113])
> > [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
> > [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
> >
> > * igt@kms_cdclk@mode-transition-all-outputs:
> > - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2724])
> > [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
> >
> > * igt@kms_chamelium_frames@dp-crc-fast:
> > - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252])
> > [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_chamelium_frames@dp-crc-fast.html
> >
> > * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
> > - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +2 other tests skip
> > [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
> >
> > * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
> > - shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail
> > [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
> >
> > * igt@kms_cursor_crc@cursor-offscreen-32x10:
> > - shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#455])
> > [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html
> >
> > * igt@kms_cursor_crc@cursor-onscreen-512x512:
> > - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#308]) +1 other test skip
> > [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
> >
> > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> > - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +1 other test skip
> > [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> > [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> >
> > * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
> > - shard-bmg: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#5354])
> > [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
> > [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
> >
> > * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
> > - shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#309])
> > [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
> >
> > * igt@kms_feature_discovery@psr1:
> > - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1135])
> > [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_feature_discovery@psr1.html
> >
> > * igt@kms_flip@2x-plain-flip-ts-check:
> > - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316])
> > [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check.html
> > [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html
> >
> > * igt@kms_flip@basic-flip-vs-wf_vblank:
> > - shard-adlp: [PASS][44] -> [FAIL][45] ([Intel XE#3098]) +1 other test fail
> > [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
> > [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-3/igt@kms_flip@basic-flip-vs-wf_vblank.html
> >
> > * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
> > - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#301]) +1 other test fail
> > [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
> > [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
> >
> > * igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1:
> > - shard-adlp: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#4543]) +4 other tests dmesg-warn
> > [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
> > [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
> >
> > * igt@kms_flip@flip-vs-suspend-interruptible:
> > - shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
> > [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
> > [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
> >
> > * igt@kms_flip@plain-flip-ts-check:
> > - shard-adlp: NOTRUN -> [DMESG-WARN][52] ([Intel XE#4543]) +4 other tests dmesg-warn
> > [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_flip@plain-flip-ts-check.html
> >
> > * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
> > - shard-adlp: NOTRUN -> [DMESG-FAIL][53] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
> > [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
> >
> > * igt@kms_flip_tiling@flip-change-tiling:
> > - shard-adlp: [PASS][54] -> [DMESG-FAIL][55] ([Intel XE#4543]) +1 other test dmesg-fail
> > [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling.html
> > [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling.html
> >
> > * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
> > - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +2 other tests skip
> > [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
> >
> > * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
> > - shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#651])
> > [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
> >
> > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
> > - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#651]) +5 other tests skip
> > [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
> >
> > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
> > - shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#653]) +2 other tests skip
> > [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
> >
> > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
> > - shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#656]) +2 other tests skip
> > [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
> >
> > * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
> > - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2313]) +2 other tests skip
> > [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
> >
> > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
> > - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +5 other tests skip
> > [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
> >
> > * igt@kms_panel_fitting@legacy:
> > - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2486])
> > [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_panel_fitting@legacy.html
> >
> > * igt@kms_pm_backlight@brightness-with-dpms:
> > - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2938])
> > [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
> >
> > * igt@kms_pm_rpm@legacy-planes-dpms@plane-73:
> > - shard-adlp: NOTRUN -> [DMESG-WARN][65] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
> > [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_pm_rpm@legacy-planes-dpms@plane-73.html
> >
> > * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
> > - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1489]) +1 other test skip
> > [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
> >
> > * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
> > - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +2 other tests skip
> > [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
> >
> > * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
> > - shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1489])
> > [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
> >
> > * igt@kms_psr@pr-sprite-plane-onoff:
> > - shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
> > [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_psr@pr-sprite-plane-onoff.html
> >
> > * igt@kms_psr@psr2-sprite-blt:
> > - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
> > [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_psr@psr2-sprite-blt.html
> >
> > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
> > - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#3414])
> > [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
> >
> > * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
> > - shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#1127])
> > [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> >
> > * igt@kms_setmode@clone-exclusive-crtc:
> > - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#1435]) +1 other test skip
> > [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
> > [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
> >
> > * igt@xe_eudebug@basic-vm-access-parameters-userptr:
> > - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4837]) +1 other test skip
> > [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
> >
> > * igt@xe_eudebug_online@pagefault-read:
> > - shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#4837]) +1 other test skip
> > [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_eudebug_online@pagefault-read.html
> >
> > * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
> > - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4837]) +2 other tests skip
> > [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
> >
> > * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
> > - shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#1392]) +1 other test skip
> > [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
> > [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
> >
> > * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
> > - shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1392])
> > [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
> >
> > * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
> > - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2322])
> > [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
> >
> > * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
> > - shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#288]) +1 other test skip
> > [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
> >
> > * igt@xe_exec_fault_mode@once-userptr:
> > - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#288]) +4 other tests skip
> > [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr.html
> >
> > * igt@xe_exec_reset@parallel-gt-reset:
> > - shard-bmg: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#3876])
> > [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
> > [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
> >
> > * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap:
> > - shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#4915]) +36 other tests skip
> > [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap.html
> >
> > * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
> > - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#4915]) +53 other tests skip
> > [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
> >
> > * igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
> > - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4943]) +3 other tests skip
> > [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
> >
> > * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
> > - shard-adlp: NOTRUN -> [ABORT][89] ([Intel XE#4917])
> > [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
> >
> > * igt@xe_huc_copy@huc_copy:
> > - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#255])
> > [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
> >
> > * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
> > - shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#2541] / [Intel XE#3573])
> > [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
> >
> > * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
> > - shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#1173])
> > [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
> >
> > * igt@xe_pm@s4-mocs:
> > - shard-bmg: [PASS][93] -> [ABORT][94] ([Intel XE#5255])
> > [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@xe_pm@s4-mocs.html
> > [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@xe_pm@s4-mocs.html
> >
> > * igt@xe_query@multigpu-query-config:
> > - shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#944])
> > [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-9/igt@xe_query@multigpu-query-config.html
> >
> > * igt@xe_query@multigpu-query-uc-fw-version-guc:
> > - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#944])
> > [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-7/igt@xe_query@multigpu-query-uc-fw-version-guc.html
> >
> >
> > #### Possible fixes ####
> >
> > * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
> > - shard-lnl: [FAIL][97] ([Intel XE#911]) -> [PASS][98] +3 other tests pass
> > [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
> > [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
> >
> > * igt@kms_big_fb@linear-addfb:
> > - shard-dg2-set2: [SKIP][99] ([Intel XE#4208]) -> [PASS][100] +2 other tests pass
> > [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_big_fb@linear-addfb.html
> > [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_big_fb@linear-addfb.html
> >
> > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> > - shard-adlp: [DMESG-FAIL][101] ([Intel XE#4543]) -> [PASS][102] +1 other test pass
> > [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> > [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> >
> > * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
> > - shard-bmg: [SKIP][103] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][104]
> > [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
> > [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
> >
> > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> > - shard-dg2-set2: [INCOMPLETE][105] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][106]
> > [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> > [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> >
> > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
> > - shard-dg2-set2: [INCOMPLETE][107] ([Intel XE#3124]) -> [PASS][108]
> > [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
> > [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
> >
> > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
> > - shard-dg2-set2: [DMESG-WARN][109] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][110]
> > [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
> > [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
> >
> > * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
> > - shard-bmg: [SKIP][111] ([Intel XE#2291]) -> [PASS][112]
> > [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
> > [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
> >
> > * igt@kms_display_modes@extended-mode-basic:
> > - shard-bmg: [SKIP][113] ([Intel XE#4302]) -> [PASS][114]
> > [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
> > [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
> >
> > * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
> > - shard-bmg: [SKIP][115] ([Intel XE#2316]) -> [PASS][116] +3 other tests pass
> > [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
> > [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
> >
> > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
> > - shard-lnl: [FAIL][117] ([Intel XE#301]) -> [PASS][118] +2 other tests pass
> > [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
> > [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
> >
> > * igt@kms_hdr@invalid-hdr:
> > - shard-dg2-set2: [SKIP][119] ([Intel XE#455]) -> [PASS][120]
> > [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
> > [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
> >
> > * igt@kms_hdr@static-toggle:
> > - shard-bmg: [SKIP][121] ([Intel XE#1503]) -> [PASS][122]
> > [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_hdr@static-toggle.html
> > [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_hdr@static-toggle.html
> >
> > * igt@kms_pm_rpm@basic-pci-d3-state:
> > - shard-dg2-set2: [FAIL][123] ([Intel XE#4741]) -> [PASS][124]
> > [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
> > [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
> >
> > * igt@kms_setmode@basic@pipe-a-edp-1:
> > - shard-lnl: [FAIL][125] ([Intel XE#2883]) -> [PASS][126]
> > [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-lnl-1/igt@kms_setmode@basic@pipe-a-edp-1.html
> > [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-lnl-7/igt@kms_setmode@basic@pipe-a-edp-1.html
> >
> > * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
> > - shard-dg2-set2: [SKIP][127] ([Intel XE#1392]) -> [PASS][128] +2 other tests pass
> > [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
> > [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
> >
> > * igt@xe_pm@s2idle-basic-exec:
> > - shard-adlp: [DMESG-WARN][129] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][130] +7 other tests pass
> > [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
> > [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-adlp-8/igt@xe_pm@s2idle-basic-exec.html
> >
> > * igt@xe_pmu@gt-frequency:
> > - shard-dg2-set2: [FAIL][131] ([Intel XE#4819]) -> [PASS][132] +1 other test pass
> > [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-435/igt@xe_pmu@gt-frequency.html
> > [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_pmu@gt-frequency.html
> >
> >
> > #### Warnings ####
> >
> > * igt@kms_big_fb@linear-64bpp-rotate-270:
> > - shard-dg2-set2: [SKIP][133] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][134] ([Intel XE#316])
> > [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
> > [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
> >
> > * igt@kms_content_protection@srm:
> > - shard-bmg: [FAIL][135] ([Intel XE#1178]) -> [SKIP][136] ([Intel XE#2341])
> > [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_content_protection@srm.html
> > [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_content_protection@srm.html
> >
> > * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
> > - shard-bmg: [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#2311]) +4 other tests skip
> > [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> > [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> >
> > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> > - 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-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
> > [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
> >
> > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
> > - shard-bmg: [SKIP][141] ([Intel XE#2312]) -> [SKIP][142] ([Intel XE#4141]) +2 other tests skip
> > [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> > [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> >
> > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
> > - shard-bmg: [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#2312]) +3 other tests skip
> > [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
> > [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
> >
> > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
> > - shard-bmg: [SKIP][145] ([Intel XE#2313]) -> [SKIP][146] ([Intel XE#2312]) +3 other tests skip
> > [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> > [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> >
> > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
> > - shard-bmg: [SKIP][147] ([Intel XE#2312]) -> [SKIP][148] ([Intel XE#2313]) +4 other tests skip
> > [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
> > [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
> >
> > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
> > - shard-dg2-set2: [SKIP][149] ([Intel XE#4208]) -> [SKIP][150] ([Intel XE#653])
> > [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
> > [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
> >
> > * igt@xe_exec_system_allocator@once-malloc-race:
> > - shard-dg2-set2: [SKIP][151] ([Intel XE#4208]) -> [SKIP][152] ([Intel XE#4915]) +3 other tests skip
> > [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@xe_exec_system_allocator@once-malloc-race.html
> > [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@xe_exec_system_allocator@once-malloc-race.html
> >
> > * igt@xe_peer2peer@read:
> > - shard-dg2-set2: [SKIP][153] ([Intel XE#1061]) -> [FAIL][154] ([Intel XE#1173])
> > [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-432/igt@xe_peer2peer@read.html
> > [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-463/igt@xe_peer2peer@read.html
> >
> > * igt@xe_pm_residency@cpg-basic:
> > - shard-dg2-set2: [SKIP][155] ([Intel XE#4208]) -> [TIMEOUT][156] ([Intel XE#5328])
> > [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8/shard-dg2-434/igt@xe_pm_residency@cpg-basic.html
> > [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/shard-dg2-436/igt@xe_pm_residency@cpg-basic.html
> >
> >
> > [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
> > [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
> > [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
> > [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
> > [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
> > [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
> > [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
> > [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
> > [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
> > [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
> > [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
> > [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
> > [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
> > [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
> > [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
> > [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
> > [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
> > [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
> > [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
> > [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
> > [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
> > [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
> > [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
> > [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
> > [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
> > [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
> > [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
> > [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
> > [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
> > [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
> > [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
> > [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
> > [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
> > [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
> > [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
> > [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
> > [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
> > [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
> > [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
> > [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
> > [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
> > [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
> > [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
> > [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
> > [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
> > [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
> > [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
> > [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
> > [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
> > [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
> > [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
> > [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
> > [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
> > [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
> > [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
> > [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
> > [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
> > [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
> > [Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
> > [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
> > [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
> > [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
> > [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
> > [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
> > [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
> > [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
> > [Intel XE#5255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5255
> > [Intel XE#5328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5328
> > [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
> > [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
> > [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
> > [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
> > [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
> > [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
> > [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
> > [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
> >
> >
> > Build changes
> > -------------
> >
> > * Linux: xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8 -> xe-pw-150192v4
> >
> > IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> > xe-3327-e6e27e79a726f8bf333d13521aba32f6466035a8: e6e27e79a726f8bf333d13521aba32f6466035a8
> > xe-pw-150192v4: 150192v4
> >
> > == Logs ==
> >
> > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v4/index.html
>
> --
> Matt Roper
> Graphics Software Engineer
> Linux GPU Platform Enablement
> Intel Corporation
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 26+ messages in thread
* ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev5)
2025-06-30 17:34 [PATCH v3 0/6] Future-proof for multi-tile + multi-GT cases Matt Roper
` (11 preceding siblings ...)
2025-07-02 22:41 ` ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev4) Patchwork
@ 2025-07-03 10:23 ` Patchwork
12 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-07-03 10:23 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 382 bytes --]
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev5)
URL : https://patchwork.freedesktop.org/series/150192/
State : failure
== Summary ==
ERROR: The runconfig 'xe-3330-a7091520e1e57b88990d2f3b92a20c7df416f416_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v5/index.html
[-- Attachment #2: Type: text/html, Size: 947 bytes --]
^ permalink raw reply [flat|nested] 26+ messages in thread