* [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper
2024-11-20 22:28 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
@ 2024-11-20 22:28 ` Jan Maslak
2024-11-26 9:13 ` Grzegorzek, Dominik
0 siblings, 1 reply; 11+ messages in thread
From: Jan Maslak @ 2024-11-20 22:28 UTC (permalink / raw)
To: igt-dev; +Cc: dominik.grzegorzek, jonathan.cavitt, matthew.d.roper, Jan Maslak
Add a new helper function, xe_hw_config_lookup_value(), that
returns a pointer to the value of a given hwconfig attribute.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
---
lib/xe/xe_query.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
lib/xe/xe_query.h | 2 ++
2 files changed, 46 insertions(+)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 49bed033b..73c8ed948 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -839,6 +839,50 @@ uint16_t xe_gt_get_tile_id(int fd, int gt)
return xe_dev->gt_list->gt_list[gt].tile_id;
}
+/**
+ * xe_hwconfig_lookup_value:
+ * @fd: xe device fd
+ * @attribute: hwconfig attribute id
+ * @len: pointer to store length of the value
+ *
+ * Returns a pointer to the value of the hwconfig attribute @attribute and
+ * writes the length of the value to @len.
+ * The caller is responsible for freeing the returned pointer.
+ */
+uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len)
+{
+ struct xe_device *xe_dev;
+ uint32_t *hwconfig;
+ uint32_t pos, hwconfig_len;
+ uint32_t *value = NULL;
+
+ xe_dev = find_in_cache(fd);
+ igt_assert(xe_dev);
+
+ hwconfig = xe_dev->hwconfig;
+ igt_assert(hwconfig);
+
+ /* Extract the value from the hwconfig */
+ pos = 0;
+ hwconfig_len = xe_dev->hwconfig_size / sizeof(uint32_t);
+ while (pos + 2 < hwconfig_len) {
+ uint32_t attribute_id = hwconfig[pos];
+ uint32_t attribute_len = hwconfig[pos + 1];
+ uint32_t *attribute_data = &hwconfig[pos + 2];
+
+ if (attribute_id == attribute) {
+ value = malloc(attribute_len * sizeof(uint32_t));
+ igt_assert(value);
+ memcpy(value, attribute_data, attribute_len * sizeof(uint32_t));
+ *len = attribute_len;
+ break;
+ }
+ pos += 2 + attribute_len;
+ }
+
+ return value;
+}
+
igt_constructor
{
xe_device_cache_init();
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index f8836578e..30ea5ad41 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -15,6 +15,7 @@
#include "igt_aux.h"
#include "igt_list.h"
#include "igt_sizes.h"
+#include "intel_hwconfig_types.h"
#define XE_DEFAULT_ALIGNMENT SZ_4K
#define XE_DEFAULT_ALIGNMENT_64K SZ_64K
@@ -118,6 +119,7 @@ struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
bool xe_has_media_gt(int fd);
bool xe_is_media_gt(int fd, int gt);
uint16_t xe_gt_get_tile_id(int fd, int gt);
+uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len);
struct xe_device *xe_device_get(int fd);
void xe_device_put(int fd);
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper
2024-11-20 22:28 ` [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper Jan Maslak
@ 2024-11-26 9:13 ` Grzegorzek, Dominik
2024-11-26 9:16 ` Grzegorzek, Dominik
0 siblings, 1 reply; 11+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-26 9:13 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Maslak, Jan
Cc: Roper, Matthew D, Cavitt, Jonathan
On Wed, 2024-11-20 at 22:28 +0000, Jan Maslak wrote:
Hi Jan,
> Add a new helper function, xe_hw_config_lookup_value(), that
> returns a pointer to the value of a given hwconfig attribute.
>
> Signed-off-by: Jan Maslak <jan.maslak@intel.com>
> ---
> lib/xe/xe_query.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
> lib/xe/xe_query.h | 2 ++
> 2 files changed, 46 insertions(+)
>
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 49bed033b..73c8ed948 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -839,6 +839,50 @@ uint16_t xe_gt_get_tile_id(int fd, int gt)
> return xe_dev->gt_list->gt_list[gt].tile_id;
> }
>
> +/**
> + * xe_hwconfig_lookup_value:
> + * @fd: xe device fd
> + * @attribute: hwconfig attribute id
> + * @len: pointer to store length of the value
> + *
> + * Returns a pointer to the value of the hwconfig attribute @attribute and
> + * writes the length of the value to @len.
Nit: Imo it would be worth to underline that len is in units of uint32_t,
not as someone could think in bytes. Maybe sth like:
* writes the number of uint32_t elements idicating the lenght of the value to @len.
> + * The caller is responsible for freeing the returned pointer.
> + */
> +uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len)
> +{
> + struct xe_device *xe_dev;
> + uint32_t *hwconfig;
> + uint32_t pos, hwconfig_len;
> + uint32_t *value = NULL;
> +
> + xe_dev = find_in_cache(fd);
> + igt_assert(xe_dev);
> +
> + hwconfig = xe_dev->hwconfig;
> + igt_assert(hwconfig);
> +
> + /* Extract the value from the hwconfig */
> + pos = 0;
> + hwconfig_len = xe_dev->hwconfig_size / sizeof(uint32_t);
> + while (pos + 2 < hwconfig_len) {
> + uint32_t attribute_id = hwconfig[pos];
> + uint32_t attribute_len = hwconfig[pos + 1];
> + uint32_t *attribute_data = &hwconfig[pos + 2];
> +
> + if (attribute_id == attribute) {
> + value = malloc(attribute_len * sizeof(uint32_t));
> + igt_assert(value);
> + memcpy(value, attribute_data, attribute_len * sizeof(uint32_t));
> + *len = attribute_len;
> + break;
I think we could just return an address to cached hwconfig as it remains valid until
the last user calls drm_close_driver(). Caller would be no longer responsible for
freeing returned pointer.
Imo, your apprach is a little bit cleaner, however looking at other simillar
cases (e.g. xe_mem_region, xe_engine) it looks like the preference is
different. I would propose to make it coherent with behaviour already present in
that library.
Regards,
Dominik
> + }
> + pos += 2 + attribute_len;
> + }
> +
> + return value;
> +}
> +
> igt_constructor
> {
> xe_device_cache_init();
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index f8836578e..30ea5ad41 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -15,6 +15,7 @@
> #include "igt_aux.h"
> #include "igt_list.h"
> #include "igt_sizes.h"
> +#include "intel_hwconfig_types.h"
>
> #define XE_DEFAULT_ALIGNMENT SZ_4K
> #define XE_DEFAULT_ALIGNMENT_64K SZ_64K
> @@ -118,6 +119,7 @@ struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
> bool xe_has_media_gt(int fd);
> bool xe_is_media_gt(int fd, int gt);
> uint16_t xe_gt_get_tile_id(int fd, int gt);
> +uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len);
>
> struct xe_device *xe_device_get(int fd);
> void xe_device_put(int fd);
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper
2024-11-26 9:13 ` Grzegorzek, Dominik
@ 2024-11-26 9:16 ` Grzegorzek, Dominik
0 siblings, 0 replies; 11+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-26 9:16 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Maslak, Jan
Cc: Roper, Matthew D, Cavitt, Jonathan
On Tue, 2024-11-26 at 10:13 +0100, Dominik Grzegorzek wrote:
> On Wed, 2024-11-20 at 22:28 +0000, Jan Maslak wrote:
> Hi Jan,
>
> > Add a new helper function, xe_hw_config_lookup_value(), that
> > returns a pointer to the value of a given hwconfig attribute.
> >
> > Signed-off-by: Jan Maslak <jan.maslak@intel.com>
> > ---
> > lib/xe/xe_query.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
> > lib/xe/xe_query.h | 2 ++
> > 2 files changed, 46 insertions(+)
> >
> > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> > index 49bed033b..73c8ed948 100644
> > --- a/lib/xe/xe_query.c
> > +++ b/lib/xe/xe_query.c
> > @@ -839,6 +839,50 @@ uint16_t xe_gt_get_tile_id(int fd, int gt)
> > return xe_dev->gt_list->gt_list[gt].tile_id;
> > }
> >
> > +/**
> > + * xe_hwconfig_lookup_value:
> > + * @fd: xe device fd
> > + * @attribute: hwconfig attribute id
> > + * @len: pointer to store length of the value
> > + *
> > + * Returns a pointer to the value of the hwconfig attribute @attribute and
> > + * writes the length of the value to @len.
>
> Nit: Imo it would be worth to underline that len is in units of uint32_t,
> not as someone could think in bytes. Maybe sth like:
> * writes the number of uint32_t elements idicating the lenght of the value to @len.
Sorry, I made two typos here:
s/idicating/indicating/
s/lenght/length/
Regards,
Dominik
>
> > + * The caller is responsible for freeing the returned pointer.
> > + */
> > +uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len)
> > +{
> > + struct xe_device *xe_dev;
> > + uint32_t *hwconfig;
> > + uint32_t pos, hwconfig_len;
> > + uint32_t *value = NULL;
> > +
> > + xe_dev = find_in_cache(fd);
> > + igt_assert(xe_dev);
> > +
> > + hwconfig = xe_dev->hwconfig;
> > + igt_assert(hwconfig);
> > +
> > + /* Extract the value from the hwconfig */
> > + pos = 0;
> > + hwconfig_len = xe_dev->hwconfig_size / sizeof(uint32_t);
> > + while (pos + 2 < hwconfig_len) {
> > + uint32_t attribute_id = hwconfig[pos];
> > + uint32_t attribute_len = hwconfig[pos + 1];
> > + uint32_t *attribute_data = &hwconfig[pos + 2];
> > +
> > + if (attribute_id == attribute) {
> > + value = malloc(attribute_len * sizeof(uint32_t));
> > + igt_assert(value);
> > + memcpy(value, attribute_data, attribute_len * sizeof(uint32_t));
> > + *len = attribute_len;
> > + break;
>
> I think we could just return an address to cached hwconfig as it remains valid until
> the last user calls drm_close_driver(). Caller would be no longer responsible for
> freeing returned pointer.
>
> Imo, your apprach is a little bit cleaner, however looking at other simillar
> cases (e.g. xe_mem_region, xe_engine) it looks like the preference is
> different. I would propose to make it coherent with behaviour already present in
> that library.
>
>
> Regards,
> Dominik
> > + }
> > + pos += 2 + attribute_len;
> > + }
> > +
> > + return value;
> > +}
> > +
> > igt_constructor
> > {
> > xe_device_cache_init();
> > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> > index f8836578e..30ea5ad41 100644
> > --- a/lib/xe/xe_query.h
> > +++ b/lib/xe/xe_query.h
> > @@ -15,6 +15,7 @@
> > #include "igt_aux.h"
> > #include "igt_list.h"
> > #include "igt_sizes.h"
> > +#include "intel_hwconfig_types.h"
> >
> > #define XE_DEFAULT_ALIGNMENT SZ_4K
> > #define XE_DEFAULT_ALIGNMENT_64K SZ_64K
> > @@ -118,6 +119,7 @@ struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
> > bool xe_has_media_gt(int fd);
> > bool xe_is_media_gt(int fd, int gt);
> > uint16_t xe_gt_get_tile_id(int fd, int gt);
> > +uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len);
> >
> > struct xe_device *xe_device_get(int fd);
> > void xe_device_put(int fd);
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size()
@ 2024-11-28 13:05 Jan Maslak
2024-11-28 13:05 ` [PATCH 1/3] lib/xe_query: add hwconfig to xe_device Jan Maslak
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Jan Maslak @ 2024-11-28 13:05 UTC (permalink / raw)
To: igt-dev; +Cc: dominik.grzegorzek, jonathan.cavitt, matthew.d.roper, Jan Maslak
This patch series adds a helper function to lib/xe/xe_query for looking up
the values of hwconfig attributes and updates the thread count handling in
the query_attention_bitmask_size().
v2: Added hwconfig to xe_device, so that its value will only be queried
once, cached and later used by the helper function.
Added proper commit messages.
Fixed stylistic issues in the code.
v3: xe_hwconfig_lookup_value() returns a pointer to cached data rather
than copying it to a new buffer that the caller would later need
to free.
Added assert for length returned by xe_hwconfig_lookup_value()
in the test.
Reworded xe_hwconfig_lookup_value() description to clarify that it
returns the length of the value in uint32_t elements.
Jan Maslak (3):
lib/xe_query: add hwconfig to xe_device
lib/xe_query: add xe_hwconfig_lookup_value() helper
tests/xe_eudebug_online: update thread count handling in
query_attention_bitmask_size()
lib/xe/xe_query.c | 67 +++++++++++++++++++++++++++++++++
lib/xe/xe_query.h | 8 ++++
tests/intel/xe_eudebug_online.c | 12 +++++-
3 files changed, 85 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/3] lib/xe_query: add hwconfig to xe_device
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
@ 2024-11-28 13:05 ` Jan Maslak
2024-11-28 13:05 ` [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper Jan Maslak
` (4 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Jan Maslak @ 2024-11-28 13:05 UTC (permalink / raw)
To: igt-dev; +Cc: dominik.grzegorzek, jonathan.cavitt, matthew.d.roper, Jan Maslak
Add hwconfig and hwconfig_size to xe_device, so that it can be accessed
easier by the tests.
Thanks to this, hwconfig data will only be queried once and cached.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
lib/xe/xe_query.c | 28 ++++++++++++++++++++++++++++
lib/xe/xe_query.h | 6 ++++++
2 files changed, 34 insertions(+)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 0c9cff066..49bed033b 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -39,6 +39,32 @@ static struct drm_xe_query_config *xe_query_config_new(int fd)
return config;
}
+static uint32_t *xe_query_hwconfig_new(int fd, uint32_t *hwconfig_size)
+{
+ uint32_t *hwconfig;
+ struct drm_xe_device_query query = {
+ .extensions = 0,
+ .query = DRM_XE_DEVICE_QUERY_HWCONFIG,
+ .size = 0,
+ .data = 0,
+ };
+
+ /* Perform the initial query to get the size */
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+ igt_assert_neq(query.size, 0);
+
+ hwconfig = malloc(query.size);
+ igt_assert(hwconfig);
+
+ query.data = to_user_pointer(hwconfig);
+
+ /* Perform the query to get the actual data */
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ *hwconfig_size = query.size;
+ return hwconfig;
+}
+
static struct drm_xe_query_gt_list *xe_query_gt_list_new(int fd)
{
struct drm_xe_query_gt_list *gt_list;
@@ -239,6 +265,7 @@ static struct xe_device *find_in_cache(int fd)
static void xe_device_free(struct xe_device *xe_dev)
{
free(xe_dev->config);
+ free(xe_dev->hwconfig);
free(xe_dev->gt_list);
free(xe_dev->engines);
free(xe_dev->mem_regions);
@@ -268,6 +295,7 @@ struct xe_device *xe_device_get(int fd)
xe_dev->fd = fd;
xe_dev->config = xe_query_config_new(fd);
+ xe_dev->hwconfig = xe_query_hwconfig_new(fd, &xe_dev->hwconfig_size);
xe_dev->va_bits = xe_dev->config->info[DRM_XE_QUERY_CONFIG_VA_BITS];
xe_dev->dev_id = xe_dev->config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff;
xe_dev->gt_list = xe_query_gt_list_new(fd);
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index cabb8078c..f8836578e 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -26,6 +26,12 @@ struct xe_device {
/** @config: xe configuration */
struct drm_xe_query_config *config;
+ /** @hwconfig: xe hwconfig table data */
+ uint32_t *hwconfig;
+
+ /** @hwconfig_size: size of hwconfig in bytes */
+ uint32_t hwconfig_size;
+
/** @gt_list: gt info */
struct drm_xe_query_gt_list *gt_list;
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
2024-11-28 13:05 ` [PATCH 1/3] lib/xe_query: add hwconfig to xe_device Jan Maslak
@ 2024-11-28 13:05 ` Jan Maslak
2024-11-28 13:10 ` Grzegorzek, Dominik
2024-11-28 13:05 ` [PATCH 3/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
` (3 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Jan Maslak @ 2024-11-28 13:05 UTC (permalink / raw)
To: igt-dev; +Cc: dominik.grzegorzek, jonathan.cavitt, matthew.d.roper, Jan Maslak
Add a new helper function, xe_hw_config_lookup_value(), that
returns a pointer to the value of a given hwconfig attribute.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
---
lib/xe/xe_query.c | 39 +++++++++++++++++++++++++++++++++++++++
lib/xe/xe_query.h | 2 ++
2 files changed, 41 insertions(+)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 49bed033b..f3731d9d3 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -839,6 +839,45 @@ uint16_t xe_gt_get_tile_id(int fd, int gt)
return xe_dev->gt_list->gt_list[gt].tile_id;
}
+/**
+ * xe_hwconfig_lookup_value:
+ * @fd: xe device fd
+ * @attribute: hwconfig attribute id
+ * @len: pointer to store length of the value (in uint32_t sized elements)
+ *
+ * Returns a pointer to the value of the hwconfig attribute @attribute and
+ * writes the number of uint32_t elements indicating the length of the value to @len.
+ */
+uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len)
+{
+ struct xe_device *xe_dev;
+ uint32_t *hwconfig;
+ uint32_t pos, hwconfig_len;
+
+ xe_dev = find_in_cache(fd);
+ igt_assert(xe_dev);
+
+ hwconfig = xe_dev->hwconfig;
+ igt_assert(hwconfig);
+
+ /* Extract the value from the hwconfig */
+ pos = 0;
+ hwconfig_len = xe_dev->hwconfig_size / sizeof(uint32_t);
+ while (pos + 2 < hwconfig_len) {
+ uint32_t attribute_id = hwconfig[pos];
+ uint32_t attribute_len = hwconfig[pos + 1];
+ uint32_t *attribute_data = &hwconfig[pos + 2];
+
+ if (attribute_id == attribute) {
+ *len = attribute_len;
+ return attribute_data;
+ }
+ pos += 2 + attribute_len;
+ }
+
+ return NULL;
+}
+
igt_constructor
{
xe_device_cache_init();
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index f8836578e..30ea5ad41 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -15,6 +15,7 @@
#include "igt_aux.h"
#include "igt_list.h"
#include "igt_sizes.h"
+#include "intel_hwconfig_types.h"
#define XE_DEFAULT_ALIGNMENT SZ_4K
#define XE_DEFAULT_ALIGNMENT_64K SZ_64K
@@ -118,6 +119,7 @@ struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
bool xe_has_media_gt(int fd);
bool xe_is_media_gt(int fd, int gt);
uint16_t xe_gt_get_tile_id(int fd, int gt);
+uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len);
struct xe_device *xe_device_get(int fd);
void xe_device_put(int fd);
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size()
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
2024-11-28 13:05 ` [PATCH 1/3] lib/xe_query: add hwconfig to xe_device Jan Maslak
2024-11-28 13:05 ` [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper Jan Maslak
@ 2024-11-28 13:05 ` Jan Maslak
2024-11-28 14:22 ` ✓ Xe.CI.BAT: success for tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Jan Maslak @ 2024-11-28 13:05 UTC (permalink / raw)
To: igt-dev; +Cc: dominik.grzegorzek, jonathan.cavitt, matthew.d.roper, Jan Maslak
Update query_attention_bitmask_size() function to fetch the EU thread
count from hwconfig, instead of being hardcoded.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/xe_eudebug_online.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index a4850c916..750350556 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -1151,7 +1151,9 @@ static bool intel_gen_has_lockstep_eus(int fd)
static int query_attention_bitmask_size(int fd, int gt)
{
- const unsigned int threads = 8;
+ uint32_t thread_count_len;
+ uint32_t *thread_count_ptr;
+ uint32_t thread_count;
struct drm_xe_query_topology_mask *c_dss = NULL, *g_dss = NULL, *eu_per_dss = NULL;
struct drm_xe_query_topology_mask *topology;
struct drm_xe_device_query query = {
@@ -1163,6 +1165,12 @@ static int query_attention_bitmask_size(int fd, int gt)
int pos = 0, eus;
uint8_t *any_dss;
+ thread_count_ptr = xe_hwconfig_lookup_value(fd, INTEL_HWCONFIG_NUM_THREADS_PER_EU,
+ &thread_count_len);
+ igt_assert(thread_count_ptr);
+ igt_assert(thread_count_len == 1);
+ thread_count = *thread_count_ptr;
+
igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
igt_assert_neq(query.size, 0);
@@ -1212,7 +1220,7 @@ static int query_attention_bitmask_size(int fd, int gt)
free(any_dss);
free(topology);
- return eus * threads / 8;
+ return eus * DIV_ROUND_UP(thread_count, 8);
}
static struct drm_xe_eudebug_event_exec_queue *
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper
2024-11-28 13:05 ` [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper Jan Maslak
@ 2024-11-28 13:10 ` Grzegorzek, Dominik
0 siblings, 0 replies; 11+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-28 13:10 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Maslak, Jan
Cc: Roper, Matthew D, Cavitt, Jonathan
On Thu, 2024-11-28 at 13:05 +0000, Jan Maslak wrote:
> Add a new helper function, xe_hw_config_lookup_value(), that
> returns a pointer to the value of a given hwconfig attribute.
>
> Signed-off-by: Jan Maslak <jan.maslak@intel.com>
LGTM,
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
> lib/xe/xe_query.c | 39 +++++++++++++++++++++++++++++++++++++++
> lib/xe/xe_query.h | 2 ++
> 2 files changed, 41 insertions(+)
>
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 49bed033b..f3731d9d3 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -839,6 +839,45 @@ uint16_t xe_gt_get_tile_id(int fd, int gt)
> return xe_dev->gt_list->gt_list[gt].tile_id;
> }
>
> +/**
> + * xe_hwconfig_lookup_value:
> + * @fd: xe device fd
> + * @attribute: hwconfig attribute id
> + * @len: pointer to store length of the value (in uint32_t sized elements)
> + *
> + * Returns a pointer to the value of the hwconfig attribute @attribute and
> + * writes the number of uint32_t elements indicating the length of the value to @len.
> + */
> +uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len)
> +{
> + struct xe_device *xe_dev;
> + uint32_t *hwconfig;
> + uint32_t pos, hwconfig_len;
> +
> + xe_dev = find_in_cache(fd);
> + igt_assert(xe_dev);
> +
> + hwconfig = xe_dev->hwconfig;
> + igt_assert(hwconfig);
> +
> + /* Extract the value from the hwconfig */
> + pos = 0;
> + hwconfig_len = xe_dev->hwconfig_size / sizeof(uint32_t);
> + while (pos + 2 < hwconfig_len) {
> + uint32_t attribute_id = hwconfig[pos];
> + uint32_t attribute_len = hwconfig[pos + 1];
> + uint32_t *attribute_data = &hwconfig[pos + 2];
> +
> + if (attribute_id == attribute) {
> + *len = attribute_len;
> + return attribute_data;
> + }
> + pos += 2 + attribute_len;
> + }
> +
> + return NULL;
> +}
> +
> igt_constructor
> {
> xe_device_cache_init();
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index f8836578e..30ea5ad41 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -15,6 +15,7 @@
> #include "igt_aux.h"
> #include "igt_list.h"
> #include "igt_sizes.h"
> +#include "intel_hwconfig_types.h"
>
> #define XE_DEFAULT_ALIGNMENT SZ_4K
> #define XE_DEFAULT_ALIGNMENT_64K SZ_64K
> @@ -118,6 +119,7 @@ struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
> bool xe_has_media_gt(int fd);
> bool xe_is_media_gt(int fd, int gt);
> uint16_t xe_gt_get_tile_id(int fd, int gt);
> +uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32_t *len);
>
> struct xe_device *xe_device_get(int fd);
> void xe_device_put(int fd);
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3)
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
` (2 preceding siblings ...)
2024-11-28 13:05 ` [PATCH 3/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
@ 2024-11-28 14:22 ` Patchwork
2024-11-28 14:35 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-28 17:39 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-28 14:22 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1458 bytes --]
== Series Details ==
Series: tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3)
URL : https://patchwork.freedesktop.org/series/141366/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8129_BAT -> XEIGTPW_12215_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12215_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#3429]) -> [PASS][2] +31 other tests pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429
Build changes
-------------
* IGT: IGT_8129 -> IGTPW_12215
IGTPW_12215: 12215
IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2289-f3f406165a3d5f0fcb60be2060b7920ac385dc22: f3f406165a3d5f0fcb60be2060b7920ac385dc22
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/index.html
[-- Attachment #2: Type: text/html, Size: 2020 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.BAT: failure for tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3)
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
` (3 preceding siblings ...)
2024-11-28 14:22 ` ✓ Xe.CI.BAT: success for tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3) Patchwork
@ 2024-11-28 14:35 ` Patchwork
2024-11-28 17:39 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-28 14:35 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
== Series Details ==
Series: tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3)
URL : https://patchwork.freedesktop.org/series/141366/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8129 -> IGTPW_12215
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12215 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12215, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12215:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@guc_multi_lrc:
- bat-arls-5: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-arls-5/igt@i915_selftest@live@guc_multi_lrc.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- fi-cfl-8109u: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arls-5: [ABORT][4] ([i915#12061]) -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-arls-5/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-arls-5/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_12215 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-apl-1: [PASS][6] -> [DMESG-WARN][7] ([i915#1982])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][8] -> [ABORT][9] ([i915#12061]) +1 other test abort
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-mtlp-8/igt@i915_selftest@live.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-mtlp-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][10] ([i915#12904]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-apl-1/igt@dmabuf@all-tests.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_module_load@load:
- bat-twl-1: [DMESG-WARN][12] ([i915#1982]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-twl-1/igt@i915_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-twl-1/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- fi-skl-6600u: [INCOMPLETE][14] ([i915#13050]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/fi-skl-6600u/igt@i915_selftest@live.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/fi-skl-6600u/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][16] ([i915#12061]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-arls-5/igt@i915_selftest@live@workarounds.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@read-crc:
- bat-dg2-11: [SKIP][18] ([i915#9197]) -> [PASS][19] +1 other test pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8129/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8129 -> IGTPW_12215
CI-20190529: 20190529
CI_DRM_15757: f3f406165a3d5f0fcb60be2060b7920ac385dc22 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12215: 12215
IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12215/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3)
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
` (4 preceding siblings ...)
2024-11-28 14:35 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-28 17:39 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-28 17:39 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 72442 bytes --]
== Series Details ==
Series: tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3)
URL : https://patchwork.freedesktop.org/series/141366/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8129_full -> XEIGTPW_12215_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12215_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12215_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12215_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_addfb_basic@size-max:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-4/igt@kms_addfb_basic@size-max.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-8/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-lnl: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html
* igt@kms_flip_event_leak@basic:
- shard-bmg: [PASS][8] -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip_event_leak@basic.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_flip_event_leak@basic.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-bmg: [PASS][10] -> [ABORT][11] +1 other test abort
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@xe_ccs@suspend-resume:
- shard-bmg: NOTRUN -> [INCOMPLETE][12] +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@xe_ccs@suspend-resume.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug@drm_xe_engine_class_compute0:
- shard-bmg: NOTRUN -> [DMESG-WARN][13]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug@drm_xe_engine_class_compute0.html
#### Warnings ####
* igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug:
- shard-bmg: [SKIP][14] ([Intel XE#1130]) -> [DMESG-WARN][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
Known issues
------------
Here are the changes found in XEIGTPW_12215_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2314] / [Intel XE#2894])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3432])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][23] ([Intel XE#3468]) +17 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2652] / [Intel XE#787]) +15 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2325])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#1178])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2341])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2320]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2291])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2291])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2286])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727]) +1 other test incomplete
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1340])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2244]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2316]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#3468]) +54 other tests dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test incomplete
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
- shard-bmg: NOTRUN -> [DMESG-FAIL][45] ([Intel XE#3468]) +2 other tests dmesg-fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
- shard-bmg: NOTRUN -> [DMESG-FAIL][46] ([Intel XE#1727] / [Intel XE#3468])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [FAIL][47] ([Intel XE#2333]) +5 other tests fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2311]) +10 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2312]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2313]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2393])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#2566] / [Intel XE#3468]) +1 other test dmesg-warn
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- shard-bmg: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2763]) +25 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#718])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-lnl: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#2932])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_pm_rpm@cursor-dpms.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-1/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1489]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3414])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2330])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#1435])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2426])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][68] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3.html
* igt@kms_vblank@wait-forked-busy@pipe-a-dp-2:
- shard-bmg: [PASS][69] -> [DMESG-FAIL][70] ([Intel XE#3468]) +13 other tests dmesg-fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_vblank@wait-forked-busy@pipe-a-dp-2.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_vblank@wait-forked-busy@pipe-a-dp-2.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#2159]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1499])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2504])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2905]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2322]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_compute_mode@once-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#1727])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#3343])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#3467])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2229]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2833])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#1192])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [PASS][88] -> [DMESG-FAIL][89] ([Intel XE#1727] / [Intel XE#3468])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@xe_pm@s3-mocs.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_pm@s4-vm-bind-userptr.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#944]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Possible fixes ####
* igt@core_getversion@basic:
- shard-bmg: [FAIL][93] -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@core_getversion@basic.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@core_getversion@basic.html
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [SKIP][95] ([Intel XE#1885]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@core_hotunplug@unplug-rescan.html
* igt@kms_addfb_basic@unused-handle:
- shard-bmg: [SKIP][97] ([Intel XE#2423]) -> [PASS][98] +78 other tests pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_addfb_basic@unused-handle.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_addfb_basic@unused-handle.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-lnl: [FAIL][99] ([Intel XE#1701]) -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [FAIL][101] ([Intel XE#1426]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][103] ([Intel XE#2136]) -> [PASS][104] +13 other tests pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][105] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_cursor_edge_walk@64x64-right-edge:
- shard-bmg: [DMESG-FAIL][107] ([Intel XE#3468]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_cursor_edge_walk@64x64-right-edge.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_cursor_edge_walk@64x64-right-edge.html
* igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1:
- shard-lnl: [FAIL][109] ([Intel XE#2577]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-3/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-5/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-bmg: [SKIP][111] ([Intel XE#2316]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][113] ([Intel XE#886]) -> [PASS][114] +3 other tests pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [FAIL][115] ([Intel XE#2882]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][117] ([Intel XE#2597]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-bmg: [INCOMPLETE][119] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][121] ([Intel XE#3012]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_rpm@cursor:
- shard-bmg: [SKIP][123] ([Intel XE#2446]) -> [PASS][124] +2 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_rpm@cursor.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [INCOMPLETE][125] ([Intel XE#2864]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_rpm@universal-planes-dpms.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-77:
- shard-bmg: [INCOMPLETE][127] -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][129] ([Intel XE#899]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01:
- shard-bmg: [DMESG-WARN][131] ([Intel XE#3468]) -> [PASS][132] +16 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][133] ([Intel XE#1473]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][135] ([Intel XE#1473] / [Intel XE#3468]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][137] ([Intel XE#1130]) -> [PASS][138] +185 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [SKIP][139] ([Intel XE#1192]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-7/igt@xe_live_ktest@xe_bo.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@unload:
- shard-bmg: [DMESG-WARN][141] -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-7/igt@xe_module_load@unload.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@xe_module_load@unload.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [FAIL][143] ([Intel XE#2514]) -> [PASS][144] +1 other test pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][145] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@xe_pm@s3-multiple-execs.html
* igt@xe_tlb@basic-tlb:
- shard-lnl: [CRASH][147] ([Intel XE#3212]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-lnl-8/igt@xe_tlb@basic-tlb.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-lnl-1/igt@xe_tlb@basic-tlb.html
* igt@xe_vm@large-userptr-split-misaligned-binds-2097152:
- shard-bmg: [DMESG-WARN][149] ([Intel XE#1727]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html
#### Warnings ####
* igt@fbdev@read:
- shard-bmg: [SKIP][151] ([Intel XE#2134]) -> [DMESG-WARN][152] ([Intel XE#3468])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@fbdev@read.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@fbdev@read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][153] ([Intel XE#2423]) -> [SKIP][154] ([Intel XE#2233])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-bmg: [DMESG-FAIL][155] ([Intel XE#3468]) -> [DMESG-WARN][156] ([Intel XE#3468])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: [SKIP][157] ([Intel XE#2136]) -> [DMESG-WARN][158] ([Intel XE#3468]) +2 other tests dmesg-warn
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: [SKIP][159] ([Intel XE#2136]) -> [SKIP][160] ([Intel XE#2327]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][161] ([Intel XE#2136]) -> [SKIP][162] ([Intel XE#610])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][163] ([Intel XE#2136]) -> [SKIP][164] ([Intel XE#1124]) +9 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: [SKIP][165] ([Intel XE#2423]) -> [SKIP][166] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][167] ([Intel XE#2423]) -> [SKIP][168] ([Intel XE#367]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
- shard-bmg: [SKIP][169] ([Intel XE#2136]) -> [SKIP][170] ([Intel XE#2887]) +15 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: [SKIP][171] ([Intel XE#2136]) -> [DMESG-FAIL][172] ([Intel XE#3468])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][173] ([Intel XE#2136]) -> [SKIP][174] ([Intel XE#3432]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][175] ([Intel XE#2136]) -> [SKIP][176] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][177] ([Intel XE#2423]) -> [SKIP][178] ([Intel XE#2325]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][179] ([Intel XE#2423]) -> [SKIP][180] ([Intel XE#2252]) +7 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][181] ([Intel XE#2423]) -> [FAIL][182] ([Intel XE#1178])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: [SKIP][183] ([Intel XE#2423]) -> [SKIP][184] ([Intel XE#2390])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][185] ([Intel XE#2423]) -> [SKIP][186] ([Intel XE#2341])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_content_protection@mei-interface.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: [SKIP][187] ([Intel XE#2423]) -> [SKIP][188] ([Intel XE#2320]) +5 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: [SKIP][189] ([Intel XE#2423]) -> [SKIP][190] ([Intel XE#2321])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-bmg: [SKIP][191] ([Intel XE#2423]) -> [SKIP][192] ([Intel XE#2286])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-bmg: [DMESG-WARN][193] ([Intel XE#3468]) -> [DMESG-WARN][194] ([Intel XE#1727] / [Intel XE#3468])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [SKIP][195] ([Intel XE#2423]) -> [SKIP][196] ([Intel XE#2291])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][197] ([Intel XE#2423]) -> [DMESG-WARN][198] ([Intel XE#877])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: [SKIP][199] ([Intel XE#2136]) -> [SKIP][200] ([Intel XE#2244]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [SKIP][201] ([Intel XE#2136]) -> [FAIL][202] ([Intel XE#1695]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][203] ([Intel XE#2136]) -> [SKIP][204] ([Intel XE#776])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][205] ([Intel XE#2316]) -> [DMESG-WARN][206] ([Intel XE#3468])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][207] ([Intel XE#2882]) -> [DMESG-FAIL][208] ([Intel XE#3468])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][209] ([Intel XE#3486]) -> [DMESG-WARN][210] ([Intel XE#3468])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][211] ([Intel XE#3321] / [Intel XE#3486]) -> [DMESG-FAIL][212] ([Intel XE#3468])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][213] ([Intel XE#2423]) -> [SKIP][214] ([Intel XE#2316])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][215] ([Intel XE#2423]) -> [FAIL][216] ([Intel XE#2882])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: [SKIP][217] ([Intel XE#2136]) -> [SKIP][218] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-bmg: [SKIP][219] ([Intel XE#2136]) -> [INCOMPLETE][220] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][221] ([Intel XE#2136]) -> [SKIP][222] ([Intel XE#2311]) +25 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][223] ([Intel XE#2312]) -> [SKIP][224] ([Intel XE#2311]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [SKIP][225] ([Intel XE#2136]) -> [FAIL][226] ([Intel XE#2333]) +14 other tests fail
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [FAIL][227] ([Intel XE#2333]) -> [DMESG-FAIL][228] ([Intel XE#3468]) +4 other tests dmesg-fail
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [FAIL][229] ([Intel XE#2333]) -> [SKIP][230] ([Intel XE#2312]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [DMESG-FAIL][231] ([Intel XE#3468]) -> [FAIL][232] ([Intel XE#2333])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][233] ([Intel XE#2311]) -> [SKIP][234] ([Intel XE#2312]) +12 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][235] ([Intel XE#2136]) -> [SKIP][236] ([Intel XE#2312]) +8 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][237] ([Intel XE#2136]) -> [SKIP][238] ([Intel XE#2313]) +24 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][239] ([Intel XE#2313]) -> [SKIP][240] ([Intel XE#2312]) +9 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: [SKIP][241] ([Intel XE#2136]) -> [SKIP][242] ([Intel XE#2352])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][243] ([Intel XE#2312]) -> [SKIP][244] ([Intel XE#2313]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb2-handle-protection:
- shard-bmg: [SKIP][245] ([Intel XE#2423]) -> [DMESG-WARN][246] ([Intel XE#1727])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_getfb@getfb2-handle-protection.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_getfb@getfb2-handle-protection.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][247] ([Intel XE#2423]) -> [SKIP][248] ([Intel XE#3374] / [Intel XE#3544])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][249] ([Intel XE#2423]) -> [SKIP][250] ([Intel XE#2486])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_panel_fitting@legacy.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][251] ([Intel XE#2423]) -> [SKIP][252] ([Intel XE#2763]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#870])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#2391])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: [SKIP][257] ([Intel XE#2136]) -> [SKIP][258] ([Intel XE#3309])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [SKIP][259] ([Intel XE#2136]) -> [FAIL][260] ([Intel XE#1430])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: [SKIP][261] ([Intel XE#2446]) -> [SKIP][262] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][263] ([Intel XE#2136]) -> [SKIP][264] ([Intel XE#1489]) +7 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][265] ([Intel XE#2136]) -> [SKIP][266] ([Intel XE#2387])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: [SKIP][267] ([Intel XE#2136]) -> [SKIP][268] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-render.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: [SKIP][269] ([Intel XE#2423]) -> [SKIP][270] ([Intel XE#2330])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: [SKIP][271] ([Intel XE#2423]) -> [SKIP][272] ([Intel XE#2413])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-none.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][273] ([Intel XE#2423]) -> [SKIP][274] ([Intel XE#1435])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][275] ([Intel XE#2423]) -> [SKIP][276] ([Intel XE#2450])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [SKIP][277] ([Intel XE#2423]) -> [DMESG-WARN][278] ([Intel XE#1727] / [Intel XE#3468])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-bmg: [SKIP][279] ([Intel XE#2423]) -> [SKIP][280] ([Intel XE#1499]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_vrr@flip-basic.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: [SKIP][281] ([Intel XE#2423]) -> [SKIP][282] ([Intel XE#756]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-3/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: [SKIP][283] ([Intel XE#1130]) -> [SKIP][284] ([Intel XE#2905]) +11 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_eudebug@basic-exec-queues-enable.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-4/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-bind:
- shard-bmg: [SKIP][285] ([Intel XE#1130]) -> [DMESG-WARN][286] ([Intel XE#3468]) +2 other tests dmesg-warn
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-bind.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: [SKIP][287] ([Intel XE#1130]) -> [SKIP][288] ([Intel XE#2322]) +10 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][289] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][290] ([Intel XE#3467])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-FAIL][291] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][292] ([Intel XE#3499]) +1 other test fail
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [SKIP][293] ([Intel XE#1130]) -> [DMESG-WARN][294] ([Intel XE#3467])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_media_fill@media-fill:
- shard-bmg: [SKIP][295] ([Intel XE#1130]) -> [SKIP][296] ([Intel XE#2459] / [Intel XE#2596])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_media_fill@media-fill.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-5/igt@xe_media_fill@media-fill.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: [SKIP][297] ([Intel XE#1130]) -> [SKIP][298] ([Intel XE#944]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [SKIP][299] ([Intel XE#1130]) -> [DMESG-WARN][300] ([Intel XE#2919])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8129/shard-bmg-1/igt@xe_wedged@basic-wedged.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/shard-bmg-2/igt@xe_wedged@basic-wedged.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8129 -> IGTPW_12215
IGTPW_12215: 12215
IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2289-f3f406165a3d5f0fcb60be2060b7920ac385dc22: f3f406165a3d5f0fcb60be2060b7920ac385dc22
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12215/index.html
[-- Attachment #2: Type: text/html, Size: 88538 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-28 17:39 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-28 13:05 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
2024-11-28 13:05 ` [PATCH 1/3] lib/xe_query: add hwconfig to xe_device Jan Maslak
2024-11-28 13:05 ` [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper Jan Maslak
2024-11-28 13:10 ` Grzegorzek, Dominik
2024-11-28 13:05 ` [PATCH 3/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
2024-11-28 14:22 ` ✓ Xe.CI.BAT: success for tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() (rev3) Patchwork
2024-11-28 14:35 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-28 17:39 ` ✗ Xe.CI.Full: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-11-20 22:28 [PATCH 0/3] tests/xe_eudebug_online: update thread count handling in query_attention_bitmask_size() Jan Maslak
2024-11-20 22:28 ` [PATCH 2/3] lib/xe_query: add xe_hwconfig_lookup_value() helper Jan Maslak
2024-11-26 9:13 ` Grzegorzek, Dominik
2024-11-26 9:16 ` Grzegorzek, Dominik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox