* [PATCH i-g-t v4 1/5] lib/igt_kms: Add a detect timeout value
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
@ 2025-01-10 17:42 ` Louis Chauvet
2025-03-19 8:41 ` [i-g-t,v4,1/5] " Joshi, Kunal1
2025-01-10 17:42 ` [PATCH i-g-t v4 2/5] lib/igt_kms: Add helper to wait for a specific status on a connector Louis Chauvet
` (6 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Louis Chauvet @ 2025-01-10 17:42 UTC (permalink / raw)
To: igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub, Louis Chauvet
Some tests need to wait for a specific connector status. In order to make
the timeout customisable for each target, add an option in the
configuration file.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/igt_core.c | 4 ++++
lib/igt_kms.c | 35 +++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 10 ++++++++++
3 files changed, 49 insertions(+)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 407f7b55187ceac4cbc0645c629a7fbb17f89575..796c52b44341c1a40abc87540ca0f65d09ca554f 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -265,6 +265,10 @@
* # It is not mandatory and allows overriding default values.
* [DUT]
* SuspendResumeDelay=10
+ *
+ * # The following option define the timeout for detection feature
+ * # (waiting for a connector status)
+ * DisplayDetectTimeout=10.0
* ]|
*
* Some specific configuration options may be used by specific parts of IGT,
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 76f32e1e0ffd60d9542b43881e73c9810e45327b..b3373435b252c9f8c5d5854f738f7f4bbc468964 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -59,6 +59,7 @@
#include "intel_chipset.h"
#include "igt_debugfs.h"
#include "igt_device.h"
+#include "igt_rc.h"
#include "igt_sysfs.h"
#include "sw_sync.h"
#ifdef HAVE_CHAMELIUM
@@ -7210,3 +7211,37 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c
return 0;
}
+
+/**
+ * igt_default_display_detect_timeout:
+ *
+ * Get the default timeout value for detection feature
+ *
+ * Some tests requires to wait for a specific connector status. This value will determine the
+ * timeout value for this waiting.
+ */
+double igt_default_display_detect_timeout(void)
+{
+ static double timeout = 0.0;
+ static bool first_call = true;
+ GError *error = NULL;
+
+ if (first_call) {
+ if (igt_key_file) {
+ timeout = g_key_file_get_double(igt_key_file, "DUT", "DisplayDetectTimeout",
+ &error);
+ if (error) {
+ igt_debug("Failed to read DisplayDetectTimeout, defaulting to %f\n",
+ DEFAULT_DETECT_TIMEOUT);
+ g_clear_error(&error);
+ timeout = DEFAULT_DETECT_TIMEOUT;
+ }
+ } else {
+ timeout = DEFAULT_DETECT_TIMEOUT;
+ }
+
+ first_call = false;
+ }
+
+ return timeout;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 301f370dfeb34e90e6f88dfe0006667d7b6a7213..91a26f2070efd26f9d107841ae3083b281d5e4c6 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -40,6 +40,14 @@
#include "igt_fb.h"
#include "ioctl_wrappers.h"
+/**
+ * define DEFAULT_DETECT_TIMEOUT - Default timeout in second used for some screen detection
+ * functions
+ *
+ * It can be overiden by option DetectTimeout in the .igtrc file.
+ */
+#define DEFAULT_DETECT_TIMEOUT 10.0
+
/* Low-level helpers with kmstest_ prefix */
/**
@@ -1269,4 +1277,6 @@ void igt_reset_link_params(int drm_fd, igt_output_t *output);
int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
+double igt_default_display_detect_timeout(void);
+
#endif /* __IGT_KMS_H__ */
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [i-g-t,v4,1/5] lib/igt_kms: Add a detect timeout value
2025-01-10 17:42 ` [PATCH i-g-t v4 1/5] lib/igt_kms: Add a detect timeout value Louis Chauvet
@ 2025-03-19 8:41 ` Joshi, Kunal1
0 siblings, 0 replies; 14+ messages in thread
From: Joshi, Kunal1 @ 2025-03-19 8:41 UTC (permalink / raw)
To: Louis Chauvet, igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
On 10-01-2025 23:12, Louis Chauvet wrote:
> Some tests need to wait for a specific connector status. In order to make
> the timeout customisable for each target, add an option in the
> configuration file.
>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 2/5] lib/igt_kms: Add helper to wait for a specific status on a connector
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
2025-01-10 17:42 ` [PATCH i-g-t v4 1/5] lib/igt_kms: Add a detect timeout value Louis Chauvet
@ 2025-01-10 17:42 ` Louis Chauvet
2025-03-19 8:46 ` [i-g-t,v4,2/5] " Joshi, Kunal1
2025-01-10 17:42 ` [PATCH i-g-t v4 3/5] lib/igt_kms: Add function to list connected connectors Louis Chauvet
` (5 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Louis Chauvet @ 2025-01-10 17:42 UTC (permalink / raw)
To: igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub, Louis Chauvet
During testing with chamelium, it is frequent to wait for a specific
connector status. This new helper is polling the DRM API to wait for this
status. This allows detecting it without notifier systems which can fail
if hot plug detection is not working properly on the device under test.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/igt_kms.c | 39 +++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 +++
2 files changed, 42 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index b3373435b252c9f8c5d5854f738f7f4bbc468964..d0b6c70f135754d0a413f73a0f8e5b24a208a2b3 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -7245,3 +7245,42 @@ double igt_default_display_detect_timeout(void)
return timeout;
}
+
+/**
+ * igt_wait_for_connector_status:
+ * @drm_fd: drm file descriptor
+ * @connector_id: connector to monitor
+ * @timeout: maximum duration to wait, in second. Use -1.0 to set the timeout
+ * to igt_default_detect_timeout().
+ * @drm_mode: mode to wait for, see enum drmModeConnection
+ *
+ * Wait for at most @timeout that the connector @connector_id status
+ * become @drm_mode
+ * Returns: true when the status is reached, false if there is a timeout
+ */
+bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout,
+ int drm_mode)
+{
+ drmModeConnector *connector;
+ struct timespec start, end;
+
+ if (timeout == -1.0)
+ timeout = igt_default_display_detect_timeout();
+
+ clock_gettime(CLOCK_MONOTONIC, &start);
+ end = start;
+
+ while (igt_time_elapsed(&start, &end) <= timeout) {
+ connector = drmModeGetConnector(drm_fd, connector_id);
+ if (connector && connector->connection == drm_mode) {
+ free(connector);
+ return true;
+ }
+ free(connector);
+ clock_gettime(CLOCK_MONOTONIC, &end);
+ }
+
+ igt_debug("Timeout waiting for connection status %d on connector %d\n", drm_mode,
+ connector_id);
+ return false;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 91a26f2070efd26f9d107841ae3083b281d5e4c6..6d5582290f61d1a4151dd8e8448fc26c660a1536 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1279,4 +1279,7 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c
double igt_default_display_detect_timeout(void);
+bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout,
+ int drm_mode);
+
#endif /* __IGT_KMS_H__ */
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [i-g-t,v4,2/5] lib/igt_kms: Add helper to wait for a specific status on a connector
2025-01-10 17:42 ` [PATCH i-g-t v4 2/5] lib/igt_kms: Add helper to wait for a specific status on a connector Louis Chauvet
@ 2025-03-19 8:46 ` Joshi, Kunal1
0 siblings, 0 replies; 14+ messages in thread
From: Joshi, Kunal1 @ 2025-03-19 8:46 UTC (permalink / raw)
To: Louis Chauvet, igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Hello Louis,
Can we have all connector related at one place (kms_connector_helper or
igt_connector),
igt_kms is already crowded and also will be easy to find all connector
helpers at one place.
Thanks and Regards
Kunal Joshi
On 10-01-2025 23:12, Louis Chauvet wrote:
> During testing with chamelium, it is frequent to wait for a specific
> connector status. This new helper is polling the DRM API to wait for this
> status. This allows detecting it without notifier systems which can fail
> if hot plug detection is not working properly on the device under test.
>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> lib/igt_kms.c | 39 +++++++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 3 +++
> 2 files changed, 42 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index b3373435b252c9f8c5d5854f738f7f4bbc468964..d0b6c70f135754d0a413f73a0f8e5b24a208a2b3 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -7245,3 +7245,42 @@ double igt_default_display_detect_timeout(void)
>
> return timeout;
> }
> +
> +/**
> + * igt_wait_for_connector_status:
> + * @drm_fd: drm file descriptor
> + * @connector_id: connector to monitor
> + * @timeout: maximum duration to wait, in second. Use -1.0 to set the timeout
> + * to igt_default_detect_timeout().
> + * @drm_mode: mode to wait for, see enum drmModeConnection
> + *
> + * Wait for at most @timeout that the connector @connector_id status
> + * become @drm_mode
> + * Returns: true when the status is reached, false if there is a timeout
> + */
> +bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout,
> + int drm_mode)
> +{
> + drmModeConnector *connector;
> + struct timespec start, end;
> +
> + if (timeout == -1.0)
> + timeout = igt_default_display_detect_timeout();
> +
> + clock_gettime(CLOCK_MONOTONIC, &start);
> + end = start;
> +
> + while (igt_time_elapsed(&start, &end) <= timeout) {
> + connector = drmModeGetConnector(drm_fd, connector_id);
> + if (connector && connector->connection == drm_mode) {
> + free(connector);
> + return true;
> + }
> + free(connector);
> + clock_gettime(CLOCK_MONOTONIC, &end);
> + }
> +
> + igt_debug("Timeout waiting for connection status %d on connector %d\n", drm_mode,
> + connector_id);
> + return false;
> +}
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 91a26f2070efd26f9d107841ae3083b281d5e4c6..6d5582290f61d1a4151dd8e8448fc26c660a1536 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1279,4 +1279,7 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c
>
> double igt_default_display_detect_timeout(void);
>
> +bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout,
> + int drm_mode);
> +
> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 3/5] lib/igt_kms: Add function to list connected connectors
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
2025-01-10 17:42 ` [PATCH i-g-t v4 1/5] lib/igt_kms: Add a detect timeout value Louis Chauvet
2025-01-10 17:42 ` [PATCH i-g-t v4 2/5] lib/igt_kms: Add helper to wait for a specific status on a connector Louis Chauvet
@ 2025-01-10 17:42 ` Louis Chauvet
2025-01-10 17:42 ` [PATCH i-g-t v4 4/5] lib/igt_kms: Add helper to obtain a connector by its name or MST path Louis Chauvet
` (4 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Louis Chauvet @ 2025-01-10 17:42 UTC (permalink / raw)
To: igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub, Louis Chauvet
Introduce the igt_get_connected_connectors() function, which returns a
list of connector IDs that are currently connected according to DRM.
This function includes a timeout mechanism because connectors can be
unplugged at any time. Also, especially with MST, the connector can be
listed by drmModeGetResources() but not yet accessible with
drmModeGetConnector().
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/igt_kms.c | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 66 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index d0b6c70f135754d0a413f73a0f8e5b24a208a2b3..93d5a0d64df9954f7da8254ee35a0fd887d31d78 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -7246,6 +7246,29 @@ double igt_default_display_detect_timeout(void)
return timeout;
}
+static drmModeConnectorPtr igt_wait_for_connector(int drm_fd, unsigned int connector_id,
+ double timeout)
+{
+ drmModeConnectorPtr connector = NULL;
+ struct timespec start, end;
+
+ connector = drmModeGetConnector(drm_fd, connector_id);
+ /*
+ * This time is required as sometimes some id in the connector list are not totally
+ * ready or can disappear
+ */
+ clock_gettime(CLOCK_MONOTONIC, &start);
+ end = start;
+
+ while (!connector &&
+ igt_time_elapsed(&start, &end) <= timeout) {
+ connector = drmModeGetConnector(drm_fd, connector_id);
+ clock_gettime(CLOCK_MONOTONIC, &end);
+ }
+
+ return connector;
+}
+
/**
* igt_wait_for_connector_status:
* @drm_fd: drm file descriptor
@@ -7284,3 +7307,45 @@ bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double
connector_id);
return false;
}
+
+/**
+ * igt_get_connected_connectors:
+ *
+ * @drm_fd: DRM file description
+ * @connector_ids: Out pointer for the list of connector ids connected. It must be freed by the
+ * caller.
+ *
+ * This will probe all the connectors and return the list of all
+ * connected connectors.
+ * Returns: The number of connectors in @connector_ids
+ */
+int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids)
+{
+ int connected_count = 0;
+ double timeout = igt_default_display_detect_timeout();
+ drmModeResPtr resources;
+
+ *connector_ids = NULL;
+
+ resources = drmModeGetResources(drm_fd);
+ for (int j = 0; j < resources->count_connectors; j++) {
+ drmModeConnectorPtr connector = igt_wait_for_connector(drm_fd,
+ resources->connectors[j],
+ timeout);
+
+ if (connector) {
+ if (connector->connection == DRM_MODE_CONNECTED) {
+ *connector_ids = reallocarray(*connector_ids,
+ connected_count
+ + 1, sizeof(**connector_ids));
+ igt_assert(*connector_ids);
+ (*connector_ids)[connected_count] = resources->connectors[j];
+ connected_count++;
+ }
+ drmModeFreeConnector(connector);
+ }
+ }
+ drmModeFreeResources(resources);
+
+ return connected_count;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 6d5582290f61d1a4151dd8e8448fc26c660a1536..520d1b2f2056a21bcf25be36da32a63a17bfe364 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1281,5 +1281,6 @@ double igt_default_display_detect_timeout(void);
bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout,
int drm_mode);
+int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids);
#endif /* __IGT_KMS_H__ */
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH i-g-t v4 4/5] lib/igt_kms: Add helper to obtain a connector by its name or MST path
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
` (2 preceding siblings ...)
2025-01-10 17:42 ` [PATCH i-g-t v4 3/5] lib/igt_kms: Add function to list connected connectors Louis Chauvet
@ 2025-01-10 17:42 ` Louis Chauvet
2025-01-10 17:42 ` [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output Louis Chauvet
` (3 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Louis Chauvet @ 2025-01-10 17:42 UTC (permalink / raw)
To: igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub, Louis Chauvet
Introduce the functions igt_get_connector_from_name() and
igt_get_connector_id_from_mst_path(). These functions serve to retrieve
the connector object using a connector name and a connector ID from its
MST path, respectively.
Given that the connector id may not be consistent, especially with MST
connectors, these functions are essential to recognize each connector even
after system reboots and plug/unplug events.
The function igt_get_connector_id_from_name() is a convenient wrapper for
igt_get_connector_from_name() to streamline its usage when the caller only
requires the connector id.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/igt_kms.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 ++
2 files changed, 112 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 93d5a0d64df9954f7da8254ee35a0fd887d31d78..f6d9341b75b4fc8dfa614478cd3bf35510f9ecea 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -93,6 +93,10 @@
#define MAX_CONNECTORS 32
#define MAX_EDID 2
#define DISPLAY_TILE_BLOCK 0x12
+/**
+ * define IGT_KMS_CONNECTOR_NAME_SIZE - Size used when a connector name is needed
+ */
+#define IGT_KMS_CONNECTOR_NAME_SIZE 50
typedef bool (*igt_connector_attr_set)(int dir, const char *attr, const char *value);
@@ -7349,3 +7353,108 @@ int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids)
return connected_count;
}
+
+
+/**
+ * igt_get_connector_from_name:
+ * @drm_fd: DRM file descriptor
+ * @port_name: Port name to search
+ *
+ * Returns: The connector if found, NULL otherwise. The pointer must
+ * be freed with drmModeFreeConnector()
+ */
+drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name)
+{
+ drmModeResPtr res = drmModeGetResources(drm_fd);
+ double timeout = igt_default_display_detect_timeout();
+ int i, len;
+
+ if (!res)
+ return NULL;
+
+ for (i = 0; i < res->count_connectors; i++) {
+ char name[IGT_KMS_CONNECTOR_NAME_SIZE];
+
+ drmModeConnectorPtr connector = igt_wait_for_connector(drm_fd, res->connectors[i],
+ timeout);
+
+ if (connector) {
+ /* We have to generate the connector name on our own */
+ len = snprintf(name, ARRAY_SIZE(name), "%s-%u",
+ kmstest_connector_type_str(connector->connector_type),
+ connector->connector_type_id);
+ name[len] = 0;
+
+
+ if (strcmp(port_name, name) == 0) {
+ drmModeFreeResources(res);
+
+ return connector;
+ }
+
+ drmModeFreeConnector(connector);
+ }
+ }
+
+ drmModeFreeResources(res);
+
+ return NULL;
+}
+
+/**
+ * igt_get_connector_id_from_name:
+ * @drm_fd: DRM file descriptor
+ * @port_name: Port name to find in the connector
+ *
+ * Returns: The connector id if the port is found, 0 if the port is not found
+ */
+uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name)
+{
+ drmModeConnectorPtr connector = igt_get_connector_from_name(drm_fd, port_name);
+
+ if (connector) {
+ uint32_t connector_id = connector->connector_id;
+
+ drmModeFreeConnector(connector);
+
+ return connector_id;
+ }
+
+ return 0;
+}
+
+/**
+ * igt_get_connector_id_from_mst_path:
+ * @drm_fd: DRM file descriptor
+ * @mst_path: MST path to find in the connector
+ *
+ * Returns: 0 when no connector is found with the correct mst path
+ */
+uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path)
+{
+ drmModeResPtr res = drmModeGetResources(drm_fd);
+ int i;
+
+ if (!res)
+ return 0;
+
+ for (i = 0; i < res->count_connectors; i++) {
+ uint32_t connector_id = res->connectors[i];
+
+ drmModePropertyBlobPtr path_blob = kmstest_get_path_blob(drm_fd, connector_id);
+
+ if (path_blob) {
+ if (memcmp(path_blob->data, mst_path, path_blob->length) == 0) {
+ drmModeFreePropertyBlob(path_blob);
+ drmModeFreeResources(res);
+ return connector_id;
+ }
+
+ drmModeFreePropertyBlob(path_blob);
+ }
+ }
+
+ drmModeFreeResources(res);
+
+ return 0;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 520d1b2f2056a21bcf25be36da32a63a17bfe364..3be9068384aa118461dd090224d15aa5c979ac06 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1282,5 +1282,8 @@ double igt_default_display_detect_timeout(void);
bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout,
int drm_mode);
int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids);
+drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name);
+uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name);
+uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path);
#endif /* __IGT_KMS_H__ */
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
` (3 preceding siblings ...)
2025-01-10 17:42 ` [PATCH i-g-t v4 4/5] lib/igt_kms: Add helper to obtain a connector by its name or MST path Louis Chauvet
@ 2025-01-10 17:42 ` Louis Chauvet
2025-01-24 4:26 ` Karthik B S
2025-01-10 18:47 ` ✓ i915.CI.BAT: success for lib/igt_kms: Helpers for connector managment (rev4) Patchwork
` (2 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Louis Chauvet @ 2025-01-10 17:42 UTC (permalink / raw)
To: igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub, Louis Chauvet
Introduces a new function igt_get_pipe_for_output in igt_kms. The function
is designed to retrieve a valid pipe for a specific output in a display.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/igt_kms.c | 22 ++++++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 23 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index f6d9341b75b4fc8dfa614478cd3bf35510f9ecea..d6cd6833ef24a914da6e0234dd7eea40867df452 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -7458,3 +7458,25 @@ uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path)
return 0;
}
+
+/**
+ * igt_get_pipe_for_output:
+ * @display: display to fetch the pipes
+ * @output: output to use
+ *
+ * Get a valid pipe for a specific output. The return value is the pipe first valid pipe for a
+ * specific output.
+ */
+enum pipe igt_get_pipe_for_output(igt_display_t *display,
+ igt_output_t *output)
+{
+ enum pipe pipe;
+
+ for_each_pipe(display, pipe) {
+ if (igt_output_is_connected(output) &&
+ (output->config.valid_crtc_idx_mask & (1 << (pipe))))
+ return pipe;
+ }
+
+ return PIPE_NONE;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 3be9068384aa118461dd090224d15aa5c979ac06..60a90500048dd83620c8a6ed08b70d5ddb020bbc 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1285,5 +1285,6 @@ int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids);
drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name);
uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name);
uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path);
+enum pipe igt_get_pipe_for_output(igt_display_t *display, igt_output_t *output);
#endif /* __IGT_KMS_H__ */
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output
2025-01-10 17:42 ` [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output Louis Chauvet
@ 2025-01-24 4:26 ` Karthik B S
2025-01-27 14:44 ` Louis Chauvet
0 siblings, 1 reply; 14+ messages in thread
From: Karthik B S @ 2025-01-24 4:26 UTC (permalink / raw)
To: Louis Chauvet, igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Hi Louis,
On 1/10/2025 11:12 PM, Louis Chauvet wrote:
> Introduces a new function igt_get_pipe_for_output in igt_kms. The function
> is designed to retrieve a valid pipe for a specific output in a display.
>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> lib/igt_kms.c | 22 ++++++++++++++++++++++
> lib/igt_kms.h | 1 +
> 2 files changed, 23 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index f6d9341b75b4fc8dfa614478cd3bf35510f9ecea..d6cd6833ef24a914da6e0234dd7eea40867df452 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -7458,3 +7458,25 @@ uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path)
>
> return 0;
> }
> +
> +/**
> + * igt_get_pipe_for_output:
> + * @display: display to fetch the pipes
> + * @output: output to use
> + *
> + * Get a valid pipe for a specific output. The return value is the pipe first valid pipe for a
> + * specific output.
> + */
> +enum pipe igt_get_pipe_for_output(igt_display_t *display,
> + igt_output_t *output)
> +{
> + enum pipe pipe;
> +
> + for_each_pipe(display, pipe) {
> + if (igt_output_is_connected(output) &&
> + (output->config.valid_crtc_idx_mask & (1 << (pipe))))
Please use 'igt_pipe_connector_valid'.
Also, this function is mostly a duplicate of the existing
'chamelium_get_pipe_for_output'. Could we reuse the existing function
here instead of adding a new one?
Thanks,
Karthik.B.S
> + return pipe;
> + }
> +
> + return PIPE_NONE;
> +}
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 3be9068384aa118461dd090224d15aa5c979ac06..60a90500048dd83620c8a6ed08b70d5ddb020bbc 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1285,5 +1285,6 @@ int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids);
> drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name);
> uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name);
> uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path);
> +enum pipe igt_get_pipe_for_output(igt_display_t *display, igt_output_t *output);
>
> #endif /* __IGT_KMS_H__ */
>
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output
2025-01-24 4:26 ` Karthik B S
@ 2025-01-27 14:44 ` Louis Chauvet
2025-02-03 5:04 ` Karthik B S
0 siblings, 1 reply; 14+ messages in thread
From: Louis Chauvet @ 2025-01-27 14:44 UTC (permalink / raw)
To: Karthik B S, igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Le 24/01/2025 à 05:26, Karthik B S a écrit :
>> +/**
>> + * igt_get_pipe_for_output:
>> + * @display: display to fetch the pipes
>> + * @output: output to use
>> + *
>> + * Get a valid pipe for a specific output. The return value is the pipe first valid pipe for a
>> + * specific output.
>> + */
>> +enum pipe igt_get_pipe_for_output(igt_display_t *display,
>> + igt_output_t *output)
>> +{
>> + enum pipe pipe;
>> +
>> + for_each_pipe(display, pipe) {
>> + if (igt_output_is_connected(output) &&
>> + (output->config.valid_crtc_idx_mask & (1 << (pipe))))
>
> Please use 'igt_pipe_connector_valid'.
Sorry, I probably extended it to debug something and forgot to unexpand.
It will be fixed for the next iteration.
> Also, this function is mostly a duplicate of the existing
> 'chamelium_get_pipe_for_output'. Could we reuse the existing function
> here instead of adding a new one?
I know, but:
1 - chamelium_get_pipe_for_output is only enabled with the chamelium
build option;
2 - chamelium_get_pipe_for_output also enables the pipe during the process.
For 1, I can simply replace all calls to use the new helper.
For 2, I need to understand why they choose to call igt_output_set_pipe
to get a pipe to see if I can simply replace the chamelium helper by
mine or if I need to change my helper to do the same thing.
Thanks,
Louis Chauvet
> Thanks,
> Karthik.B.S
>> + return pipe;
>> + }
>> +
>> + return PIPE_NONE;
>> +}
--
Louis Chauvet, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output
2025-01-27 14:44 ` Louis Chauvet
@ 2025-02-03 5:04 ` Karthik B S
0 siblings, 0 replies; 14+ messages in thread
From: Karthik B S @ 2025-02-03 5:04 UTC (permalink / raw)
To: Louis Chauvet, igt-dev
Cc: Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
On 1/27/2025 8:14 PM, Louis Chauvet wrote:
>
>
> Le 24/01/2025 à 05:26, Karthik B S a écrit :
>
>>> +/**
>>> + * igt_get_pipe_for_output:
>>> + * @display: display to fetch the pipes
>>> + * @output: output to use
>>> + *
>>> + * Get a valid pipe for a specific output. The return value is the
>>> pipe first valid pipe for a
>>> + * specific output.
>>> + */
>>> +enum pipe igt_get_pipe_for_output(igt_display_t *display,
>>> + igt_output_t *output)
>>> +{
>>> + enum pipe pipe;
>>> +
>>> + for_each_pipe(display, pipe) {
>>> + if (igt_output_is_connected(output) &&
>>> + (output->config.valid_crtc_idx_mask & (1 << (pipe))))
>>
>> Please use 'igt_pipe_connector_valid'.
>
> Sorry, I probably extended it to debug something and forgot to
> unexpand. It will be fixed for the next iteration.
>
>> Also, this function is mostly a duplicate of the existing
>> 'chamelium_get_pipe_for_output'. Could we reuse the existing function
>> here instead of adding a new one?
>
> I know, but:
> 1 - chamelium_get_pipe_for_output is only enabled with the chamelium
> build option;
> 2 - chamelium_get_pipe_for_output also enables the pipe during the
> process.
>
> For 1, I can simply replace all calls to use the new helper.
Hi,
Agreed. I don't see any added value keeping them chamelium specific.
>
> For 2, I need to understand why they choose to call
> igt_output_set_pipe to get a pipe to see if I can simply replace the
> chamelium helper by mine or if I need to change my helper to do the
> same thing.
'igt_output_set_pipe' is used for the 'igt_check_bigjoiner_support'
nested within 'intel_pipe_output_combo_valid' as there are a few
restrictions in big joiner usage. Although most of them are applicable
while using multidisplay combinations(which shouldn't apply in this
case), the restriction on last pipe would still be applicable IMHO, if
we've an output with a default mode which would required big joiner.
Keeping this in mind, I would actually propose renaming the original
function and moving it to a common lib to make it generic rather then
having it chamelium specific. With this we will have a generic function
to get_pipe_for_output and also have the intel_pipe_output_combo_valid
check.
Thanks,
Karthik.B.S
>
> Thanks,
> Louis Chauvet
>
>> Thanks,
>> Karthik.B.S
>>> + return pipe;
>>> + }
>>> +
>>> + return PIPE_NONE;
>>> +}
>
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for lib/igt_kms: Helpers for connector managment (rev4)
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
` (4 preceding siblings ...)
2025-01-10 17:42 ` [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output Louis Chauvet
@ 2025-01-10 18:47 ` Patchwork
2025-01-10 19:08 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-01-14 21:18 ` ✗ i915.CI.Full: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-01-10 18:47 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3574 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for connector managment (rev4)
URL : https://patchwork.freedesktop.org/series/137915/
State : success
== Summary ==
CI Bug Log - changes from IGT_8188 -> IGTPW_12428
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html
Participating hosts (38 -> 37)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12428 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_create@basic-files:
- fi-pnv-d510: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/fi-pnv-d510/igt@gem_ctx_create@basic-files.html
* igt@gem_exec_gttfill@basic:
- fi-pnv-d510: NOTRUN -> [ABORT][2] ([i915#13169])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-arls-5/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_module_load@load:
- fi-pnv-d510: [ABORT][7] ([i915#13203]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/fi-pnv-d510/igt@i915_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: [ABORT][11] ([i915#12919]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13169
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8188 -> IGTPW_12428
CI-20190529: 20190529
CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12428: c5b3f9545b9c190b9f3edc82768b7c3c6915d705 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html
[-- Attachment #2: Type: text/html, Size: 4471 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.BAT: failure for lib/igt_kms: Helpers for connector managment (rev4)
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
` (5 preceding siblings ...)
2025-01-10 18:47 ` ✓ i915.CI.BAT: success for lib/igt_kms: Helpers for connector managment (rev4) Patchwork
@ 2025-01-10 19:08 ` Patchwork
2025-01-14 21:18 ` ✗ i915.CI.Full: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-01-10 19:08 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1806 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for connector managment (rev4)
URL : https://patchwork.freedesktop.org/series/137915/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12428_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12428_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12428_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12428_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_compute_mode@twice-preempt-fence-early:
- bat-lnl-1: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8188/bat-lnl-1/igt@xe_exec_compute_mode@twice-preempt-fence-early.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12428/bat-lnl-1/igt@xe_exec_compute_mode@twice-preempt-fence-early.html
Build changes
-------------
* IGT: IGT_8188 -> IGTPW_12428
IGTPW_12428: c5b3f9545b9c190b9f3edc82768b7c3c6915d705 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12428/index.html
[-- Attachment #2: Type: text/html, Size: 2388 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ i915.CI.Full: failure for lib/igt_kms: Helpers for connector managment (rev4)
2025-01-10 17:42 [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Louis Chauvet
` (6 preceding siblings ...)
2025-01-10 19:08 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-01-14 21:18 ` Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-01-14 21:18 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100271 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for connector managment (rev4)
URL : https://patchwork.freedesktop.org/series/137915/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8188_full -> IGTPW_12428_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12428_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12428_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12428_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@reset-stress:
- shard-mtlp: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-1/igt@gem_eio@reset-stress.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt@gem_eio@reset-stress.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt@i915_pm_rps@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt@i915_pm_rps@reset.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3:
- shard-dg2: [PASS][5] -> [WARN][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: [INCOMPLETE][7] ([i915#7443]) -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rc6_residency@rc6-accuracy:
- {shard-dg2-9}: NOTRUN -> [FAIL][9] +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-9/igt@i915_pm_rc6_residency@rc6-accuracy.html
Known issues
------------
Here are the changes found in IGTPW_12428_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-idle@vecs0:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt@drm_fdinfo@busy-idle@vecs0.html
* igt@drm_fdinfo@most-busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@drm_fdinfo@most-busy-check-all.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +18 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@gem_caching@writes:
- shard-rkl: [PASS][14] -> [DMESG-WARN][15] ([i915#12917] / [i915#12964])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt@gem_caching@writes.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-5/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#7297])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@gem_ccs@suspend-resume.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#12392] / [i915#7297])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#12353]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk4/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#13390])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk3/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][31] -> [DMESG-WARN][32] ([i915#13363])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt@gem_eio@kms.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][33] ([i915#8898])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +11 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][47] ([i915#13196]) +1 other test incomplete
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk2/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_whisper@basic-fds:
- shard-rkl: [PASS][48] -> [DMESG-WARN][49] ([i915#12964]) +33 other tests dmesg-warn
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt@gem_exec_whisper@basic-fds.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@gem_exec_whisper@basic-fds.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][53] ([i915#2190])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#8289])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#284])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +14 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt@gem_mmap_gtt@basic-small-copy-xy.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][64] -> [ABORT][65] ([i915#10729]) +1 other test abort
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@gem_mmap_wc@write-read.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][70] ([i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +13 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][72] ([i915#2658])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@gem_pwrite_snooped.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +11 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4077]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3281] / [i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][91] +14 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][98] ([i915#13029])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][99] -> [DMESG-WARN][100] ([i915#13475])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#6412])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#7178])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#7091])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#8399])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681] / [i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@i915_pm_rps@basic-api.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][108] -> [SKIP][109] ([i915#7984])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-8/igt@i915_power@sanity.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) +1 other test dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][112] ([i915#1982] / [i915#9311])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][113] ([i915#9311])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][114] ([i915#9311])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#7707])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +15 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5286]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +15 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][129] +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6187])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +137 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][134] +395 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4423] / [i915#6095]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +64 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +19 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#12805])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#6095]) +22 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +34 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#6095]) +172 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +74 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +13 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#9979])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-dg1: [PASS][161] -> [DMESG-WARN][162] ([i915#4423]) +5 other tests dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#13049]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#3555]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#13049])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#13049]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][170] -> [INCOMPLETE][171] ([i915#12358]) +1 other test incomplete
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9809])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-snb: [PASS][173] -> [SKIP][174] +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#13046] / [i915#5354]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: NOTRUN -> [FAIL][176] ([i915#2346])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#9067])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#4103])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#4103])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9723])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#8588])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8812])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#8812])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3840])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3469])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_fbcon_fbt@psr.html
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3469])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9337])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#658])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#4881])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@kms_fence_pin_leak.html
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#4881])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +4 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3637]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-glk: NOTRUN -> [FAIL][204] ([i915#11989]) +3 other tests fail
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#9934]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#9934]) +10 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-glk: [PASS][208] -> [FAIL][209] ([i915#11989]) +2 other tests fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][210] ([i915#11989]) +1 other test fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2:
- shard-rkl: NOTRUN -> [DMESG-WARN][212] ([i915#12964]) +4 other tests dmesg-warn
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555] / [i915#8813])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#8813])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672] / [i915#3555])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8810] / [i915#8813])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8810])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354]) +31 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][227] +28 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][228] +47 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#10433] / [i915#3458])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +6 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8708]) +31 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#9766])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +19 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#1825]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3023]) +8 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#8708]) +15 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3458]) +11 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#3555] / [i915#8228])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt@kms_hdr@static-toggle.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#12394])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#12339])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#12339])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#10656])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#10656])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#12388])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#12388])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-dg2: [PASS][253] -> [INCOMPLETE][254] ([i915#10056] / [i915#13026])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt@kms_plane@pixel-format-source-clamping.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#8821])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#13046] / [i915#5354] / [i915#9423])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#12247]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#12247]) +9 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#9423]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#12247]) +4 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#12247]) +9 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#12247]) +15 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#6953])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#12247]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#5354])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9812])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#9812])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#12343])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#12343])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#9685])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3828])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#3828])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#9685])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#4281])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#9519])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#9519])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][278] -> [SKIP][279] ([i915#9519]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9519])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@pm-tiling:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#12916])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-5/igt@kms_pm_rpm@pm-tiling.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][282] ([i915#10553])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#6524])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#6524] / [i915#6805])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][285] ([i915#11520]) +6 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#9808])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12316]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][288] ([i915#11520]) +11 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#11520]) +4 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#11520]) +6 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#11520])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#11520]) +7 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#11520]) +11 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#9683])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#9683])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9683])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +10 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#9732]) +12 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@pr-no-drrs:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#9688]) +4 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +25 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr@psr-sprite-blt:
- shard-snb: NOTRUN -> [SKIP][302] +450 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-primary-render:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#9732]) +17 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#9685])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#5289]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#5289])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#5289])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12755])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#3555]) +4 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][310] ([i915#13179]) +1 other test abort
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][311] ([i915#13179]) +1 other test abort
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#8623])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#8623])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][314] ([i915#12276]) +1 other test incomplete
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8808])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#11920])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#11920])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9906]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_vrr@max-min.html
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#9906])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#9906])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#2437])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#2437])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#2437] / [i915#9412]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#2437] / [i915#9412])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#2437] / [i915#9412])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][326] +7 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#7387]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#2434])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][329] -> [FAIL][330] ([i915#4349]) +4 other tests fail
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#8850])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][332] ([i915#12549] / [i915#6806]) +1 other test fail
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#8516])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#8516])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][335] ([i915#9351])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][336] ([i915#9351])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#3708] / [i915#4077])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#3708] / [i915#4077])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][339] +76 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][340] ([i915#12910]) +9 other tests fail
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][341] ([i915#12910])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#9917])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [DMESG-FAIL][343] ([i915#12964]) -> [PASS][344] +2 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@vecs1:
- shard-dg2: [INCOMPLETE][345] ([i915#12353]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@vecs1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@vecs1.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][347] ([i915#12543] / [i915#5784]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt@gem_eio@reset-stress.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][349] ([i915#11713]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-2/igt@gem_exec_big@single.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt@gem_exec_big@single.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [FAIL][351] ([i915#3591]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][353] ([i915#12739] / [i915#3591]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@gem-mmap-type:
- shard-rkl: [SKIP][355] ([i915#13328]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt@i915_pm_rpm@gem-mmap-type.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@i915_pm_rpm@gem-mmap-type.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [INCOMPLETE][357] ([i915#12797]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk7/igt@i915_pm_rpm@system-suspend-execbuf.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@mock@sanitycheck:
- shard-snb: [ABORT][359] ([i915#11703]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt@i915_selftest@mock@sanitycheck.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt@i915_selftest@mock@sanitycheck.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-tglu: [FAIL][361] ([i915#10991] / [i915#13320]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][363] ([i915#10991]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [FAIL][365] ([i915#11808]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][367] ([i915#2346]) -> [PASS][368] +1 other test pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-rkl: [DMESG-WARN][369] ([i915#12964]) -> [PASS][370] +43 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt@kms_cursor_legacy@torture-move@pipe-b.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][371] ([i915#11989]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
- shard-tglu: [FAIL][373] ([i915#11989]) -> [PASS][374] +3 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
- shard-dg1: [DMESG-WARN][375] ([i915#4391] / [i915#4423]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][377] ([i915#9295]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][379] ([i915#9519]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][381] ([i915#9519]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_vblank@query-forked-hang:
- shard-rkl: [DMESG-WARN][383] ([i915#12917] / [i915#12964]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt@kms_vblank@query-forked-hang.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt@kms_vblank@query-forked-hang.html
* igt@perf_pmu@all-busy-check-all:
- shard-dg2: [FAIL][385] -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@perf_pmu@all-busy-check-all.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt@perf_pmu@all-busy-check-all.html
- shard-dg1: [FAIL][387] -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@perf_pmu@all-busy-check-all.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@perf_pmu@all-busy-check-all.html
- shard-mtlp: [FAIL][389] -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt@perf_pmu@all-busy-check-all.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt@perf_pmu@all-busy-check-all.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][391] ([i915#13356]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk3/igt@perf_pmu@rc6-suspend.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk1/igt@perf_pmu@rc6-suspend.html
* igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled:
- shard-dg1: [DMESG-WARN][393] ([i915#4423]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html
#### Warnings ####
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][395] ([i915#5493]) -> [TIMEOUT][396] ([i915#5493]) +1 other test timeout
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: [SKIP][397] ([i915#4270]) -> [TIMEOUT][398] ([i915#12917] / [i915#12964])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt@gem_pxp@display-protected-crc.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [TIMEOUT][399] ([i915#12917] / [i915#12964]) -> [SKIP][400] ([i915#4270])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: [ABORT][401] ([i915#13263] / [i915#13449]) -> [ABORT][402] ([i915#13449])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt@gem_tiled_swapping@non-threaded.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [DMESG-WARN][403] ([i915#13475]) -> [ABORT][404] ([i915#13493] / [i915#9820])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][405] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) -> [ABORT][406] ([i915#10131] / [i915#13493] / [i915#9820])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-snb: [ABORT][407] ([i915#11703]) -> [DMESG-WARN][408] ([i915#9311])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt@i915_selftest@mock.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt@i915_selftest@mock.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: [INCOMPLETE][409] ([i915#12761]) -> [INCOMPLETE][410] ([i915#12761] / [i915#1982]) +1 other test incomplete
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg1: [SKIP][411] ([i915#6095]) -> [SKIP][412] ([i915#4423] / [i915#6095]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: [SKIP][413] ([i915#4423] / [i915#9067]) -> [SKIP][414] ([i915#9067])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][415] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][416] ([i915#12745] / [i915#1982] / [i915#4839])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt@kms_flip@flip-vs-suspend.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][417] ([i915#12745]) -> [INCOMPLETE][418] ([i915#12745] / [i915#1982])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-dg1: [SKIP][419] ([i915#4423]) -> [SKIP][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][421] ([i915#3458]) -> [SKIP][422] ([i915#10433] / [i915#3458])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][423] ([i915#1187] / [i915#12713]) -> [SKIP][424] ([i915#12713])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][425] ([i915#11520] / [i915#4423]) -> [SKIP][426] ([i915#11520])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-dg1: [SKIP][427] ([i915#1072] / [i915#9732]) -> [SKIP][428] ([i915#1072] / [i915#4423] / [i915#9732])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-12/igt@kms_psr@fbc-pr-primary-page-flip.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: [SKIP][429] ([i915#4423] / [i915#5289]) -> [SKIP][430] ([i915#5289])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/i
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html
[-- Attachment #2: Type: text/html, Size: 111893 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread