* [PATCH v5 0/3] Expose modifiers/formats supported by async flips
@ 2025-02-18 9:02 Arun R Murthy
2025-02-18 9:02 ` [PATCH v5 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Arun R Murthy @ 2025-02-18 9:02 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: chaitanya.kumar.borah, Arun R Murthy, Naveen Kumar
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
TODO: Upon merge of the patch related to async flip
https://patchwork.freedesktop.org/patch/626849/?series=139807&rev=6
the patch 5 in this series will have to make use of the new function
pointer can_async_flip().
v3: Add new plane->funcs format_mod_supported_async (Ville)
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
---
Arun R Murthy (5):
drm/plane: Add new plane property IN_FORMATS_ASYNC
drm/plane: Expose function to create format/modifier blob
drm/plane: Function to check async supported modifier/format
drm/i915/display: Populate list of async supported formats/modifiers
drm/i915/display: Add function for format_mod_supported_async
drivers/gpu/drm/drm_mode_config.c | 7 ++
drivers/gpu/drm/drm_plane.c | 72 +++++++++----
drivers/gpu/drm/i915/display/skl_universal_plane.c | 113 ++++++++++++++++++---
include/drm/drm_mode_config.h | 6 ++
include/drm/drm_plane.h | 24 +++++
5 files changed, 188 insertions(+), 34 deletions(-)
---
base-commit: 08bd590935a5258ffd79355c59adffd72fb2c642
change-id: 20250102-asyn-bf76730501cc
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
---
Arun R Murthy (3):
drm/plane: Add new plane property IN_FORMATS_ASYNC
drm/plane: modify create_in_formats to accommodate async
drm/i915/display: Add i915 hook for format_mod_supported_async
drivers/gpu/drm/drm_mode_config.c | 7 +++
drivers/gpu/drm/drm_plane.c | 49 ++++++++++++++-----
drivers/gpu/drm/i915/display/skl_universal_plane.c | 56 ++++++++++++++++------
include/drm/drm_mode_config.h | 6 +++
include/drm/drm_plane.h | 17 +++++++
5 files changed, 108 insertions(+), 27 deletions(-)
---
base-commit: bc7a84cbc968ce97e581e9e3c2d26fb0ac106482
change-id: 20250102-asyn-bf76730501cc
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH v5 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy @ 2025-02-18 9:02 ` Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async Arun R Murthy ` (5 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Arun R Murthy @ 2025-02-18 9:02 UTC (permalink / raw) To: dri-devel, intel-gfx, intel-xe Cc: chaitanya.kumar.borah, Arun R Murthy, Naveen Kumar There exists a property IN_FORMATS which exposes the plane supported modifiers/formats to the user. In some platforms when asynchronous flip 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 flip supported modifiers/formats so that user can use this information ahead and do flip with unsupported formats/modifiers. This will save flip failures. Add a new function pointer similar to format_mod_supported specifically for asynchronous flip. v2: Remove async variable from drm_plane (Ville) v3: Add new function pointer for async (Ville) v5: Typo corrected in commit message & some correction in the kernel documentation. (Chaitanya) Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> Tested-by: Naveen Kumar <naveen1.kumar@intel.com> --- drivers/gpu/drm/drm_mode_config.c | 7 +++++++ drivers/gpu/drm/drm_plane.c | 8 ++++++++ include/drm/drm_mode_config.h | 6 ++++++ include/drm/drm_plane.h | 17 +++++++++++++++++ 4 files changed, 38 insertions(+) diff --git a/drivers/gpu/drm/drm_mode_config.c b/drivers/gpu/drm/drm_mode_config.c index 8642a2fb25a90116dab975aa0ab6b51deafb4b96..dbbef20753f834a85ae9ded748cff2b3f0e85043 100644 --- a/drivers/gpu/drm/drm_mode_config.c +++ b/drivers/gpu/drm/drm_mode_config.c @@ -388,6 +388,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 a28b22fdd7a41aca82d097d42237851da9a0a79b..fe181c1002171acc68d3054c2d178f9b9f501fe2 100644 --- a/drivers/gpu/drm/drm_plane.c +++ b/drivers/gpu/drm/drm_plane.c @@ -141,6 +141,14 @@ * 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. Userspace cannot change this property. This is an + * optional property and if not present then user should expect a failure in + * atomic ioctl when the modifier/format is not supported by that plane under + * asynchronous flip. + * * 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 271765e2e9f2da62aaf0d258828ef4196e14822e..0c116d6dfd277262b1a4c0f097fce2d719f43844 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. */ diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h index dd718c62ac31bf16606f3ee9f025a5b171cd1e67..4393a0e9edf91ccfd78ef62b168b9313187c1a81 100644 --- a/include/drm/drm_plane.h +++ b/include/drm/drm_plane.h @@ -549,6 +549,23 @@ struct drm_plane_funcs { */ bool (*format_mod_supported)(struct drm_plane *plane, uint32_t format, uint64_t modifier); + /** + * @format_mod_supported_async: + * + * This optional hook is used for the DRM to determine if for + * asynchronous flip the given format/modifier combination is valid for + * the plane. This allows the DRM to generate the correct format + * bitmask (which formats apply to which modifier), and to validate + * modifiers at atomic_check time. + * + * Returns: + * + * True if the given modifier is valid for that format on the plane. + * False otherwise. + */ + bool (*format_mod_supported_async)(struct drm_plane *plane, + uint32_t format, uint64_t modifier); + }; /** -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy @ 2025-02-18 9:02 ` Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async Arun R Murthy ` (4 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Arun R Murthy @ 2025-02-18 9:02 UTC (permalink / raw) To: dri-devel, intel-gfx, intel-xe Cc: chaitanya.kumar.borah, Arun R Murthy, Naveen Kumar create_in_formats creates the list of supported format/modifiers for synchronous flips, modify the same function so as to take the format_mod_supported as argument and create list of format/modifier for async as well. v5: create_in_formats can return -ve value in failure case, correct the if condition to check the creation of blob <Chaitanya> Dont add the modifier for which none of the formats is not supported. v6: Remove the code for masking the unsupported modifiers as UMD can leave with it. (Naveen/Chaitanya) Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> Tested-by: Naveen Kumar <naveen1.kumar@intel.com> --- drivers/gpu/drm/drm_plane.c | 41 +++++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c index fe181c1002171acc68d3054c2d178f9b9f501fe2..a27ea45f3c12f5c3ff9532e9c0e3ae0897a02501 100644 --- a/drivers/gpu/drm/drm_plane.c +++ b/drivers/gpu/drm/drm_plane.c @@ -193,9 +193,12 @@ 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) +static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane, + bool (*format_mod_supported) + (struct drm_plane *plane, + uint32_t format, + uint64_t modifier)) { - const struct drm_mode_config *config = &dev->mode_config; struct drm_property_blob *blob; struct drm_format_modifier *mod; size_t blob_size, formats_size, modifiers_size; @@ -237,10 +240,10 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane 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 || - plane->funcs->format_mod_supported(plane, - plane->format_types[j], - plane->modifiers[i])) { + if (!format_mod_supported || format_mod_supported + (plane, + plane->format_types[j], + plane->modifiers[i])) { mod->formats |= 1ULL << j; } } @@ -251,10 +254,7 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane mod++; } - drm_object_attach_property(&plane->base, config->modifiers_property, - blob->base.id); - - return 0; + return blob->base.id; } /** @@ -371,6 +371,7 @@ static int __drm_universal_plane_init(struct drm_device *dev, }; unsigned int format_modifier_count = 0; int ret; + int blob_id; /* plane index is used with 32bit bitmasks */ if (WARN_ON(config->num_total_plane >= 32)) @@ -477,8 +478,24 @@ static int __drm_universal_plane_init(struct drm_device *dev, drm_plane_create_hotspot_properties(plane); } - if (format_modifier_count) - create_in_format_blob(dev, plane); + if (format_modifier_count) { + blob_id = create_in_format_blob(dev, plane, + plane->funcs->format_mod_supported); + if (blob_id > 0) + drm_object_attach_property(&plane->base, + config->modifiers_property, + blob_id); + } + + if (plane->funcs->format_mod_supported_async) { + blob_id = create_in_format_blob(dev, plane, + plane->funcs->format_mod_supported_async); + if (blob_id > 0) + drm_object_attach_property(&plane->base, + config->async_modifiers_property, + blob_id); + } + return 0; } -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async Arun R Murthy @ 2025-02-18 9:02 ` Arun R Murthy 2025-02-18 11:46 ` Jani Nikula 2025-02-18 14:50 ` Sebastian Brzezinka 2025-02-18 10:18 ` ✗ Fi.CI.CHECKPATCH: warning for Expose modifiers/formats supported by async flips (rev5) Patchwork ` (3 subsequent siblings) 6 siblings, 2 replies; 13+ messages in thread From: Arun R Murthy @ 2025-02-18 9:02 UTC (permalink / raw) To: dri-devel, intel-gfx, intel-xe Cc: chaitanya.kumar.borah, Arun R Murthy, Naveen Kumar Hook up the newly added plane function pointer format_mod_supported_async to populate the modifiers/formats supported by asynchronous flips. v5: Correct the if condition for modifier support check (Chaitanya) Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> Tested-by: Naveen Kumar <naveen1.kumar@intel.com> --- drivers/gpu/drm/i915/display/skl_universal_plane.c | 56 ++++++++++++++++------ 1 file changed, 41 insertions(+), 15 deletions(-) diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c index cd9762947f1de227a3abbcd61b7c7b0c9848e439..e303ae6b1c6208755ea0454ba36efcff0c06cda6 100644 --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c @@ -509,6 +509,33 @@ skl_plane_max_stride(struct intel_plane *plane, modifier, rotation, max_pixels, max_bytes); } +static bool intel_plane_async_formats(struct intel_plane *plane, uint32_t format) +{ + switch (format) { + case DRM_FORMAT_RGB565: + case DRM_FORMAT_XRGB8888: + case DRM_FORMAT_XBGR8888: + case DRM_FORMAT_ARGB8888: + case DRM_FORMAT_ABGR8888: + case DRM_FORMAT_XRGB2101010: + case DRM_FORMAT_XBGR2101010: + case DRM_FORMAT_XRGB16161616F: + case DRM_FORMAT_XBGR16161616F: + return true; + default: + return false; + } +} + +static bool intel_plane_format_mod_supported_async(struct drm_plane *plane, + uint32_t format, + uint64_t modifier) +{ + if (!intel_plane_can_async_flip(to_intel_plane(plane), modifier)) + return false; + + return intel_plane_async_formats(to_intel_plane(plane), format); +} static bool tgl_plane_can_async_flip(u64 modifier) { @@ -2616,30 +2643,29 @@ static bool tgl_plane_format_mod_supported(struct drm_plane *_plane, } } +#define INTEL_PLANE_FUNCS \ + .update_plane = drm_atomic_helper_update_plane, \ + .disable_plane = drm_atomic_helper_disable_plane, \ + .destroy = intel_plane_destroy, \ + .atomic_duplicate_state = intel_plane_duplicate_state, \ + .atomic_destroy_state = intel_plane_destroy_state, \ + .format_mod_supported_async = intel_plane_format_mod_supported_async + static const struct drm_plane_funcs skl_plane_funcs = { - .update_plane = drm_atomic_helper_update_plane, - .disable_plane = drm_atomic_helper_disable_plane, - .destroy = intel_plane_destroy, - .atomic_duplicate_state = intel_plane_duplicate_state, - .atomic_destroy_state = intel_plane_destroy_state, + INTEL_PLANE_FUNCS, + .format_mod_supported = skl_plane_format_mod_supported, }; static const struct drm_plane_funcs icl_plane_funcs = { - .update_plane = drm_atomic_helper_update_plane, - .disable_plane = drm_atomic_helper_disable_plane, - .destroy = intel_plane_destroy, - .atomic_duplicate_state = intel_plane_duplicate_state, - .atomic_destroy_state = intel_plane_destroy_state, + INTEL_PLANE_FUNCS, + .format_mod_supported = icl_plane_format_mod_supported, }; static const struct drm_plane_funcs tgl_plane_funcs = { - .update_plane = drm_atomic_helper_update_plane, - .disable_plane = drm_atomic_helper_disable_plane, - .destroy = intel_plane_destroy, - .atomic_duplicate_state = intel_plane_duplicate_state, - .atomic_destroy_state = intel_plane_destroy_state, + INTEL_PLANE_FUNCS, + .format_mod_supported = tgl_plane_format_mod_supported, }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async 2025-02-18 9:02 ` [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async Arun R Murthy @ 2025-02-18 11:46 ` Jani Nikula 2025-02-18 14:50 ` Sebastian Brzezinka 1 sibling, 0 replies; 13+ messages in thread From: Jani Nikula @ 2025-02-18 11:46 UTC (permalink / raw) To: Arun R Murthy, dri-devel, intel-gfx, intel-xe Cc: chaitanya.kumar.borah, Arun R Murthy, Naveen Kumar On Tue, 18 Feb 2025, Arun R Murthy <arun.r.murthy@intel.com> wrote: > Hook up the newly added plane function pointer > format_mod_supported_async to populate the modifiers/formats supported > by asynchronous flips. > > v5: Correct the if condition for modifier support check (Chaitanya) > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> > Tested-by: Naveen Kumar <naveen1.kumar@intel.com> > --- > drivers/gpu/drm/i915/display/skl_universal_plane.c | 56 ++++++++++++++++------ > 1 file changed, 41 insertions(+), 15 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c > index cd9762947f1de227a3abbcd61b7c7b0c9848e439..e303ae6b1c6208755ea0454ba36efcff0c06cda6 100644 > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c > @@ -509,6 +509,33 @@ skl_plane_max_stride(struct intel_plane *plane, > modifier, rotation, > max_pixels, max_bytes); > } > +static bool intel_plane_async_formats(struct intel_plane *plane, uint32_t format) Do not add new uint32_t etc. uses to i915. Use u32 etc. Ditto below. > +{ > + switch (format) { > + case DRM_FORMAT_RGB565: > + case DRM_FORMAT_XRGB8888: > + case DRM_FORMAT_XBGR8888: > + case DRM_FORMAT_ARGB8888: > + case DRM_FORMAT_ABGR8888: > + case DRM_FORMAT_XRGB2101010: > + case DRM_FORMAT_XBGR2101010: > + case DRM_FORMAT_XRGB16161616F: > + case DRM_FORMAT_XBGR16161616F: > + return true; > + default: > + return false; > + } > +} > + > +static bool intel_plane_format_mod_supported_async(struct drm_plane *plane, > + uint32_t format, > + uint64_t modifier) > +{ > + if (!intel_plane_can_async_flip(to_intel_plane(plane), modifier)) > + return false; > + > + return intel_plane_async_formats(to_intel_plane(plane), format); > +} > > static bool tgl_plane_can_async_flip(u64 modifier) > { > @@ -2616,30 +2643,29 @@ static bool tgl_plane_format_mod_supported(struct drm_plane *_plane, > } > } > > +#define INTEL_PLANE_FUNCS \ > + .update_plane = drm_atomic_helper_update_plane, \ > + .disable_plane = drm_atomic_helper_disable_plane, \ > + .destroy = intel_plane_destroy, \ > + .atomic_duplicate_state = intel_plane_duplicate_state, \ > + .atomic_destroy_state = intel_plane_destroy_state, \ > + .format_mod_supported_async = intel_plane_format_mod_supported_async > + > static const struct drm_plane_funcs skl_plane_funcs = { > - .update_plane = drm_atomic_helper_update_plane, > - .disable_plane = drm_atomic_helper_disable_plane, > - .destroy = intel_plane_destroy, > - .atomic_duplicate_state = intel_plane_duplicate_state, > - .atomic_destroy_state = intel_plane_destroy_state, > + INTEL_PLANE_FUNCS, > + > .format_mod_supported = skl_plane_format_mod_supported, > }; > > static const struct drm_plane_funcs icl_plane_funcs = { > - .update_plane = drm_atomic_helper_update_plane, > - .disable_plane = drm_atomic_helper_disable_plane, > - .destroy = intel_plane_destroy, > - .atomic_duplicate_state = intel_plane_duplicate_state, > - .atomic_destroy_state = intel_plane_destroy_state, > + INTEL_PLANE_FUNCS, > + > .format_mod_supported = icl_plane_format_mod_supported, > }; > > static const struct drm_plane_funcs tgl_plane_funcs = { > - .update_plane = drm_atomic_helper_update_plane, > - .disable_plane = drm_atomic_helper_disable_plane, > - .destroy = intel_plane_destroy, > - .atomic_duplicate_state = intel_plane_duplicate_state, > - .atomic_destroy_state = intel_plane_destroy_state, > + INTEL_PLANE_FUNCS, > + > .format_mod_supported = tgl_plane_format_mod_supported, > }; -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async 2025-02-18 9:02 ` [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async Arun R Murthy 2025-02-18 11:46 ` Jani Nikula @ 2025-02-18 14:50 ` Sebastian Brzezinka 1 sibling, 0 replies; 13+ messages in thread From: Sebastian Brzezinka @ 2025-02-18 14:50 UTC (permalink / raw) To: Arun R Murthy, dri-devel, intel-gfx, intel-xe Cc: chaitanya.kumar.borah, Naveen Kumar On Tue Feb 18, 2025 at 9:02 AM UTC, Arun R Murthy wrote: > Hook up the newly added plane function pointer > format_mod_supported_async to populate the modifiers/formats supported > by asynchronous flips. > > v5: Correct the if condition for modifier support check (Chaitanya) > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> > Tested-by: Naveen Kumar <naveen1.kumar@intel.com> LGTM Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for Expose modifiers/formats supported by async flips (rev5) 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy ` (2 preceding siblings ...) 2025-02-18 9:02 ` [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async Arun R Murthy @ 2025-02-18 10:18 ` Patchwork 2025-02-18 10:18 ` ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-18 10:18 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx == Series Details == Series: Expose modifiers/formats supported by async flips (rev5) URL : https://patchwork.freedesktop.org/series/140935/ State : warning == Summary == Error: dim checkpatch failed ae683fed9cd1 drm/plane: Add new plane property IN_FORMATS_ASYNC -:102: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t' #102: FILE: include/drm/drm_plane.h:567: + uint32_t format, uint64_t modifier); total: 0 errors, 0 warnings, 1 checks, 62 lines checked b49c99fd68e5 drm/plane: modify create_in_formats to accommodate async -:32: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t' #32: FILE: drivers/gpu/drm/drm_plane.c:199: + uint32_t format, total: 0 errors, 0 warnings, 1 checks, 72 lines checked 41b712fbda8c drm/i915/display: Add i915 hook for format_mod_supported_async -:25: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations #25: FILE: drivers/gpu/drm/i915/display/skl_universal_plane.c:512: } +static bool intel_plane_async_formats(struct intel_plane *plane, uint32_t format) -:44: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t' #44: FILE: drivers/gpu/drm/i915/display/skl_universal_plane.c:531: + uint32_t format, total: 0 errors, 0 warnings, 2 checks, 77 lines checked ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Expose modifiers/formats supported by async flips (rev5) 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy ` (3 preceding siblings ...) 2025-02-18 10:18 ` ✗ Fi.CI.CHECKPATCH: warning for Expose modifiers/formats supported by async flips (rev5) Patchwork @ 2025-02-18 10:18 ` Patchwork 2025-02-18 11:12 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-18 13:53 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-18 10:18 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx == Series Details == Series: Expose modifiers/formats supported by async flips (rev5) URL : https://patchwork.freedesktop.org/series/140935/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for Expose modifiers/formats supported by async flips (rev5) 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy ` (4 preceding siblings ...) 2025-02-18 10:18 ` ✗ Fi.CI.SPARSE: " Patchwork @ 2025-02-18 11:12 ` Patchwork 2025-02-18 13:53 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-18 11:12 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3104 bytes --] == Series Details == Series: Expose modifiers/formats supported by async flips (rev5) URL : https://patchwork.freedesktop.org/series/140935/ State : success == Summary == CI Bug Log - changes from CI_DRM_16149 -> Patchwork_140935v5 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_140935v5 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-2: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061] / [i915#12435]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/bat-arlh-2/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/bat-arlh-2/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/bat-arlh-2/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][7] -> [SKIP][8] ([i915#9197]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@psr-primary-mmap-gtt: - fi-pnv-d510: NOTRUN -> [SKIP][9] +33 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16149 -> Patchwork_140935v5 CI-20190529: 20190529 CI_DRM_16149: 4587c05996666a92af63f86ba410bae1dc940794 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8235: e7e14eff66bc42329903ee579f019094cf1fdfce @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_140935v5: 4587c05996666a92af63f86ba410bae1dc940794 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/index.html [-- Attachment #2: Type: text/html, Size: 3948 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Expose modifiers/formats supported by async flips (rev5) 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy ` (5 preceding siblings ...) 2025-02-18 11:12 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-18 13:53 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-18 13:53 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 91530 bytes --] == Series Details == Series: Expose modifiers/formats supported by async flips (rev5) URL : https://patchwork.freedesktop.org/series/140935/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16149_full -> Patchwork_140935v5_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_140935v5_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_140935v5_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 (11 -> 10) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_140935v5_full: ### IGT changes ### #### Possible regressions #### * igt@gem_tiled_swapping@non-threaded: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-snb2/igt@gem_tiled_swapping@non-threaded.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb2/igt@gem_tiled_swapping@non-threaded.html * igt@kms_properties@get_properties-sanity-atomic: - shard-rkl: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_properties@get_properties-sanity-atomic.html * igt@kms_properties@get_properties-sanity-non-atomic: - shard-dg2: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-11/igt@kms_properties@get_properties-sanity-non-atomic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_properties@get_properties-sanity-non-atomic.html - shard-rkl: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-7/igt@kms_properties@get_properties-sanity-non-atomic.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-2/igt@kms_properties@get_properties-sanity-non-atomic.html - shard-dg1: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-18/igt@kms_properties@get_properties-sanity-non-atomic.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-13/igt@kms_properties@get_properties-sanity-non-atomic.html - shard-tglu: [PASS][10] -> [FAIL][11] +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-8/igt@kms_properties@get_properties-sanity-non-atomic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-3/igt@kms_properties@get_properties-sanity-non-atomic.html - shard-glk: [PASS][12] -> [FAIL][13] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-glk7/igt@kms_properties@get_properties-sanity-non-atomic.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk7/igt@kms_properties@get_properties-sanity-non-atomic.html - shard-mtlp: [PASS][14] -> [FAIL][15] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-6/igt@kms_properties@get_properties-sanity-non-atomic.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-3/igt@kms_properties@get_properties-sanity-non-atomic.html Known issues ------------ Here are the changes found in Patchwork_140935v5_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#8411]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: [PASS][18] -> [ABORT][19] ([i915#5507]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html - shard-tglu: [PASS][20] -> [ABORT][21] ([i915#12817] / [i915#5507]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-6/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@isolation: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@drm_fdinfo@isolation.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2-9: NOTRUN -> [SKIP][23] ([i915#8414]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4873]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_caching@read-writes.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][27] -> [FAIL][28] ([i915#9561]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-8/igt@gem_ctx_freq@sysfs.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-8/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][32] ([i915#8898]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb6/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#8555]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@gem_exec_balancer@sliced.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][39] ([i915#11965]) +4 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_endless@dispatch@ccs0: - shard-dg2: NOTRUN -> [TIMEOUT][40] ([i915#3778] / [i915#7016]) +1 other test timeout [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@gem_exec_endless@dispatch@ccs0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu: - shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gem_exec_reloc@basic-cpu.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +12 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-copy: - shard-rkl: [PASS][49] -> [DMESG-WARN][50] ([i915#12964]) +3 other tests dmesg-warn [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-7/igt@gem_fence_thrash@bo-copy.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-2/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_mmap_gtt@isolation: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#4077]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +11 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@gem_mmap_wc@bad-size.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@set-cache-level: - shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4083]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pwrite@basic-random: - shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gem_pwrite@basic-random.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [PASS][63] -> [TIMEOUT][64] ([i915#12917] / [i915#12964]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-8/igt@gem_pxp@display-protected-crc.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][65] ([i915#12917] / [i915#12964]) +3 other tests timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#13398]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4885]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282] / [i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3281] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap.html * igt@gen7_exec_parse@load-register-reg: - shard-mtlp: NOTRUN -> [SKIP][79] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@allowed-single: - shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#2856]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@gen9_exec_parse@batch-without-end.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#2856]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][84] -> [ABORT][85] ([i915#9820]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8399]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#6590]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@system-suspend-devices: - shard-mtlp: [PASS][88] -> [ABORT][89] ([i915#13193]) +3 other tests abort [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-1/igt@i915_pm_rpm@system-suspend-devices.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-7/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#11681] / [i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#4387]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][92] -> [SKIP][93] ([i915#7984]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-6/igt@i915_power@sanity.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-8/igt@i915_power@sanity.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][94] ([i915#1982] / [i915#9311]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][95] ([i915#9311]) +1 other test dmesg-warn [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@i915_selftest@mock@memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][96] ([i915#9311]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8709]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#8709]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#8709]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#12967] / [i915#6228]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@modeset-transition: - shard-glk: [PASS][102] -> [FAIL][103] ([i915#12238]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-glk2/igt@kms_atomic_transition@modeset-transition.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@kms_atomic_transition@modeset-transition.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: [PASS][104] -> [FAIL][105] ([i915#11859]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-glk2/igt@kms_atomic_transition@modeset-transition@2x-outputs.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#11808] / [i915#5956]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#5190]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#12964]) +16 other tests dmesg-warn [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#6095]) +14 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#12313]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +174 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#12313]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#6095]) +54 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +135 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#12805]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#6095]) +12 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +14 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3742]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg2-9: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6944] / [i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_content_protection@atomic-dpms.html - shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118] / [i915#9424]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][132] ([i915#7173]) +2 other tests fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#9424]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#9424]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#6944] / [i915#9424]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#7118] / [i915#9424]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][138] ([i915#1339] / [i915#7173]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#13049]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#13049]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-9: NOTRUN -> [SKIP][141] ([i915#13049]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3555]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#13046] / [i915#5354]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#4103] / [i915#4213]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#9809]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][146] ([i915#13046] / [i915#5354]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#9833]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3840] / [i915#9688]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#3840]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#658]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9934]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#9934]) +8 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][155] ([i915#11989]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-mtlp: [PASS][156] -> [FAIL][157] ([i915#11989]) +2 other tests fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1: - shard-tglu: [PASS][158] -> [FAIL][159] ([i915#11989]) +2 other tests fail [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8381]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-tglu-1: [PASS][161] -> [FAIL][162] ([i915#10826]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-1/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-1/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#2672]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2672] / [i915#3555] / [i915#8813]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#2672] / [i915#8813]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555] / [i915#5190]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#2672]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][172] ([i915#8708]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#1825]) +24 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#5354]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5354]) +31 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8708]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#3458]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8708]) +21 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3458]) +23 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][180] +64 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-snb: NOTRUN -> [SKIP][181] +40 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#1825]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3023]) +15 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-tglu: NOTRUN -> [SKIP][184] +9 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#12713]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_hdr@static-toggle-dpms.html - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#10656]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][190] -> [SKIP][191] ([i915#12388]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#12339]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#12339]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4816]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][195] +8 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_lowres@tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#8821]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8806]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#6953] / [i915#9423]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#12247]) +7 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#12247] / [i915#6953]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#12343]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#9812]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#5354]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5978]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9519]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@d3hot: - shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#6524] / [i915#6805]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#12316]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#11520]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#11520]) +5 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][211] ([i915#11520]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][212] ([i915#11520]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#11520]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#11520]) +9 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9683]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#9683]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#1072] / [i915#9732]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#9732]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1072] / [i915#9732]) +14 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-3/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#1072] / [i915#9732]) +26 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@kms_psr@psr-cursor-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9685]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#12755]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#5289]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#12755] / [i915#5190]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][225] ([i915#5465]) +2 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb6/igt@kms_setmode@basic.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][226] ([IGT#160]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-9: NOTRUN -> [SKIP][227] +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#11920]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#10393]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-1/igt@kms_vrr@negative-basic.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-7/igt@kms_vrr@negative-basic.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#9906]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9906]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#2437]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@kms_writeback@writeback-check-output.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#2434]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf@polling@0-rcs0: - shard-tglu: [PASS][235] -> [FAIL][236] ([i915#10538]) +1 other test fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-3/igt@perf@polling@0-rcs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-8/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [PASS][237] -> [FAIL][238] ([i915#4349]) +2 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][239] -> [FAIL][240] ([i915#4349]) +7 other tests fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][241] ([i915#12549] / [i915#6806]) +1 other test fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-check-all: - shard-dg2: NOTRUN -> [FAIL][242] ([i915#11943]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@multi-client: - shard-dg1: [PASS][243] -> [FAIL][244] ([i915#4349]) +2 other tests fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-15/igt@perf_pmu@multi-client.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-16/igt@perf_pmu@multi-client.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2-9: NOTRUN -> [SKIP][245] ([i915#8516]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#3708] / [i915#4077]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][247] +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][248] ([i915#13427]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@in-flight-10ms: - shard-mtlp: [ABORT][250] ([i915#13193]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-7/igt@gem_eio@in-flight-10ms.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@gem_eio@in-flight-10ms.html * igt@gem_eio@kms: - shard-dg2: [FAIL][252] ([i915#5784]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-3/igt@gem_eio@kms.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-rkl: [DMESG-WARN][254] ([i915#12964]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-1/igt@gem_exec_flush@basic-wb-ro-before-default.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-8/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [TIMEOUT][256] ([i915#12964]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-1/igt@gem_pxp@create-protected-buffer.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html * igt@i915_module_load@load: - shard-dg2: ([PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [DMESG-WARN][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279]) ([i915#13368]) -> ([PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-2/igt@i915_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-8/igt@i915_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-7/igt@i915_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-10/igt@i915_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-7/igt@i915_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-3/igt@i915_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-11/igt@i915_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-2/igt@i915_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-2/igt@i915_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-10/igt@i915_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-3/igt@i915_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-6/igt@i915_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-4/igt@i915_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-1/igt@i915_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-4/igt@i915_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-7/igt@i915_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-11/igt@i915_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-5/igt@i915_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-6/igt@i915_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-1/igt@i915_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-6/igt@i915_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-8/igt@i915_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-3/igt@i915_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@i915_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-3/igt@i915_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-4/igt@i915_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@i915_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-2/igt@i915_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-4/igt@i915_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@i915_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-1/igt@i915_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@i915_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@i915_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-11/igt@i915_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@i915_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@i915_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-6/igt@i915_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@i915_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@i915_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-6/igt@i915_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@i915_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@i915_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-7/igt@i915_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-8/igt@i915_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-8/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][303] ([i915#9820]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][305] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][307] ([i915#9820]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][309] ([i915#3591]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [FAIL][311] ([i915#12739] / [i915#3591]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [INCOMPLETE][313] ([i915#4817]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg1: [FAIL][315] ([i915#5956]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_color@ctm-0-50@pipe-b-hdmi-a-1: - shard-snb: [INCOMPLETE][317] -> [PASS][318] +1 other test pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-snb6/igt@kms_color@ctm-0-50@pipe-b-hdmi-a-1.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-snb6/igt@kms_color@ctm-0-50@pipe-b-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][319] ([i915#13566]) -> [PASS][320] +3 other tests pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-tglu: [FAIL][321] ([i915#13566]) -> [PASS][322] +7 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [FAIL][323] ([i915#4767]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-8/igt@kms_fbcon_fbt@fbc-suspend.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [FAIL][325] ([i915#11989]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [FAIL][327] ([i915#6880]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][329] ([i915#9519]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][331] ([i915#9196]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][333] ([i915#12917] / [i915#12964]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-1/igt@kms_vblank@query-forked-hang.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-8/igt@kms_vblank@query-forked-hang.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [FAIL][335] ([i915#4349]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@ccs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: [INCOMPLETE][337] ([i915#7443]) -> [INCOMPLETE][338] ([i915#4817] / [i915#7443]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: [SKIP][339] ([i915#4538] / [i915#5286]) -> [SKIP][340] ([i915#4423] / [i915#4538] / [i915#5286]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg1: [SKIP][341] ([i915#4423] / [i915#6095]) -> [SKIP][342] ([i915#6095]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][343] ([i915#7118] / [i915#9424]) -> [FAIL][344] ([i915#7173]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-1/igt@kms_content_protection@legacy.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][345] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][346] ([i915#7118] / [i915#9424]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-10/igt@kms_content_protection@type1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-5/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][347] ([i915#7118] / [i915#9424]) -> [FAIL][348] ([i915#1339] / [i915#7173]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-3/igt@kms_content_protection@uevent.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-10/igt@kms_content_protection@uevent.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-tglu: [FAIL][349] ([i915#11989]) -> [FAIL][350] ([i915#10826]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: [SKIP][351] ([i915#3458] / [i915#4423]) -> [SKIP][352] ([i915#3458]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][353] ([i915#3458]) -> [SKIP][354] ([i915#10433] / [i915#3458]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - shard-dg1: [SKIP][355] ([i915#3458]) -> [SKIP][356] ([i915#3458] / [i915#4423]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: [INCOMPLETE][357] ([i915#12756] / [i915#13409] / [i915#13476] / [i915#1982]) -> [INCOMPLETE][358] ([i915#12756] / [i915#13409] / [i915#13476]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][359] ([i915#12756] / [i915#1982]) -> [INCOMPLETE][360] ([i915#12756]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][361] ([i915#9340]) -> [SKIP][362] ([i915#3828]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16149/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13368]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13368 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_16149 -> Patchwork_140935v5 CI-20190529: 20190529 CI_DRM_16149: 4587c05996666a92af63f86ba410bae1dc940794 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8235: e7e14eff66bc42329903ee579f019094cf1fdfce @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_140935v5: 4587c05996666a92af63f86ba410bae1dc940794 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140935v5/index.html [-- Attachment #2: Type: text/html, Size: 112926 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v5 0/3] Expose modifiers/formats supported by async flips
@ 2025-02-12 16:18 Arun R Murthy
2025-02-12 16:18 ` [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async Arun R Murthy
0 siblings, 1 reply; 13+ messages in thread
From: Arun R Murthy @ 2025-02-12 16:18 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: chaitanya.kumar.borah, ville.syrjala, 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
TODO: Upon merge of the patch related to async flip
https://patchwork.freedesktop.org/patch/626849/?series=139807&rev=6
the patch 5 in this series will have to make use of the new function
pointer can_async_flip().
v3: Add new plane->funcs format_mod_supported_async (Ville)
v4: reuse the existing can_async_flip in i915 (Ville)
pass format_mod_supported/async as parameter to create_in_formats
function & leave the modifiers/formats in drm_format_modifer_blob
untouched (Ville)
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
---
Arun R Murthy (5):
drm/plane: Add new plane property IN_FORMATS_ASYNC
drm/plane: Expose function to create format/modifier blob
drm/plane: Function to check async supported modifier/format
drm/i915/display: Populate list of async supported formats/modifiers
drm/i915/display: Add function for format_mod_supported_async
drivers/gpu/drm/drm_mode_config.c | 7 ++
drivers/gpu/drm/drm_plane.c | 72 +++++++++----
drivers/gpu/drm/i915/display/skl_universal_plane.c | 113 ++++++++++++++++++---
include/drm/drm_mode_config.h | 6 ++
include/drm/drm_plane.h | 24 +++++
5 files changed, 188 insertions(+), 34 deletions(-)
---
base-commit: 08bd590935a5258ffd79355c59adffd72fb2c642
change-id: 20250102-asyn-bf76730501cc
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
---
Changes in v5:
- EDITME: describe what is new in this series revision.
- EDITME: use bulletpoints and terse descriptions.
- Link to v4: https://lore.kernel.org/r/20250205-asyn-v4-0-9a5b018e359b@intel.com
---
Arun R Murthy (3):
drm/plane: Add new plane property IN_FORMATS_ASYNC
drm/plane: modify create_in_formats to accommodate async
drm/i915/display: Add i915 hook for format_mod_supported_async
drivers/gpu/drm/drm_mode_config.c | 7 +++
drivers/gpu/drm/drm_plane.c | 51 +++++++++++++++-----
drivers/gpu/drm/i915/display/skl_universal_plane.c | 56 ++++++++++++++++------
include/drm/drm_mode_config.h | 6 +++
include/drm/drm_plane.h | 17 +++++++
5 files changed, 110 insertions(+), 27 deletions(-)
---
base-commit: a19d8731db07e41101ed00b9d86ac8868df2a763
change-id: 20250102-asyn-bf76730501cc
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async 2025-02-12 16:18 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy @ 2025-02-12 16:18 ` Arun R Murthy 2025-02-13 9:55 ` Borah, Chaitanya Kumar 0 siblings, 1 reply; 13+ messages in thread From: Arun R Murthy @ 2025-02-12 16:18 UTC (permalink / raw) To: dri-devel, intel-gfx, intel-xe Cc: chaitanya.kumar.borah, ville.syrjala, Arun R Murthy create_in_formats creates the list of supported format/modifiers for synchronous flips, modify the same function so as to take the format_mod_supported as argument and create list of format/modifier for async as well. v5: create_in_formats can return -ve value in failure case, correct the if condition to check the creation of blob <Chaitanya> Dont add the modifier for which none of the formats is not supported. Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> --- drivers/gpu/drm/drm_plane.c | 46 +++++++++++++++++++++++++++++++++------------ 1 file changed, 34 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c index c9d8871417722186d2b6f87197c9e15a70924b4f..01f67f1f5f29e37b8d0e0793c58bbe1bba337eb2 100644 --- a/drivers/gpu/drm/drm_plane.c +++ b/drivers/gpu/drm/drm_plane.c @@ -190,9 +190,12 @@ 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) +static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane, + bool (*format_mod_supported) + (struct drm_plane *plane, + uint32_t format, + uint64_t modifier)) { - const struct drm_mode_config *config = &dev->mode_config; struct drm_property_blob *blob; struct drm_format_modifier *mod; size_t blob_size, formats_size, modifiers_size; @@ -234,24 +237,26 @@ static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane 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 || - plane->funcs->format_mod_supported(plane, - plane->format_types[j], - plane->modifiers[i])) { + if (!format_mod_supported || format_mod_supported + (plane, + plane->format_types[j], + plane->modifiers[i])) { mod->formats |= 1ULL << j; } } + if (!mod->formats) { + mod->modifier = 0; + blob_data->count_modifiers--; + continue; + } mod->modifier = plane->modifiers[i]; mod->offset = 0; mod->pad = 0; mod++; } - drm_object_attach_property(&plane->base, config->modifiers_property, - blob->base.id); - - return 0; + return blob->base.id; } /** @@ -368,6 +373,7 @@ static int __drm_universal_plane_init(struct drm_device *dev, }; unsigned int format_modifier_count = 0; int ret; + int blob_id; /* plane index is used with 32bit bitmasks */ if (WARN_ON(config->num_total_plane >= 32)) @@ -474,8 +480,24 @@ static int __drm_universal_plane_init(struct drm_device *dev, drm_plane_create_hotspot_properties(plane); } - if (format_modifier_count) - create_in_format_blob(dev, plane); + if (format_modifier_count) { + blob_id = create_in_format_blob(dev, plane, + plane->funcs->format_mod_supported); + if (blob_id > 0) + drm_object_attach_property(&plane->base, + config->modifiers_property, + blob_id); + } + + if (plane->funcs->format_mod_supported_async) { + blob_id = create_in_format_blob(dev, plane, + plane->funcs->format_mod_supported_async); + if (blob_id > 0) + drm_object_attach_property(&plane->base, + config->async_modifiers_property, + blob_id); + } + return 0; } -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* RE: [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async 2025-02-12 16:18 ` [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async Arun R Murthy @ 2025-02-13 9:55 ` Borah, Chaitanya Kumar 2025-02-14 18:32 ` Borah, Chaitanya Kumar 0 siblings, 1 reply; 13+ messages in thread From: Borah, Chaitanya Kumar @ 2025-02-13 9:55 UTC (permalink / raw) To: Murthy, Arun R, dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Syrjala, Ville > -----Original Message----- > From: Murthy, Arun R <arun.r.murthy@intel.com> > Sent: Wednesday, February 12, 2025 9:48 PM > To: dri-devel@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; intel- > xe@lists.freedesktop.org > Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Syrjala, > Ville <ville.syrjala@intel.com>; Murthy, Arun R <arun.r.murthy@intel.com> > Subject: [PATCH v5 2/3] drm/plane: modify create_in_formats to > accommodate async > > create_in_formats creates the list of supported format/modifiers for > synchronous flips, modify the same function so as to take the > format_mod_supported as argument and create list of format/modifier for > async as well. > > v5: create_in_formats can return -ve value in failure case, correct the if > condition to check the creation of blob <Chaitanya> Dont add the modifier for > which none of the formats is not supported. > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > --- > drivers/gpu/drm/drm_plane.c | 46 +++++++++++++++++++++++++++++++++-- > ---------- > 1 file changed, 34 insertions(+), 12 deletions(-) > > diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c > index > c9d8871417722186d2b6f87197c9e15a70924b4f..01f67f1f5f29e37b8d0e0793c > 58bbe1bba337eb2 100644 > --- a/drivers/gpu/drm/drm_plane.c > +++ b/drivers/gpu/drm/drm_plane.c > @@ -190,9 +190,12 @@ 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) > +static int create_in_format_blob(struct drm_device *dev, struct drm_plane > *plane, > + bool (*format_mod_supported) > + (struct drm_plane *plane, > + uint32_t format, > + uint64_t modifier)) > { > - const struct drm_mode_config *config = &dev->mode_config; > struct drm_property_blob *blob; > struct drm_format_modifier *mod; > size_t blob_size, formats_size, modifiers_size; @@ -234,24 +237,26 > @@ static int create_in_format_blob(struct drm_device *dev, struct > drm_plane *plane > 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 || > - plane->funcs->format_mod_supported(plane, > - plane- > >format_types[j], > - plane- > >modifiers[i])) { > + if (!format_mod_supported || > format_mod_supported > + (plane, > + plane- > >format_types[j], > + plane->modifiers[i])) > { > mod->formats |= 1ULL << j; > } > } > > + if (!mod->formats) { > + mod->modifier = 0; > + blob_data->count_modifiers--; > + continue; > + } I don't think change works. 0 represents DRM_FORMAT_MOD_LINEAR. > mod->modifier = plane->modifiers[i]; > mod->offset = 0; > mod->pad = 0; > mod++; > } > > - drm_object_attach_property(&plane->base, config- > >modifiers_property, > - blob->base.id); > - > - return 0; > + return blob->base.id; > } > > /** > @@ -368,6 +373,7 @@ static int __drm_universal_plane_init(struct > drm_device *dev, > }; > unsigned int format_modifier_count = 0; > int ret; > + int blob_id; > > /* plane index is used with 32bit bitmasks */ > if (WARN_ON(config->num_total_plane >= 32)) @@ -474,8 +480,24 > @@ static int __drm_universal_plane_init(struct drm_device *dev, > drm_plane_create_hotspot_properties(plane); > } > > - if (format_modifier_count) > - create_in_format_blob(dev, plane); > + if (format_modifier_count) { > + blob_id = create_in_format_blob(dev, plane, > + plane->funcs- > >format_mod_supported); > + if (blob_id > 0) > + drm_object_attach_property(&plane->base, > + config->modifiers_property, > + blob_id); > + } > + > + if (plane->funcs->format_mod_supported_async) { > + blob_id = create_in_format_blob(dev, plane, > + plane->funcs- > >format_mod_supported_async); > + if (blob_id > 0) > + drm_object_attach_property(&plane->base, > + config- > >async_modifiers_property, > + blob_id); > + } > + > > return 0; > } > > -- > 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async 2025-02-13 9:55 ` Borah, Chaitanya Kumar @ 2025-02-14 18:32 ` Borah, Chaitanya Kumar 0 siblings, 0 replies; 13+ messages in thread From: Borah, Chaitanya Kumar @ 2025-02-14 18:32 UTC (permalink / raw) To: Murthy, Arun R, dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Syrjala, Ville > -----Original Message----- > From: Borah, Chaitanya Kumar > Sent: Thursday, February 13, 2025 3:26 PM > To: Murthy, Arun R <arun.r.murthy@intel.com>; dri- > devel@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; intel- > xe@lists.freedesktop.org > Cc: Syrjala, Ville <ville.syrjala@intel.com> > Subject: RE: [PATCH v5 2/3] drm/plane: modify create_in_formats to > accommodate async > > > -----Original Message----- > > From: Murthy, Arun R <arun.r.murthy@intel.com> > > Sent: Wednesday, February 12, 2025 9:48 PM > > To: dri-devel@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; > > intel- xe@lists.freedesktop.org > > Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Syrjala, > > Ville <ville.syrjala@intel.com>; Murthy, Arun R > > <arun.r.murthy@intel.com> > > Subject: [PATCH v5 2/3] drm/plane: modify create_in_formats to > > accommodate async > > > > create_in_formats creates the list of supported format/modifiers for > > synchronous flips, modify the same function so as to take the > > format_mod_supported as argument and create list of format/modifier > > for async as well. > > > > v5: create_in_formats can return -ve value in failure case, correct > > the if condition to check the creation of blob <Chaitanya> Dont add > > the modifier for which none of the formats is not supported. > > > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > > --- > > drivers/gpu/drm/drm_plane.c | 46 > +++++++++++++++++++++++++++++++++-- > > ---------- > > 1 file changed, 34 insertions(+), 12 deletions(-) > > > > diff --git a/drivers/gpu/drm/drm_plane.c b/drivers/gpu/drm/drm_plane.c > > index > > > c9d8871417722186d2b6f87197c9e15a70924b4f..01f67f1f5f29e37b8d0e0793c > > 58bbe1bba337eb2 100644 > > --- a/drivers/gpu/drm/drm_plane.c > > +++ b/drivers/gpu/drm/drm_plane.c > > @@ -190,9 +190,12 @@ 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) > > +static int create_in_format_blob(struct drm_device *dev, struct > > +drm_plane > > *plane, > > + bool (*format_mod_supported) > > + (struct drm_plane *plane, > > + uint32_t format, > > + uint64_t modifier)) > > { > > - const struct drm_mode_config *config = &dev->mode_config; > > struct drm_property_blob *blob; > > struct drm_format_modifier *mod; > > size_t blob_size, formats_size, modifiers_size; @@ -234,24 +237,26 > > @@ static int create_in_format_blob(struct drm_device *dev, struct > > drm_plane *plane > > 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 || > > - plane->funcs->format_mod_supported(plane, > > - plane- > > >format_types[j], > > - plane- > > >modifiers[i])) { > > + if (!format_mod_supported || > > format_mod_supported > > + (plane, > > + plane- > > >format_types[j], > > + plane->modifiers[i])) > > { > > mod->formats |= 1ULL << j; > > } > > } > > > > + if (!mod->formats) { > > + mod->modifier = 0; > > + blob_data->count_modifiers--; > > + continue; > > + } > > I don't think change works. 0 represents DRM_FORMAT_MOD_LINEAR. Relooked into the code, this change will prevent adding modifiers which do not have any formats supported into the modifier list. So it is correct in that. Smart idea! However, the line mod->modifier = 0 is redundant. It will just get overwritten by the next valid modifier. Regards Chaitanya > > > mod->modifier = plane->modifiers[i]; > > mod->offset = 0; > > mod->pad = 0; > > mod++; > > } > > > > - drm_object_attach_property(&plane->base, config- > > >modifiers_property, > > - blob->base.id); > > - > > - return 0; > > + return blob->base.id; > > } > > > > /** > > @@ -368,6 +373,7 @@ static int __drm_universal_plane_init(struct > > drm_device *dev, > > }; > > unsigned int format_modifier_count = 0; > > int ret; > > + int blob_id; > > > > /* plane index is used with 32bit bitmasks */ > > if (WARN_ON(config->num_total_plane >= 32)) @@ -474,8 +480,24 > @@ > > static int __drm_universal_plane_init(struct drm_device *dev, > > drm_plane_create_hotspot_properties(plane); > > } > > > > - if (format_modifier_count) > > - create_in_format_blob(dev, plane); > > + if (format_modifier_count) { > > + blob_id = create_in_format_blob(dev, plane, > > + plane->funcs- > > >format_mod_supported); > > + if (blob_id > 0) > > + drm_object_attach_property(&plane->base, > > + config->modifiers_property, > > + blob_id); > > + } > > + > > + if (plane->funcs->format_mod_supported_async) { > > + blob_id = create_in_format_blob(dev, plane, > > + plane->funcs- > > >format_mod_supported_async); > > + if (blob_id > 0) > > + drm_object_attach_property(&plane->base, > > + config- > > >async_modifiers_property, > > + blob_id); > > + } > > + > > > > return 0; > > } > > > > -- > > 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-02-18 14:50 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-18 9:02 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 1/3] drm/plane: Add new plane property IN_FORMATS_ASYNC Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async Arun R Murthy 2025-02-18 9:02 ` [PATCH v5 3/3] drm/i915/display: Add i915 hook for format_mod_supported_async Arun R Murthy 2025-02-18 11:46 ` Jani Nikula 2025-02-18 14:50 ` Sebastian Brzezinka 2025-02-18 10:18 ` ✗ Fi.CI.CHECKPATCH: warning for Expose modifiers/formats supported by async flips (rev5) Patchwork 2025-02-18 10:18 ` ✗ Fi.CI.SPARSE: " Patchwork 2025-02-18 11:12 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-18 13:53 ` ✗ i915.CI.Full: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2025-02-12 16:18 [PATCH v5 0/3] Expose modifiers/formats supported by async flips Arun R Murthy 2025-02-12 16:18 ` [PATCH v5 2/3] drm/plane: modify create_in_formats to accommodate async Arun R Murthy 2025-02-13 9:55 ` Borah, Chaitanya Kumar 2025-02-14 18:32 ` Borah, Chaitanya Kumar
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox