* [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment
@ 2024-10-22 12:53 Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects Louis Chauvet
` (8 more replies)
0 siblings, 9 replies; 18+ messages in thread
From: Louis Chauvet @ 2024-10-22 12:53 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,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
In preparation for the introduction of Chameleon v3, this series will add
a few helper functions that will be used:
- Helper to convert monitor edid to edid
- Helper to fetch monitor edid from its name
- Helper to display all monitor edids
- Few fixes and addition in edid list
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
Changes in v2:
- Rebased
- Link to v1: https://lore.kernel.org/r/20240828-b4-cv3-02-monitor-edids-v1-0-29c846bcf251@bootlin.com
---
Louis Chauvet (5):
lib/monitor_edids: Add helper functions for using monitor_edid objects
lib/monitor_edids: Add helper to get an EDID by its name
lib/monitor_edids: Add helper to print all available EDID names
lib/monitor_edids: Fix missing names in some monitor EDID
lib/monitor_edids: Add new EDID for HDMI 4k
lib/monitor_edids/dp_edids.h | 3 ++
lib/monitor_edids/hdmi_edids.h | 27 ++++++++--
lib/monitor_edids/monitor_edids_helper.c | 92 +++++++++++++++++++++++++++++++-
lib/monitor_edids/monitor_edids_helper.h | 8 +++
4 files changed, 125 insertions(+), 5 deletions(-)
---
base-commit: 9b8c0f6da8898f760bfaa2113455eb84b68a69f4
change-id: 20240828-b4-cv3-02-monitor-edids-59a8f515c881
prerequisite-message-id: 20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com
prerequisite-patch-id: 0562bbe57a0b489e7f46a51717c54ea26296cb8c
prerequisite-patch-id: a16d6fdd238eab5a91630d0934c9186669406fc7
prerequisite-patch-id: c7fcc64d709f283da748a0f9bbe3bd6143d76300
prerequisite-patch-id: 09fc5e2f569fa8287e767ceb353bc0a0f94ae2e1
prerequisite-patch-id: 63cf2f6323333bb8cbd0dbbd883b5c9fe373dea1
Best regards,
--
Louis Chauvet <louis.chauvet@bootlin.com>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
@ 2024-10-22 12:53 ` Louis Chauvet
2024-10-31 18:53 ` Kamil Konieczny
2024-10-22 12:53 ` [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name Louis Chauvet
` (7 subsequent siblings)
8 siblings, 1 reply; 18+ messages in thread
From: Louis Chauvet @ 2024-10-22 12:53 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,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
Introduce the functions edid_from_monitor_edid() and
get_edids_for_connector_type(). The former converts a monitor_edid object
to a struct edid, which can then be utilized by igt_kms helpers. The
latter returns a list of monitor_edid objects for a specific connector
with certain characteristics
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/monitor_edids/monitor_edids_helper.c | 61 +++++++++++++++++++++++++++++++-
lib/monitor_edids/monitor_edids_helper.h | 5 +++
2 files changed, 65 insertions(+), 1 deletion(-)
diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
index 1cbf1c22f0bb..0e0c2a9badcf 100644
--- a/lib/monitor_edids/monitor_edids_helper.c
+++ b/lib/monitor_edids/monitor_edids_helper.c
@@ -14,7 +14,10 @@
#include <string.h>
#include <assert.h>
-#include "igt_core.h"
+#include "igt.h"
+#include "igt_edid.h"
+#include "dp_edids.h"
+#include "hdmi_edids.h"
static uint8_t convert_hex_char_to_byte(char c)
{
@@ -90,3 +93,59 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid)
free(edid);
edid = NULL;
}
+
+struct edid *edid_from_monitor_edid(const monitor_edid *mon_edid)
+{
+ uint8_t *raw_edid;
+ size_t edid_size;
+ int i;
+
+ edid_size = strlen(mon_edid->edid) / 2; /* each ascii is a nibble. */
+ raw_edid = malloc(edid_size);
+ igt_assert(raw_edid);
+
+ for (i = 0; i < edid_size; i++) {
+ raw_edid[i] = convert_hex_char_to_byte(mon_edid->edid[i * 2]) << 4 |
+ convert_hex_char_to_byte(mon_edid->edid[i * 2 + 1]);
+ }
+
+ if (edid_get_size((struct edid *)raw_edid) > edid_size) {
+ uint8_t *new_edid;
+
+ igt_warn("The edid size stored in the raw edid is shorter than the edid stored in the table.");
+ new_edid = realloc(raw_edid, edid_get_size((struct edid *)raw_edid));
+ igt_assert(new_edid);
+ raw_edid = new_edid;
+ }
+
+ return (struct edid *)raw_edid;
+}
+
+struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k)
+{
+ if (four_k) {
+ switch (type) {
+ case DRM_MODE_CONNECTOR_DisplayPort:
+ *count = ARRAY_SIZE(DP_EDIDS_4K);
+ return DP_EDIDS_4K;
+ case DRM_MODE_CONNECTOR_HDMIA:
+ *count = ARRAY_SIZE(HDMI_EDIDS_4K);
+ return HDMI_EDIDS_4K;
+ default:
+ igt_assert_f(0, "No 4k EDID for the connector %s\n",
+ kmstest_connector_type_str(type));
+ }
+ } else {
+ switch (type) {
+ case DRM_MODE_CONNECTOR_DisplayPort:
+ *count = ARRAY_SIZE(DP_EDIDS_NON_4K);
+ return DP_EDIDS_NON_4K;
+ case DRM_MODE_CONNECTOR_HDMIA:
+ *count = ARRAY_SIZE(HDMI_EDIDS_NON_4K);
+ return HDMI_EDIDS_NON_4K;
+ default:
+ igt_assert_f(0, "No EDID for the connector %s\n",
+ kmstest_connector_type_str(type));
+ }
+ }
+}
diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
index 05679f0897f3..2ec7aee5f13f 100644
--- a/lib/monitor_edids/monitor_edids_helper.h
+++ b/lib/monitor_edids/monitor_edids_helper.h
@@ -12,6 +12,8 @@
#define TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_
#include <stdint.h>
+#include <stddef.h>
+#include <stdbool.h>
#include "igt_chamelium.h"
@@ -30,4 +32,7 @@ get_chameleon_edid_from_monitor_edid(struct chamelium *chamelium,
const monitor_edid *edid);
void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
+struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
+struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
+
#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
\ No newline at end of file
--
2.46.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects Louis Chauvet
@ 2024-10-22 12:53 ` Louis Chauvet
2024-10-31 18:58 ` Kamil Konieczny
2024-10-22 12:53 ` [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names Louis Chauvet
` (6 subsequent siblings)
8 siblings, 1 reply; 18+ messages in thread
From: Louis Chauvet @ 2024-10-22 12:53 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,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
For testing specific EDID, it is useful to be able to retrieve an EDID by
a verbose name.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/monitor_edids/dp_edids.h | 3 +++
lib/monitor_edids/hdmi_edids.h | 3 +++
lib/monitor_edids/monitor_edids_helper.c | 21 +++++++++++++++++++++
lib/monitor_edids/monitor_edids_helper.h | 1 +
4 files changed, 28 insertions(+)
diff --git a/lib/monitor_edids/dp_edids.h b/lib/monitor_edids/dp_edids.h
index 144907558be1..d11a81d167fc 100644
--- a/lib/monitor_edids/dp_edids.h
+++ b/lib/monitor_edids/dp_edids.h
@@ -194,4 +194,7 @@ monitor_edid DP_EDIDS_NON_4K[] = {
};
+const int DP_EDID_NON_4K_COUNT = ARRAY_SIZE(DP_EDIDS_NON_4K);
+const int DP_EDID_4K_COUNT = ARRAY_SIZE(DP_EDIDS_4K);
+
#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_DP_EDIDS_H_ */
diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
index 9d75cfa989b6..573e2149d5d3 100644
--- a/lib/monitor_edids/hdmi_edids.h
+++ b/lib/monitor_edids/hdmi_edids.h
@@ -604,4 +604,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
"1620582c2500baac4200009e0000006b" },
};
+const int HDMI_EDID_4K_COUNT = ARRAY_SIZE(HDMI_EDIDS_4K);
+const int HDMI_EDID_NON_4K_COUNT = ARRAY_SIZE(HDMI_EDIDS_NON_4K);
+
#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_HDMI_EDIDS_H_ */
diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
index 0e0c2a9badcf..0f92ced64d06 100644
--- a/lib/monitor_edids/monitor_edids_helper.c
+++ b/lib/monitor_edids/monitor_edids_helper.c
@@ -19,6 +19,16 @@
#include "dp_edids.h"
#include "hdmi_edids.h"
+struct {
+ struct monitor_edid *edid_list;
+ int list_size;
+} ALL_EDIDS[] = {
+ {DP_EDIDS_NON_4K, DP_EDID_NON_4K_COUNT},
+ {DP_EDIDS_4K, DP_EDID_4K_COUNT},
+ {HDMI_EDIDS_NON_4K, HDMI_EDID_NON_4K_COUNT},
+ {HDMI_EDIDS_4K, HDMI_EDID_4K_COUNT},
+};
+
static uint8_t convert_hex_char_to_byte(char c)
{
if (c >= '0' && c <= '9')
@@ -149,3 +159,14 @@ struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count,
}
}
}
+
+struct edid *get_edid_by_name(char *name)
+{
+ for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) {
+ for (int j = 0; j < ALL_EDIDS[i].list_size; j++) {
+ if (strcmp(ALL_EDIDS[i].edid_list[j].name, name) == 0)
+ return edid_from_monitor_edid(&ALL_EDIDS[i].edid_list[j]);
+ }
+ }
+ return NULL;
+}
diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
index 2ec7aee5f13f..cd0e5a7b2645 100644
--- a/lib/monitor_edids/monitor_edids_helper.h
+++ b/lib/monitor_edids/monitor_edids_helper.h
@@ -34,5 +34,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
+struct edid *get_edid_by_name(char *name);
#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
\ No newline at end of file
--
2.46.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name Louis Chauvet
@ 2024-10-22 12:53 ` Louis Chauvet
2024-10-31 19:04 ` Kamil Konieczny
2024-10-22 12:53 ` [PATCH i-g-t v2 4/5] lib/monitor_edids: Fix missing names in some monitor EDID Louis Chauvet
` (5 subsequent siblings)
8 siblings, 1 reply; 18+ messages in thread
From: Louis Chauvet @ 2024-10-22 12:53 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,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
During the chamelium v3 configuration, it may be required to know the list
of supported EDID names, so add an helper to print them.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/monitor_edids/monitor_edids_helper.c | 10 ++++++++++
lib/monitor_edids/monitor_edids_helper.h | 2 ++
2 files changed, 12 insertions(+)
diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
index 0f92ced64d06..ca2f5006eada 100644
--- a/lib/monitor_edids/monitor_edids_helper.c
+++ b/lib/monitor_edids/monitor_edids_helper.c
@@ -170,3 +170,13 @@ struct edid *get_edid_by_name(char *name)
}
return NULL;
}
+
+void list_edid_names(enum igt_log_level level)
+{
+ for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) {
+ for (int j = 0; j < ALL_EDIDS[i].list_size; j++) {
+ igt_log(IGT_LOG_DOMAIN, level, " - \"%s\"\n",
+ ALL_EDIDS[i].edid_list[j].name);
+ }
+ }
+}
diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
index cd0e5a7b2645..50b08530826a 100644
--- a/lib/monitor_edids/monitor_edids_helper.h
+++ b/lib/monitor_edids/monitor_edids_helper.h
@@ -15,6 +15,7 @@
#include <stddef.h>
#include <stdbool.h>
+#include "igt_core.h"
#include "igt_chamelium.h"
/* Max Length can be increased as needed, when new EDIDs are added. */
@@ -35,5 +36,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
struct edid *get_edid_by_name(char *name);
+void list_edid_names(enum igt_log_level level);
#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
\ No newline at end of file
--
2.46.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 4/5] lib/monitor_edids: Fix missing names in some monitor EDID
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
` (2 preceding siblings ...)
2024-10-22 12:53 ` [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names Louis Chauvet
@ 2024-10-22 12:53 ` Louis Chauvet
2024-10-31 19:00 ` Kamil Konieczny
2024-10-22 12:53 ` [PATCH i-g-t v2 5/5] lib/monitor_edids: Add new EDID for HDMI 4k Louis Chauvet
` (4 subsequent siblings)
8 siblings, 1 reply; 18+ messages in thread
From: Louis Chauvet @ 2024-10-22 12:53 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,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
Some HDMI EDID did not have a good name identifier. Add one to avoid
confusion.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/monitor_edids/hdmi_edids.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
index 573e2149d5d3..8bcd1f31b458 100644
--- a/lib/monitor_edids/hdmi_edids.h
+++ b/lib/monitor_edids/hdmi_edids.h
@@ -241,7 +241,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
"33333633493056465320000000fc0044"
"454c4c20323430354650570a000000fd"
"00384c1e5111000a20202020202000e9" },
- { .name = "`",
+ { .name = "DEL_DELL_2407WFP_HDMI",
.edid = "00ffffffffffff0010ac17a053575930"
"0511010380342178eeee91a3544c9926"
"0f5054a54b008180a940714fb3000101"
@@ -438,7 +438,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
"60350000003200001c011d8018711c16"
"20582c2500c48e2100009e0000000000"
"0000000000000000000000000000000a" },
- { .name = "",
+ { .name = "GSM_50294_M3704C_HDMI",
.edid = "00ffffffffffff001e6d76c401010101"
"2514010380522e78eaac27a355499b25"
"10474aa1080081807140614045403140"
@@ -490,7 +490,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
"5011000a202020202020000000fc0048"
"50205a5232343430770a2020000000ff"
"00434e34333132303836580a2020007f" },
- { .name = "",
+ { .name = "HWP_10582_HP_ZR2440w_HDMI",
.edid = "00ffffffffffff0022f0562901010101"
"0b170103803420782afc81a4554d9d25"
"125054210800d1c081c0814081809500"
--
2.46.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 5/5] lib/monitor_edids: Add new EDID for HDMI 4k
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
` (3 preceding siblings ...)
2024-10-22 12:53 ` [PATCH i-g-t v2 4/5] lib/monitor_edids: Fix missing names in some monitor EDID Louis Chauvet
@ 2024-10-22 12:53 ` Louis Chauvet
2024-10-31 19:01 ` Kamil Konieczny
2024-10-22 17:44 ` ✓ Fi.CI.BAT: success for lib/igt_kms: Helpers for monitor edid managment (rev2) Patchwork
` (3 subsequent siblings)
8 siblings, 1 reply; 18+ messages in thread
From: Louis Chauvet @ 2024-10-22 12:53 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,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
Add EDID for the HDMI screen LG HDR 4K.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
lib/monitor_edids/hdmi_edids.h | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
index 8bcd1f31b458..cc6820d96231 100644
--- a/lib/monitor_edids/hdmi_edids.h
+++ b/lib/monitor_edids/hdmi_edids.h
@@ -49,7 +49,23 @@ monitor_edid HDMI_EDIDS_4K[] = {
"5E00A0A0A0295030203500C48F210000"
"1EEF5100A0F070198030203500C48F21"
"00001E000000000000000000000000A8" },
-
+ { .name = "4K_GSM_LG_HDR_4K_HDMI",
+ .edid = "00ffffffffffff001e6d4f77c75f1500"
+ "0521010380462878ea7ba1ae4f44a926"
+ "0c5054210800d1c06140454001010101"
+ "010101010101a0cb0046f0703e802010"
+ "3500b9882100001a000000fd00283c1e"
+ "873c000a202020202020000000fc004c"
+ "472048445220344b0a202020000000ff"
+ "003330354d414e4a43335a37350a01e4"
+ "0203427223090707830100004d010304"
+ "10121f202261605f5e5d6d030c001000"
+ "b83c20006001020367d85dc401788003"
+ "e30f0003e2006ae305c000e606050159"
+ "5952a36600a0f0701f8030203500b988"
+ "2100001a565e00a0a0a0295030203500"
+ "b9882100001a023a801871382d40582c"
+ "4500b9882100001a00000000000000af" },
};
monitor_edid HDMI_EDIDS_NON_4K[] = {
--
2.46.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* ✓ Fi.CI.BAT: success for lib/igt_kms: Helpers for monitor edid managment (rev2)
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
` (4 preceding siblings ...)
2024-10-22 12:53 ` [PATCH i-g-t v2 5/5] lib/monitor_edids: Add new EDID for HDMI 4k Louis Chauvet
@ 2024-10-22 17:44 ` Patchwork
2024-10-22 18:16 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-10-22 17:44 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3945 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for monitor edid managment (rev2)
URL : https://patchwork.freedesktop.org/series/137925/
State : success
== Summary ==
CI Bug Log - changes from IGT_8082 -> IGTPW_11953
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11953 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][1] -> [ABORT][2] ([i915#12061] / [i915#12133])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arlh-3/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12061])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/bat-arlh-3/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-1: [INCOMPLETE][5] ([i915#12133] / [i915#9413]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/bat-twl-1/igt@i915_selftest@live.html
- bat-dg2-9: [ABORT][7] ([i915#12133]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/bat-dg2-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@client:
- bat-dg2-9: [ABORT][9] ([i915#12305]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/bat-dg2-9/igt@i915_selftest@live@client.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [INCOMPLETE][11] ([i915#9413]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][13] ([i915#11621]) -> [PASS][14] +132 other tests pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8082 -> IGTPW_11953
* Linux: CI_DRM_15576 -> CI_DRM_15579
CI-20190529: 20190529
CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15579: 2d11d2602dc35b03fd68309c96fedeea423beb42 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11953: 4e3c15358629dd578724e2679ad2d4f616b18730 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/index.html
[-- Attachment #2: Type: text/html, Size: 4998 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.xeBAT: success for lib/igt_kms: Helpers for monitor edid managment (rev2)
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
` (5 preceding siblings ...)
2024-10-22 17:44 ` ✓ Fi.CI.BAT: success for lib/igt_kms: Helpers for monitor edid managment (rev2) Patchwork
@ 2024-10-22 18:16 ` Patchwork
2024-10-22 22:10 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-22 23:54 ` ✗ Fi.CI.IGT: " Patchwork
8 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-10-22 18:16 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2467 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for monitor edid managment (rev2)
URL : https://patchwork.freedesktop.org/series/137925/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11953_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11953_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#2874]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#2496]) -> [PASS][4] +31 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-2: [INCOMPLETE][5] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
Build changes
-------------
* IGT: IGT_8082 -> IGTPW_11953
IGTPW_11953: 4e3c15358629dd578724e2679ad2d4f616b18730 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/index.html
[-- Attachment #2: Type: text/html, Size: 3154 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.xeFULL: failure for lib/igt_kms: Helpers for monitor edid managment (rev2)
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
` (6 preceding siblings ...)
2024-10-22 18:16 ` ✓ CI.xeBAT: " Patchwork
@ 2024-10-22 22:10 ` Patchwork
2024-10-22 23:54 ` ✗ Fi.CI.IGT: " Patchwork
8 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-10-22 22:10 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 85144 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for monitor edid managment (rev2)
URL : https://patchwork.freedesktop.org/series/137925/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11953_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11953_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11953_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11953_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_legacy@torture-move@pipe-c:
- shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_legacy@torture-move@pipe-c.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-c.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a6:
- shard-dg2-set2: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a6.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a6.html
Known issues
------------
Here are the changes found in XEIGTPW_11953_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1:
- shard-lnl: [PASS][7] -> [FAIL][8] ([Intel XE#3199]) +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-8/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1.html
* igt@kms_atomic_interruptible@legacy-cursor:
- shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#3007]) +17 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_atomic_interruptible@legacy-cursor.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_atomic_interruptible@legacy-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#1426]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2351] / [Intel XE#2890])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2890]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2669]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +34 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1195] / [Intel XE#3113])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1195] / [Intel XE#1727])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][34] -> [DMESG-WARN][35] ([Intel XE#3113])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1195]) +2 other tests incomplete
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@ctm-0-75@pipe-c-edp-1:
- shard-lnl: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2929]) +1 other test dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_color@ctm-0-75@pipe-c-edp-1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_color@ctm-0-75@pipe-c-edp-1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1424]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#2577]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-left-edge.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2-set2: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#877])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#2791] / [Intel XE#877])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-dg2-set2: [PASS][51] -> [FAIL][52] ([Intel XE#1475])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#1475])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#455]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#701])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1135])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#301]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#301]) +4 other tests fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][61] ([Intel XE#1204])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@busy-flip.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][64] ([Intel XE#886]) +3 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#2882])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#886]) +2 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-linear-to-4:
- shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#1491]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-linear-to-4.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-linear-to-4.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#656]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#651]) +12 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2890]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#651]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#653]) +13 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#356])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#309])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2763]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2763]) +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1129])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#908])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#1430])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2446])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2893])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1128])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-cursor-plane-move@edp-1:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#2948]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
* igt@kms_psr@psr2-cursor-render@edp-1:
- shard-lnl: NOTRUN -> [FAIL][97] ([Intel XE#2948]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-1/igt@kms_psr@psr2-cursor-render@edp-1.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1437])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#2947])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@kms_setmode@basic@pipe-a-edp-1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#2883]) +1 other test fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-modeset-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_vblank@ts-continuation-modeset-rpm.html
* igt@kms_vrr@max-min:
- shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#2443]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_vrr@max-min.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-8/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#756])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2905]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-1/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#1473]) +1 other test incomplete
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_evict@evict-beng-mixed-threads-large.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#688])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][113] ([Intel XE#1473])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-threads-small:
- shard-bmg: [PASS][114] -> [SKIP][115] ([Intel XE#1130]) +30 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-mixed-threads-small.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_evict@evict-mixed-threads-small.html
* igt@xe_exec_balancer@many-virtual-userptr-rebind:
- shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#1130]) +23 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_exec_balancer@many-virtual-userptr-rebind.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_exec_balancer@many-virtual-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1130]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1392]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#288]) +14 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_reset@close-execqueues-close-fd:
- shard-dg2-set2: [PASS][121] -> [FAIL][122] ([Intel XE#1081])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_reset@close-execqueues-close-fd.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_exec_reset@close-execqueues-close-fd.html
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#1081])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@xe_exec_reset@close-execqueues-close-fd.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-7/igt@xe_exec_reset@close-execqueues-close-fd.html
- shard-bmg: [PASS][125] -> [FAIL][126] ([Intel XE#1081])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_exec_reset@close-execqueues-close-fd.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_exec_reset@close-execqueues-close-fd.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][127] -> [INCOMPLETE][128] ([Intel XE#2105])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2541]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [PASS][130] -> [FAIL][131] ([Intel XE#2249]) +1 other test fail
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#2249])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-4/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][134] ([Intel XE#2249])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-4/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1420] / [Intel XE#2838])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][137] -> [ABORT][138] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][139] -> [ABORT][140] ([Intel XE#1607] / [Intel XE#1794])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@xe_pm@s4-vm-bind-prefetch.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][141] -> [ABORT][142] ([Intel XE#1794])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#958])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#944]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#944])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@xe_query@multigpu-query-gt-list.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [SKIP][147] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
- shard-dg2-set2: [SKIP][149] ([Intel XE#2890]) -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@intel_hwmon@hwmon-write.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic@atomic-invalid-params:
- shard-dg2-set2: [SKIP][151] ([Intel XE#2423] / [i915#2575]) -> [PASS][152] +13 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_atomic@atomic-invalid-params.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [SKIP][153] ([Intel XE#2231]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-lnl: [FAIL][155] ([Intel XE#1659]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-lnl: [DMESG-WARN][157] ([Intel XE#2055]) -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-6/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-dg2-set2: [DMESG-WARN][159] -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_legacy@torture-move@pipe-b.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][161] ([Intel XE#301]) -> [PASS][162] +3 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][163] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#886]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][165] ([Intel XE#301]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][167] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][169] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-dp4:
- shard-dg2-set2: [INCOMPLETE][171] ([Intel XE#1195]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend@b-dp4.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_flip@flip-vs-suspend@b-dp4.html
* igt@kms_flip@nonexisting-fb:
- shard-bmg: [SKIP][173] ([Intel XE#3007]) -> [PASS][174] +14 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@nonexisting-fb.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-8/igt@kms_flip@nonexisting-fb.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][175] ([Intel XE#886]) -> [PASS][176] +7 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [FAIL][177] -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [FAIL][179] ([Intel XE#899]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [FAIL][181] ([Intel XE#2443]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@kms_vrr@flip-basic-fastset.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][183] ([Intel XE#1600]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [FAIL][185] ([Intel XE#1000]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [SKIP][187] ([Intel XE#1130]) -> [PASS][188] +20 other tests pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-lnl: [FAIL][189] ([Intel XE#2754]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][191] ([Intel XE#2105]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_pat@pat-index-xelp:
- shard-dg2-set2: [SKIP][193] ([Intel XE#1130]) -> [PASS][194] +16 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pat@pat-index-xelp.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][195] ([Intel XE#1794]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-lnl-5/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-bmg: [SKIP][197] ([Intel XE#2231]) -> [SKIP][198] ([Intel XE#1124])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
- shard-dg2-set2: [SKIP][199] ([Intel XE#2890]) -> [SKIP][200] ([Intel XE#1124])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][201] ([Intel XE#1124]) -> [SKIP][202] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
- shard-dg2-set2: [SKIP][203] ([Intel XE#1124]) -> [SKIP][204] ([Intel XE#2890]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][205] ([Intel XE#2231]) -> [SKIP][206] ([Intel XE#2328])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html
- shard-dg2-set2: [SKIP][207] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][208] ([Intel XE#619])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][209] ([Intel XE#367]) -> [SKIP][210] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-bmg: [SKIP][211] ([Intel XE#367]) -> [SKIP][212] ([Intel XE#3007])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][213] ([Intel XE#3007]) -> [SKIP][214] ([Intel XE#367])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
- shard-dg2-set2: [SKIP][215] ([Intel XE#2423] / [i915#2575]) -> [SKIP][216] ([Intel XE#367])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][217] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][218] ([Intel XE#2351] / [Intel XE#2890])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][219] ([Intel XE#2887]) -> [SKIP][220] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
- shard-dg2-set2: [SKIP][221] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][222] ([Intel XE#2890])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-bmg: [SKIP][223] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][224] ([Intel XE#2887])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-8/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
- shard-dg2-set2: [SKIP][225] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][226] ([Intel XE#455] / [Intel XE#787])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][227] ([Intel XE#3007]) -> [SKIP][228] ([Intel XE#2252]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
- shard-dg2-set2: [SKIP][229] ([Intel XE#2423] / [i915#2575]) -> [SKIP][230] ([Intel XE#373]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: [SKIP][231] ([Intel XE#2252]) -> [SKIP][232] ([Intel XE#3007]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-dg2-set2: [SKIP][233] ([Intel XE#373]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#455])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_content_protection@lic-type-1.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
- shard-bmg: [SKIP][237] ([Intel XE#3007]) -> [SKIP][238] ([Intel XE#2341])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_content_protection@lic-type-1.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-bmg: [SKIP][239] ([Intel XE#2320]) -> [SKIP][240] ([Intel XE#3007]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg2-set2: [SKIP][241] ([Intel XE#455]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][243] ([Intel XE#2890]) -> [SKIP][244] ([Intel XE#455])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-bmg: [SKIP][245] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][246] ([Intel XE#2244])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: [SKIP][247] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][248] ([Intel XE#2231] / [Intel XE#2890])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: [SKIP][249] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][250] ([Intel XE#2231])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg2-set2: [SKIP][251] ([Intel XE#455]) -> [SKIP][252] ([Intel XE#2890]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][253] ([Intel XE#651]) -> [SKIP][254] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][255] ([Intel XE#2311]) -> [SKIP][256] ([Intel XE#2231]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][257] ([Intel XE#2311]) -> [SKIP][258] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
- shard-dg2-set2: [SKIP][259] ([Intel XE#651]) -> [SKIP][260] ([Intel XE#2890]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: [SKIP][261] ([Intel XE#2231]) -> [SKIP][262] ([Intel XE#2311]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
- shard-dg2-set2: [SKIP][263] ([Intel XE#2890]) -> [SKIP][264] ([Intel XE#651]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][265] ([Intel XE#2333]) -> [SKIP][266] ([Intel XE#2231] / [Intel XE#2890])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][267] ([Intel XE#2231]) -> [FAIL][268] ([Intel XE#2333])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [FAIL][269] ([Intel XE#2333]) -> [SKIP][270] ([Intel XE#2231]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][271] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][272] ([Intel XE#2311])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][273] ([Intel XE#2313]) -> [SKIP][274] ([Intel XE#2231]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-dg2-set2: [SKIP][275] ([Intel XE#653]) -> [SKIP][276] ([Intel XE#2890]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][277] ([Intel XE#2313]) -> [SKIP][278] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-dg2-set2: [SKIP][279] ([Intel XE#653]) -> [SKIP][280] ([Intel XE#2351] / [Intel XE#2890])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][281] ([Intel XE#2231]) -> [SKIP][282] ([Intel XE#2313]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg2-set2: [SKIP][283] ([Intel XE#2890]) -> [SKIP][284] ([Intel XE#653]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][285] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][286] ([Intel XE#653])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-bmg: [SKIP][287] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][288] ([Intel XE#2313]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: [SKIP][289] ([Intel XE#3007]) -> [SKIP][290] ([Intel XE#2340])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-2/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: [SKIP][291] ([Intel XE#2231]) -> [SKIP][292] ([Intel XE#346])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2-set2: [SKIP][293] ([Intel XE#2890]) -> [SKIP][294] ([Intel XE#346])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-bmg: [DMESG-WARN][295] ([Intel XE#3177]) -> [SKIP][296] ([Intel XE#3007]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-bmg: [SKIP][297] ([Intel XE#2763]) -> [SKIP][298] ([Intel XE#3007])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][299] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][300] ([Intel XE#2446])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][301] ([Intel XE#1489]) -> [SKIP][302] ([Intel XE#2231]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
- shard-dg2-set2: [SKIP][303] ([Intel XE#1489]) -> [SKIP][304] ([Intel XE#2890]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][305] ([Intel XE#2231]) -> [SKIP][306] ([Intel XE#1489]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-dg2-set2: [SKIP][307] ([Intel XE#2890]) -> [SKIP][308] ([Intel XE#1489])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-bmg: [SKIP][309] ([Intel XE#2231]) -> [SKIP][310] ([Intel XE#2234] / [Intel XE#2850])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@fbc-pr-primary-render.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-1/igt@kms_psr@fbc-pr-primary-render.html
- shard-dg2-set2: [SKIP][311] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][312] ([Intel XE#2850] / [Intel XE#929])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][314] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@pr-no-drrs:
- shard-bmg: [SKIP][315] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][316] ([Intel XE#2234] / [Intel XE#2850])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-no-drrs.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-1/igt@kms_psr@pr-no-drrs.html
- shard-dg2-set2: [SKIP][317] ([Intel XE#2890]) -> [SKIP][318] ([Intel XE#2850] / [Intel XE#929])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-no-drrs.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-bmg: [SKIP][319] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][320] ([Intel XE#2231])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_psr@psr-cursor-plane-move.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-bmg: [SKIP][321] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][322] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@psr-sprite-plane-onoff.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_psr@psr-sprite-plane-onoff.html
- shard-dg2-set2: [SKIP][323] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][324] ([Intel XE#2351]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][325] ([Intel XE#2329]) -> [SKIP][326] ([Intel XE#3007]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-dg2-set2: [SKIP][327] ([Intel XE#327]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2905]) -> [SKIP][330] ([Intel XE#1130])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_eudebug_online@resume-dss.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html
- shard-bmg: [SKIP][331] ([Intel XE#2905]) -> [SKIP][332] ([Intel XE#1130])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@resume-dss.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-dg2-set2: [SKIP][333] ([Intel XE#1130]) -> [SKIP][334] ([Intel XE#2905])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-435/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
- shard-bmg: [SKIP][335] ([Intel XE#1130]) -> [SKIP][336] ([Intel XE#2905])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][337] ([Intel XE#1473]) -> [SKIP][338] ([Intel XE#1130])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
- shard-bmg: [INCOMPLETE][339] ([Intel XE#1473]) -> [SKIP][340] ([Intel XE#1130])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [SKIP][341] ([Intel XE#2322]) -> [SKIP][342] ([Intel XE#1130]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
- shard-bmg: [SKIP][343] ([Intel XE#1130]) -> [SKIP][344] ([Intel XE#2322])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
* igt@xe_exec_fault_mode@many-userptr-imm:
- shard-dg2-set2: [SKIP][345] ([Intel XE#1130]) -> [SKIP][346] ([Intel XE#288]) +2 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@xe_exec_fault_mode@many-userptr-imm.html
* igt@xe_exec_fault_mode@once-userptr-rebind:
- shard-dg2-set2: [SKIP][347] ([Intel XE#288]) -> [SKIP][348] ([Intel XE#1130]) +4 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-rebind.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-rebind.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-dg2-set2: [SKIP][349] ([Intel XE#2541]) -> [SKIP][350] ([Intel XE#1130])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_oa@oa-tlb-invalidate.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: [SKIP][351] ([Intel XE#2248]) -> [SKIP][352] ([Intel XE#1130])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][353] ([Intel XE#1130]) -> [SKIP][354] ([Intel XE#2237] / [Intel XE#2245])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-7/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][355] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][356] ([Intel XE#1130])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html
- shard-bmg: [SKIP][357] ([Intel XE#2284]) -> [SKIP][358] ([Intel XE#1130])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-basic-exec.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: [SKIP][359] ([Intel XE#1130]) -> [SKIP][360] ([Intel XE#2284])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: [SKIP][361] ([Intel XE#1130]) -> [SKIP][362] ([Intel XE#2284])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pm@d3cold-mocs.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-463/igt@xe_pm@d3cold-mocs.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][363] ([Intel XE#1130]) -> [SKIP][364] ([Intel XE#944])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
- shard-bmg: [SKIP][365] ([Intel XE#1130]) -> [SKIP][366] ([Intel XE#944])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2947
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177
[Intel XE#3199]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3199
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8082 -> IGTPW_11953
IGTPW_11953: 4e3c15358629dd578724e2679ad2d4f616b18730 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11953/index.html
[-- Attachment #2: Type: text/html, Size: 106635 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/igt_kms: Helpers for monitor edid managment (rev2)
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
` (7 preceding siblings ...)
2024-10-22 22:10 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-22 23:54 ` Patchwork
8 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-10-22 23:54 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100274 bytes --]
== Series Details ==
Series: lib/igt_kms: Helpers for monitor edid managment (rev2)
URL : https://patchwork.freedesktop.org/series/137925/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15579_full -> IGTPW_11953_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11953_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11953_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_11953/index.html
Participating hosts (9 -> 7)
------------------------------
Missing (2): pig-kbl-iris shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11953_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
- shard-snb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb1/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
* igt@kms_flip@plain-flip-ts-check@b-edp1:
- shard-mtlp: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check@b-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check@b-edp1.html
* igt@kms_vblank@query-busy-hang:
- shard-mtlp: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-4/igt@kms_vblank@query-busy-hang.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_vblank@query-busy-hang.html
- shard-rkl: [PASS][7] -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-1/igt@kms_vblank@query-busy-hang.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_vblank@query-busy-hang.html
New tests
---------
New tests have been introduced between CI_DRM_15579_full and IGTPW_11953_full:
### New IGT tests (3) ###
* igt@kms_dp_linktrain_fallback:
- Statuses :
- Exec time: [None] s
* igt@kms_invalid_mode@int-max-clock@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_invalid_mode@int-max-clock@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
Known issues
------------
Here are the changes found in IGTPW_11953_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_busy@close-race:
- shard-dg2: NOTRUN -> [FAIL][15] ([i915#12297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@gem_busy@close-race.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9310])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-6/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][22] -> [FAIL][23] ([i915#12031])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [PASS][34] -> [DMESG-WARN][35] ([i915#12412])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-6/igt@gem_exec_balancer@nop.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@gem_exec_balancer@nop.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +5 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3711])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-ro-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_11953/shard-dg2-2/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#5107])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read-active.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@gem_exec_reloc@basic-write-wc-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-dg2: NOTRUN -> [FAIL][48] ([i915#12296]) +7 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][52] -> [INCOMPLETE][53] ([i915#11441]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#284])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#284])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-1/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +10 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +11 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +7 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@display:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@gem_pread@display.html
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@gem_pread@display.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@gem_pread@display.html
* igt@gem_pxp@display-protected-crc:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#8411])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-15/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-10/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@gen9_exec_parse@secure-batches.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][96] -> [ABORT][97] ([i915#9820])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][98] ([i915#2681]) +1 other test warn
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][99] -> [FAIL][100] ([i915#3591])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#11681]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4387])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@i915_pm_sseu@full-enable.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4212])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-get-prop:
- shard-dg1: NOTRUN -> [DMESG-WARN][107] ([i915#4423]) +2 other tests dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_addfb_basic@invalid-get-prop.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#12454])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#8709]) +7 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][110] +17 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#5286])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#9197]) +8 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][117] +11 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190] / [i915#9197])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +34 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-9/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +14 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#10307] / [i915#6095]) +170 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +99 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +79 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#11616] / [i915#7213])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#7213]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4087]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#7828]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#7828]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_content_protection@content-type-change.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6944] / [i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3299])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][143] ([i915#7173])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#8814]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#11453] / [i915#3359])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#11453] / [i915#3359])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#11453] / [i915#3359])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3555]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][149] +17 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4103] / [i915#4213])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#4103])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4103] / [i915#4213])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#4103])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#4213])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: NOTRUN -> [FAIL][155] ([i915#2346])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3804])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3469])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#1839])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#1839])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#1839])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#1839])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#9337])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#658])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3637])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#8381])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8381])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#9934]) +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3637]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-rkl: [PASS][173] -> [FAIL][174] ([i915#2122]) +2 other tests fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][175] ([i915#11961])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-vga1:
- shard-snb: [PASS][176] -> [FAIL][177] ([i915#2122]) +13 other tests fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-vga1.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-vga1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#2122]) +4 other tests fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][180] ([i915#2122])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2:
- shard-rkl: [PASS][181] -> [FAIL][182] ([i915#11989])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check:
- shard-dg1: [PASS][183] -> [FAIL][184] ([i915#12457] / [i915#2122])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-16/igt@kms_flip@plain-flip-ts-check.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_flip@plain-flip-ts-check.html
- shard-mtlp: [PASS][185] -> [FAIL][186] ([i915#12457] / [i915#2122])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check@c-hdmi-a4:
- shard-dg1: [PASS][187] -> [FAIL][188] ([i915#2122]) +2 other tests fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-16/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html
* igt@kms_flip@plain-flip-ts-check@d-edp1:
- shard-mtlp: [PASS][189] -> [FAIL][190] ([i915#12457])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check@d-edp1.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check@d-edp1.html
* igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
- shard-tglu: [PASS][191] -> [FAIL][192] ([i915#2122]) +17 other tests fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-10/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-9/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-snb: [PASS][193] -> [FAIL][194] ([i915#10826] / [i915#2122]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb2/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1:
- shard-snb: [PASS][195] -> [FAIL][196] ([i915#10826]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#8813]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-dg2: [PASS][201] -> [SKIP][202] ([i915#3555]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][210] -> [SKIP][211] ([i915#5354]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8708]) +5 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#5354]) +38 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +19 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-snb: NOTRUN -> [SKIP][215] +37 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][216] +54 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#1825]) +8 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +21 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#1825]) +17 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10433] / [i915#3458])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8708]) +14 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][222] +47 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +12 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#3458]) +14 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#433])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#12339])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#12339])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#12388])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#12388])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#12388])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#12388])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-dg2: [PASS][235] -> [SKIP][236] ([i915#7294])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-1/igt@kms_plane_alpha_blend@constant-alpha-min.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9809]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][238] ([i915#8292])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-dg2: [PASS][239] -> [SKIP][240] ([i915#8152] / [i915#9423])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#8152])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#12247]) +13 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#9423])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#12247]) +5 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247]) +7 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#6953])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-dg2: [PASS][248] -> [SKIP][249] ([i915#6953] / [i915#8152] / [i915#9423])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-dg2: [PASS][250] -> [SKIP][251] ([i915#12247]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][252] -> [SKIP][253] ([i915#12247] / [i915#8152])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#3555] / [i915#9423])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#9685])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#9685])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9685])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-dg2: [PASS][258] -> [FAIL][259] ([i915#7330])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_pm_dc@dc9-dpms.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#9519])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][261] -> [SKIP][262] ([i915#9519]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3547])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +6 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#11520]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#9808])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#12316]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#11520]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#11520]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9688]) +9 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-1/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +19 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +20 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +9 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) +9 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@kms_psr@pr-dpms.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#11131] / [i915#4235] / [i915#5190])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][276] -> [FAIL][277] ([i915#5465]) +2 other tests fail
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb1/igt@kms_setmode@basic.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb6/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8809] / [i915#8823])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-snb: [PASS][279] -> [FAIL][280] ([IGT#2] / [i915#6493])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb6/igt@kms_sysfs_edid_timing.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb7/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed:
- shard-dg2: [PASS][281] -> [SKIP][282] ([i915#9197]) +19 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_universal_plane@universal-plane-pageflip-windowed.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_universal_plane@universal-plane-pageflip-windowed.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3555]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-2/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#11920])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-12/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#9906])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#9906])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#9906])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#9906])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#8808] / [i915#9906])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#2437])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#2437])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-2/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#2437])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#2436])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#2436])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#2434])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-13/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#2435])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#2433])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [PASS][298] -> [FAIL][299] ([i915#11943]) +1 other test fail
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [PASS][300] -> [FAIL][301] ([i915#11943]) +1 other test fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-15/igt@perf_pmu@most-busy-idle-check-all.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
- shard-mtlp: [PASS][302] -> [FAIL][303] ([i915#11943]) +1 other test fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@semaphore-busy:
- shard-mtlp: [PASS][304] -> [FAIL][305] ([i915#4349]) +1 other test fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-6/igt@perf_pmu@semaphore-busy.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-4/igt@perf_pmu@semaphore-busy.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3708] / [i915#4077])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#3708] / [i915#4077])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#3708] / [i915#4077]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#3291] / [i915#3708]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#3291] / [i915#3708])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-4/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#3708])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@fbdev@eof:
- shard-dg2: [SKIP][312] ([i915#2582]) -> [PASS][313] +2 other tests pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@fbdev@eof.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@fbdev@eof.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: [FAIL][314] ([i915#12031]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-10/igt@gem_ctx_engines@invalid-engines.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][316] ([i915#11980]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-8/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][318] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-10/igt@gem_eio@hibernate.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-3/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][320] ([i915#5784]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-18/igt@gem_eio@reset-stress.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][322] ([i915#2842]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@gem_exec_fair@basic-none@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [ABORT][324] ([i915#9820]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-rkl: [ABORT][326] ([i915#9820]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [ABORT][328] ([i915#9820]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][330] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][332] ([i915#3591]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][334] ([i915#7984]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-7/igt@i915_power@sanity.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-2/igt@i915_power@sanity.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][336] ([i915#5956]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_color@ctm-0-50:
- shard-dg1: [INCOMPLETE][338] -> [PASS][339] +1 other test pass
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-15/igt@kms_color@ctm-0-50.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-14/igt@kms_color@ctm-0-50.html
* igt@kms_color@ctm-0-50@pipe-b-edp-1:
- shard-mtlp: [FAIL][340] -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-8/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-6/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
* igt@kms_color@ctm-negative:
- shard-dg1: [DMESG-WARN][342] ([i915#4423]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-18/igt@kms_color@ctm-negative.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-16/igt@kms_color@ctm-negative.html
* igt@kms_color@degamma:
- shard-dg2: [SKIP][344] ([i915#5354]) -> [PASS][345] +11 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_color@degamma.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_color@degamma.html
* igt@kms_cursor_crc@cursor-random-256x256:
- shard-dg2: [SKIP][346] ([i915#9197]) -> [PASS][347] +37 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_cursor_crc@cursor-random-256x256.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@kms_cursor_crc@cursor-random-256x256.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [SKIP][348] ([i915#1849]) -> [PASS][349] +1 other test pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][350] ([i915#11961] / [i915#2122]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-vga1:
- shard-snb: [FAIL][352] ([i915#2122]) -> [PASS][353] +1 other test pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb6/igt@kms_flip@blocking-wf_vblank@a-vga1.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb5/igt@kms_flip@blocking-wf_vblank@a-vga1.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [FAIL][354] ([i915#2122]) -> [PASS][355] +4 other tests pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-mtlp: [INCOMPLETE][356] ([i915#6113]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][358] ([i915#2122]) -> [PASS][359] +4 other tests pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4:
- shard-dg1: [FAIL][360] ([i915#2122]) -> [PASS][361] +2 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2:
- shard-rkl: [FAIL][362] ([i915#11989]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [FAIL][364] ([i915#11989] / [i915#2122]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][366] -> [PASS][367] +6 other tests pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-dg2: [SKIP][368] ([i915#3555]) -> [PASS][369] +3 other tests pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_invalid_mode@bad-vsync-end.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: [SKIP][370] ([i915#8825]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-dg2: [SKIP][372] ([i915#7294]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [SKIP][374] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- shard-dg2: [SKIP][376] ([i915#8152]) -> [PASS][377] +4 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][378] ([i915#8152] / [i915#9423]) -> [PASS][379] +2 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-dg2: [SKIP][380] ([i915#12247]) -> [PASS][381] +14 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2: [SKIP][382] ([i915#9293]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][384] ([i915#9295]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][386] ([i915#4281]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][388] ([i915#9519]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][390] ([i915#9519]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: [SKIP][392] ([i915#9197]) -> [SKIP][393] +2 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][394] -> [SKIP][395] ([i915#9197]) +2 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][396] ([i915#4538] / [i915#5190]) -> [SKIP][397] ([i915#5190] / [i915#9197]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][398] ([i915#5190] / [i915#9197]) -> [SKIP][399] ([i915#4538] / [i915#5190]) +7 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][400] ([i915#5190] / [i915#9197]) -> [SKIP][401] ([i915#5190])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
- shard-dg2: [SKIP][402] ([i915#9197]) -> [SKIP][403] ([i915#10307] / [i915#6095]) +6 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
- shard-dg2: [SKIP][404] ([i915#10307] / [i915#6095]) -> [SKIP][405] ([i915#9197]) +3 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][406] ([i915#9197]) -> [SKIP][407] ([i915#12313]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][408] ([i915#12313]) -> [SKIP][409] ([i915#9197])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][410] ([i915#5354]) -> [SKIP][411] ([i915#3555])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_color@deep-color.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: [SKIP][412] ([i915#3299]) -> [SKIP][413] ([i915#9197])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][414] ([i915#7118]) -> [TIMEOUT][415] ([i915#7173])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-11/igt@kms_content_protection@srm.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: [SKIP][416] ([i915#9197]) -> [SKIP][417] ([i915#3555]) +2 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: [SKIP][418] ([i915#3555]) -> [SKIP][419] ([i915#9197]) +3 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: [SKIP][420] ([i915#9197]) -> [SKIP][421] ([i915#11453] / [i915#3359]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: [SKIP][422] ([i915#9197]) -> [SKIP][423] ([i915#5354]) +2 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: [SKIP][424] ([i915#5354]) -> [SKIP][425] ([i915#9197]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: [SKIP][426] ([i915#9197]) -> [SKIP][427] ([i915#4103] / [i915#4213])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][428] ([i915#9833]) -> [SKIP][429] ([i915#9197])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][430] ([i915#9197]) -> [SKIP][431] ([i915#12402])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: [SKIP][432] ([i915#9197]) -> [SKIP][433] ([i915#8812])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: [SKIP][434] ([i915#3555] / [i915#3840]) -> [SKIP][435] ([i915#9197])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][436] ([i915#9197]) -> [SKIP][437] ([i915#3555] / [i915#3840])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][438] ([i915#9197]) -> [SKIP][439] ([i915#4881])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_fence_pin_leak.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@kms_fence_pin_leak.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-dg2: [SKIP][440] ([i915#5354]) -> [FAIL][441] ([i915#2122])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][442] ([i915#3555]) -> [SKIP][443] ([i915#2672] / [i915#3555]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: [SKIP][444] ([i915#3555] / [i915#5190]) -> [SKIP][445] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: [SKIP][446] ([i915#2672] / [i915#3555]) -> [SKIP][447] ([i915#3555])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][448] ([i915#8708]) -> [SKIP][449] ([i915#5354]) +5 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][450] ([i915#5354]) -> [SKIP][451] ([i915#8708]) +9 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][452] ([i915#10433] / [i915#3458]) -> [SKIP][453] ([i915#5354])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][454] ([i915#3458]) -> [SKIP][455] ([i915#5354]) +6 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][456] ([i915#5354]) -> [SKIP][457] ([i915#3458]) +10 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][458] ([i915#3458]) -> [SKIP][459] ([i915#10433] / [i915#3458]) +3 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][460] ([i915#10055]) -> [SKIP][461] ([i915#5354])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15579/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[461]: https://intel-g
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11953/index.html
[-- Attachment #2: Type: text/html, Size: 108286 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects
2024-10-22 12:53 ` [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects Louis Chauvet
@ 2024-10-31 18:53 ` Kamil Konieczny
2024-11-08 22:38 ` Louis Chauvet
0 siblings, 1 reply; 18+ messages in thread
From: Kamil Konieczny @ 2024-10-31 18:53 UTC (permalink / raw)
To: igt-dev
Cc: Louis Chauvet, Mark Yacoub, Petri Latvala, Arkadiusz Hiler,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub, 20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
Hi Louis,
On 2024-10-22 at 14:53:10 +0200, Louis Chauvet wrote:
in you e-mail header I found in cc:
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com
Is it correct?
> Introduce the functions edid_from_monitor_edid() and
> get_edids_for_connector_type(). The former converts a monitor_edid object
> to a struct edid, which can then be utilized by igt_kms helpers. The
> latter returns a list of monitor_edid objects for a specific connector
> with certain characteristics
>
Add here to Cc developer e-mails, found with 'git blame', so +cc
Cc: Mark Yacoub <markyacoub@chromium.org>
Cc: Mark Yacoub <markyacoub@google.com>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> lib/monitor_edids/monitor_edids_helper.c | 61 +++++++++++++++++++++++++++++++-
> lib/monitor_edids/monitor_edids_helper.h | 5 +++
> 2 files changed, 65 insertions(+), 1 deletion(-)
>
> diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
> index 1cbf1c22f0bb..0e0c2a9badcf 100644
> --- a/lib/monitor_edids/monitor_edids_helper.c
> +++ b/lib/monitor_edids/monitor_edids_helper.c
> @@ -14,7 +14,10 @@
> #include <string.h>
> #include <assert.h>
>
> -#include "igt_core.h"
Nice! igt_core here could be an overkill.
> +#include "igt.h"
> +#include "igt_edid.h"
> +#include "dp_edids.h"
> +#include "hdmi_edids.h"
>
> static uint8_t convert_hex_char_to_byte(char c)
> {
> @@ -90,3 +93,59 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid)
> free(edid);
> edid = NULL;
> }
> +
Add description to each new lib function.
> +struct edid *edid_from_monitor_edid(const monitor_edid *mon_edid)
> +{
> + uint8_t *raw_edid;
> + size_t edid_size;
> + int i;
> +
> + edid_size = strlen(mon_edid->edid) / 2; /* each ascii is a nibble. */
> + raw_edid = malloc(edid_size);
> + igt_assert(raw_edid);
> +
> + for (i = 0; i < edid_size; i++) {
> + raw_edid[i] = convert_hex_char_to_byte(mon_edid->edid[i * 2]) << 4 |
> + convert_hex_char_to_byte(mon_edid->edid[i * 2 + 1]);
> + }
> +
> + if (edid_get_size((struct edid *)raw_edid) > edid_size) {
> + uint8_t *new_edid;
> +
> + igt_warn("The edid size stored in the raw edid is shorter than the edid stored in the table.");
Warn could result in test failure, why not igt_debug()?
> + new_edid = realloc(raw_edid, edid_get_size((struct edid *)raw_edid));
> + igt_assert(new_edid);
> + raw_edid = new_edid;
> + }
> +
> + return (struct edid *)raw_edid;
> +}
> +
Same here, add description.
> +struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k)
> +{
> + if (four_k) {
Do you really need function with 'bool' param?
Why not two functions, one for 4K display and second for non-4K-capable?
> + switch (type) {
> + case DRM_MODE_CONNECTOR_DisplayPort:
> + *count = ARRAY_SIZE(DP_EDIDS_4K);
> + return DP_EDIDS_4K;
instead of returning here, add
return *count;
at function end.
> + case DRM_MODE_CONNECTOR_HDMIA:
> + *count = ARRAY_SIZE(HDMI_EDIDS_4K);
> + return HDMI_EDIDS_4K;
> + default:
> + igt_assert_f(0, "No 4k EDID for the connector %s\n",
> + kmstest_connector_type_str(type));
> + }
> + } else {
> + switch (type) {
> + case DRM_MODE_CONNECTOR_DisplayPort:
> + *count = ARRAY_SIZE(DP_EDIDS_NON_4K);
> + return DP_EDIDS_NON_4K;
> + case DRM_MODE_CONNECTOR_HDMIA:
> + *count = ARRAY_SIZE(HDMI_EDIDS_NON_4K);
> + return HDMI_EDIDS_NON_4K;
> + default:
> + igt_assert_f(0, "No EDID for the connector %s\n",
> + kmstest_connector_type_str(type));
> + }
> + }
> +}
> diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
> index 05679f0897f3..2ec7aee5f13f 100644
> --- a/lib/monitor_edids/monitor_edids_helper.h
> +++ b/lib/monitor_edids/monitor_edids_helper.h
> @@ -12,6 +12,8 @@
> #define TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_
>
> #include <stdint.h>
> +#include <stddef.h>
> +#include <stdbool.h>
>
> #include "igt_chamelium.h"
>
> @@ -30,4 +32,7 @@ get_chameleon_edid_from_monitor_edid(struct chamelium *chamelium,
> const monitor_edid *edid);
> void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
>
> +struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
> +struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
> +
> #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
> \ No newline at end of file
Add newline.
Regards,
Kamil
>
> --
> 2.46.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name
2024-10-22 12:53 ` [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name Louis Chauvet
@ 2024-10-31 18:58 ` Kamil Konieczny
2024-11-08 22:38 ` Louis Chauvet
0 siblings, 1 reply; 18+ messages in thread
From: Kamil Konieczny @ 2024-10-31 18:58 UTC (permalink / raw)
To: igt-dev
Cc: Louis Chauvet, Mark Yacoub, Petri Latvala, Arkadiusz Hiler,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Hi Louis,
On 2024-10-22 at 14:53:11 +0200, Louis Chauvet wrote:
same here, in Cc you have:
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com
> For testing specific EDID, it is useful to be able to retrieve an EDID by
> a verbose name.
>
Add Mark here in Cc.
Cc: Mark Yacoub <markyacoub@chromium.org>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> lib/monitor_edids/dp_edids.h | 3 +++
> lib/monitor_edids/hdmi_edids.h | 3 +++
> lib/monitor_edids/monitor_edids_helper.c | 21 +++++++++++++++++++++
> lib/monitor_edids/monitor_edids_helper.h | 1 +
> 4 files changed, 28 insertions(+)
>
> diff --git a/lib/monitor_edids/dp_edids.h b/lib/monitor_edids/dp_edids.h
> index 144907558be1..d11a81d167fc 100644
> --- a/lib/monitor_edids/dp_edids.h
> +++ b/lib/monitor_edids/dp_edids.h
> @@ -194,4 +194,7 @@ monitor_edid DP_EDIDS_NON_4K[] = {
>
> };
>
> +const int DP_EDID_NON_4K_COUNT = ARRAY_SIZE(DP_EDIDS_NON_4K);
> +const int DP_EDID_4K_COUNT = ARRAY_SIZE(DP_EDIDS_4K);
> +
> #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_DP_EDIDS_H_ */
> diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
> index 9d75cfa989b6..573e2149d5d3 100644
> --- a/lib/monitor_edids/hdmi_edids.h
> +++ b/lib/monitor_edids/hdmi_edids.h
> @@ -604,4 +604,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
> "1620582c2500baac4200009e0000006b" },
> };
>
> +const int HDMI_EDID_4K_COUNT = ARRAY_SIZE(HDMI_EDIDS_4K);
> +const int HDMI_EDID_NON_4K_COUNT = ARRAY_SIZE(HDMI_EDIDS_NON_4K);
> +
imho better make it a #define
> #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_HDMI_EDIDS_H_ */
> diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
> index 0e0c2a9badcf..0f92ced64d06 100644
> --- a/lib/monitor_edids/monitor_edids_helper.c
> +++ b/lib/monitor_edids/monitor_edids_helper.c
> @@ -19,6 +19,16 @@
> #include "dp_edids.h"
> #include "hdmi_edids.h"
>
> +struct {
> + struct monitor_edid *edid_list;
> + int list_size;
> +} ALL_EDIDS[] = {
> + {DP_EDIDS_NON_4K, DP_EDID_NON_4K_COUNT},
> + {DP_EDIDS_4K, DP_EDID_4K_COUNT},
> + {HDMI_EDIDS_NON_4K, HDMI_EDID_NON_4K_COUNT},
> + {HDMI_EDIDS_4K, HDMI_EDID_4K_COUNT},
> +};
> +
> static uint8_t convert_hex_char_to_byte(char c)
> {
> if (c >= '0' && c <= '9')
> @@ -149,3 +159,14 @@ struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count,
> }
> }
> }
> +
Add description.
> +struct edid *get_edid_by_name(char *name)
> +{
> + for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) {
> + for (int j = 0; j < ALL_EDIDS[i].list_size; j++) {
> + if (strcmp(ALL_EDIDS[i].edid_list[j].name, name) == 0)
> + return edid_from_monitor_edid(&ALL_EDIDS[i].edid_list[j]);
> + }
> + }
Add newline.
> + return NULL;
> +}
> diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
> index 2ec7aee5f13f..cd0e5a7b2645 100644
> --- a/lib/monitor_edids/monitor_edids_helper.h
> +++ b/lib/monitor_edids/monitor_edids_helper.h
> @@ -34,5 +34,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
>
> struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
> struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
> +struct edid *get_edid_by_name(char *name);
>
> #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
> \ No newline at end of file
Add newline.
Regards,
Kamil
>
> --
> 2.46.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 4/5] lib/monitor_edids: Fix missing names in some monitor EDID
2024-10-22 12:53 ` [PATCH i-g-t v2 4/5] lib/monitor_edids: Fix missing names in some monitor EDID Louis Chauvet
@ 2024-10-31 19:00 ` Kamil Konieczny
0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2024-10-31 19:00 UTC (permalink / raw)
To: igt-dev
Cc: Louis Chauvet, Petri Latvala, Arkadiusz Hiler,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Hi Louis,
On 2024-10-22 at 14:53:13 +0200, Louis Chauvet wrote:
> Some HDMI EDID did not have a good name identifier. Add one to avoid
> confusion.
>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/monitor_edids/hdmi_edids.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
> index 573e2149d5d3..8bcd1f31b458 100644
> --- a/lib/monitor_edids/hdmi_edids.h
> +++ b/lib/monitor_edids/hdmi_edids.h
> @@ -241,7 +241,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
> "33333633493056465320000000fc0044"
> "454c4c20323430354650570a000000fd"
> "00384c1e5111000a20202020202000e9" },
> - { .name = "`",
> + { .name = "DEL_DELL_2407WFP_HDMI",
> .edid = "00ffffffffffff0010ac17a053575930"
> "0511010380342178eeee91a3544c9926"
> "0f5054a54b008180a940714fb3000101"
> @@ -438,7 +438,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
> "60350000003200001c011d8018711c16"
> "20582c2500c48e2100009e0000000000"
> "0000000000000000000000000000000a" },
> - { .name = "",
> + { .name = "GSM_50294_M3704C_HDMI",
> .edid = "00ffffffffffff001e6d76c401010101"
> "2514010380522e78eaac27a355499b25"
> "10474aa1080081807140614045403140"
> @@ -490,7 +490,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
> "5011000a202020202020000000fc0048"
> "50205a5232343430770a2020000000ff"
> "00434e34333132303836580a2020007f" },
> - { .name = "",
> + { .name = "HWP_10582_HP_ZR2440w_HDMI",
> .edid = "00ffffffffffff0022f0562901010101"
> "0b170103803420782afc81a4554d9d25"
> "125054210800d1c081c0814081809500"
>
> --
> 2.46.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 5/5] lib/monitor_edids: Add new EDID for HDMI 4k
2024-10-22 12:53 ` [PATCH i-g-t v2 5/5] lib/monitor_edids: Add new EDID for HDMI 4k Louis Chauvet
@ 2024-10-31 19:01 ` Kamil Konieczny
0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2024-10-31 19:01 UTC (permalink / raw)
To: igt-dev
Cc: Louis Chauvet, Petri Latvala, Arkadiusz Hiler,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Hi Louis,
On 2024-10-22 at 14:53:14 +0200, Louis Chauvet wrote:
> Add EDID for the HDMI screen LG HDR 4K.
>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/monitor_edids/hdmi_edids.h | 18 +++++++++++++++++-
> 1 file changed, 17 insertions(+), 1 deletion(-)
>
> diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
> index 8bcd1f31b458..cc6820d96231 100644
> --- a/lib/monitor_edids/hdmi_edids.h
> +++ b/lib/monitor_edids/hdmi_edids.h
> @@ -49,7 +49,23 @@ monitor_edid HDMI_EDIDS_4K[] = {
> "5E00A0A0A0295030203500C48F210000"
> "1EEF5100A0F070198030203500C48F21"
> "00001E000000000000000000000000A8" },
> -
> + { .name = "4K_GSM_LG_HDR_4K_HDMI",
> + .edid = "00ffffffffffff001e6d4f77c75f1500"
> + "0521010380462878ea7ba1ae4f44a926"
> + "0c5054210800d1c06140454001010101"
> + "010101010101a0cb0046f0703e802010"
> + "3500b9882100001a000000fd00283c1e"
> + "873c000a202020202020000000fc004c"
> + "472048445220344b0a202020000000ff"
> + "003330354d414e4a43335a37350a01e4"
> + "0203427223090707830100004d010304"
> + "10121f202261605f5e5d6d030c001000"
> + "b83c20006001020367d85dc401788003"
> + "e30f0003e2006ae305c000e606050159"
> + "5952a36600a0f0701f8030203500b988"
> + "2100001a565e00a0a0a0295030203500"
> + "b9882100001a023a801871382d40582c"
> + "4500b9882100001a00000000000000af" },
> };
>
> monitor_edid HDMI_EDIDS_NON_4K[] = {
>
> --
> 2.46.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names
2024-10-22 12:53 ` [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names Louis Chauvet
@ 2024-10-31 19:04 ` Kamil Konieczny
2024-11-08 22:38 ` Louis Chauvet
0 siblings, 1 reply; 18+ messages in thread
From: Kamil Konieczny @ 2024-10-31 19:04 UTC (permalink / raw)
To: igt-dev
Cc: Louis Chauvet, Petri Latvala, Arkadiusz Hiler,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
Hi Louis,
On 2024-10-22 at 14:53:12 +0200, Louis Chauvet wrote:
> During the chamelium v3 configuration, it may be required to know the list
> of supported EDID names, so add an helper to print them.
>
> Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> lib/monitor_edids/monitor_edids_helper.c | 10 ++++++++++
> lib/monitor_edids/monitor_edids_helper.h | 2 ++
> 2 files changed, 12 insertions(+)
>
> diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
> index 0f92ced64d06..ca2f5006eada 100644
> --- a/lib/monitor_edids/monitor_edids_helper.c
> +++ b/lib/monitor_edids/monitor_edids_helper.c
> @@ -170,3 +170,13 @@ struct edid *get_edid_by_name(char *name)
> }
> return NULL;
> }
> +
Add description.
> +void list_edid_names(enum igt_log_level level)
> +{
> + for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) {
> + for (int j = 0; j < ALL_EDIDS[i].list_size; j++) {
> + igt_log(IGT_LOG_DOMAIN, level, " - \"%s\"\n",
> + ALL_EDIDS[i].edid_list[j].name);
> + }
> + }
> +}
> diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
> index cd0e5a7b2645..50b08530826a 100644
> --- a/lib/monitor_edids/monitor_edids_helper.h
> +++ b/lib/monitor_edids/monitor_edids_helper.h
> @@ -15,6 +15,7 @@
> #include <stddef.h>
> #include <stdbool.h>
>
> +#include "igt_core.h"
And now it returns... Why not make this a first patch?
> #include "igt_chamelium.h"
>
> /* Max Length can be increased as needed, when new EDIDs are added. */
> @@ -35,5 +36,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
> struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
> struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
> struct edid *get_edid_by_name(char *name);
> +void list_edid_names(enum igt_log_level level);
>
> #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
> \ No newline at end of file
Add newline.
Regards,
Kamil
>
> --
> 2.46.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects
2024-10-31 18:53 ` Kamil Konieczny
@ 2024-11-08 22:38 ` Louis Chauvet
0 siblings, 0 replies; 18+ messages in thread
From: Louis Chauvet @ 2024-11-08 22:38 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Mark Yacoub, Petri Latvala,
Arkadiusz Hiler, Juha-Pekka Heikkila, Bhanuprakash Modem,
Ashutosh Dixit, Thomas Petazzoni, nicolejadeyee, seanpaul,
jeremie.dautheribes, markyacoub,
20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513
On 31/10/24 - 19:53, Kamil Konieczny wrote:
> Hi Louis,
> On 2024-10-22 at 14:53:10 +0200, Louis Chauvet wrote:
>
> in you e-mail header I found in cc:
>
> 20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com
>
> Is it correct?
It is a bug in b4, I will check if my fix was merged.
> > Introduce the functions edid_from_monitor_edid() and
> > get_edids_for_connector_type(). The former converts a monitor_edid object
> > to a struct edid, which can then be utilized by igt_kms helpers. The
> > latter returns a list of monitor_edid objects for a specific connector
> > with certain characteristics
> >
>
> Add here to Cc developer e-mails, found with 'git blame', so +cc
>
> Cc: Mark Yacoub <markyacoub@chromium.org>
> Cc: Mark Yacoub <markyacoub@google.com>
He is already in my cover, I will ensure fthat he is in the CC for the v2,
sorry.
> > Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> > ---
> > lib/monitor_edids/monitor_edids_helper.c | 61 +++++++++++++++++++++++++++++++-
> > lib/monitor_edids/monitor_edids_helper.h | 5 +++
> > 2 files changed, 65 insertions(+), 1 deletion(-)
> >
> > diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
> > index 1cbf1c22f0bb..0e0c2a9badcf 100644
> > --- a/lib/monitor_edids/monitor_edids_helper.c
> > +++ b/lib/monitor_edids/monitor_edids_helper.c
> > @@ -14,7 +14,10 @@
> > #include <string.h>
> > #include <assert.h>
> >
> > -#include "igt_core.h"
>
> Nice! igt_core here could be an overkill.
>
> > +#include "igt.h"
> > +#include "igt_edid.h"
> > +#include "dp_edids.h"
> > +#include "hdmi_edids.h"
> >
> > static uint8_t convert_hex_char_to_byte(char c)
> > {
> > @@ -90,3 +93,59 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid)
> > free(edid);
> > edid = NULL;
> > }
> > +
>
> Add description to each new lib function.
>
> > +struct edid *edid_from_monitor_edid(const monitor_edid *mon_edid)
> > +{
> > + uint8_t *raw_edid;
> > + size_t edid_size;
> > + int i;
> > +
> > + edid_size = strlen(mon_edid->edid) / 2; /* each ascii is a nibble. */
> > + raw_edid = malloc(edid_size);
> > + igt_assert(raw_edid);
> > +
> > + for (i = 0; i < edid_size; i++) {
> > + raw_edid[i] = convert_hex_char_to_byte(mon_edid->edid[i * 2]) << 4 |
> > + convert_hex_char_to_byte(mon_edid->edid[i * 2 + 1]);
> > + }
> > +
> > + if (edid_get_size((struct edid *)raw_edid) > edid_size) {
> > + uint8_t *new_edid;
> > +
> > + igt_warn("The edid size stored in the raw edid is shorter than the edid stored in the table.");
>
> Warn could result in test failure, why not igt_debug()?
Because I tought it was the log level, and in this case it seems important
to signal this issue.
There is nothing higher than debug for this kind of informations?
> > + new_edid = realloc(raw_edid, edid_get_size((struct edid *)raw_edid));
> > + igt_assert(new_edid);
> > + raw_edid = new_edid;
> > + }
> > +
> > + return (struct edid *)raw_edid;
> > +}
> > +
>
> Same here, add description.
>
> > +struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k)
> > +{
> > + if (four_k) {
>
> Do you really need function with 'bool' param?
> Why not two functions, one for 4K display and second for non-4K-capable?
For my first implementation of chamelium tests, it was more practical to
have a boolean parameter than two different function.
I can change it for the v2 if you prefer, but having a bool may avoid this
kind of code in tests:
if (data->test_4k)
edid = get4k(...);
else
edid = getnon4k(...);
> > + switch (type) {
> > + case DRM_MODE_CONNECTOR_DisplayPort:
> > + *count = ARRAY_SIZE(DP_EDIDS_4K);
> > + return DP_EDIDS_4K;
>
> instead of returning here, add
>
> return *count;
>
> at function end.
I am not sure to follow you, this function return a pointer to an array,
not the size.
> > + case DRM_MODE_CONNECTOR_HDMIA:
> > + *count = ARRAY_SIZE(HDMI_EDIDS_4K);
> > + return HDMI_EDIDS_4K;
> > + default:
> > + igt_assert_f(0, "No 4k EDID for the connector %s\n",
> > + kmstest_connector_type_str(type));
For the v2 I will also replace this igt_assert_f with a igt_debug + return
NULL.
> > + }
> > + } else {
> > + switch (type) {
> > + case DRM_MODE_CONNECTOR_DisplayPort:
> > + *count = ARRAY_SIZE(DP_EDIDS_NON_4K);
> > + return DP_EDIDS_NON_4K;
> > + case DRM_MODE_CONNECTOR_HDMIA:
> > + *count = ARRAY_SIZE(HDMI_EDIDS_NON_4K);
> > + return HDMI_EDIDS_NON_4K;
> > + default:
> > + igt_assert_f(0, "No EDID for the connector %s\n",
> > + kmstest_connector_type_str(type));
> > + }
> > + }
> > +}
> > diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
> > index 05679f0897f3..2ec7aee5f13f 100644
> > --- a/lib/monitor_edids/monitor_edids_helper.h
> > +++ b/lib/monitor_edids/monitor_edids_helper.h
> > @@ -12,6 +12,8 @@
> > #define TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_
> >
> > #include <stdint.h>
> > +#include <stddef.h>
> > +#include <stdbool.h>
> >
> > #include "igt_chamelium.h"
> >
> > @@ -30,4 +32,7 @@ get_chameleon_edid_from_monitor_edid(struct chamelium *chamelium,
> > const monitor_edid *edid);
> > void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
> >
> > +struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
> > +struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
> > +
> > #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
> > \ No newline at end of file
>
> Add newline.
>
> Regards,
> Kamil
>
> >
> > --
> > 2.46.2
> >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name
2024-10-31 18:58 ` Kamil Konieczny
@ 2024-11-08 22:38 ` Louis Chauvet
0 siblings, 0 replies; 18+ messages in thread
From: Louis Chauvet @ 2024-11-08 22:38 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Mark Yacoub, Petri Latvala,
Arkadiusz Hiler, Juha-Pekka Heikkila, Bhanuprakash Modem,
Ashutosh Dixit, Thomas Petazzoni, nicolejadeyee, seanpaul,
jeremie.dautheribes, markyacoub
On 31/10/24 - 19:58, Kamil Konieczny wrote:
> Hi Louis,
> On 2024-10-22 at 14:53:11 +0200, Louis Chauvet wrote:
>
> same here, in Cc you have:
>
> 20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513@bootlin.com
>
> > For testing specific EDID, it is useful to be able to retrieve an EDID by
> > a verbose name.
> >
>
> Add Mark here in Cc.
>
> Cc: Mark Yacoub <markyacoub@chromium.org>
>
> > Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> > ---
> > lib/monitor_edids/dp_edids.h | 3 +++
> > lib/monitor_edids/hdmi_edids.h | 3 +++
> > lib/monitor_edids/monitor_edids_helper.c | 21 +++++++++++++++++++++
> > lib/monitor_edids/monitor_edids_helper.h | 1 +
> > 4 files changed, 28 insertions(+)
> >
> > diff --git a/lib/monitor_edids/dp_edids.h b/lib/monitor_edids/dp_edids.h
> > index 144907558be1..d11a81d167fc 100644
> > --- a/lib/monitor_edids/dp_edids.h
> > +++ b/lib/monitor_edids/dp_edids.h
> > @@ -194,4 +194,7 @@ monitor_edid DP_EDIDS_NON_4K[] = {
> >
> > };
> >
> > +const int DP_EDID_NON_4K_COUNT = ARRAY_SIZE(DP_EDIDS_NON_4K);
> > +const int DP_EDID_4K_COUNT = ARRAY_SIZE(DP_EDIDS_4K);
> > +
> > #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_DP_EDIDS_H_ */
> > diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h
> > index 9d75cfa989b6..573e2149d5d3 100644
> > --- a/lib/monitor_edids/hdmi_edids.h
> > +++ b/lib/monitor_edids/hdmi_edids.h
> > @@ -604,4 +604,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = {
> > "1620582c2500baac4200009e0000006b" },
> > };
> >
> > +const int HDMI_EDID_4K_COUNT = ARRAY_SIZE(HDMI_EDIDS_4K);
> > +const int HDMI_EDID_NON_4K_COUNT = ARRAY_SIZE(HDMI_EDIDS_NON_4K);
> > +
>
> imho better make it a #define
Will do for v2.
What is the reason to use define over const int?
> > #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_HDMI_EDIDS_H_ */
> > diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
> > index 0e0c2a9badcf..0f92ced64d06 100644
> > --- a/lib/monitor_edids/monitor_edids_helper.c
> > +++ b/lib/monitor_edids/monitor_edids_helper.c
> > @@ -19,6 +19,16 @@
> > #include "dp_edids.h"
> > #include "hdmi_edids.h"
> >
> > +struct {
> > + struct monitor_edid *edid_list;
> > + int list_size;
> > +} ALL_EDIDS[] = {
> > + {DP_EDIDS_NON_4K, DP_EDID_NON_4K_COUNT},
> > + {DP_EDIDS_4K, DP_EDID_4K_COUNT},
> > + {HDMI_EDIDS_NON_4K, HDMI_EDID_NON_4K_COUNT},
> > + {HDMI_EDIDS_4K, HDMI_EDID_4K_COUNT},
> > +};
> > +
> > static uint8_t convert_hex_char_to_byte(char c)
> > {
> > if (c >= '0' && c <= '9')
> > @@ -149,3 +159,14 @@ struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count,
> > }
> > }
> > }
> > +
>
> Add description.
>
> > +struct edid *get_edid_by_name(char *name)
> > +{
> > + for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) {
> > + for (int j = 0; j < ALL_EDIDS[i].list_size; j++) {
> > + if (strcmp(ALL_EDIDS[i].edid_list[j].name, name) == 0)
> > + return edid_from_monitor_edid(&ALL_EDIDS[i].edid_list[j]);
> > + }
> > + }
>
> Add newline.
>
> > + return NULL;
> > +}
> > diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
> > index 2ec7aee5f13f..cd0e5a7b2645 100644
> > --- a/lib/monitor_edids/monitor_edids_helper.h
> > +++ b/lib/monitor_edids/monitor_edids_helper.h
> > @@ -34,5 +34,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
> >
> > struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
> > struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
> > +struct edid *get_edid_by_name(char *name);
> >
> > #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
> > \ No newline at end of file
>
> Add newline.
>
> Regards,
> Kamil
>
> >
> > --
> > 2.46.2
> >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names
2024-10-31 19:04 ` Kamil Konieczny
@ 2024-11-08 22:38 ` Louis Chauvet
0 siblings, 0 replies; 18+ messages in thread
From: Louis Chauvet @ 2024-11-08 22:38 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Petri Latvala, Arkadiusz Hiler,
Juha-Pekka Heikkila, Bhanuprakash Modem, Ashutosh Dixit,
Thomas Petazzoni, nicolejadeyee, seanpaul, jeremie.dautheribes,
markyacoub
On 31/10/24 - 20:04, Kamil Konieczny wrote:
> Hi Louis,
> On 2024-10-22 at 14:53:12 +0200, Louis Chauvet wrote:
> > During the chamelium v3 configuration, it may be required to know the list
> > of supported EDID names, so add an helper to print them.
> >
> > Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
> > ---
> > lib/monitor_edids/monitor_edids_helper.c | 10 ++++++++++
> > lib/monitor_edids/monitor_edids_helper.h | 2 ++
> > 2 files changed, 12 insertions(+)
> >
> > diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c
> > index 0f92ced64d06..ca2f5006eada 100644
> > --- a/lib/monitor_edids/monitor_edids_helper.c
> > +++ b/lib/monitor_edids/monitor_edids_helper.c
> > @@ -170,3 +170,13 @@ struct edid *get_edid_by_name(char *name)
> > }
> > return NULL;
> > }
> > +
>
> Add description.
>
> > +void list_edid_names(enum igt_log_level level)
> > +{
> > + for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) {
> > + for (int j = 0; j < ALL_EDIDS[i].list_size; j++) {
> > + igt_log(IGT_LOG_DOMAIN, level, " - \"%s\"\n",
> > + ALL_EDIDS[i].edid_list[j].name);
> > + }
> > + }
> > +}
> > diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h
> > index cd0e5a7b2645..50b08530826a 100644
> > --- a/lib/monitor_edids/monitor_edids_helper.h
> > +++ b/lib/monitor_edids/monitor_edids_helper.h
> > @@ -15,6 +15,7 @@
> > #include <stddef.h>
> > #include <stdbool.h>
> >
> > +#include "igt_core.h"
>
> And now it returns... Why not make this a first patch?
Because I did some cleanup on the first patch to avoid useless dependency,
but now I need igt_log_level and igt_log... You are right, I will not
remove it on the first patch.
> > #include "igt_chamelium.h"
> >
> > /* Max Length can be increased as needed, when new EDIDs are added. */
> > @@ -35,5 +36,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid);
> > struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid);
> > struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k);
> > struct edid *get_edid_by_name(char *name);
> > +void list_edid_names(enum igt_log_level level);
> >
> > #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */
> > \ No newline at end of file
>
> Add newline.
>
> Regards,
> Kamil
> >
> > --
> > 2.46.2
> >
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2024-11-08 22:38 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-22 12:53 [PATCH i-g-t v2 0/5] lib/igt_kms: Helpers for monitor edid managment Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects Louis Chauvet
2024-10-31 18:53 ` Kamil Konieczny
2024-11-08 22:38 ` Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 2/5] lib/monitor_edids: Add helper to get an EDID by its name Louis Chauvet
2024-10-31 18:58 ` Kamil Konieczny
2024-11-08 22:38 ` Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 3/5] lib/monitor_edids: Add helper to print all available EDID names Louis Chauvet
2024-10-31 19:04 ` Kamil Konieczny
2024-11-08 22:38 ` Louis Chauvet
2024-10-22 12:53 ` [PATCH i-g-t v2 4/5] lib/monitor_edids: Fix missing names in some monitor EDID Louis Chauvet
2024-10-31 19:00 ` Kamil Konieczny
2024-10-22 12:53 ` [PATCH i-g-t v2 5/5] lib/monitor_edids: Add new EDID for HDMI 4k Louis Chauvet
2024-10-31 19:01 ` Kamil Konieczny
2024-10-22 17:44 ` ✓ Fi.CI.BAT: success for lib/igt_kms: Helpers for monitor edid managment (rev2) Patchwork
2024-10-22 18:16 ` ✓ CI.xeBAT: " Patchwork
2024-10-22 22:10 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-22 23:54 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox