* [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob
2024-11-18 7:48 ` [PATCHv2/3] " Arun R Murthy
@ 2024-11-18 7:48 ` Arun R Murthy
0 siblings, 0 replies; 20+ messages in thread
From: Arun R Murthy @ 2024-11-18 7:48 UTC (permalink / raw)
To: intel-xe, intel-gfx, dri-devel; +Cc: Arun R Murthy
Expose drm plane function to create formats/modifiers blob. This
function can be used to expose list of supported formats/modifiers for
sync/async flips.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
drivers/gpu/drm/drm_plane.c | 44 ++++++++++++++++++++++++-------------
include/drm/drm_plane.h | 4 ++++
2 files changed, 33 insertions(+), 15 deletions(-)
diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c
index 416818e54ccf..4f35eec2b777 100644
--- a/drivers/gpu/drm/drm_plane.c
+++ b/drivers/gpu/drm/drm_plane.c
@@ -191,7 +191,10 @@ modifiers_ptr(struct drm_format_modifier_blob *blob)
return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
}
-static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane)
+int drm_plane_create_format_blob(struct drm_device *dev,
+ struct drm_plane *plane, u64 *modifiers,
+ unsigned int modifier_count, u32 *formats,
+ unsigned int format_count, bool is_async)
{
const struct drm_mode_config *config = &dev->mode_config;
struct drm_property_blob *blob;
@@ -200,14 +203,14 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane
struct drm_format_modifier_blob *blob_data;
unsigned int i, j;
- formats_size = sizeof(__u32) * plane->format_count;
+ formats_size = sizeof(__u32) * format_count;
if (WARN_ON(!formats_size)) {
/* 0 formats are never expected */
return 0;
}
modifiers_size =
- sizeof(struct drm_format_modifier) * plane->modifier_count;
+ sizeof(struct drm_format_modifier) * modifier_count;
blob_size = sizeof(struct drm_format_modifier_blob);
/* Modifiers offset is a pointer to a struct with a 64 bit field so it
@@ -223,37 +226,45 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane
blob_data = blob->data;
blob_data->version = FORMAT_BLOB_CURRENT;
- blob_data->count_formats = plane->format_count;
+ blob_data->count_formats = format_count;
blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
- blob_data->count_modifiers = plane->modifier_count;
+ blob_data->count_modifiers = modifier_count;
blob_data->modifiers_offset =
ALIGN(blob_data->formats_offset + formats_size, 8);
- memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
+ memcpy(formats_ptr(blob_data), formats, formats_size);
mod = modifiers_ptr(blob_data);
- for (i = 0; i < plane->modifier_count; i++) {
- for (j = 0; j < plane->format_count; j++) {
- if (!plane->funcs->format_mod_supported ||
+ for (i = 0; i < modifier_count; i++) {
+ for (j = 0; j < format_count; j++) {
+ if (is_async ||
+ !plane->funcs->format_mod_supported ||
plane->funcs->format_mod_supported(plane,
- plane->format_types[j],
- plane->modifiers[i])) {
+ formats[j],
+ modifiers[i])) {
mod->formats |= 1ULL << j;
}
}
- mod->modifier = plane->modifiers[i];
+ mod->modifier = modifiers[i];
mod->offset = 0;
mod->pad = 0;
mod++;
}
- drm_object_attach_property(&plane->base, config->modifiers_property,
- blob->base.id);
+ if (is_async)
+ drm_object_attach_property(&plane->base,
+ config->async_modifiers_property,
+ blob->base.id);
+ else
+ drm_object_attach_property(&plane->base,
+ config->modifiers_property,
+ blob->base.id);
return 0;
}
+EXPORT_SYMBOL(drm_plane_create_format_blob);
/**
* DOC: hotspot properties
@@ -476,7 +487,10 @@ static int __drm_universal_plane_init(struct drm_device *dev,
}
if (format_modifier_count)
- create_in_format_blob(dev, plane);
+ drm_plane_create_format_blob(dev, plane, plane->modifiers,
+ format_modifier_count,
+ plane->format_types, format_count,
+ false);
return 0;
}
diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
index dd718c62ac31..3c5c2c614af8 100644
--- a/include/drm/drm_plane.h
+++ b/include/drm/drm_plane.h
@@ -988,5 +988,9 @@ int drm_plane_create_scaling_filter_property(struct drm_plane *plane,
int drm_plane_add_size_hints_property(struct drm_plane *plane,
const struct drm_plane_size_hint *hints,
int num_hints);
+int drm_plane_create_format_blob(struct drm_device *dev,
+ struct drm_plane *plane, u64 *modifiers,
+ unsigned int modifier_count, u32 *formats,
+ unsigned int format_count, bool is_async);
#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCHv2/3] Expose modifiers/formats supported by async flips
@ 2024-11-18 7:53 Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy
` (11 more replies)
0 siblings, 12 replies; 20+ messages in thread
From: Arun R Murthy @ 2024-11-18 7:53 UTC (permalink / raw)
To: intel-xe, intel-gfx, dri-devel; +Cc: Arun R Murthy
All of the formats/modifiers supported by the plane during synchronous
flips are nor supported by asynchronous flips. The formats/modifiers
exposed to user by IN_FORMATS exposes all formats/modifiers supported by
plane and this list varies for async flips. If the async flip supported
formats/modifiers are exposed to the user, user based on this list can
take decision to proceed or not and avoid flip failures during async
flips.
Discussion around this can be located @
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29618#note_2487123
Userspace implementation for IN_FORMARTS_ASYNC under review @
https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4063
Arun R Murthy (3):
drm/plane: Add new plane property IN_FORMATS_ASYNC
drm/plane: Expose function to create format/modifier blob
drm/i915/display: Populate list of async supported formats/modifiers
drivers/gpu/drm/drm_mode_config.c | 7 +++
drivers/gpu/drm/drm_plane.c | 50 ++++++++++++------
.../drm/i915/display/skl_universal_plane.c | 51 +++++++++++++++++++
include/drm/drm_mode_config.h | 6 +++
include/drm/drm_plane.h | 4 ++
5 files changed, 103 insertions(+), 15 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCHv2 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
@ 2024-11-18 7:53 ` Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob Arun R Murthy
` (10 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Arun R Murthy @ 2024-11-18 7:53 UTC (permalink / raw)
To: intel-xe, intel-gfx, dri-devel; +Cc: Arun R Murthy
There exists a property IN_FORMATS which exposes the plane supported
modifiers/formats to the user. In some platforms when asynchronous flips
are used all of modifiers/formats mentioned in IN_FORMATS are not
supported. This patch adds a new plane property IN_FORMATS_ASYNC to
expose the async flips supported modifiers/formats so that user can use
this information ahead and done flips with unsupported
formats/modifiers. This will save flips failures.
v2: Remove async variable from drm_plane (Ville)
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
drivers/gpu/drm/drm_mode_config.c | 7 +++++++
drivers/gpu/drm/drm_plane.c | 6 ++++++
include/drm/drm_mode_config.h | 6 ++++++
3 files changed, 19 insertions(+)
diff --git a/drivers/gpu/drm/drm_mode_config.c b/drivers/gpu/drm/drm_mode_config.c
index 37d2e0a4ef4b..cff189a2e751 100644
--- a/drivers/gpu/drm/drm_mode_config.c
+++ b/drivers/gpu/drm/drm_mode_config.c
@@ -379,6 +379,13 @@ static int drm_mode_create_standard_properties(struct drm_device *dev)
return -ENOMEM;
dev->mode_config.size_hints_property = prop;
+ prop = drm_property_create(dev,
+ DRM_MODE_PROP_IMMUTABLE | DRM_MODE_PROP_BLOB,
+ "IN_FORMATS_ASYNC", 0);
+ if (!prop)
+ return -ENOMEM;
+ dev->mode_config.async_modifiers_property = prop;
+
return 0;
}
diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c
index a28b22fdd7a4..416818e54ccf 100644
--- a/drivers/gpu/drm/drm_plane.c
+++ b/drivers/gpu/drm/drm_plane.c
@@ -141,6 +141,12 @@
* various bugs in this area with inconsistencies between the capability
* flag and per-plane properties.
*
+ * IN_FORMATS_ASYNC:
+ * Blob property which contains the set of buffer format and modifier
+ * pairs supported by this plane for asynchronous flips. The blob is a struct
+ * drm_format_modifier_blob. Without this property the plane doesn't
+ * support buffers with modifiers. Userspace cannot change this property.
+ *
* SIZE_HINTS:
* Blob property which contains the set of recommended plane size
* which can used for simple "cursor like" use cases (eg. no scaling).
diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h
index 271765e2e9f2..0c116d6dfd27 100644
--- a/include/drm/drm_mode_config.h
+++ b/include/drm/drm_mode_config.h
@@ -936,6 +936,12 @@ struct drm_mode_config {
*/
struct drm_property *modifiers_property;
+ /**
+ * @async_modifiers_property: Plane property to list support modifier/format
+ * combination for asynchronous flips.
+ */
+ struct drm_property *async_modifiers_property;
+
/**
* @size_hints_property: Plane SIZE_HINTS property.
*/
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy
@ 2024-11-18 7:53 ` Arun R Murthy
2024-11-22 20:06 ` Ville Syrjälä
2024-11-18 7:53 ` [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers Arun R Murthy
` (9 subsequent siblings)
11 siblings, 1 reply; 20+ messages in thread
From: Arun R Murthy @ 2024-11-18 7:53 UTC (permalink / raw)
To: intel-xe, intel-gfx, dri-devel; +Cc: Arun R Murthy
Expose drm plane function to create formats/modifiers blob. This
function can be used to expose list of supported formats/modifiers for
sync/async flips.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
drivers/gpu/drm/drm_plane.c | 44 ++++++++++++++++++++++++-------------
include/drm/drm_plane.h | 4 ++++
2 files changed, 33 insertions(+), 15 deletions(-)
diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c
index 416818e54ccf..4f35eec2b777 100644
--- a/drivers/gpu/drm/drm_plane.c
+++ b/drivers/gpu/drm/drm_plane.c
@@ -191,7 +191,10 @@ modifiers_ptr(struct drm_format_modifier_blob *blob)
return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
}
-static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane)
+int drm_plane_create_format_blob(struct drm_device *dev,
+ struct drm_plane *plane, u64 *modifiers,
+ unsigned int modifier_count, u32 *formats,
+ unsigned int format_count, bool is_async)
{
const struct drm_mode_config *config = &dev->mode_config;
struct drm_property_blob *blob;
@@ -200,14 +203,14 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane
struct drm_format_modifier_blob *blob_data;
unsigned int i, j;
- formats_size = sizeof(__u32) * plane->format_count;
+ formats_size = sizeof(__u32) * format_count;
if (WARN_ON(!formats_size)) {
/* 0 formats are never expected */
return 0;
}
modifiers_size =
- sizeof(struct drm_format_modifier) * plane->modifier_count;
+ sizeof(struct drm_format_modifier) * modifier_count;
blob_size = sizeof(struct drm_format_modifier_blob);
/* Modifiers offset is a pointer to a struct with a 64 bit field so it
@@ -223,37 +226,45 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane
blob_data = blob->data;
blob_data->version = FORMAT_BLOB_CURRENT;
- blob_data->count_formats = plane->format_count;
+ blob_data->count_formats = format_count;
blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
- blob_data->count_modifiers = plane->modifier_count;
+ blob_data->count_modifiers = modifier_count;
blob_data->modifiers_offset =
ALIGN(blob_data->formats_offset + formats_size, 8);
- memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
+ memcpy(formats_ptr(blob_data), formats, formats_size);
mod = modifiers_ptr(blob_data);
- for (i = 0; i < plane->modifier_count; i++) {
- for (j = 0; j < plane->format_count; j++) {
- if (!plane->funcs->format_mod_supported ||
+ for (i = 0; i < modifier_count; i++) {
+ for (j = 0; j < format_count; j++) {
+ if (is_async ||
+ !plane->funcs->format_mod_supported ||
plane->funcs->format_mod_supported(plane,
- plane->format_types[j],
- plane->modifiers[i])) {
+ formats[j],
+ modifiers[i])) {
mod->formats |= 1ULL << j;
}
}
- mod->modifier = plane->modifiers[i];
+ mod->modifier = modifiers[i];
mod->offset = 0;
mod->pad = 0;
mod++;
}
- drm_object_attach_property(&plane->base, config->modifiers_property,
- blob->base.id);
+ if (is_async)
+ drm_object_attach_property(&plane->base,
+ config->async_modifiers_property,
+ blob->base.id);
+ else
+ drm_object_attach_property(&plane->base,
+ config->modifiers_property,
+ blob->base.id);
return 0;
}
+EXPORT_SYMBOL(drm_plane_create_format_blob);
/**
* DOC: hotspot properties
@@ -476,7 +487,10 @@ static int __drm_universal_plane_init(struct drm_device *dev,
}
if (format_modifier_count)
- create_in_format_blob(dev, plane);
+ drm_plane_create_format_blob(dev, plane, plane->modifiers,
+ format_modifier_count,
+ plane->format_types, format_count,
+ false);
return 0;
}
diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
index dd718c62ac31..3c5c2c614af8 100644
--- a/include/drm/drm_plane.h
+++ b/include/drm/drm_plane.h
@@ -988,5 +988,9 @@ int drm_plane_create_scaling_filter_property(struct drm_plane *plane,
int drm_plane_add_size_hints_property(struct drm_plane *plane,
const struct drm_plane_size_hint *hints,
int num_hints);
+int drm_plane_create_format_blob(struct drm_device *dev,
+ struct drm_plane *plane, u64 *modifiers,
+ unsigned int modifier_count, u32 *formats,
+ unsigned int format_count, bool is_async);
#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob Arun R Murthy
@ 2024-11-18 7:53 ` Arun R Murthy
2024-11-22 4:02 ` kernel test robot
` (2 more replies)
2024-11-18 11:51 ` ✓ CI.Patch_applied: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Patchwork
` (8 subsequent siblings)
11 siblings, 3 replies; 20+ messages in thread
From: Arun R Murthy @ 2024-11-18 7:53 UTC (permalink / raw)
To: intel-xe, intel-gfx, dri-devel; +Cc: Arun R Murthy
Populate the list of formats/modifiers supported by async flip. Register
a async property and expose the same to user through blob.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
.../drm/i915/display/skl_universal_plane.c | 51 +++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 038ca2ec5d7a..a6e84ac56277 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -170,6 +170,44 @@ static const u32 icl_hdr_plane_formats[] = {
DRM_FORMAT_XVYU16161616,
};
+static u64 tgl_asyn_modifiers[] = {
+ DRM_FORMAT_MOD_LINEAR,
+ I915_FORMAT_MOD_X_TILED,
+ I915_FORMAT_MOD_Y_TILED,
+ I915_FORMAT_MOD_4_TILED,
+ I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS,
+ I915_FORMAT_MOD_4_TILED_MTL_RC_CCS,
+ I915_FORMAT_MOD_4_TILED_DG2_RC_CCS,
+ I915_FORMAT_MOD_4_TILED_BMG_CCS,
+ I915_FORMAT_MOD_4_TILED_LNL_CCS,
+};
+
+static u64 icl_async_modifiers[] = {
+ I915_FORMAT_MOD_X_TILED,
+ I915_FORMAT_MOD_Y_TILED,
+ I915_FORMAT_MOD_Yf_TILED,
+ I915_FORMAT_MOD_Y_TILED_CCS,
+ I915_FORMAT_MOD_Yf_TILED_CCS,
+};
+
+static u64 skl_async_modifiers[] = {
+ I915_FORMAT_MOD_X_TILED,
+ I915_FORMAT_MOD_Y_TILED,
+ I915_FORMAT_MOD_Yf_TILED,
+};
+
+static u32 intel_async_formats[] = {
+ DRM_FORMAT_RGB565,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_XBGR8888,
+ DRM_FORMAT_ARGB8888,
+ DRM_FORMAT_ABGR8888,
+ DRM_FORMAT_XRGB2101010,
+ DRM_FORMAT_XBGR2101010,
+ DRM_FORMAT_XRGB16161616F,
+ DRM_FORMAT_XBGR16161616F,
+};
+
int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
{
switch (format) {
@@ -2585,6 +2623,7 @@ skl_universal_plane_create(struct drm_i915_private *dev_priv,
unsigned int supported_rotations;
unsigned int supported_csc;
const u64 *modifiers;
+ u64 *async_modifiers;
const u32 *formats;
int num_formats;
int ret;
@@ -2687,6 +2726,18 @@ skl_universal_plane_create(struct drm_i915_private *dev_priv,
if (ret)
goto fail;
+ if (DISPLAY_VER(dev_priv) >= 12)
+ async_modifiers = tgl_asyn_modifiers;
+ else if (DISPLAY_VER(dev_priv) == 11)
+ async_modifiers = icl_async_modifiers;
+ else
+ async_modifiers = skl_async_modifiers;
+
+ drm_plane_create_format_blob(&dev_priv->drm, &plane->base,
+ async_modifiers, sizeof(async_modifiers),
+ intel_async_formats,
+ sizeof(intel_async_formats), true);
+
if (DISPLAY_VER(dev_priv) >= 13)
supported_rotations = DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_180;
else
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread
* ✓ CI.Patch_applied: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (2 preceding siblings ...)
2024-11-18 7:53 ` [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers Arun R Murthy
@ 2024-11-18 11:51 ` Patchwork
2024-11-18 11:52 ` ✓ CI.checkpatch: " Patchwork
` (7 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 11:51 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 90014f8026e3 drm-tip: 2024y-11m-18d-09h-06m-48s UTC integration manifest
=== git am output follows ===
Applying: drm/plane: Add new plane property IN_FORMATS_ASYNC
Applying: drm/plane: Expose function to create format/modifier blob
Applying: drm/i915/display: Populate list of async supported formats/modifiers
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ CI.checkpatch: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (3 preceding siblings ...)
2024-11-18 11:51 ` ✓ CI.Patch_applied: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Patchwork
@ 2024-11-18 11:52 ` Patchwork
2024-11-18 11:53 ` ✓ CI.KUnit: " Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 11:52 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : success
== 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
30ab6715fc09baee6cc14cb3c89ad8858688d474
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1bab1842c7a10015407b265e3aec1d7db689b34b
Author: Arun R Murthy <arun.r.murthy@intel.com>
Date: Mon Nov 18 13:23:15 2024 +0530
drm/i915/display: Populate list of async supported formats/modifiers
Populate the list of formats/modifiers supported by async flip. Register
a async property and expose the same to user through blob.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
+ /mt/dim checkpatch 90014f8026e31874d368834834253debd131268b drm-intel
de9d060c7e4d drm/plane: Add new plane property IN_FORMATS_ASYNC
04de1c7e39f7 drm/plane: Expose function to create format/modifier blob
1bab1842c7a1 drm/i915/display: Populate list of async supported formats/modifiers
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ CI.KUnit: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (4 preceding siblings ...)
2024-11-18 11:52 ` ✓ CI.checkpatch: " Patchwork
@ 2024-11-18 11:53 ` Patchwork
2024-11-18 12:11 ` ✓ CI.Build: " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 11:53 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:52:16] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:52:21] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[11:52:49] Starting KUnit Kernel (1/1)...
[11:52:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:52:49] =================== guc_dbm (7 subtests) ===================
[11:52:49] [PASSED] test_empty
[11:52:49] [PASSED] test_default
[11:52:49] ======================== test_size ========================
[11:52:49] [PASSED] 4
[11:52:49] [PASSED] 8
[11:52:49] [PASSED] 32
[11:52:49] [PASSED] 256
[11:52:49] ==================== [PASSED] test_size ====================
[11:52:49] ======================= test_reuse ========================
[11:52:49] [PASSED] 4
[11:52:49] [PASSED] 8
[11:52:49] [PASSED] 32
[11:52:49] [PASSED] 256
[11:52:49] =================== [PASSED] test_reuse ====================
[11:52:49] =================== test_range_overlap ====================
[11:52:49] [PASSED] 4
[11:52:49] [PASSED] 8
[11:52:49] [PASSED] 32
[11:52:49] [PASSED] 256
[11:52:49] =============== [PASSED] test_range_overlap ================
[11:52:49] =================== test_range_compact ====================
[11:52:49] [PASSED] 4
[11:52:49] [PASSED] 8
[11:52:49] [PASSED] 32
[11:52:49] [PASSED] 256
[11:52:49] =============== [PASSED] test_range_compact ================
[11:52:49] ==================== test_range_spare =====================
[11:52:49] [PASSED] 4
[11:52:49] [PASSED] 8
[11:52:49] [PASSED] 32
[11:52:49] [PASSED] 256
[11:52:49] ================ [PASSED] test_range_spare =================
[11:52:49] ===================== [PASSED] guc_dbm =====================
[11:52:49] =================== guc_idm (6 subtests) ===================
[11:52:49] [PASSED] bad_init
[11:52:49] [PASSED] no_init
[11:52:49] [PASSED] init_fini
[11:52:49] [PASSED] check_used
[11:52:49] [PASSED] check_quota
[11:52:49] [PASSED] check_all
[11:52:49] ===================== [PASSED] guc_idm =====================
[11:52:49] ================== no_relay (3 subtests) ===================
[11:52:49] [PASSED] xe_drops_guc2pf_if_not_ready
[11:52:49] [PASSED] xe_drops_guc2vf_if_not_ready
[11:52:49] [PASSED] xe_rejects_send_if_not_ready
[11:52:49] ==================== [PASSED] no_relay =====================
[11:52:49] ================== pf_relay (14 subtests) ==================
[11:52:49] [PASSED] pf_rejects_guc2pf_too_short
[11:52:49] [PASSED] pf_rejects_guc2pf_too_long
[11:52:49] [PASSED] pf_rejects_guc2pf_no_payload
[11:52:49] [PASSED] pf_fails_no_payload
[11:52:49] [PASSED] pf_fails_bad_origin
[11:52:49] [PASSED] pf_fails_bad_type
[11:52:49] [PASSED] pf_txn_reports_error
[11:52:49] [PASSED] pf_txn_sends_pf2guc
[11:52:49] [PASSED] pf_sends_pf2guc
[11:52:49] [SKIPPED] pf_loopback_nop
[11:52:49] [SKIPPED] pf_loopback_echo
[11:52:49] [SKIPPED] pf_loopback_fail
[11:52:49] [SKIPPED] pf_loopback_busy
[11:52:49] [SKIPPED] pf_loopback_retry
[11:52:49] ==================== [PASSED] pf_relay =====================
[11:52:49] ================== vf_relay (3 subtests) ===================
[11:52:49] [PASSED] vf_rejects_guc2vf_too_short
[11:52:49] [PASSED] vf_rejects_guc2vf_too_long
[11:52:49] [PASSED] vf_rejects_guc2vf_no_payload
[11:52:49] ==================== [PASSED] vf_relay =====================
[11:52:49] ================= pf_service (11 subtests) =================
[11:52:49] [PASSED] pf_negotiate_any
[11:52:49] [PASSED] pf_negotiate_base_match
[11:52:49] [PASSED] pf_negotiate_base_newer
[11:52:49] [PASSED] pf_negotiate_base_next
[11:52:49] [SKIPPED] pf_negotiate_base_older
[11:52:49] [PASSED] pf_negotiate_base_prev
[11:52:49] [PASSED] pf_negotiate_latest_match
[11:52:49] [PASSED] pf_negotiate_latest_newer
[11:52:49] [PASSED] pf_negotiate_latest_next
[11:52:49] [SKIPPED] pf_negotiate_latest_older
[11:52:49] [SKIPPED] pf_negotiate_latest_prev
[11:52:49] =================== [PASSED] pf_service ====================
[11:52:49] ===================== lmtt (1 subtest) =====================
[11:52:49] ======================== test_ops =========================
[11:52:49] [PASSED] 2-level
[11:52:49] [PASSED] multi-level
[11:52:49] ==================== [PASSED] test_ops =====================
[11:52:49] ====================== [PASSED] lmtt =======================
[11:52:49] =================== xe_mocs (2 subtests) ===================
[11:52:49] ================ xe_live_mocs_kernel_kunit ================
[11:52:49] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:52:49] ================ xe_live_mocs_reset_kunit =================
[11:52:49] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:52:49] ==================== [SKIPPED] xe_mocs =====================
[11:52:49] ================= xe_migrate (2 subtests) ==================
[11:52:49] ================= xe_migrate_sanity_kunit =================
[11:52:49] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:52:49] ================== xe_validate_ccs_kunit ==================
[11:52:49] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:52:49] =================== [SKIPPED] xe_migrate ===================
[11:52:49] ================== xe_dma_buf (1 subtest) ==================
[11:52:49] ==================== xe_dma_buf_kunit =====================
[11:52:49] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:52:49] =================== [SKIPPED] xe_dma_buf ===================
[11:52:49] ==================== xe_bo (3 subtests) ====================
[11:52:49] ================== xe_ccs_migrate_kunit ===================
[11:52:49] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:52:49] ==================== xe_bo_evict_kunit ====================
[11:52:49] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:52:49] =================== xe_bo_shrink_kunit ====================
[11:52:49] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:52:49] ===================== [SKIPPED] xe_bo ======================
[11:52:49] ==================== args (11 subtests) ====================
[11:52:49] [PASSED] count_args_test
[11:52:49] [PASSED] call_args_example
[11:52:49] [PASSED] call_args_test
[11:52:49] [PASSED] drop_first_arg_example
[11:52:49] [PASSED] drop_first_arg_test
[11:52:49] [PASSED] first_arg_example
[11:52:49] [PASSED] first_arg_test
[11:52:49] [PASSED] last_arg_example
[11:52:49] [PASSED] last_arg_test
[11:52:49] [PASSED] pick_arg_example
[11:52:49] [PASSED] sep_comma_examplestty: 'standard input': Inappropriate ioctl for device
[11:52:49] ====================== [PASSED] args =======================
[11:52:49] =================== xe_pci (2 subtests) ====================
[11:52:49] [PASSED] xe_gmdid_graphics_ip
[11:52:49] [PASSED] xe_gmdid_media_ip
[11:52:49] ===================== [PASSED] xe_pci ======================
[11:52:49] =================== xe_rtp (2 subtests) ====================
[11:52:49] =============== xe_rtp_process_to_sr_tests ================
[11:52:49] [PASSED] coalesce-same-reg
[11:52:49] [PASSED] no-match-no-add
[11:52:49] [PASSED] match-or
[11:52:49] [PASSED] match-or-xfail
[11:52:49] [PASSED] no-match-no-add-multiple-rules
[11:52:49] [PASSED] two-regs-two-entries
[11:52:49] [PASSED] clr-one-set-other
[11:52:49] [PASSED] set-field
[11:52:49] [PASSED] conflict-duplicate
[11:52:49] [PASSED] conflict-not-disjoint
[11:52:49] [PASSED] conflict-reg-type
[11:52:49] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:52:49] ================== xe_rtp_process_tests ===================
[11:52:49] [PASSED] active1
[11:52:49] [PASSED] active2
[11:52:49] [PASSED] active-inactive
[11:52:49] [PASSED] inactive-active
[11:52:49] [PASSED] inactive-1st_or_active-inactive
[11:52:49] [PASSED] inactive-2nd_or_active-inactive
[11:52:49] [PASSED] inactive-last_or_active-inactive
[11:52:49] [PASSED] inactive-no_or_active-inactive
[11:52:49] ============== [PASSED] xe_rtp_process_tests ===============
[11:52:49] ===================== [PASSED] xe_rtp ======================
[11:52:49] ==================== xe_wa (1 subtest) =====================
[11:52:49] ======================== xe_wa_gt =========================
[11:52:49] [PASSED] TIGERLAKE (B0)
[11:52:49] [PASSED] DG1 (A0)
[11:52:49] [PASSED] DG1 (B0)
[11:52:49] [PASSED] ALDERLAKE_S (A0)
[11:52:49] [PASSED] ALDERLAKE_S (B0)
[11:52:49] [PASSED] ALDERLAKE_S (C0)
[11:52:49] [PASSED] ALDERLAKE_S (D0)
[11:52:49] [PASSED] ALDERLAKE_P (A0)
[11:52:49] [PASSED] ALDERLAKE_P (B0)
[11:52:49] [PASSED] ALDERLAKE_P (C0)
[11:52:49] [PASSED] ALDERLAKE_S_RPLS (D0)
[11:52:49] [PASSED] ALDERLAKE_P_RPLU (E0)
[11:52:49] [PASSED] DG2_G10 (C0)
[11:52:49] [PASSED] DG2_G11 (B1)
[11:52:49] [PASSED] DG2_G12 (A1)
[11:52:49] [PASSED] METEORLAKE (g:A0, m:A0)
[11:52:49] [PASSED] METEORLAKE (g:A0, m:A0)
[11:52:49] [PASSED] METEORLAKE (g:A0, m:A0)
[11:52:49] [PASSED] LUNARLAKE (g:A0, m:A0)
[11:52:49] [PASSED] LUNARLAKE (g:B0, m:A0)
[11:52:49] [PASSED] BATTLEMAGE (g:A0, m:A1)
[11:52:49] ==================== [PASSED] xe_wa_gt =====================
[11:52:49] ====================== [PASSED] xe_wa ======================
[11:52:49] ============================================================
[11:52:49] Testing complete. Ran 122 tests: passed: 106, skipped: 16
[11:52:49] Elapsed time: 33.592s total, 5.113s configuring, 28.212s building, 0.215s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:52:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:52:51] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[11:53:14] Starting KUnit Kernel (1/1)...
[11:53:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:53:14] ================== drm_buddy (7 subtests) ==================
[11:53:14] [PASSED] drm_test_buddy_alloc_limit
[11:53:14] [PASSED] drm_test_buddy_alloc_optimistic
[11:53:14] [PASSED] drm_test_buddy_alloc_pessimistic
[11:53:14] [PASSED] drm_test_buddy_alloc_pathological
[11:53:14] [PASSED] drm_test_buddy_alloc_contiguous
[11:53:14] [PASSED] drm_test_buddy_alloc_clear
[11:53:14] [PASSED] drm_test_buddy_alloc_range_bias
[11:53:14] ==================== [PASSED] drm_buddy ====================
[11:53:14] ============= drm_cmdline_parser (40 subtests) =============
[11:53:14] [PASSED] drm_test_cmdline_force_d_only
[11:53:14] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:53:14] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:53:14] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:53:14] [PASSED] drm_test_cmdline_force_e_only
[11:53:14] [PASSED] drm_test_cmdline_res
[11:53:14] [PASSED] drm_test_cmdline_res_vesa
[11:53:14] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:53:14] [PASSED] drm_test_cmdline_res_rblank
[11:53:14] [PASSED] drm_test_cmdline_res_bpp
[11:53:14] [PASSED] drm_test_cmdline_res_refresh
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:53:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:53:14] [PASSED] drm_test_cmdline_res_margins_force_on
[11:53:14] [PASSED] drm_test_cmdline_res_vesa_margins
[11:53:14] [PASSED] drm_test_cmdline_name
[11:53:14] [PASSED] drm_test_cmdline_name_bpp
[11:53:14] [PASSED] drm_test_cmdline_name_option
[11:53:14] [PASSED] drm_test_cmdline_name_bpp_option
[11:53:14] [PASSED] drm_test_cmdline_rotate_0
[11:53:14] [PASSED] drm_test_cmdline_rotate_90
[11:53:14] [PASSED] drm_test_cmdline_rotate_180
[11:53:14] [PASSED] drm_test_cmdline_rotate_270
[11:53:14] [PASSED] drm_test_cmdline_hmirror
[11:53:14] [PASSED] drm_test_cmdline_vmirror
[11:53:14] [PASSED] drm_test_cmdline_margin_options
[11:53:14] [PASSED] drm_test_cmdline_multiple_options
[11:53:14] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:53:14] [PASSED] drm_test_cmdline_extra_and_option
[11:53:14] [PASSED] drm_test_cmdline_freestanding_options
[11:53:14] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:53:14] [PASSED] drm_test_cmdline_panel_orientation
[11:53:14] ================ drm_test_cmdline_invalid =================
[11:53:14] [PASSED] margin_only
[11:53:14] [PASSED] interlace_only
[11:53:14] [PASSED] res_missing_x
[11:53:14] [PASSED] res_missing_y
[11:53:14] [PASSED] res_bad_y
[11:53:14] [PASSED] res_missing_y_bpp
[11:53:14] [PASSED] res_bad_bpp
[11:53:14] [PASSED] res_bad_refresh
[11:53:14] [PASSED] res_bpp_refresh_force_on_off
[11:53:14] [PASSED] res_invalid_mode
[11:53:14] [PASSED] res_bpp_wrong_place_mode
[11:53:14] [PASSED] name_bpp_refresh
[11:53:14] [PASSED] name_refresh
[11:53:14] [PASSED] name_refresh_wrong_mode
[11:53:14] [PASSED] name_refresh_invalid_mode
[11:53:14] [PASSED] rotate_multiple
[11:53:14] [PASSED] rotate_invalid_val
[11:53:14] [PASSED] rotate_truncated
[11:53:14] [PASSED] invalid_option
[11:53:14] [PASSED] invalid_tv_option
[11:53:14] [PASSED] truncated_tv_option
[11:53:14] ============ [PASSED] drm_test_cmdline_invalid =============
[11:53:14] =============== drm_test_cmdline_tv_options ===============
[11:53:14] [PASSED] NTSC
[11:53:14] [PASSED] NTSC_443
[11:53:14] [PASSED] NTSC_J
[11:53:14] [PASSED] PAL
[11:53:14] [PASSED] PAL_M
[11:53:14] [PASSED] PAL_N
[11:53:14] [PASSED] SECAM
[11:53:14] [PASSED] MONO_525
[11:53:14] [PASSED] MONO_625
[11:53:14] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:53:14] =============== [PASSED] drm_cmdline_parser ================
[11:53:14] ========== drmm_connector_hdmi_init (19 subtests) ==========
[11:53:14] [PASSED] drm_test_connector_hdmi_init_valid
[11:53:14] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:53:14] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:53:14] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:53:14] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:53:14] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:53:14] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:53:14] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:53:14] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:53:14] [PASSED] drm_test_connector_hdmi_init_null_product
[11:53:14] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:53:14] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:53:14] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:53:14] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:53:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:53:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:53:14] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:53:14] ========= drm_test_connector_hdmi_init_type_valid =========
[11:53:14] [PASSED] HDMI-A
[11:53:14] [PASSED] HDMI-B
[11:53:14] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:53:14] ======== drm_test_connector_hdmi_init_type_invalid ========
[11:53:14] [PASSED] Unknown
[11:53:14] [PASSED] VGA
[11:53:14] [PASSED] DVI-I
[11:53:14] [PASSED] DVI-D
[11:53:14] [PASSED] DVI-A
[11:53:14] [PASSED] Composite
[11:53:14] [PASSED] SVIDEO
[11:53:14] [PASSED] LVDS
[11:53:14] [PASSED] Component
[11:53:14] [PASSED] DIN
[11:53:14] [PASSED] DP
[11:53:14] [PASSED] TV
[11:53:14] [PASSED] eDP
[11:53:14] [PASSED] Virtual
[11:53:14] [PASSED] DSI
[11:53:14] [PASSED] DPI
[11:53:14] [PASSED] Writeback
[11:53:14] [PASSED] SPI
[11:53:14] [PASSED] USB
[11:53:14] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:53:14] ============ [PASSED] drmm_connector_hdmi_init =============
[11:53:14] ============= drmm_connector_init (3 subtests) =============
[11:53:14] [PASSED] drm_test_drmm_connector_init
[11:53:14] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:53:14] ========= drm_test_drmm_connector_init_type_valid =========
[11:53:14] [PASSED] Unknown
[11:53:14] [PASSED] VGA
[11:53:14] [PASSED] DVI-I
[11:53:14] [PASSED] DVI-D
[11:53:14] [PASSED] DVI-A
[11:53:14] [PASSED] Composite
[11:53:14] [PASSED] SVIDEO
[11:53:14] [PASSED] LVDS
[11:53:14] [PASSED] Component
[11:53:14] [PASSED] DIN
[11:53:14] [PASSED] DP
[11:53:14] [PASSED] HDMI-A
[11:53:14] [PASSED] HDMI-B
[11:53:14] [PASSED] TV
[11:53:14] [PASSED] eDP
[11:53:14] [PASSED] Virtual
[11:53:14] [PASSED] DSI
[11:53:14] [PASSED] DPI
[11:53:14] [PASSED] Writeback
[11:53:14] [PASSED] SPI
[11:53:14] [PASSED] USB
[11:53:14] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:53:14] =============== [PASSED] drmm_connector_init ===============
[11:53:14] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:53:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:53:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:53:14] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:53:14] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:53:14] ========== drm_test_get_tv_mode_from_name_valid ===========
[11:53:14] [PASSED] NTSC
[11:53:14] [PASSED] NTSC-443
[11:53:14] [PASSED] NTSC-J
[11:53:14] [PASSED] PAL
[11:53:14] [PASSED] PAL-M
[11:53:14] [PASSED] PAL-N
[11:53:14] [PASSED] SECAM
[11:53:14] [PASSED] Mono
[11:53:14] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:53:14] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:53:14] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:53:14] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:53:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:53:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:53:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:53:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:53:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:53:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:53:14] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[11:53:14] [PASSED] VIC 96
[11:53:14] [PASSED] VIC 97
[11:53:14] [PASSED] VIC 101
[11:53:14] [PASSED] VIC 102
[11:53:14] [PASSED] VIC 106
[11:53:14] [PASSED] VIC 107
[11:53:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:53:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:53:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:53:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:53:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:53:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:53:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:53:14] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:53:14] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[11:53:14] [PASSED] Automatic
[11:53:14] [PASSED] Full
[11:53:14] [PASSED] Limited 16:235
[11:53:14] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:53:14] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:53:14] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:53:14] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:53:14] === drm_test_drm_hdmi_connector_get_output_format_name ====
[11:53:14] [PASSED] RGB
[11:53:14] [PASSED] YUV 4:2:0
[11:53:14] [PASSED] YUV 4:2:2
[11:53:14] [PASSED] YUV 4:4:4
[11:53:14] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:53:14] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:53:14] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:53:14] ============= drm_damage_helper (21 subtests) ==============
[11:53:14] [PASSED] drm_test_damage_iter_no_damage
[11:53:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:53:14] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:53:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:53:14] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:53:14] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:53:14] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:53:14] [PASSED] drm_test_damage_iter_simple_damage
[11:53:14] [PASSED] drm_test_damage_iter_single_damage
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:53:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:53:14] [PASSED] drm_test_damage_iter_damage
[11:53:14] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:53:14] [PASSED] drm_test_damage_iter_damage_one_outside
[11:53:14] [PASSED] drm_test_damage_iter_damage_src_moved
[11:53:14] [PASSED] drm_test_damage_iter_damage_not_visible
[11:53:14] ================ [PASSED] drm_damage_helper ================
[11:53:14] ============== drm_dp_mst_helper (3 subtests) ==============
[11:53:14] ============== drm_test_dp_mst_calc_pbn_mode ==============
[11:53:14] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:53:14] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:53:14] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:53:14] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:53:14] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:53:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:53:14] ============== drm_test_dp_mst_calc_pbn_div ===============
[11:53:14] [PASSED] Link rate 2000000 lane count 4
[11:53:14] [PASSED] Link rate 2000000 lane count 2
[11:53:14] [PASSED] Link rate 2000000 lane count 1
[11:53:14] [PASSED] Link rate 1350000 lane count 4
[11:53:14] [PASSED] Link rate 1350000 lane count 2
[11:53:14] [PASSED] Link rate 1350000 lane count 1
[11:53:14] [PASSED] Link rate 1000000 lane count 4
[11:53:14] [PASSED] Link rate 1000000 lane count 2
[11:53:14] [PASSED] Link rate 1000000 lane count 1
[11:53:14] [PASSED] Link rate 810000 lane count 4
[11:53:14] [PASSED] Link rate 810000 lane count 2
[11:53:14] [PASSED] Link rate 810000 lane count 1
[11:53:14] [PASSED] Link rate 540000 lane count 4
[11:53:14] [PASSED] Link rate 540000 lane count 2
[11:53:14] [PASSED] Link rate 540000 lane count 1
[11:53:14] [PASSED] Link rate 270000 lane count 4
[11:53:14] [PASSED] Link rate 270000 lane count 2
[11:53:14] [PASSED] Link rate 270000 lane count 1
[11:53:14] [PASSED] Link rate 162000 lane count 4
[11:53:14] [PASSED] Link rate 162000 lane count 2
[11:53:14] [PASSED] Link rate 162000 lane count 1
[11:53:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:53:14] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[11:53:14] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:53:14] [PASSED] DP_POWER_UP_PHY with port number
[11:53:14] [PASSED] DP_POWER_DOWN_PHY with port number
[11:53:14] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:53:14] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:53:14] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:53:14] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:53:14] [PASSED] DP_QUERY_PAYLOAD with port number
[11:53:14] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:53:14] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:53:14] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:53:14] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:53:14] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:53:14] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:53:14] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:53:14] [PASSED] DP_REMOTE_I2C_READ with port number
[11:53:14] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:53:14] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:53:14] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:53:14] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:53:14] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:53:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:53:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:53:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:53:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:53:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:53:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:53:14] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:53:14] ================ [PASSED] drm_dp_mst_helper ================
[11:53:14] ================== drm_exec (7 subtests) ===================
[11:53:14] [PASSED] sanitycheck
[11:53:14] [PASSED] test_lock
[11:53:14] [PASSED] test_lock_unlock
[11:53:14] [PASSED] test_duplicates
[11:53:14] [PASSED] test_prepare
[11:53:14] [PASSED] test_prepare_array
[11:53:14] [PASSED] test_multiple_loops
[11:53:14] ==================== [PASSED] drm_exec =====================
[11:53:14] =========== drm_format_helper_test (17 subtests) ===========
[11:53:14] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:53:14] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:53:14] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:53:14] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:53:14] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:53:14] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:53:14] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:53:14] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:53:14] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:53:14] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:53:14] ============== drm_test_fb_xrgb8888_to_mono ===============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:53:14] ==================== drm_test_fb_swab =====================
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ================ [PASSED] drm_test_fb_swab =================
[11:53:14] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:53:14] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[11:53:14] [PASSED] single_pixel_source_buffer
[11:53:14] [PASSED] single_pixel_clip_rectangle
[11:53:14] [PASSED] well_known_colors
[11:53:14] [PASSED] destination_pitch
[11:53:14] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:53:14] ================= drm_test_fb_clip_offset =================
[11:53:14] [PASSED] pass through
[11:53:14] [PASSED] horizontal offset
[11:53:14] [PASSED] vertical offset
[11:53:14] [PASSED] horizontal and vertical offset
[11:53:14] [PASSED] horizontal offset (custom pitch)
[11:53:14] [PASSED] vertical offset (custom pitch)
[11:53:14] [PASSED] horizontal and vertical offset (custom pitch)
[11:53:14] ============= [PASSED] drm_test_fb_clip_offset =============
[11:53:14] ============== drm_test_fb_build_fourcc_list ==============
[11:53:14] [PASSED] no native formats
[11:53:14] [PASSED] XRGB8888 as native format
[11:53:14] [PASSED] remove duplicates
[11:53:14] [PASSED] convert alpha formats
[11:53:14] [PASSED] random formats
[11:53:14] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[11:53:14] =================== drm_test_fb_memcpy ====================
[11:53:14] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:53:14] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:53:14] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:53:14] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:53:14] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:53:14] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:53:14] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:53:14] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:53:14] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:53:14] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:53:14] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:53:14] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:53:14] =============== [PASSED] drm_test_fb_memcpy ================
[11:53:14] ============= [PASSED] drm_format_helper_test ==============
[11:53:14] ================= drm_format (18 subtests) =================
[11:53:14] [PASSED] drm_test_format_block_width_invalid
[11:53:14] [PASSED] drm_test_format_block_width_one_plane
[11:53:14] [PASSED] drm_test_format_block_width_two_plane
[11:53:14] [PASSED] drm_test_format_block_width_three_plane
[11:53:14] [PASSED] drm_test_format_block_width_tiled
[11:53:14] [PASSED] drm_test_format_block_height_invalid
[11:53:14] [PASSED] drm_test_format_block_height_one_plane
[11:53:14] [PASSED] drm_test_format_block_height_two_plane
[11:53:14] [PASSED] drm_test_format_block_height_three_plane
[11:53:14] [PASSED] drm_test_format_block_height_tiled
[11:53:14] [PASSED] drm_test_format_min_pitch_invalid
[11:53:14] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:53:14] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:53:14] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:53:14] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:53:14] [PASSED] drm_test_format_min_pitch_two_plane
[11:53:14] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:53:14] [PASSED] drm_test_format_min_pitch_tiled
[11:53:14] =================== [PASSED] drm_format ====================
[11:53:14] ============== drm_framebuffer (10 subtests) ===============
[11:53:14] ========== drm_test_framebuffer_check_src_coords ==========
[11:53:14] [PASSED] Success: source fits into fb
[11:53:14] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:53:14] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:53:14] [PASSED] Fail: overflowing fb with source width
[11:53:14] [PASSED] Fail: overflowing fb with source height
[11:53:14] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:53:14] [PASSED] drm_test_framebuffer_cleanup
[11:53:14] =============== drm_test_framebuffer_create ===============
[11:53:14] [PASSED] ABGR8888 normal sizes
[11:53:14] [PASSED] ABGR8888 max sizes
[11:53:14] [PASSED] ABGR8888 pitch greater than min required
[11:53:14] [PASSED] ABGR8888 pitch less than min required
[11:53:14] [PASSED] ABGR8888 Invalid width
[11:53:14] [PASSED] ABGR8888 Invalid buffer handle
[11:53:14] [PASSED] No pixel format
[11:53:14] [PASSED] ABGR8888 Width 0
[11:53:14] [PASSED] ABGR8888 Height 0
[11:53:14] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:53:14] [PASSED] ABGR8888 Large buffer offset
[11:53:14] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:53:14] [PASSED] ABGR8888 Invalid flag
[11:53:14] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:53:14] [PASSED] ABGR8888 Valid buffer modifier
[11:53:14] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:53:14] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] NV12 Normal sizes
[11:53:14] [PASSED] NV12 Max sizes
[11:53:14] [PASSED] NV12 Invalid pitch
[11:53:14] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:53:14] [PASSED] NV12 different modifier per-plane
[11:53:14] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:53:14] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] NV12 Modifier for inexistent plane
[11:53:14] [PASSED] NV12 Handle for inexistent plane
[11:53:14] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:53:14] [PASSED] YVU420 Normal sizes
[11:53:14] [PASSED] YVU420 Max sizes
[11:53:14] [PASSED] YVU420 Invalid pitch
[11:53:14] [PASSED] YVU420 Different pitches
[11:53:14] [PASSED] YVU420 Different buffer offsets/pitches
[11:53:14] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:53:14] [PASSED] YVU420 Valid modifier
[11:53:14] [PASSED] YVU420 Different modifiers per plane
[11:53:14] [PASSED] YVU420 Modifier for inexistent plane
[11:53:14] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:53:14] [PASSED] X0L2 Normal sizes
[11:53:14] [PASSED] X0L2 Max sizes
[11:53:14] [PASSED] X0L2 Invalid pitch
[11:53:14] [PASSED] X0L2 Pitch greater than minimum required
[11:53:14] [PASSED] X0L2 Handle for inexistent plane
[11:53:14] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:53:14] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:53:14] [PASSED] X0L2 Valid modifier
[11:53:14] [PASSED] X0L2 Modifier for inexistent plane
[11:53:14] =========== [PASSED] drm_test_framebuffer_create ===========
[11:53:14] [PASSED] drm_test_framebuffer_free
[11:53:14] [PASSED] drm_test_framebuffer_init
[11:53:14] [PASSED] drm_test_framebuffer_init_bad_format
[11:53:14] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:53:14] [PASSED] drm_test_framebuffer_lookup
[11:53:14] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:53:14] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:53:14] ================= [PASSED] drm_framebuffer =================
[11:53:14] ================ drm_gem_shmem (8 subtests) ================
[11:53:14] [PASSED] drm_gem_shmem_test_obj_create
[11:53:14] [PASSED] drm_gem_shmem_test_obj_create_private
[11:53:14] [PASSED] drm_gem_shmem_test_pin_pages
[11:53:14] [PASSED] drm_gem_shmem_test_vmap
[11:53:14] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:53:14] [PASSED] drm_gem_shmem_test_get_sg_table
[11:53:14] [PASSED] drm_gem_shmem_test_madvise
[11:53:14] [PASSED] drm_gem_shmem_test_purge
[11:53:14] ================== [PASSED] drm_gem_shmem ==================
[11:53:14] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:53:14] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:53:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[11:53:14] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[11:53:14] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:53:14] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:53:14] [PASSED] drm_test_check_output_bpc_dvi
[11:53:14] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:53:14] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:53:14] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:53:14] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:53:14] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:53:14] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:53:14] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:53:14] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:53:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:53:14] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:53:14] [PASSED] drm_test_check_broadcast_rgb_value
[11:53:14] [PASSED] drm_test_check_bpc_8_value
[11:53:14] [PASSED] drm_test_check_bpc_10_value
[11:53:14] [PASSED] drm_test_check_bpc_12_value
[11:53:14] [PASSED] drm_test_check_format_value
[11:53:14] [PASSED] drm_test_check_tmds_char_value
[11:53:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:53:14] ================= drm_managed (2 subtests) =================
[11:53:14] [PASSED] drm_test_managed_release_action
[11:53:14] [PASSED] drm_test_managed_run_action
[11:53:14] =================== [PASSED] drm_managed ===================
[11:53:14] =================== drm_mm (6 subtests) ====================
[11:53:14] [PASSED] drm_test_mm_init
[11:53:14] [PASSED] drm_test_mm_debug
[11:53:14] [PASSED] drm_test_mm_align32
[11:53:14] [PASSED] drm_test_mm_align64
[11:53:14] [PASSED] drm_test_mm_lowest
[11:53:14] [PASSED] drm_test_mm_highest
[11:53:14] ===================== [PASSED] drm_mm ======================
[11:53:14] ============= drm_modes_analog_tv (5 subtests) =============
[11:53:14] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:53:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:53:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:53:14] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:53:14] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:53:14] =============== [PASSED] drm_modes_analog_tv ===============
stty: 'standard input': Inappropriate ioctl for device
[11:53:14] ============== drm_plane_helper (2 subtests) ===============
[11:53:14] =============== drm_test_check_plane_state ================
[11:53:14] [PASSED] clipping_simple
[11:53:14] [PASSED] clipping_rotate_reflect
[11:53:14] [PASSED] positioning_simple
[11:53:14] [PASSED] upscaling
[11:53:14] [PASSED] downscaling
[11:53:14] [PASSED] rounding1
[11:53:14] [PASSED] rounding2
[11:53:14] [PASSED] rounding3
[11:53:14] [PASSED] rounding4
[11:53:14] =========== [PASSED] drm_test_check_plane_state ============
[11:53:14] =========== drm_test_check_invalid_plane_state ============
[11:53:14] [PASSED] positioning_invalid
[11:53:14] [PASSED] upscaling_invalid
[11:53:14] [PASSED] downscaling_invalid
[11:53:14] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:53:14] ================ [PASSED] drm_plane_helper =================
[11:53:14] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:53:14] ====== drm_test_connector_helper_tv_get_modes_check =======
[11:53:14] [PASSED] None
[11:53:14] [PASSED] PAL
[11:53:14] [PASSED] NTSC
[11:53:14] [PASSED] Both, NTSC Default
[11:53:14] [PASSED] Both, PAL Default
[11:53:14] [PASSED] Both, NTSC Default, with PAL on command-line
[11:53:14] [PASSED] Both, PAL Default, with NTSC on command-line
[11:53:14] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:53:14] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:53:14] ================== drm_rect (9 subtests) ===================
[11:53:14] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:53:14] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:53:14] [PASSED] drm_test_rect_clip_scaled_clipped
[11:53:14] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:53:14] ================= drm_test_rect_intersect =================
[11:53:14] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:53:14] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:53:14] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:53:14] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:53:14] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:53:14] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:53:14] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:53:14] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:53:14] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:53:14] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:53:14] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:53:14] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:53:14] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:53:14] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:53:14] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:53:14] ============= [PASSED] drm_test_rect_intersect =============
[11:53:14] ================ drm_test_rect_calc_hscale ================
[11:53:14] [PASSED] normal use
[11:53:14] [PASSED] out of max range
[11:53:14] [PASSED] out of min range
[11:53:14] [PASSED] zero dst
[11:53:14] [PASSED] negative src
[11:53:14] [PASSED] negative dst
[11:53:14] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:53:14] ================ drm_test_rect_calc_vscale ================
[11:53:14] [PASSED] normal use
[11:53:14] [PASSED] out of max range
[11:53:14] [PASSED] out of min range
[11:53:14] [PASSED] zero dst
[11:53:14] [PASSED] negative src
[11:53:14] [PASSED] negative dst
[11:53:14] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:53:14] ================== drm_test_rect_rotate ===================
[11:53:14] [PASSED] reflect-x
[11:53:14] [PASSED] reflect-y
[11:53:14] [PASSED] rotate-0
[11:53:14] [PASSED] rotate-90
[11:53:14] [PASSED] rotate-180
[11:53:14] [PASSED] rotate-270
[11:53:14] ============== [PASSED] drm_test_rect_rotate ===============
[11:53:14] ================ drm_test_rect_rotate_inv =================
[11:53:14] [PASSED] reflect-x
[11:53:14] [PASSED] reflect-y
[11:53:14] [PASSED] rotate-0
[11:53:14] [PASSED] rotate-90
[11:53:14] [PASSED] rotate-180
[11:53:14] [PASSED] rotate-270
[11:53:14] ============ [PASSED] drm_test_rect_rotate_inv =============
[11:53:14] ==================== [PASSED] drm_rect =====================
[11:53:14] ============================================================
[11:53:14] Testing complete. Ran 526 tests: passed: 526
[11:53:14] Elapsed time: 24.950s total, 1.631s configuring, 23.141s building, 0.175s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:53:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:53:16] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
[11:53:24] Starting KUnit Kernel (1/1)...
[11:53:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:53:24] ================= ttm_device (5 subtests) ==================
[11:53:24] [PASSED] ttm_device_init_basic
[11:53:24] [PASSED] ttm_device_init_multiple
[11:53:24] [PASSED] ttm_device_fini_basic
[11:53:24] [PASSED] ttm_device_init_no_vma_man
[11:53:24] ================== ttm_device_init_pools ==================
[11:53:24] [PASSED] No DMA allocations, no DMA32 required
[11:53:24] [PASSED] DMA allocations, DMA32 required
[11:53:24] [PASSED] No DMA allocations, DMA32 required
[11:53:24] [PASSED] DMA allocations, no DMA32 required
[11:53:24] ============== [PASSED] ttm_device_init_pools ==============
[11:53:24] =================== [PASSED] ttm_device ====================
[11:53:24] ================== ttm_pool (8 subtests) ===================
[11:53:24] ================== ttm_pool_alloc_basic ===================
[11:53:24] [PASSED] One page
[11:53:24] [PASSED] More than one page
[11:53:24] [PASSED] Above the allocation limit
[11:53:24] [PASSED] One page, with coherent DMA mappings enabled
[11:53:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:53:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:53:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[11:53:24] [PASSED] One page
[11:53:24] [PASSED] More than one page
[11:53:24] [PASSED] Above the allocation limit
[11:53:24] [PASSED] One page, with coherent DMA mappings enabled
[11:53:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:53:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:53:24] [PASSED] ttm_pool_alloc_order_caching_match
[11:53:24] [PASSED] ttm_pool_alloc_caching_mismatch
[11:53:24] [PASSED] ttm_pool_alloc_order_mismatch
[11:53:24] [PASSED] ttm_pool_free_dma_alloc
[11:53:24] [PASSED] ttm_pool_free_no_dma_alloc
[11:53:24] [PASSED] ttm_pool_fini_basic
[11:53:24] ==================== [PASSED] ttm_pool =====================
[11:53:24] ================ ttm_resource (8 subtests) =================
[11:53:24] ================= ttm_resource_init_basic =================
[11:53:24] [PASSED] Init resource in TTM_PL_SYSTEM
[11:53:24] [PASSED] Init resource in TTM_PL_VRAM
[11:53:24] [PASSED] Init resource in a private placement
[11:53:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:53:24] ============= [PASSED] ttm_resource_init_basic =============
[11:53:24] [PASSED] ttm_resource_init_pinned
[11:53:24] [PASSED] ttm_resource_fini_basic
[11:53:24] [PASSED] ttm_resource_manager_init_basic
[11:53:24] [PASSED] ttm_resource_manager_usage_basic
[11:53:24] [PASSED] ttm_resource_manager_set_used_basic
[11:53:24] [PASSED] ttm_sys_man_alloc_basic
[11:53:24] [PASSED] ttm_sys_man_free_basic
[11:53:24] ================== [PASSED] ttm_resource ===================
[11:53:24] =================== ttm_tt (15 subtests) ===================
[11:53:24] ==================== ttm_tt_init_basic ====================
[11:53:24] [PASSED] Page-aligned size
[11:53:24] [PASSED] Extra pages requested
[11:53:24] ================ [PASSED] ttm_tt_init_basic ================
[11:53:24] [PASSED] ttm_tt_init_misaligned
[11:53:24] [PASSED] ttm_tt_fini_basic
[11:53:24] [PASSED] ttm_tt_fini_sg
[11:53:24] [PASSED] ttm_tt_fini_shmem
[11:53:24] [PASSED] ttm_tt_create_basic
[11:53:24] [PASSED] ttm_tt_create_invalid_bo_type
[11:53:24] [PASSED] ttm_tt_create_ttm_exists
[11:53:24] [PASSED] ttm_tt_create_failed
[11:53:24] [PASSED] ttm_tt_destroy_basic
[11:53:24] [PASSED] ttm_tt_populate_null_ttm
[11:53:24] [PASSED] ttm_tt_populate_populated_ttm
[11:53:24] [PASSED] ttm_tt_unpopulate_basic
[11:53:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:53:24] [PASSED] ttm_tt_swapin_basic
[11:53:24] ===================== [PASSED] ttm_tt ======================
[11:53:24] =================== ttm_bo (14 subtests) ===================
[11:53:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[11:53:24] [PASSED] Cannot be interrupted and sleeps
[11:53:24] [PASSED] Cannot be interrupted, locks straight away
[11:53:24] [PASSED] Can be interrupted, sleeps
[11:53:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:53:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:53:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:53:24] [PASSED] ttm_bo_reserve_double_resv
[11:53:24] [PASSED] ttm_bo_reserve_interrupted
[11:53:24] [PASSED] ttm_bo_reserve_deadlock
[11:53:24] [PASSED] ttm_bo_unreserve_basic
[11:53:24] [PASSED] ttm_bo_unreserve_pinned
[11:53:24] [PASSED] ttm_bo_unreserve_bulk
[11:53:24] [PASSED] ttm_bo_put_basic
[11:53:24] [PASSED] ttm_bo_put_shared_resv
[11:53:24] [PASSED] ttm_bo_pin_basic
[11:53:24] [PASSED] ttm_bo_pin_unpin_resource
[11:53:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:53:24] ===================== [PASSED] ttm_bo ======================
[11:53:24] ============== ttm_bo_validate (22 subtests) ===============
[11:53:24] ============== ttm_bo_init_reserved_sys_man ===============
[11:53:24] [PASSED] Buffer object for userspace
[11:53:24] [PASSED] Kernel buffer object
[11:53:24] [PASSED] Shared buffer object
[11:53:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:53:24] ============== ttm_bo_init_reserved_mock_man ==============
[11:53:24] [PASSED] Buffer object for userspace
[11:53:24] [PASSED] Kernel buffer object
[11:53:24] [PASSED] Shared buffer object
[11:53:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:53:24] [PASSED] ttm_bo_init_reserved_resv
[11:53:24] ================== ttm_bo_validate_basic ==================
[11:53:24] [PASSED] Buffer object for userspace
[11:53:24] [PASSED] Kernel buffer object
[11:53:24] [PASSED] Shared buffer object
[11:53:24] ============== [PASSED] ttm_bo_validate_basic ==============
[11:53:24] [PASSED] ttm_bo_validate_invalid_placement
[11:53:24] ============= ttm_bo_validate_same_placement ==============
[11:53:24] [PASSED] System manager
[11:53:24] [PASSED] VRAM manager
[11:53:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:53:24] [PASSED] ttm_bo_validate_failed_alloc
[11:53:24] [PASSED] ttm_bo_validate_pinned
[11:53:24] [PASSED] ttm_bo_validate_busy_placement
[11:53:24] ================ ttm_bo_validate_multihop =================
[11:53:24] [PASSED] Buffer object for userspace
[11:53:24] [PASSED] Kernel buffer object
[11:53:24] [PASSED] Shared buffer object
[11:53:24] ============ [PASSED] ttm_bo_validate_multihop =============
[11:53:24] ========== ttm_bo_validate_no_placement_signaled ==========
[11:53:24] [PASSED] Buffer object in system domain, no page vector
[11:53:24] [PASSED] Buffer object in system domain with an existing page vector
[11:53:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:53:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[11:53:24] [PASSED] Buffer object for userspace
[11:53:24] [PASSED] Kernel buffer object
[11:53:24] [PASSED] Shared buffer object
[11:53:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:53:24] [PASSED] ttm_bo_validate_move_fence_signaled
[11:53:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[11:53:24] [PASSED] Waits for GPU
[11:53:24] [PASSED] Tries to lock straight away
[11:53:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:53:24] [PASSED] ttm_bo_validate_swapout
[11:53:24] [PASSED] ttm_bo_validate_happy_evict
[11:53:24] [PASSED] ttm_bo_validate_all_pinned_evict
[11:53:24] [PASSED] ttm_bo_validate_allowed_only_evict
[11:53:24] [PASSED] ttm_bo_validate_deleted_evict
[11:53:24] [PASSED] ttm_bo_validate_busy_domain_evict
[11:53:24] [PASSED] ttm_bo_validate_evict_gutting
[11:53:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[11:53:24] ================= [PASSED] ttm_bo_validate =================
[11:53:24] ============================================================
[11:53:24] Testing complete. Ran 102 tests: passed: 102
[11:53:24] Elapsed time: 9.968s total, 1.651s configuring, 7.651s building, 0.557s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ CI.Build: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (5 preceding siblings ...)
2024-11-18 11:53 ` ✓ CI.KUnit: " Patchwork
@ 2024-11-18 12:11 ` Patchwork
2024-11-18 12:11 ` ✗ CI.Hooks: failure " Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 12:11 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : success
== Summary ==
lib/modules/6.12.0-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm-amd.ko
lib/modules/6.12.0-xe/kernel/kernel/
lib/modules/6.12.0-xe/kernel/kernel/kheaders.ko
lib/modules/6.12.0-xe/kernel/crypto/
lib/modules/6.12.0-xe/kernel/crypto/ecrdsa_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/xcbc.ko
lib/modules/6.12.0-xe/kernel/crypto/serpent_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/aria_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.12.0-xe/kernel/crypto/adiantum.ko
lib/modules/6.12.0-xe/kernel/crypto/tcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_engine.ko
lib/modules/6.12.0-xe/kernel/crypto/zstd.ko
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/pkcs7_test_key.ko
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
lib/modules/6.12.0-xe/kernel/crypto/des_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/xctr.ko
lib/modules/6.12.0-xe/kernel/crypto/authenc.ko
lib/modules/6.12.0-xe/kernel/crypto/sm4_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/keywrap.ko
lib/modules/6.12.0-xe/kernel/crypto/camellia_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/sm3.ko
lib/modules/6.12.0-xe/kernel/crypto/pcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/aegis128.ko
lib/modules/6.12.0-xe/kernel/crypto/af_alg.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_aead.ko
lib/modules/6.12.0-xe/kernel/crypto/cmac.ko
lib/modules/6.12.0-xe/kernel/crypto/sm3_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/aes_ti.ko
lib/modules/6.12.0-xe/kernel/crypto/chacha_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/poly1305_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/nhpoly1305.ko
lib/modules/6.12.0-xe/kernel/crypto/crc32_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/essiv.ko
lib/modules/6.12.0-xe/kernel/crypto/ccm.ko
lib/modules/6.12.0-xe/kernel/crypto/wp512.ko
lib/modules/6.12.0-xe/kernel/crypto/streebog_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/authencesn.ko
lib/modules/6.12.0-xe/kernel/crypto/echainiv.ko
lib/modules/6.12.0-xe/kernel/crypto/lrw.ko
lib/modules/6.12.0-xe/kernel/crypto/cryptd.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_user.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_hash.ko
lib/modules/6.12.0-xe/kernel/crypto/vmac.ko
lib/modules/6.12.0-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.12.0-xe/kernel/crypto/hctr2.ko
lib/modules/6.12.0-xe/kernel/crypto/842.ko
lib/modules/6.12.0-xe/kernel/crypto/pcbc.ko
lib/modules/6.12.0-xe/kernel/crypto/ansi_cprng.ko
lib/modules/6.12.0-xe/kernel/crypto/cast6_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/twofish_common.ko
lib/modules/6.12.0-xe/kernel/crypto/twofish_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/lz4hc.ko
lib/modules/6.12.0-xe/kernel/crypto/blowfish_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/md4.ko
lib/modules/6.12.0-xe/kernel/crypto/chacha20poly1305.ko
lib/modules/6.12.0-xe/kernel/crypto/curve25519-generic.ko
lib/modules/6.12.0-xe/kernel/crypto/lz4.ko
lib/modules/6.12.0-xe/kernel/crypto/rmd160.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_skcipher.ko
lib/modules/6.12.0-xe/kernel/crypto/cast5_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/fcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/ecdsa_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/sm4.ko
lib/modules/6.12.0-xe/kernel/crypto/cast_common.ko
lib/modules/6.12.0-xe/kernel/crypto/blowfish_common.ko
lib/modules/6.12.0-xe/kernel/crypto/michael_mic.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_rng.ko
lib/modules/6.12.0-xe/kernel/block/
lib/modules/6.12.0-xe/kernel/block/bfq.ko
lib/modules/6.12.0-xe/kernel/block/kyber-iosched.ko
lib/modules/6.12.0-xe/build
lib/modules/6.12.0-xe/modules.alias.bin
lib/modules/6.12.0-xe/modules.builtin
lib/modules/6.12.0-xe/modules.softdep
lib/modules/6.12.0-xe/modules.alias
lib/modules/6.12.0-xe/modules.order
lib/modules/6.12.0-xe/modules.symbols
lib/modules/6.12.0-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1731931867:package_x86_64_nodebug\r\e[0K'
^[[0Ksection_end:1731931867:package_x86_64_nodebug
^[[0K
+ sync
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✗ CI.Hooks: failure for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (6 preceding siblings ...)
2024-11-18 12:11 ` ✓ CI.Build: " Patchwork
@ 2024-11-18 12:11 ` Patchwork
2024-11-18 12:13 ` ✗ CI.checksparse: warning " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 12:11 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : failure
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
GEN Makefile
UPD include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool
UPD include/generated/utsrelease.h
CALL ../scripts/checksyscalls.sh
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-default/tools/objtool/weak.o
CC /workspace/kernel/build64-default/tools/objtool/check.o
CC /workspace/kernel/build64-default/tools/objtool/special.o
CC /workspace/kernel/build64-default/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-default/tools/objtool/elf.o
CC /workspace/kernel/build64-default/tools/objtool/objtool.o
CC /workspace/kernel/build64-default/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-default/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-default/tools/objtool/libstring.o
CC /workspace/kernel/build64-default/tools/objtool/libctype.o
CC /workspace/kernel/build64-default/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-default/tools/objtool/librbtree.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
LD /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-default/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default W=1 drivers/gpu/drm/xe
make[1]: Entering directory '/workspace/kernel/build64-default'
make[2]: Nothing to be done for 'drivers/gpu/drm/xe'.
make[1]: Leaving directory '/workspace/kernel/build64-default'
run-parts: executing /workspace/ci/hooks/11-build-32b
+++ realpath /workspace/ci/hooks/11-build-32b
++ dirname /workspace/ci/hooks/11-build-32b
+ THIS_SCRIPT_DIR=/workspace/ci/hooks
+ SRC_DIR=/workspace/kernel
+ TOOLS_SRC_DIR=/workspace/ci
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ BUILD_DIR=/workspace/kernel/build64-default/build32
+ cd /workspace/kernel
+ mkdir -p /workspace/kernel/build64-default/build32
++ nproc
+ make -j48 ARCH=i386 O=/workspace/kernel/build64-default/build32 defconfig
make[1]: Entering directory '/workspace/kernel/build64-default/build32'
GEN Makefile
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/confdata.o
HOSTCC scripts/kconfig/expr.o
LEX scripts/kconfig/lexer.lex.c
HOSTCC scripts/kconfig/menu.o
YACC scripts/kconfig/parser.tab.[ch]
HOSTCC scripts/kconfig/preprocess.o
HOSTCC scripts/kconfig/symbol.o
HOSTCC scripts/kconfig/util.o
HOSTCC scripts/kconfig/lexer.lex.o
HOSTCC scripts/kconfig/parser.tab.o
HOSTLD scripts/kconfig/conf
*** Default configuration is based on 'i386_defconfig'
#
# configuration written to .config
#
make[1]: Leaving directory '/workspace/kernel/build64-default/build32'
+ cd /workspace/kernel/build64-default/build32
+ /workspace/kernel/scripts/kconfig/merge_config.sh .config /workspace/ci/kernel/10-xe.fragment
Using .config as base
Merging /workspace/ci/kernel/10-xe.fragment
The merge file '/workspace/ci/kernel/10-xe.fragment' does not exist. Exit.
run-parts: /workspace/ci/hooks/11-build-32b exited with return code 1
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✗ CI.checksparse: warning for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (7 preceding siblings ...)
2024-11-18 12:11 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-11-18 12:13 ` Patchwork
2024-11-18 12:31 ` ✓ CI.BAT: success " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 12:13 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 90014f8026e31874d368834834253debd131268b
/root/linux/maintainer-tools/dim: line 2068: sparse: command not found
Sparse version:
Fast mode used, each commit won't be checked separately.
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ CI.BAT: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (8 preceding siblings ...)
2024-11-18 12:13 ` ✗ CI.checksparse: warning " Patchwork
@ 2024-11-18 12:31 ` Patchwork
2024-11-18 15:15 ` ✗ CI.FULL: failure " Patchwork
2024-12-13 10:55 ` ✗ CI.Patch_applied: failure for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC (rev2) Patchwork
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 12:31 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2477 bytes --]
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : success
== Summary ==
CI Bug Log - changes from xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f_BAT -> xe-pw-141474v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-141474v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#1033])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [FAIL][3] ([Intel XE#886]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@xe_exec_threads@threads-mixed-shared-vm-basic:
- bat-pvc-2: [DMESG-WARN][5] ([Intel XE#3371]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/bat-pvc-2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/bat-pvc-2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* Linux: xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f -> xe-pw-141474v1
IGT_8114: 8114
xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f: 57639ceec0f66f06f4a8a8ac3b9551b7b493c33f
xe-pw-141474v1: 141474v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/index.html
[-- Attachment #2: Type: text/html, Size: 3099 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✗ CI.FULL: failure for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (9 preceding siblings ...)
2024-11-18 12:31 ` ✓ CI.BAT: success " Patchwork
@ 2024-11-18 15:15 ` Patchwork
2024-12-13 10:55 ` ✗ CI.Patch_applied: failure for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC (rev2) Patchwork
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-11-18 15:15 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 92192 bytes --]
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC
URL : https://patchwork.freedesktop.org/series/141474/
State : failure
== Summary ==
CI Bug Log - changes from xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f_full -> xe-pw-141474v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-141474v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-141474v1_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-141474v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] +6 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1:
- shard-lnl: [PASS][2] -> [DMESG-WARN][3] +33 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1.html
* igt@kms_plane_cursor@primary:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-1/igt@kms_plane_cursor@primary.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-3/igt@kms_plane_cursor@primary.html
* igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7] +1 other test dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-4/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-4/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_module_load@many-reload:
- shard-lnl: [PASS][8] -> [ABORT][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-2/igt@xe_module_load@many-reload.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-2/igt@xe_module_load@many-reload.html
* igt@xe_vm@shared-pde2-page:
- shard-bmg: NOTRUN -> [DMESG-WARN][10] +1 other test dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@xe_vm@shared-pde2-page.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-transition@pipe-a-dp-2:
- shard-bmg: [DMESG-WARN][11] ([Intel XE#877]) -> [DMESG-WARN][12] +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition@pipe-a-dp-2.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [SKIP][13] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][15] ([Intel XE#3442]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
- shard-bmg: [INCOMPLETE][17] ([Intel XE#3468]) -> [DMESG-WARN][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][19] ([Intel XE#886]) -> [DMESG-WARN][20] +1 other test dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@xe_exec_balancer@once-virtual-userptr-rebind:
- shard-dg2-set2: [SKIP][21] ([Intel XE#1130]) -> [DMESG-WARN][22] +1 other test dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_exec_balancer@once-virtual-userptr-rebind.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_exec_balancer@once-virtual-userptr-rebind.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][23] ([Intel XE#3468]) -> [DMESG-WARN][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
New tests
---------
New tests have been introduced between xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f_full and xe-pw-141474v1_full:
### New IGT tests (18) ###
* igt@kms_pm_rpm@legacy-planes-dpms@plane-43:
- Statuses : 1 dmesg-warn(s) 3 pass(s)
- Exec time: [3.80, 87.09] s
* igt@kms_pm_rpm@legacy-planes-dpms@plane-53:
- Statuses : 1 dmesg-warn(s) 3 pass(s)
- Exec time: [3.79, 17.38] s
* igt@kms_pm_rpm@legacy-planes-dpms@plane-63:
- Statuses : 1 dmesg-warn(s) 3 pass(s)
- Exec time: [3.49, 17.54] s
* igt@kms_pm_rpm@legacy-planes-dpms@plane-73:
- Statuses : 1 dmesg-warn(s) 3 pass(s)
- Exec time: [4.20, 17.48] s
* igt@kms_pm_rpm@legacy-planes@plane-43:
- Statuses : 2 pass(s)
- Exec time: [8.14, 17.45] s
* igt@kms_pm_rpm@legacy-planes@plane-53:
- Statuses : 2 pass(s)
- Exec time: [8.19, 17.44] s
* igt@kms_pm_rpm@legacy-planes@plane-63:
- Statuses : 2 pass(s)
- Exec time: [8.14, 17.29] s
* igt@kms_pm_rpm@legacy-planes@plane-73:
- Statuses : 2 pass(s)
- Exec time: [8.21, 17.56] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-43:
- Statuses : 4 pass(s)
- Exec time: [4.21, 17.48] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-53:
- Statuses : 4 pass(s)
- Exec time: [4.11, 17.60] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-63:
- Statuses : 4 pass(s)
- Exec time: [3.78, 17.57] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-73:
- Statuses : 4 pass(s)
- Exec time: [3.79, 17.51] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-83:
- Statuses : 4 pass(s)
- Exec time: [3.85, 17.48] s
* igt@kms_pm_rpm@universal-planes@plane-43:
- Statuses : 1 pass(s)
- Exec time: [8.22] s
* igt@kms_pm_rpm@universal-planes@plane-53:
- Statuses : 1 pass(s)
- Exec time: [8.44] s
* igt@kms_pm_rpm@universal-planes@plane-63:
- Statuses : 1 pass(s)
- Exec time: [8.11] s
* igt@kms_pm_rpm@universal-planes@plane-73:
- Statuses : 1 pass(s)
- Exec time: [8.17] s
* igt@kms_pm_rpm@universal-planes@plane-83:
- Statuses : 1 pass(s)
- Exec time: [9.72] s
Known issues
------------
Here are the changes found in xe-pw-141474v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#1885])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@core_hotunplug@hotreplug.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@core_hotunplug@hotreplug.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-adlp: [PASS][27] -> [FAIL][28] ([Intel XE#827]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-6/igt@kms_async_flips@alternate-sync-async-flip.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-lnl: [PASS][29] -> [FAIL][30] ([Intel XE#1701]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#316])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][34] -> [DMESG-FAIL][35] ([Intel XE#1033])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1124])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#1033])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1124])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#787]) +41 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#314]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#3304])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2320])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][47] ([Intel XE#3468]) +5 other tests dmesg-fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-dp-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2286])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2375])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][50] -> [FAIL][51] ([Intel XE#3486])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#3321] / [Intel XE#3486])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +4 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#1195]) +1 other test incomplete
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#2953] / [Intel XE#3086])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][62] ([Intel XE#3468]) +2 other tests dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][63] ([Intel XE#3468]) +5 other tests dmesg-fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][64] ([Intel XE#3468]) +9 other tests dmesg-warn
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#886]) +3 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-2/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-2/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2-set2: [PASS][67] -> [SKIP][68] ([Intel XE#2136]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#455]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#651]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#658])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#653]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2313]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#3468]) +1 other test dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-4/igt@kms_hdr@static-swap.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_hdr@static-swap.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2927])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2763]) +8 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- shard-adlp: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3086]) +1 other test dmesg-warn
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-9/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-8/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#2029])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2446])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_prop_blob@blob-multiple:
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2423] / [i915#2575]) +22 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_prop_blob@blob-multiple.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_prop_blob@blob-multiple.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2234] / [Intel XE#2850])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#899]) +1 other test fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1280] / [Intel XE#455])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2905]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2905])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#1130]) +48 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2322]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#288])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: [PASS][99] -> [DMESG-WARN][100] ([Intel XE#358])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-3/igt@xe_exec_reset@cat-error.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-4/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][101] -> [DMESG-FAIL][102] ([Intel XE#3371])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][103] ([Intel XE#3343])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_oa@enable-disable@rcs-0:
- shard-lnl: NOTRUN -> [DMESG-WARN][104] ([Intel XE#3466])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-1/igt@xe_oa@enable-disable@rcs-0.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#2280])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@xe_pm@s4-mocs.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@xe_pm@s4-mocs.html
- shard-adlp: [PASS][107] -> [ABORT][108] ([Intel XE#1794])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-4/igt@xe_pm@s4-mocs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-9/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-adlp: [PASS][109] -> [ABORT][110] ([Intel XE#1607] / [Intel XE#1794])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-8/igt@xe_pm@s4-vm-bind-prefetch.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][111] -> [ABORT][112] ([Intel XE#1794])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@xe_pm@s4-vm-bind-unbind-all.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_prime_self_import@export-vs-gem_close-race:
- shard-lnl: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#3466]) +2 other tests dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-8/igt@xe_prime_self_import@export-vs-gem_close-race.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-1/igt@xe_prime_self_import@export-vs-gem_close-race.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#944])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@xe_query@multigpu-query-mem-usage.html
#### Possible fixes ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [FAIL][116] ([Intel XE#3440]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@core_getversion@all-cards.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@core_getversion@all-cards.html
* igt@fbdev@info:
- shard-dg2-set2: [SKIP][118] ([Intel XE#2134]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@fbdev@info.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@fbdev@info.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [FAIL][120] ([Intel XE#1426]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_color@degamma@pipe-a-dp-2:
- shard-bmg: [DMESG-WARN][122] -> [PASS][123] +9 other tests pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-6/igt@kms_color@degamma@pipe-a-dp-2.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_color@degamma@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][124] ([Intel XE#877]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][126] ([Intel XE#2423]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_dp_aux_dev.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][128] ([Intel XE#2882]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][130] ([Intel XE#3486]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][132] ([Intel XE#2953] / [Intel XE#3086]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [DMESG-FAIL][134] ([Intel XE#3468]) -> [PASS][135] +7 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][136] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [SKIP][138] ([Intel XE#2136]) -> [PASS][139] +5 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_joiner@basic-force-big-joiner.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_lease@invalid-create-leases:
- shard-dg2-set2: [SKIP][140] ([Intel XE#2423] / [i915#2575]) -> [PASS][141] +30 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_lease@invalid-create-leases.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_lease@invalid-create-leases.html
* igt@kms_plane_alpha_blend@alpha-7efc@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][142] -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-6/igt@kms_plane_alpha_blend@alpha-7efc@pipe-a-dp-2.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_plane_alpha_blend@alpha-7efc@pipe-a-dp-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-lnl: [DMESG-WARN][144] ([Intel XE#2566]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-bmg: [DMESG-WARN][146] ([Intel XE#2566]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][148] ([Intel XE#1430]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-lnl: [DMESG-WARN][150] ([Intel XE#3184]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-7/igt@kms_pm_rpm@cursor.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-4/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [SKIP][152] ([Intel XE#2446]) -> [PASS][153] +1 other test pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@universal-planes:
- shard-lnl: [DMESG-WARN][154] ([Intel XE#2042]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_pm_rpm@universal-planes.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_pm_rpm@universal-planes.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
- shard-lnl: [DMESG-WARN][156] -> [PASS][157] +88 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-lnl: [DMESG-WARN][158] ([Intel XE#3466]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_rotation_crc@sprite-rotation-180.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_vblank@wait-idle@pipe-a-dp-4:
- shard-dg2-set2: [FAIL][160] -> [PASS][161] +1 other test pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-463/igt@kms_vblank@wait-idle@pipe-a-dp-4.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-436/igt@kms_vblank@wait-idle@pipe-a-dp-4.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][162] ([Intel XE#2159]) -> [PASS][163] +1 other test pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][164] ([Intel XE#1522]) -> [PASS][165] +1 other test pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-2/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_ccs@ctrl-surf-copy-new-ctx@xmajor-compressed-compfmt0-vram01-vram01:
- shard-bmg: [DMESG-WARN][166] ([Intel XE#3468]) -> [PASS][167] +33 other tests pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-4/igt@xe_ccs@ctrl-surf-copy-new-ctx@xmajor-compressed-compfmt0-vram01-vram01.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-4/igt@xe_ccs@ctrl-surf-copy-new-ctx@xmajor-compressed-compfmt0-vram01-vram01.html
* igt@xe_exec_basic@once-rebind:
- shard-dg2-set2: [SKIP][168] ([Intel XE#1130]) -> [PASS][169] +56 other tests pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_exec_basic@once-rebind.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_exec_basic@once-rebind.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-adlp: [DMESG-FAIL][170] ([Intel XE#3371]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-8/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-9/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][172] ([Intel XE#3467]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_module_load@reload:
- shard-adlp: [DMESG-WARN][174] ([Intel XE#3086]) -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-2/igt@xe_module_load@reload.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-2/igt@xe_module_load@reload.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-lnl: [DMESG-WARN][176] ([Intel XE#1616]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html
#### Warnings ####
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: [INCOMPLETE][178] ([Intel XE#1195]) -> [SKIP][179] ([Intel XE#1885])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@core_hotunplug@unplug-rescan.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][180] ([Intel XE#623]) -> [SKIP][181] ([Intel XE#2423] / [i915#2575])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [DMESG-FAIL][182] -> [FAIL][183] ([Intel XE#911]) +3 other tests fail
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: [SKIP][184] ([Intel XE#455]) -> [SKIP][185] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][186] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][187] ([Intel XE#316])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-bmg: [DMESG-WARN][188] ([Intel XE#3468]) -> [DMESG-FAIL][189] ([Intel XE#3468]) +1 other test dmesg-fail
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: [DMESG-FAIL][190] ([Intel XE#3468]) -> [DMESG-WARN][191] ([Intel XE#3468])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][192] ([Intel XE#2136]) -> [SKIP][193] ([Intel XE#316]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-adlp: [DMESG-FAIL][194] ([Intel XE#1033]) -> [FAIL][195] ([Intel XE#1874])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][196] ([Intel XE#2136]) -> [SKIP][197] ([Intel XE#1124])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][198] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][199] ([Intel XE#1124]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][200] ([Intel XE#1124]) -> [SKIP][201] ([Intel XE#2136]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][202] ([Intel XE#607]) -> [SKIP][203] ([Intel XE#2136])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][204] ([Intel XE#2136]) -> [SKIP][205] ([Intel XE#610])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][206] ([Intel XE#2423] / [i915#2575]) -> [SKIP][207] ([Intel XE#367]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][208] ([Intel XE#2423] / [i915#2575]) -> [SKIP][209] ([Intel XE#2191])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][210] ([Intel XE#367]) -> [SKIP][211] ([Intel XE#2423] / [i915#2575])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][212] ([Intel XE#2136]) -> [SKIP][213] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][214] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][216] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][217] ([Intel XE#2136]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: [SKIP][218] ([Intel XE#2423] / [i915#2575]) -> [SKIP][219] ([Intel XE#306]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-dg2-set2: [SKIP][220] ([Intel XE#2423] / [i915#2575]) -> [SKIP][221] ([Intel XE#373]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][222] ([Intel XE#373]) -> [SKIP][223] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@content-type-change:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2423] / [i915#2575]) -> [SKIP][225] ([Intel XE#455])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_content_protection@content-type-change.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][226] ([Intel XE#2423] / [i915#2575]) -> [FAIL][227] ([Intel XE#1178])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][228] ([Intel XE#2423] / [i915#2575]) -> [SKIP][229] ([Intel XE#308])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-bmg: [DMESG-FAIL][230] ([Intel XE#3468]) -> [INCOMPLETE][231] ([Intel XE#3468])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2:
- shard-bmg: [DMESG-WARN][232] ([Intel XE#3468]) -> [INCOMPLETE][233] ([Intel XE#3468])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-7/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][234] ([Intel XE#2423] / [i915#2575]) -> [SKIP][235] ([Intel XE#323])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-bmg: [INCOMPLETE][236] ([Intel XE#3468]) -> [DMESG-FAIL][237] ([Intel XE#3468])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2-set2: [SKIP][238] ([Intel XE#455]) -> [SKIP][239] ([Intel XE#2136])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [SKIP][241] ([Intel XE#1135])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_feature_discovery@psr2.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][242] ([Intel XE#3486]) -> [FAIL][243] ([Intel XE#3321] / [Intel XE#3486])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-set2: [DMESG-WARN][244] -> [SKIP][245] ([Intel XE#2423] / [i915#2575])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [SKIP][246] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][247] ([Intel XE#3468])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][248] ([Intel XE#2136]) -> [SKIP][249] ([Intel XE#455]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][250] ([Intel XE#651]) -> [SKIP][251] ([Intel XE#2136]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#651]) +9 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][254] ([Intel XE#3468]) -> [FAIL][255] ([Intel XE#2333]) +2 other tests fail
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][256] ([Intel XE#651]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][258] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][259] ([Intel XE#651]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#653]) +10 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][262] ([Intel XE#653]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][264] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][265] ([Intel XE#653]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][266] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][267] ([Intel XE#658])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][268] ([Intel XE#653]) -> [SKIP][269] ([Intel XE#2136]) +6 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [INCOMPLETE][270] ([Intel XE#1195]) -> [INCOMPLETE][271] ([Intel XE#1195] / [Intel XE#3468]) +2 other tests incomplete
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-adlp: [INCOMPLETE][272] ([Intel XE#1035] / [Intel XE#1195]) -> [INCOMPLETE][273] ([Intel XE#1035])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-adlp-2/igt@kms_plane@pixel-format-source-clamping.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-adlp-3/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][274] ([Intel XE#616]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_plane_cursor@primary.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [SKIP][277] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][278] ([Intel XE#870]) -> [SKIP][279] ([Intel XE#2136])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][280] ([Intel XE#1489]) -> [SKIP][281] ([Intel XE#2136]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][282] ([Intel XE#2136]) -> [SKIP][283] ([Intel XE#1489]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#1122])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][287] ([Intel XE#2136]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_psr@fbc-psr-cursor-blt.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-move.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][293] ([Intel XE#2351])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][295] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_psr@psr-dpms.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2423] / [i915#2575]) -> [SKIP][297] ([Intel XE#1127])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [SKIP][299] ([Intel XE#3414])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [SKIP][301] ([Intel XE#362])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][302] ([Intel XE#756]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][304] ([Intel XE#1130]) -> [SKIP][305] ([Intel XE#1280] / [Intel XE#455])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2905]) -> [SKIP][307] ([Intel XE#1130]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_eudebug_online@interrupt-all:
- shard-dg2-set2: [SKIP][308] ([Intel XE#1130]) -> [SKIP][309] ([Intel XE#2905]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_eudebug_online@interrupt-all.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_eudebug_online@interrupt-all.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][310] ([Intel XE#1130]) -> [TIMEOUT][311] ([Intel XE#1473] / [Intel XE#402])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [SKIP][312] ([Intel XE#1130]) -> [FAIL][313] ([Intel XE#1600])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][314] ([Intel XE#1473]) -> [DMESG-WARN][315] ([Intel XE#3468])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@many-basic:
- shard-dg2-set2: [SKIP][316] ([Intel XE#1130]) -> [SKIP][317] ([Intel XE#288]) +9 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_exec_fault_mode@many-basic.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_exec_fault_mode@many-basic.html
* igt@xe_exec_fault_mode@once-basic:
- shard-dg2-set2: [SKIP][318] ([Intel XE#288]) -> [SKIP][319] ([Intel XE#1130]) +7 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_exec_fault_mode@once-basic.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_exec_fault_mode@once-basic.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2360]) -> [SKIP][321] ([Intel XE#1130])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-dg2-set2: [SKIP][322] ([Intel XE#1130]) -> [DMESG-FAIL][323] ([Intel XE#3371])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [DMESG-WARN][324] ([Intel XE#3343]) -> [SKIP][325] ([Intel XE#1130])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-dg2-set2: [DMESG-WARN][326] ([Intel XE#3467]) -> [SKIP][327] ([Intel XE#1130])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-dg2-set2: [SKIP][328] ([Intel XE#1130]) -> [DMESG-WARN][329] ([Intel XE#3467]) +1 other test dmesg-warn
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][330] ([Intel XE#1192] / [Intel XE#3026]) -> [SKIP][331] ([Intel XE#2833])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-lnl-3/igt@xe_live_ktest@xe_eudebug.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][332] ([Intel XE#560]) -> [SKIP][333] ([Intel XE#1130])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_media_fill@media-fill.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_media_fill@media-fill.html
* igt@xe_oa@map-oa-buffer:
- shard-dg2-set2: [SKIP][334] ([Intel XE#2541]) -> [SKIP][335] ([Intel XE#1130])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_oa@map-oa-buffer.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_oa@map-oa-buffer.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][336] ([Intel XE#1130]) -> [SKIP][337] ([Intel XE#2541]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][338] ([Intel XE#1173]) -> [SKIP][339] ([Intel XE#1061])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_peer2peer@read.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][340] ([Intel XE#1130]) -> [SKIP][341] ([Intel XE#2284] / [Intel XE#366])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: [DMESG-WARN][342] ([Intel XE#3468]) -> [SKIP][343] ([Intel XE#1130])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_pm@s4-exec-after.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [SKIP][344] ([Intel XE#1130]) -> [DMESG-WARN][345] ([Intel XE#3468])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_pm@s4-multiple-execs.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [SKIP][346] ([Intel XE#1130]) -> [DMESG-WARN][347] ([Intel XE#2280])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_pm@s4-vm-bind-userptr.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: [DMESG-WARN][348] ([Intel XE#3088]) -> [SKIP][349] ([Intel XE#1130])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-436/igt@xe_pm_residency@gt-c6-freeze.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-466/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-dg2-set2: [SKIP][350] ([Intel XE#1130]) -> [SKIP][351] ([Intel XE#944])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f/shard-dg2-466/igt@xe_query@multigpu-query-invalid-size.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/shard-dg2-463/igt@xe_query@multigpu-query-invalid-size.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3086
[Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[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
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* Linux: xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f -> xe-pw-141474v1
IGT_8114: 8114
xe-2245-57639ceec0f66f06f4a8a8ac3b9551b7b493c33f: 57639ceec0f66f06f4a8a8ac3b9551b7b493c33f
xe-pw-141474v1: 141474v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141474v1/index.html
[-- Attachment #2: Type: text/html, Size: 113307 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
2024-11-18 7:53 ` [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers Arun R Murthy
@ 2024-11-22 4:02 ` kernel test robot
2024-11-25 13:05 ` kernel test robot
2024-11-28 23:21 ` kernel test robot
2 siblings, 0 replies; 20+ messages in thread
From: kernel test robot @ 2024-11-22 4:02 UTC (permalink / raw)
To: Arun R Murthy, intel-xe, intel-gfx, dri-devel
Cc: oe-kbuild-all, Arun R Murthy
Hi Arun,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-intel/for-linux-next-fixes]
[also build test WARNING on v6.12 next-20241121]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Arun-R-Murthy/drm-plane-Expose-function-to-create-format-modifier-blob/20241121-105652
base: git://anongit.freedesktop.org/drm-intel for-linux-next-fixes
patch link: https://lore.kernel.org/r/20241118075315.466009-4-arun.r.murthy%40intel.com
patch subject: [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
config: x86_64-randconfig-103-20241121 (https://download.01.org/0day-ci/archive/20241122/202411221109.nlXeWx72-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-12) 11.3.0
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202411221109.nlXeWx72-lkp@intel.com/
cocci warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/i915/display/skl_universal_plane.c:2626:26-32: ERROR: application of sizeof to pointer
vim +2626 drivers/gpu/drm/i915/display/skl_universal_plane.c
2510
2511 struct intel_plane *
2512 skl_universal_plane_create(struct drm_i915_private *dev_priv,
2513 enum pipe pipe, enum plane_id plane_id)
2514 {
2515 const struct drm_plane_funcs *plane_funcs;
2516 struct intel_plane *plane;
2517 enum drm_plane_type plane_type;
2518 unsigned int supported_rotations;
2519 unsigned int supported_csc;
2520 const u64 *modifiers;
2521 u64 *async_modifiers;
2522 const u32 *formats;
2523 int num_formats;
2524 int ret;
2525
2526 plane = intel_plane_alloc();
2527 if (IS_ERR(plane))
2528 return plane;
2529
2530 plane->pipe = pipe;
2531 plane->id = plane_id;
2532 plane->frontbuffer_bit = INTEL_FRONTBUFFER(pipe, plane_id);
2533
2534 intel_fbc_add_plane(skl_plane_fbc(dev_priv, pipe, plane_id), plane);
2535
2536 if (DISPLAY_VER(dev_priv) >= 11) {
2537 plane->min_width = icl_plane_min_width;
2538 if (icl_is_hdr_plane(dev_priv, plane_id))
2539 plane->max_width = icl_hdr_plane_max_width;
2540 else
2541 plane->max_width = icl_sdr_plane_max_width;
2542 plane->max_height = icl_plane_max_height;
2543 plane->min_cdclk = icl_plane_min_cdclk;
2544 } else if (DISPLAY_VER(dev_priv) >= 10) {
2545 plane->max_width = glk_plane_max_width;
2546 plane->max_height = skl_plane_max_height;
2547 plane->min_cdclk = glk_plane_min_cdclk;
2548 } else {
2549 plane->max_width = skl_plane_max_width;
2550 plane->max_height = skl_plane_max_height;
2551 plane->min_cdclk = skl_plane_min_cdclk;
2552 }
2553
2554 if (DISPLAY_VER(dev_priv) >= 13)
2555 plane->max_stride = adl_plane_max_stride;
2556 else
2557 plane->max_stride = skl_plane_max_stride;
2558
2559 if (DISPLAY_VER(dev_priv) >= 12)
2560 plane->min_alignment = tgl_plane_min_alignment;
2561 else
2562 plane->min_alignment = skl_plane_min_alignment;
2563
2564 if (DISPLAY_VER(dev_priv) >= 11) {
2565 plane->update_noarm = icl_plane_update_noarm;
2566 plane->update_arm = icl_plane_update_arm;
2567 plane->disable_arm = icl_plane_disable_arm;
2568 } else {
2569 plane->update_noarm = skl_plane_update_noarm;
2570 plane->update_arm = skl_plane_update_arm;
2571 plane->disable_arm = skl_plane_disable_arm;
2572 }
2573 plane->get_hw_state = skl_plane_get_hw_state;
2574 plane->check_plane = skl_plane_check;
2575
2576 if (plane_id == PLANE_1) {
2577 plane->need_async_flip_toggle_wa = IS_DISPLAY_VER(dev_priv, 9, 10);
2578 plane->async_flip = skl_plane_async_flip;
2579 plane->enable_flip_done = skl_plane_enable_flip_done;
2580 plane->disable_flip_done = skl_plane_disable_flip_done;
2581 }
2582
2583 if (DISPLAY_VER(dev_priv) >= 11)
2584 formats = icl_get_plane_formats(dev_priv, pipe,
2585 plane_id, &num_formats);
2586 else if (DISPLAY_VER(dev_priv) >= 10)
2587 formats = glk_get_plane_formats(dev_priv, pipe,
2588 plane_id, &num_formats);
2589 else
2590 formats = skl_get_plane_formats(dev_priv, pipe,
2591 plane_id, &num_formats);
2592
2593 if (DISPLAY_VER(dev_priv) >= 12)
2594 plane_funcs = &gen12_plane_funcs;
2595 else
2596 plane_funcs = &skl_plane_funcs;
2597
2598 if (plane_id == PLANE_1)
2599 plane_type = DRM_PLANE_TYPE_PRIMARY;
2600 else
2601 plane_type = DRM_PLANE_TYPE_OVERLAY;
2602
2603 modifiers = intel_fb_plane_get_modifiers(dev_priv,
2604 skl_get_plane_caps(dev_priv, pipe, plane_id));
2605
2606 ret = drm_universal_plane_init(&dev_priv->drm, &plane->base,
2607 0, plane_funcs,
2608 formats, num_formats, modifiers,
2609 plane_type,
2610 "plane %d%c", plane_id + 1,
2611 pipe_name(pipe));
2612
2613 kfree(modifiers);
2614
2615 if (ret)
2616 goto fail;
2617
2618 if (DISPLAY_VER(dev_priv) >= 12)
2619 async_modifiers = tgl_asyn_modifiers;
2620 else if (DISPLAY_VER(dev_priv) == 11)
2621 async_modifiers = icl_async_modifiers;
2622 else
2623 async_modifiers = skl_async_modifiers;
2624
2625 drm_plane_create_format_blob(&dev_priv->drm, &plane->base,
> 2626 async_modifiers, sizeof(async_modifiers),
2627 intel_async_formats,
2628 sizeof(intel_async_formats), true);
2629
2630 if (DISPLAY_VER(dev_priv) >= 13)
2631 supported_rotations = DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_180;
2632 else
2633 supported_rotations =
2634 DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_90 |
2635 DRM_MODE_ROTATE_180 | DRM_MODE_ROTATE_270;
2636
2637 if (DISPLAY_VER(dev_priv) >= 11)
2638 supported_rotations |= DRM_MODE_REFLECT_X;
2639
2640 drm_plane_create_rotation_property(&plane->base,
2641 DRM_MODE_ROTATE_0,
2642 supported_rotations);
2643
2644 supported_csc = BIT(DRM_COLOR_YCBCR_BT601) | BIT(DRM_COLOR_YCBCR_BT709);
2645
2646 if (DISPLAY_VER(dev_priv) >= 10)
2647 supported_csc |= BIT(DRM_COLOR_YCBCR_BT2020);
2648
2649 drm_plane_create_color_properties(&plane->base,
2650 supported_csc,
2651 BIT(DRM_COLOR_YCBCR_LIMITED_RANGE) |
2652 BIT(DRM_COLOR_YCBCR_FULL_RANGE),
2653 DRM_COLOR_YCBCR_BT709,
2654 DRM_COLOR_YCBCR_LIMITED_RANGE);
2655
2656 drm_plane_create_alpha_property(&plane->base);
2657 drm_plane_create_blend_mode_property(&plane->base,
2658 BIT(DRM_MODE_BLEND_PIXEL_NONE) |
2659 BIT(DRM_MODE_BLEND_PREMULTI) |
2660 BIT(DRM_MODE_BLEND_COVERAGE));
2661
2662 drm_plane_create_zpos_immutable_property(&plane->base, plane_id);
2663
2664 if (DISPLAY_VER(dev_priv) >= 12)
2665 drm_plane_enable_fb_damage_clips(&plane->base);
2666
2667 if (DISPLAY_VER(dev_priv) >= 11)
2668 drm_plane_create_scaling_filter_property(&plane->base,
2669 BIT(DRM_SCALING_FILTER_DEFAULT) |
2670 BIT(DRM_SCALING_FILTER_NEAREST_NEIGHBOR));
2671
2672 intel_plane_helper_add(plane);
2673
2674 return plane;
2675
2676 fail:
2677 intel_plane_free(plane);
2678
2679 return ERR_PTR(ret);
2680 }
2681
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob
2024-11-18 7:53 ` [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob Arun R Murthy
@ 2024-11-22 20:06 ` Ville Syrjälä
2024-11-25 8:45 ` Murthy, Arun R
0 siblings, 1 reply; 20+ messages in thread
From: Ville Syrjälä @ 2024-11-22 20:06 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe, intel-gfx, dri-devel
On Mon, Nov 18, 2024 at 01:23:14PM +0530, Arun R Murthy wrote:
> Expose drm plane function to create formats/modifiers blob. This
> function can be used to expose list of supported formats/modifiers for
> sync/async flips.
>
> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> ---
> drivers/gpu/drm/drm_plane.c | 44 ++++++++++++++++++++++++-------------
> include/drm/drm_plane.h | 4 ++++
> 2 files changed, 33 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c
> index 416818e54ccf..4f35eec2b777 100644
> --- a/drivers/gpu/drm/drm_plane.c
> +++ b/drivers/gpu/drm/drm_plane.c
> @@ -191,7 +191,10 @@ modifiers_ptr(struct drm_format_modifier_blob *blob)
> return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
> }
>
> -static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane)
> +int drm_plane_create_format_blob(struct drm_device *dev,
> + struct drm_plane *plane, u64 *modifiers,
> + unsigned int modifier_count, u32 *formats,
> + unsigned int format_count, bool is_async)
> {
> const struct drm_mode_config *config = &dev->mode_config;
> struct drm_property_blob *blob;
> @@ -200,14 +203,14 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane
> struct drm_format_modifier_blob *blob_data;
> unsigned int i, j;
>
> - formats_size = sizeof(__u32) * plane->format_count;
> + formats_size = sizeof(__u32) * format_count;
> if (WARN_ON(!formats_size)) {
> /* 0 formats are never expected */
> return 0;
> }
>
> modifiers_size =
> - sizeof(struct drm_format_modifier) * plane->modifier_count;
> + sizeof(struct drm_format_modifier) * modifier_count;
>
> blob_size = sizeof(struct drm_format_modifier_blob);
> /* Modifiers offset is a pointer to a struct with a 64 bit field so it
> @@ -223,37 +226,45 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane
>
> blob_data = blob->data;
> blob_data->version = FORMAT_BLOB_CURRENT;
> - blob_data->count_formats = plane->format_count;
> + blob_data->count_formats = format_count;
> blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
> - blob_data->count_modifiers = plane->modifier_count;
> + blob_data->count_modifiers = modifier_count;
>
> blob_data->modifiers_offset =
> ALIGN(blob_data->formats_offset + formats_size, 8);
>
> - memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
> + memcpy(formats_ptr(blob_data), formats, formats_size);
>
> mod = modifiers_ptr(blob_data);
> - for (i = 0; i < plane->modifier_count; i++) {
> - for (j = 0; j < plane->format_count; j++) {
> - if (!plane->funcs->format_mod_supported ||
> + for (i = 0; i < modifier_count; i++) {
> + for (j = 0; j < format_count; j++) {
> + if (is_async ||
I asked for a format_mod_supported_async(). This is not that.
> + !plane->funcs->format_mod_supported ||
> plane->funcs->format_mod_supported(plane,
> - plane->format_types[j],
> - plane->modifiers[i])) {
> + formats[j],
> + modifiers[i])) {
> mod->formats |= 1ULL << j;
> }
> }
>
> - mod->modifier = plane->modifiers[i];
> + mod->modifier = modifiers[i];
> mod->offset = 0;
> mod->pad = 0;
> mod++;
> }
>
> - drm_object_attach_property(&plane->base, config->modifiers_property,
> - blob->base.id);
> + if (is_async)
> + drm_object_attach_property(&plane->base,
> + config->async_modifiers_property,
> + blob->base.id);
> + else
> + drm_object_attach_property(&plane->base,
> + config->modifiers_property,
> + blob->base.id);
>
> return 0;
> }
> +EXPORT_SYMBOL(drm_plane_create_format_blob);
>
> /**
> * DOC: hotspot properties
> @@ -476,7 +487,10 @@ static int __drm_universal_plane_init(struct drm_device *dev,
> }
>
> if (format_modifier_count)
> - create_in_format_blob(dev, plane);
> + drm_plane_create_format_blob(dev, plane, plane->modifiers,
> + format_modifier_count,
> + plane->format_types, format_count,
> + false);
>
> return 0;
> }
> diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
> index dd718c62ac31..3c5c2c614af8 100644
> --- a/include/drm/drm_plane.h
> +++ b/include/drm/drm_plane.h
> @@ -988,5 +988,9 @@ int drm_plane_create_scaling_filter_property(struct drm_plane *plane,
> int drm_plane_add_size_hints_property(struct drm_plane *plane,
> const struct drm_plane_size_hint *hints,
> int num_hints);
> +int drm_plane_create_format_blob(struct drm_device *dev,
> + struct drm_plane *plane, u64 *modifiers,
> + unsigned int modifier_count, u32 *formats,
> + unsigned int format_count, bool is_async);
>
> #endif
> --
> 2.25.1
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 20+ messages in thread
* RE: [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob
2024-11-22 20:06 ` Ville Syrjälä
@ 2024-11-25 8:45 ` Murthy, Arun R
2024-12-13 9:02 ` Murthy, Arun R
0 siblings, 1 reply; 20+ messages in thread
From: Murthy, Arun R @ 2024-11-25 8:45 UTC (permalink / raw)
To: Ville Syrjälä
Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
dri-devel@lists.freedesktop.org
> On Mon, Nov 18, 2024 at 01:23:14PM +0530, Arun R Murthy wrote:
> > Expose drm plane function to create formats/modifiers blob. This
> > function can be used to expose list of supported formats/modifiers for
> > sync/async flips.
> >
> > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > ---
> > drivers/gpu/drm/drm_plane.c | 44 ++++++++++++++++++++++++-------------
> > include/drm/drm_plane.h | 4 ++++
> > 2 files changed, 33 insertions(+), 15 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c
> > index 416818e54ccf..4f35eec2b777 100644
> > --- a/drivers/gpu/drm/drm_plane.c
> > +++ b/drivers/gpu/drm/drm_plane.c
> > @@ -191,7 +191,10 @@ modifiers_ptr(struct drm_format_modifier_blob
> *blob)
> > return (struct drm_format_modifier *)(((char *)blob) +
> > blob->modifiers_offset); }
> >
> > -static int create_in_format_blob(struct drm_device *dev, struct
> > drm_plane *plane)
> > +int drm_plane_create_format_blob(struct drm_device *dev,
> > + struct drm_plane *plane, u64 *modifiers,
> > + unsigned int modifier_count, u32 *formats,
> > + unsigned int format_count, bool is_async)
> > {
> > const struct drm_mode_config *config = &dev->mode_config;
> > struct drm_property_blob *blob;
> > @@ -200,14 +203,14 @@ static int create_in_format_blob(struct drm_device
> *dev, struct drm_plane *plane
> > struct drm_format_modifier_blob *blob_data;
> > unsigned int i, j;
> >
> > - formats_size = sizeof(__u32) * plane->format_count;
> > + formats_size = sizeof(__u32) * format_count;
> > if (WARN_ON(!formats_size)) {
> > /* 0 formats are never expected */
> > return 0;
> > }
> >
> > modifiers_size =
> > - sizeof(struct drm_format_modifier) * plane->modifier_count;
> > + sizeof(struct drm_format_modifier) * modifier_count;
> >
> > blob_size = sizeof(struct drm_format_modifier_blob);
> > /* Modifiers offset is a pointer to a struct with a 64 bit field so
> > it @@ -223,37 +226,45 @@ static int create_in_format_blob(struct
> > drm_device *dev, struct drm_plane *plane
> >
> > blob_data = blob->data;
> > blob_data->version = FORMAT_BLOB_CURRENT;
> > - blob_data->count_formats = plane->format_count;
> > + blob_data->count_formats = format_count;
> > blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
> > - blob_data->count_modifiers = plane->modifier_count;
> > + blob_data->count_modifiers = modifier_count;
> >
> > blob_data->modifiers_offset =
> > ALIGN(blob_data->formats_offset + formats_size, 8);
> >
> > - memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
> > + memcpy(formats_ptr(blob_data), formats, formats_size);
> >
> > mod = modifiers_ptr(blob_data);
> > - for (i = 0; i < plane->modifier_count; i++) {
> > - for (j = 0; j < plane->format_count; j++) {
> > - if (!plane->funcs->format_mod_supported ||
> > + for (i = 0; i < modifier_count; i++) {
> > + for (j = 0; j < format_count; j++) {
> > + if (is_async ||
>
> I asked for a format_mod_supported_async(). This is not that.
>
In the previous version I had this format_mod_supported(), a similar implementation as in create_in_formats_blob().
Create_in_formats_async_blob() was added but the same function pointer was maintained i.e format_mod_supported.
The intention was in the function defined by vendor specific driver for format_mod_supported() the format and modifier to be checked for async would be sent.
The flag async_flip in drm_crtc_state would be used in the driver to check these format/modifier for async.
I can add something like this
Static bool skl_plane_format_mod_supported(drm_plane, format, modifier)
{
If (crtc_state->async_flip) {
Plane->can_async_flip() /* https://patchwork.freedesktop.org/patch/619047/?series=139807&rev=3 */
Return;
}
/* continue with the code for sync format-modifier supported check */
}
But the comment was to overcome changes in drm and handle in i915. Hence create_in_format_async_blob() in drm_crtc.c was removed in this version.
Please let me know on this, I can add this create_in_format_async_blob() back in the next series along with the above said changes for can_async_flip()
Thanks and Regards,
Arun R Murthy
---------------------
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
2024-11-18 7:53 ` [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers Arun R Murthy
2024-11-22 4:02 ` kernel test robot
@ 2024-11-25 13:05 ` kernel test robot
2024-11-28 23:21 ` kernel test robot
2 siblings, 0 replies; 20+ messages in thread
From: kernel test robot @ 2024-11-25 13:05 UTC (permalink / raw)
To: Arun R Murthy
Cc: oe-lkp, lkp, intel-gfx, intel-xe, ltp, dri-devel, Arun R Murthy,
oliver.sang
Hello,
kernel test robot noticed "BUG:KASAN:global-out-of-bounds_in_drm_plane_create_format_blob" on:
commit: ab8ee1a4b22d80e3812a6d9990b92d77eee4a17f ("[PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers")
url: https://github.com/intel-lab-lkp/linux/commits/Arun-R-Murthy/drm-plane-Expose-function-to-create-format-modifier-blob/20241121-105652
base: git://anongit.freedesktop.org/drm-intel for-linux-next-fixes
patch link: https://lore.kernel.org/all/20241118075315.466009-4-arun.r.murthy@intel.com/
patch subject: [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
in testcase: ltp
version: ltp-x86_64-14c1f76-1_20241111
with following parameters:
test: lvm.local-00
config: x86_64-rhel-9.4-ltp
compiler: gcc-12
test machine: 8 threads 1 sockets Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz (Kaby Lake) with 32G memory
(please refer to attached dmesg/kmsg for entire log/backtrace)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <oliver.sang@intel.com>
| Closes: https://lore.kernel.org/oe-lkp/202411252029.30061fde-lkp@intel.com
kern :err : [ 44.116017] BUG: KASAN: global-out-of-bounds in drm_plane_create_format_blob (drivers/gpu/drm/drm_plane.c:191 drivers/gpu/drm/drm_plane.c:238) drm
kern :notice: [ 44.129098] i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
kern :err : [ 44.138344] Read of size 144 at addr ffffffffc1a99bc0 by task (udev-worker)/230
kern :err : [ 44.138357] CPU: 1 UID: 0 PID: 230 Comm: (udev-worker) Not tainted 6.12.0-00003-gab8ee1a4b22d #1
kern :err : [ 44.138361] Hardware name: Dell Inc. OptiPlex 7050/062KRH, BIOS 1.2.0 12/22/2016
kern :err : [ 44.138363] Call Trace:
kern :err : [ 44.138365] <TASK>
kern :err : [ 44.138367] dump_stack_lvl (lib/dump_stack.c:123 (discriminator 1))
kern :err : [ 44.138376] print_address_description+0x2c/0x3a0
kern :err : [ 44.196003] ? drm_plane_create_format_blob (drivers/gpu/drm/drm_plane.c:191 drivers/gpu/drm/drm_plane.c:238) drm
kern :err : [ 44.202599] print_report (mm/kasan/report.c:489)
kern :err : [ 44.206894] ? kasan_addr_to_slab (mm/kasan/common.c:37)
kern :err : [ 44.211709] ? drm_plane_create_format_blob (drivers/gpu/drm/drm_plane.c:191 drivers/gpu/drm/drm_plane.c:238) drm
kern :err : [ 44.218254] kasan_report (mm/kasan/report.c:603)
kern :err : [ 44.222465] ? drm_plane_create_format_blob (drivers/gpu/drm/drm_plane.c:191 drivers/gpu/drm/drm_plane.c:238) drm
kern :err : [ 44.229022] kasan_check_range (mm/kasan/generic.c:183 mm/kasan/generic.c:189)
kern :err : [ 44.233763] __asan_memcpy (mm/kasan/shadow.c:105)
kern :err : [ 44.238065] drm_plane_create_format_blob (drivers/gpu/drm/drm_plane.c:191 drivers/gpu/drm/drm_plane.c:238) drm
kern :err : [ 44.244436] ? skl_universal_plane_create (drivers/gpu/drm/i915/display/skl_universal_plane.c:2615) i915
kern :err : [ 44.251192] skl_universal_plane_create (drivers/gpu/drm/i915/display/skl_universal_plane.c:2630) i915
kern :err : [ 44.257773] intel_crtc_init (drivers/gpu/drm/i915/display/intel_crtc.c:312) i915
kern :err : [ 44.263672] ? intel_gmbus_setup (drivers/gpu/drm/i915/display/intel_gmbus.c:935) i915
kern :err : [ 44.269640] intel_display_driver_probe_nogem (drivers/gpu/drm/i915/display/intel_display_driver.c:441) i915
kern :err : [ 44.277003] i915_driver_probe (drivers/gpu/drm/i915/i915_driver.c:832) i915
kern :err : [ 44.282751] ? __pfx_i915_driver_probe (drivers/gpu/drm/i915/i915_driver.c:751) i915
kern :err : [ 44.289031] ? drm_privacy_screen_get (drivers/gpu/drm/drm_privacy_screen.c:168) drm
kern :err : [ 44.295046] ? intel_display_driver_probe_defer (drivers/gpu/drm/i915/display/intel_display_driver.c:81) i915
kern :err : [ 44.302188] ? i915_pci_probe (drivers/gpu/drm/i915/i915_pci.c:998) i915
kern :err : [ 44.307853] ? __pfx_i915_pci_probe (drivers/gpu/drm/i915/i915_pci.c:959) i915
kern :err : [ 44.314024] local_pci_probe (drivers/pci/pci-driver.c:324)
kern :err : [ 44.318585] pci_call_probe (drivers/pci/pci-driver.c:392)
kern :err : [ 44.323139] ? __pfx_pci_call_probe (drivers/pci/pci-driver.c:352)
kern :err : [ 44.328232] ? pci_assign_irq (drivers/pci/irq.c:149)
kern :err : [ 44.332888] ? pci_match_device (drivers/pci/pci-driver.c:159 (discriminator 1))
kern :err : [ 44.337812] pci_device_probe (drivers/pci/pci-driver.c:452)
kern :err : [ 44.342468] ? pci_dma_configure (drivers/pci/pci-driver.c:1656)
kern :err : [ 44.347478] really_probe (drivers/base/dd.c:579 drivers/base/dd.c:658)
kern :err : [ 44.351871] __driver_probe_device (drivers/base/dd.c:800)
kern :err : [ 44.357038] driver_probe_device (drivers/base/dd.c:830)
kern :err : [ 44.361948] __driver_attach (drivers/base/dd.c:1217)
kern :err : [ 44.366602] ? __pfx___driver_attach (drivers/base/dd.c:1157)
kern :err : [ 44.371767] bus_for_each_dev (drivers/base/bus.c:370)
kern :err : [ 44.376413] ? __kasan_slab_alloc (mm/kasan/common.c:318 mm/kasan/common.c:345)
kern :err : [ 44.381325] ? __pfx_bus_for_each_dev (drivers/base/bus.c:358)
kern :err : [ 44.386587] ? __pfx__raw_spin_lock (kernel/locking/spinlock.c:153)
kern :err : [ 44.391677] ? klist_add_tail (include/linux/list.h:150 include/linux/list.h:183 lib/klist.c:104 lib/klist.c:137)
kern :err : [ 44.396421] bus_add_driver (drivers/base/bus.c:675)
kern :err : [ 44.400984] driver_register (drivers/base/driver.c:246)
kern :err : [ 44.405631] i915_init (drivers/gpu/drm/i915/i915_driver.c:1395) i915
kern :err : [ 44.410605] ? __pfx_i915_init (drivers/gpu/drm/i915/i915_config.c:13) i915
kern :err : [ 44.416150] do_one_initcall (init/main.c:1269)
kern :err : [ 44.420704] ? __pfx_do_one_initcall (init/main.c:1260)
kern :err : [ 44.425872] ? __asan_register_globals (mm/kasan/generic.c:232 (discriminator 3))
kern :err : [ 44.431218] ? kasan_unpoison (mm/kasan/shadow.c:156 mm/kasan/shadow.c:182)
kern :err : [ 44.435787] do_init_module (kernel/module/main.c:2543)
kern :err : [ 44.440356] load_module (kernel/module/main.c:3009)
kern :err : [ 44.444831] ? ima_post_read_file (security/integrity/ima/ima_main.c:835 security/integrity/ima/ima_main.c:817)
kern :err : [ 44.449914] ? __pfx_load_module (kernel/module/main.c:2856)
kern :err : [ 44.454736] ? security_kernel_post_read_file (security/security.c:3356)
kern :err : [ 44.460698] ? __pfx_kernel_read_file (fs/kernel_read_file.c:38)
kern :err : [ 44.465953] ? __pfx_down_write_killable (kernel/locking/rwsem.c:1586)
kern :err : [ 44.471467] ? init_module_from_file (kernel/module/main.c:3198)
kern :err : [ 44.476720] init_module_from_file (kernel/module/main.c:3198)
kern :err : [ 44.481796] ? __pfx_init_module_from_file (kernel/module/main.c:3174)
kern :err : [ 44.487485] ? __pfx_vm_mmap_pgoff (mm/util.c:578)
kern :err : [ 44.492477] ? __pfx__raw_spin_lock (kernel/locking/spinlock.c:153)
kern :err : [ 44.497559] ? ksys_mmap_pgoff (mm/mmap.c:547)
kern :err : [ 44.502382] idempotent_init_module (kernel/module/main.c:3210)
kern :err : [ 44.507642] ? __pfx_idempotent_init_module (kernel/module/main.c:3202)
kern :err : [ 44.513422] ? __pfx___seccomp_filter (kernel/seccomp.c:1218)
kern :err : [ 44.518687] ? fdget (include/linux/atomic/atomic-arch-fallback.h:479 include/linux/atomic/atomic-instrumented.h:50 fs/file.c:1114 fs/file.c:1128)
kern :err : [ 44.522549] ? security_capable (security/security.c:1143)
kern :err : [ 44.527277] __x64_sys_finit_module (include/linux/file.h:68 kernel/module/main.c:3238 kernel/module/main.c:3220 kernel/module/main.c:3220)
kern :err : [ 44.532443] do_syscall_64 (arch/x86/entry/common.c:52 arch/x86/entry/common.c:83)
kern :err : [ 44.536824] ? sched_clock (arch/x86/include/asm/preempt.h:94 arch/x86/kernel/tsc.c:285)
kern :err : [ 44.541029] ? sched_clock_cpu (kernel/sched/clock.c:394)
kern :err : [ 44.545767] ? clockevents_program_event (kernel/time/clockevents.c:334 (discriminator 3))
kern :err : [ 44.551465] ? __pfx_sched_clock_cpu (kernel/sched/clock.c:389)
kern :err : [ 44.556639] ? hrtimer_interrupt (kernel/time/hrtimer.c:1830)
kern :err : [ 44.561639] ? irqtime_account_irq (kernel/sched/cputime.c:64)
kern :err : [ 44.566730] ? __irq_exit_rcu (kernel/softirq.c:620 kernel/softirq.c:639)
kern :err : [ 44.571387] entry_SYSCALL_64_after_hwframe (arch/x86/entry/entry_64.S:130)
kern :err : [ 44.577175] RIP: 0033:0x7f6c1bf48799
kern :err : [ 44.581479] Code: 08 89 e8 5b 5d c3 66 2e 0f 1f 84 00 00 00 00 00 90 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 37 06 0d 00 f7 d8 64 89 01 48
All code
========
0: 08 89 e8 5b 5d c3 or %cl,-0x3ca2a418(%rcx)
6: 66 2e 0f 1f 84 00 00 cs nopw 0x0(%rax,%rax,1)
d: 00 00 00
10: 90 nop
11: 48 89 f8 mov %rdi,%rax
14: 48 89 f7 mov %rsi,%rdi
17: 48 89 d6 mov %rdx,%rsi
1a: 48 89 ca mov %rcx,%rdx
1d: 4d 89 c2 mov %r8,%r10
20: 4d 89 c8 mov %r9,%r8
23: 4c 8b 4c 24 08 mov 0x8(%rsp),%r9
28: 0f 05 syscall
2a:* 48 3d 01 f0 ff ff cmp $0xfffffffffffff001,%rax <-- trapping instruction
30: 73 01 jae 0x33
32: c3 ret
33: 48 8b 0d 37 06 0d 00 mov 0xd0637(%rip),%rcx # 0xd0671
3a: f7 d8 neg %eax
3c: 64 89 01 mov %eax,%fs:(%rcx)
3f: 48 rex.W
Code starting with the faulting instruction
===========================================
0: 48 3d 01 f0 ff ff cmp $0xfffffffffffff001,%rax
6: 73 01 jae 0x9
8: c3 ret
9: 48 8b 0d 37 06 0d 00 mov 0xd0637(%rip),%rcx # 0xd0647
10: f7 d8 neg %eax
12: 64 89 01 mov %eax,%fs:(%rcx)
15: 48 rex.W
The kernel config and materials to reproduce are available at:
https://download.01.org/0day-ci/archive/20241125/202411252029.30061fde-lkp@intel.com
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
2024-11-18 7:53 ` [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers Arun R Murthy
2024-11-22 4:02 ` kernel test robot
2024-11-25 13:05 ` kernel test robot
@ 2024-11-28 23:21 ` kernel test robot
2 siblings, 0 replies; 20+ messages in thread
From: kernel test robot @ 2024-11-28 23:21 UTC (permalink / raw)
To: Arun R Murthy, intel-xe, intel-gfx, dri-devel
Cc: oe-kbuild-all, Arun R Murthy
Hi Arun,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-intel/for-linux-next-fixes]
[also build test WARNING on v6.12 next-20241128]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Arun-R-Murthy/drm-plane-Expose-function-to-create-format-modifier-blob/20241121-105652
base: git://anongit.freedesktop.org/drm-intel for-linux-next-fixes
patch link: https://lore.kernel.org/r/20241118075315.466009-4-arun.r.murthy%40intel.com
patch subject: [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers
config: x86_64-randconfig-103-20241121 (https://download.01.org/0day-ci/archive/20241129/202411290757.FcxceZlQ-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-12) 11.3.0
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202411290757.FcxceZlQ-lkp@intel.com/
cocci warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/i915/display/skl_universal_plane.c:2626:26-32: ERROR: application of sizeof to pointer
vim +2626 drivers/gpu/drm/i915/display/skl_universal_plane.c
2510
2511 struct intel_plane *
2512 skl_universal_plane_create(struct drm_i915_private *dev_priv,
2513 enum pipe pipe, enum plane_id plane_id)
2514 {
2515 const struct drm_plane_funcs *plane_funcs;
2516 struct intel_plane *plane;
2517 enum drm_plane_type plane_type;
2518 unsigned int supported_rotations;
2519 unsigned int supported_csc;
2520 const u64 *modifiers;
2521 u64 *async_modifiers;
2522 const u32 *formats;
2523 int num_formats;
2524 int ret;
2525
2526 plane = intel_plane_alloc();
2527 if (IS_ERR(plane))
2528 return plane;
2529
2530 plane->pipe = pipe;
2531 plane->id = plane_id;
2532 plane->frontbuffer_bit = INTEL_FRONTBUFFER(pipe, plane_id);
2533
2534 intel_fbc_add_plane(skl_plane_fbc(dev_priv, pipe, plane_id), plane);
2535
2536 if (DISPLAY_VER(dev_priv) >= 11) {
2537 plane->min_width = icl_plane_min_width;
2538 if (icl_is_hdr_plane(dev_priv, plane_id))
2539 plane->max_width = icl_hdr_plane_max_width;
2540 else
2541 plane->max_width = icl_sdr_plane_max_width;
2542 plane->max_height = icl_plane_max_height;
2543 plane->min_cdclk = icl_plane_min_cdclk;
2544 } else if (DISPLAY_VER(dev_priv) >= 10) {
2545 plane->max_width = glk_plane_max_width;
2546 plane->max_height = skl_plane_max_height;
2547 plane->min_cdclk = glk_plane_min_cdclk;
2548 } else {
2549 plane->max_width = skl_plane_max_width;
2550 plane->max_height = skl_plane_max_height;
2551 plane->min_cdclk = skl_plane_min_cdclk;
2552 }
2553
2554 if (DISPLAY_VER(dev_priv) >= 13)
2555 plane->max_stride = adl_plane_max_stride;
2556 else
2557 plane->max_stride = skl_plane_max_stride;
2558
2559 if (DISPLAY_VER(dev_priv) >= 12)
2560 plane->min_alignment = tgl_plane_min_alignment;
2561 else
2562 plane->min_alignment = skl_plane_min_alignment;
2563
2564 if (DISPLAY_VER(dev_priv) >= 11) {
2565 plane->update_noarm = icl_plane_update_noarm;
2566 plane->update_arm = icl_plane_update_arm;
2567 plane->disable_arm = icl_plane_disable_arm;
2568 } else {
2569 plane->update_noarm = skl_plane_update_noarm;
2570 plane->update_arm = skl_plane_update_arm;
2571 plane->disable_arm = skl_plane_disable_arm;
2572 }
2573 plane->get_hw_state = skl_plane_get_hw_state;
2574 plane->check_plane = skl_plane_check;
2575
2576 if (plane_id == PLANE_1) {
2577 plane->need_async_flip_toggle_wa = IS_DISPLAY_VER(dev_priv, 9, 10);
2578 plane->async_flip = skl_plane_async_flip;
2579 plane->enable_flip_done = skl_plane_enable_flip_done;
2580 plane->disable_flip_done = skl_plane_disable_flip_done;
2581 }
2582
2583 if (DISPLAY_VER(dev_priv) >= 11)
2584 formats = icl_get_plane_formats(dev_priv, pipe,
2585 plane_id, &num_formats);
2586 else if (DISPLAY_VER(dev_priv) >= 10)
2587 formats = glk_get_plane_formats(dev_priv, pipe,
2588 plane_id, &num_formats);
2589 else
2590 formats = skl_get_plane_formats(dev_priv, pipe,
2591 plane_id, &num_formats);
2592
2593 if (DISPLAY_VER(dev_priv) >= 12)
2594 plane_funcs = &gen12_plane_funcs;
2595 else
2596 plane_funcs = &skl_plane_funcs;
2597
2598 if (plane_id == PLANE_1)
2599 plane_type = DRM_PLANE_TYPE_PRIMARY;
2600 else
2601 plane_type = DRM_PLANE_TYPE_OVERLAY;
2602
2603 modifiers = intel_fb_plane_get_modifiers(dev_priv,
2604 skl_get_plane_caps(dev_priv, pipe, plane_id));
2605
2606 ret = drm_universal_plane_init(&dev_priv->drm, &plane->base,
2607 0, plane_funcs,
2608 formats, num_formats, modifiers,
2609 plane_type,
2610 "plane %d%c", plane_id + 1,
2611 pipe_name(pipe));
2612
2613 kfree(modifiers);
2614
2615 if (ret)
2616 goto fail;
2617
2618 if (DISPLAY_VER(dev_priv) >= 12)
2619 async_modifiers = tgl_asyn_modifiers;
2620 else if (DISPLAY_VER(dev_priv) == 11)
2621 async_modifiers = icl_async_modifiers;
2622 else
2623 async_modifiers = skl_async_modifiers;
2624
2625 drm_plane_create_format_blob(&dev_priv->drm, &plane->base,
> 2626 async_modifiers, sizeof(async_modifiers),
2627 intel_async_formats,
2628 sizeof(intel_async_formats), true);
2629
2630 if (DISPLAY_VER(dev_priv) >= 13)
2631 supported_rotations = DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_180;
2632 else
2633 supported_rotations =
2634 DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_90 |
2635 DRM_MODE_ROTATE_180 | DRM_MODE_ROTATE_270;
2636
2637 if (DISPLAY_VER(dev_priv) >= 11)
2638 supported_rotations |= DRM_MODE_REFLECT_X;
2639
2640 drm_plane_create_rotation_property(&plane->base,
2641 DRM_MODE_ROTATE_0,
2642 supported_rotations);
2643
2644 supported_csc = BIT(DRM_COLOR_YCBCR_BT601) | BIT(DRM_COLOR_YCBCR_BT709);
2645
2646 if (DISPLAY_VER(dev_priv) >= 10)
2647 supported_csc |= BIT(DRM_COLOR_YCBCR_BT2020);
2648
2649 drm_plane_create_color_properties(&plane->base,
2650 supported_csc,
2651 BIT(DRM_COLOR_YCBCR_LIMITED_RANGE) |
2652 BIT(DRM_COLOR_YCBCR_FULL_RANGE),
2653 DRM_COLOR_YCBCR_BT709,
2654 DRM_COLOR_YCBCR_LIMITED_RANGE);
2655
2656 drm_plane_create_alpha_property(&plane->base);
2657 drm_plane_create_blend_mode_property(&plane->base,
2658 BIT(DRM_MODE_BLEND_PIXEL_NONE) |
2659 BIT(DRM_MODE_BLEND_PREMULTI) |
2660 BIT(DRM_MODE_BLEND_COVERAGE));
2661
2662 drm_plane_create_zpos_immutable_property(&plane->base, plane_id);
2663
2664 if (DISPLAY_VER(dev_priv) >= 12)
2665 drm_plane_enable_fb_damage_clips(&plane->base);
2666
2667 if (DISPLAY_VER(dev_priv) >= 11)
2668 drm_plane_create_scaling_filter_property(&plane->base,
2669 BIT(DRM_SCALING_FILTER_DEFAULT) |
2670 BIT(DRM_SCALING_FILTER_NEAREST_NEIGHBOR));
2671
2672 intel_plane_helper_add(plane);
2673
2674 return plane;
2675
2676 fail:
2677 intel_plane_free(plane);
2678
2679 return ERR_PTR(ret);
2680 }
2681
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 20+ messages in thread
* RE: [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob
2024-11-25 8:45 ` Murthy, Arun R
@ 2024-12-13 9:02 ` Murthy, Arun R
0 siblings, 0 replies; 20+ messages in thread
From: Murthy, Arun R @ 2024-12-13 9:02 UTC (permalink / raw)
To: Ville Syrjälä
Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
dri-devel@lists.freedesktop.org
> > On Mon, Nov 18, 2024 at 01:23:14PM +0530, Arun R Murthy wrote:
> > > Expose drm plane function to create formats/modifiers blob. This
> > > function can be used to expose list of supported formats/modifiers
> > > for sync/async flips.
> > >
> > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > > ---
> > > drivers/gpu/drm/drm_plane.c | 44 ++++++++++++++++++++++++-------------
> > > include/drm/drm_plane.h | 4 ++++
> > > 2 files changed, 33 insertions(+), 15 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/drm_plane.c
> > > b/drivers/gpu/drm/drm_plane.c index 416818e54ccf..4f35eec2b777
> > > 100644
> > > --- a/drivers/gpu/drm/drm_plane.c
> > > +++ b/drivers/gpu/drm/drm_plane.c
> > > @@ -191,7 +191,10 @@ modifiers_ptr(struct drm_format_modifier_blob
> > *blob)
> > > return (struct drm_format_modifier *)(((char *)blob) +
> > > blob->modifiers_offset); }
> > >
> > > -static int create_in_format_blob(struct drm_device *dev, struct
> > > drm_plane *plane)
> > > +int drm_plane_create_format_blob(struct drm_device *dev,
> > > + struct drm_plane *plane, u64 *modifiers,
> > > + unsigned int modifier_count, u32 *formats,
> > > + unsigned int format_count, bool is_async)
> > > {
> > > const struct drm_mode_config *config = &dev->mode_config;
> > > struct drm_property_blob *blob;
> > > @@ -200,14 +203,14 @@ static int create_in_format_blob(struct
> > > drm_device
> > *dev, struct drm_plane *plane
> > > struct drm_format_modifier_blob *blob_data;
> > > unsigned int i, j;
> > >
> > > - formats_size = sizeof(__u32) * plane->format_count;
> > > + formats_size = sizeof(__u32) * format_count;
> > > if (WARN_ON(!formats_size)) {
> > > /* 0 formats are never expected */
> > > return 0;
> > > }
> > >
> > > modifiers_size =
> > > - sizeof(struct drm_format_modifier) * plane->modifier_count;
> > > + sizeof(struct drm_format_modifier) * modifier_count;
> > >
> > > blob_size = sizeof(struct drm_format_modifier_blob);
> > > /* Modifiers offset is a pointer to a struct with a 64 bit field
> > > so it @@ -223,37 +226,45 @@ static int create_in_format_blob(struct
> > > drm_device *dev, struct drm_plane *plane
> > >
> > > blob_data = blob->data;
> > > blob_data->version = FORMAT_BLOB_CURRENT;
> > > - blob_data->count_formats = plane->format_count;
> > > + blob_data->count_formats = format_count;
> > > blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
> > > - blob_data->count_modifiers = plane->modifier_count;
> > > + blob_data->count_modifiers = modifier_count;
> > >
> > > blob_data->modifiers_offset =
> > > ALIGN(blob_data->formats_offset + formats_size, 8);
> > >
> > > - memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
> > > + memcpy(formats_ptr(blob_data), formats, formats_size);
> > >
> > > mod = modifiers_ptr(blob_data);
> > > - for (i = 0; i < plane->modifier_count; i++) {
> > > - for (j = 0; j < plane->format_count; j++) {
> > > - if (!plane->funcs->format_mod_supported ||
> > > + for (i = 0; i < modifier_count; i++) {
> > > + for (j = 0; j < format_count; j++) {
> > > + if (is_async ||
> >
> > I asked for a format_mod_supported_async(). This is not that.
> >
format_mod_supported() is the existing function pointer and while calling this in universal_plane_init() we don't have any flag to differentiate between sync and async for differentiating the calls. Also this maynot be required at universal_plane_init as only RGB formats are supported under async_flip. Only plane we need is to check if the modifier is supported or not and that can be handled in the present format_mod_supported().
This can be achieved by
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -2479,6 +2479,10 @@ static bool tgl_plane_format_mod_supported(struct drm_plane *_plane,
{
struct intel_plane *plane = to_intel_plane(_plane);
+ /* handle check for async flips */
+ if (plane->crtc->state->async_flip)
+ return plane->can_async_flip(modifier);
+
if (!intel_fb_plane_supports_modifier(plane, modifier))
return false;
Dependency: https://patchwork.freedesktop.org/patch/626849/?series=139807&rev=4
This part can be taken out of this series as this series is focused on exposing the supported formats/modifiers to user by the property IN_FORMATS_ASYNC.
Thanks and Regards,
Arun R Murthy
--------------------
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✗ CI.Patch_applied: failure for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC (rev2)
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
` (10 preceding siblings ...)
2024-11-18 15:15 ` ✗ CI.FULL: failure " Patchwork
@ 2024-12-13 10:55 ` Patchwork
11 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2024-12-13 10:55 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
== Series Details ==
Series: series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC (rev2)
URL : https://patchwork.freedesktop.org/series/141474/
State : failure
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 8f7b64e13772 drm-tip: 2024y-12m-13d-09h-55m-10s UTC integration manifest
=== git am output follows ===
error: corrupt patch at line 13
hint: Use 'git am --show-current-patch=diff' to see the failed patch
Applying: drm/plane: Add new plane property IN_FORMATS_ASYNC
Applying: drm/plane: Expose function to create format/modifier blob
Patch failed at 0002 drm/plane: Expose function to create format/modifier blob
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2024-12-13 10:55 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-18 7:53 [PATCHv2/3] Expose modifiers/formats supported by async flips Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy
2024-11-18 7:53 ` [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob Arun R Murthy
2024-11-22 20:06 ` Ville Syrjälä
2024-11-25 8:45 ` Murthy, Arun R
2024-12-13 9:02 ` Murthy, Arun R
2024-11-18 7:53 ` [PATCHv2 3/3] drm/i915/display: Populate list of async supported formats/modifiers Arun R Murthy
2024-11-22 4:02 ` kernel test robot
2024-11-25 13:05 ` kernel test robot
2024-11-28 23:21 ` kernel test robot
2024-11-18 11:51 ` ✓ CI.Patch_applied: success for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Patchwork
2024-11-18 11:52 ` ✓ CI.checkpatch: " Patchwork
2024-11-18 11:53 ` ✓ CI.KUnit: " Patchwork
2024-11-18 12:11 ` ✓ CI.Build: " Patchwork
2024-11-18 12:11 ` ✗ CI.Hooks: failure " Patchwork
2024-11-18 12:13 ` ✗ CI.checksparse: warning " Patchwork
2024-11-18 12:31 ` ✓ CI.BAT: success " Patchwork
2024-11-18 15:15 ` ✗ CI.FULL: failure " Patchwork
2024-12-13 10:55 ` ✗ CI.Patch_applied: failure for series starting with [PATCHv2,1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC (rev2) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-11-05 10:26 [PATCH 0/4] Expose modifiers/formats supported by async flips Arun R Murthy
2024-11-18 7:48 ` [PATCHv2/3] " Arun R Murthy
2024-11-18 7:48 ` [PATCHv2 2/3] drm/plane: Expose function to create format/modifier blob Arun R Murthy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox