All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test
@ 2023-08-03  5:06 Riana Tauro
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  5:06 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar

1) Modify igt_pm d3cold_allowed get/set tests
2) Change i915 suspend and xe pm tests to use the igt_pm
   d3cold_allowed functions
3) Add a test to validate residency across s2idle

Riana Tauro (4):
  lib/igt_device: Add a function to get the pci slot name
  lib/igt_pm: change d3cold_allowed function parameters
  tests/xe: use igt_pm library functions
  tests/xe: Add a test that validates residency during s2idle

 lib/igt_device.c           | 20 ++++++++++++++
 lib/igt_device.h           |  1 +
 lib/igt_pm.c               | 22 ++++++++--------
 lib/igt_pm.h               |  4 +--
 tests/i915/i915_suspend.c  |  8 +++---
 tests/xe/xe_pm.c           | 43 +++++-------------------------
 tests/xe/xe_pm_residency.c | 54 ++++++++++++++++++++++++++++++++++----
 7 files changed, 94 insertions(+), 58 deletions(-)

-- 
2.40.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
@ 2023-08-03  5:06 ` Riana Tauro
  2023-08-03  6:44   ` Gupta, Anshuman
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  5:06 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar

Add a function that gets the pci slot name of the pci
device

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
 lib/igt_device.c | 20 ++++++++++++++++++++
 lib/igt_device.h |  1 +
 2 files changed, 21 insertions(+)

diff --git a/lib/igt_device.c b/lib/igt_device.c
index 49b771221..ffb3f56ce 100644
--- a/lib/igt_device.c
+++ b/lib/igt_device.c
@@ -23,6 +23,7 @@
  */
 #include <sys/types.h>
 #include <fcntl.h>
+#include <limits.h>
 
 #include <sys/stat.h>
 #ifdef __linux__
@@ -287,3 +288,22 @@ igt_device_get_pci_root_port(int fd)
 
 	return prev;
 }
+
+/**
+ * igt_device_get_pci_slot_name:
+ * @fd: the device.
+ * @pci_slot_name: pci slot name
+ *
+ * Looks up the graphics pci device using libpciaccess
+ * and gets the slot name
+ */
+void igt_device_get_pci_slot_name(int fd, char *pci_slot_name)
+{
+	struct pci_device *pci_dev;
+
+	pci_dev = __igt_device_get_pci_device(fd, 0);
+	igt_require(pci_dev);
+
+	snprintf(pci_slot_name, NAME_MAX, "%04x:%02x:%02x.%01x",
+		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+}
diff --git a/lib/igt_device.h b/lib/igt_device.h
index 800a0fcc3..dad7bb047 100644
--- a/lib/igt_device.h
+++ b/lib/igt_device.h
@@ -36,4 +36,5 @@ struct pci_device *igt_device_get_pci_device(int fd);
 struct pci_device *__igt_device_get_pci_device(int fd, unsigned int vf_id);
 struct pci_device *igt_device_get_pci_root_port(int fd);
 
+void igt_device_get_pci_slot_name(int fd, char *pci_slot_name);
 #endif /* __IGT_DEVICE_H__ */
-- 
2.40.0

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro
@ 2023-08-03  5:06 ` Riana Tauro
  2023-08-03  7:07   ` Gupta, Anshuman
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 3/4] tests/xe: use igt_pm library functions Riana Tauro
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  5:06 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar

Change function parameter of d3cold_allowed get/set functions
to pci slot name. Change the data type from char to uint32_t
as it is more appropriate.

This change is done so that both xe tests and i915 test can
use the same library function.
Modify i915_suspend to use these functions.
No Functional Changes.

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
 lib/igt_pm.c              | 22 +++++++++++-----------
 lib/igt_pm.h              |  4 ++--
 tests/i915/i915_suspend.c |  8 ++++----
 3 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index ba591f0f8..11cf82950 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -1204,47 +1204,47 @@ void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev)
 
 /**
  * igt_pm_get_d3cold_allowed:
- * @igt_device_card: device card
- * @val: value to be read into
+ * @pci_slot_name: slot name of the pci device
+ * @value: value to be read into
  *
  * Reads the value of d3cold_allowed attribute
  * of the pci device
  */
-void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val)
+void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t *value)
 {
 	char name[PATH_MAX];
 	int fd;
 
 	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
-		 card->pci_slot_name);
+		 pci_slot_name);
 
 	fd = open(name, O_RDONLY);
 	igt_assert_f(fd >= 0, "Can't open %s\n", name);
 
-	igt_sysfs_read(fd, "d3cold_allowed", val, sizeof(val));
+	__igt_sysfs_get_u32(fd, "d3cold_allowed", value);
 
 	close(fd);
 }
 
 /**
- * igt_pm_get_d3cold_allowed:
- * @igt_device_card: device card
- * @val: value to be written
+ * igt_pm_set_d3cold_allowed:
+ * @pci_slot_name: slot name of pci device
+ * @value: value to be written
  *
  * writes the value to d3cold_allowed attribute of pci device
  */
-void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char *val)
+void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t value)
 {
 	char name[PATH_MAX];
 	int fd;
 
 	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
-		 card->pci_slot_name);
+		 pci_slot_name);
 
 	fd = open(name, O_RDONLY);
 	igt_assert_f(fd >= 0, "Can't open %s\n", name);
 
-	igt_sysfs_write(fd, "d3cold_allowed", val, sizeof(val));
+	__igt_sysfs_set_u32(fd, "d3cold_allowed", value);
 	close(fd);
 }
 
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index 71ec2f239..306a9eb46 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -79,8 +79,8 @@ enum igt_acpi_d_state
 igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev);
 void igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
 				       struct pci_device *i915);
-void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val);
-void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char *val);
+void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t *value);
+void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t value);
 void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev);
 void igt_pm_restore_pci_card_runtime_pm(void);
 void igt_pm_print_pci_card_runtime_status(void);
diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c
index 851e797c2..c25805584 100644
--- a/tests/i915/i915_suspend.c
+++ b/tests/i915/i915_suspend.c
@@ -283,7 +283,7 @@ static void
 test_suspend_without_i915(int state)
 {
 	struct igt_device_card card;
-	char d3cold_allowed[2];
+	uint32_t d3cold_allowed;
 	int fd;
 
 	fd = __drm_open_driver(DRIVER_INTEL);
@@ -297,8 +297,8 @@ test_suspend_without_i915(int state)
 	 */
 	if (state == SUSPEND_STATE_FREEZE &&
 	    igt_device_find_first_i915_discrete_card(&card)) {
-		igt_pm_get_d3cold_allowed(&card, d3cold_allowed);
-		igt_pm_set_d3cold_allowed(&card, "0\n");
+		igt_pm_get_d3cold_allowed(card.pci_slot_name, &d3cold_allowed);
+		igt_pm_set_d3cold_allowed(card.pci_slot_name, 0);
 	}
 	drm_close_driver(fd);
 
@@ -308,7 +308,7 @@ test_suspend_without_i915(int state)
 	igt_system_suspend_autoresume(state, SUSPEND_TEST_NONE);
 
 	if (state == SUSPEND_STATE_FREEZE && strlen(card.card))
-		igt_pm_set_d3cold_allowed(&card, d3cold_allowed);
+		igt_pm_set_d3cold_allowed(card.pci_slot_name, d3cold_allowed);
 
 	igt_kmsg(KMSG_INFO "Re-loading i915 \n");
 	igt_assert_eq(igt_i915_driver_load(NULL), 0);
-- 
2.40.0

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [PATCH i-g-t 3/4] tests/xe: use igt_pm library functions
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro
@ 2023-08-03  5:06 ` Riana Tauro
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  5:06 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar

Modify xe_pm tests to use the d3cold_allowed get/set functions
from igt_pm library.

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
 tests/xe/xe_pm.c | 43 +++++++------------------------------------
 1 file changed, 7 insertions(+), 36 deletions(-)

diff --git a/tests/xe/xe_pm.c b/tests/xe/xe_pm.c
index 559eccdeb..4b0c07098 100644
--- a/tests/xe/xe_pm.c
+++ b/tests/xe/xe_pm.c
@@ -33,6 +33,7 @@ typedef struct {
 	int fd_xe;
 	struct pci_device *pci_xe;
 	struct pci_device *pci_root;
+	char pci_slot_name[NAME_MAX];
 } device_t;
 
 /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */
@@ -44,47 +45,16 @@ static bool runtime_usage_available(struct pci_device *pci)
 	return access(name, F_OK) == 0;
 }
 
-static int open_d3cold_allowed(struct pci_device *pci)
-{
-	char name[PATH_MAX];
-	int fd;
-
-	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/d3cold_allowed",
-		 pci->domain, pci->bus, pci->dev, pci->func);
-
-	fd = open(name, O_RDWR);
-	igt_assert_f(fd >= 0, "Can't open %s\n", name);
-
-	return fd;
-}
-
-static void get_d3cold_allowed(struct pci_device *pci, char *d3cold_allowed)
-{
-	int fd = open_d3cold_allowed(pci);
-
-	igt_assert(read(fd, d3cold_allowed, 2));
-	close(fd);
-}
-
-static void set_d3cold_allowed(struct pci_device *pci,
-			       const char *d3cold_allowed)
-{
-	int fd = open_d3cold_allowed(pci);
-
-	igt_assert(write(fd, d3cold_allowed, 2));
-	close(fd);
-}
-
 static bool setup_d3(device_t device, enum igt_acpi_d_state state)
 {
 	switch (state) {
 	case IGT_ACPI_D3Cold:
 		igt_require(igt_pm_acpi_d3cold_supported(device.pci_root));
 		igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL);
-		set_d3cold_allowed(device.pci_xe, "1\n");
+		igt_pm_set_d3cold_allowed(device.pci_slot_name, 1);
 		return true;
 	case IGT_ACPI_D3Hot:
-		set_d3cold_allowed(device.pci_xe, "0\n");
+		igt_pm_set_d3cold_allowed(device.pci_slot_name, 0);
 		return true;
 	default:
 		igt_debug("Invalid D3 Selection\n");
@@ -350,7 +320,7 @@ igt_main
 {
 	struct drm_xe_engine_class_instance *hwe;
 	device_t device;
-	char d3cold_allowed[2];
+	uint32_t d3cold_allowed;
 	const struct s_state {
 		const char *name;
 		enum igt_suspend_state state;
@@ -374,12 +344,13 @@ igt_main
 		device.fd_xe = drm_open_driver(DRIVER_XE);
 		device.pci_xe = igt_device_get_pci_device(device.fd_xe);
 		device.pci_root = igt_device_get_pci_root_port(device.fd_xe);
+		igt_device_get_pci_slot_name(device.fd_xe, device.pci_slot_name);
 
 		/* Always perform initial once-basic exec checking for health */
 		xe_for_each_hw_engine(device.fd_xe, hwe)
 			test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM);
 
-		get_d3cold_allowed(device.pci_xe, d3cold_allowed);
+		igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed);
 		igt_assert(igt_setup_runtime_pm(device.fd_xe));
 	}
 
@@ -441,7 +412,7 @@ igt_main
 	}
 
 	igt_fixture {
-		set_d3cold_allowed(device.pci_xe, d3cold_allowed);
+		igt_pm_set_d3cold_allowed(device.pci_slot_name, d3cold_allowed);
 		igt_restore_runtime_pm();
 		drm_close_driver(device.fd_xe);
 	}
-- 
2.40.0

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
                   ` (2 preceding siblings ...)
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 3/4] tests/xe: use igt_pm library functions Riana Tauro
@ 2023-08-03  5:06 ` Riana Tauro
  2023-08-03  7:47   ` Gupta, Anshuman
  2023-08-03  6:05 ` [igt-dev] ○ CI.xeBAT: info for RFC Modify igt_pm functions and add GT C6 freeze test Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  5:06 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar

During s2idle, the device is powered up and GT C6 enabled
so we expect the residency to increase across suspend.
Add a test that validates the residency over a s2idle cycle
is within the threshold.

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
 tests/xe/xe_pm_residency.c | 54 ++++++++++++++++++++++++++++++++++----
 1 file changed, 49 insertions(+), 5 deletions(-)

diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
index 4936de166..a2b56e78d 100644
--- a/tests/xe/xe_pm_residency.c
+++ b/tests/xe/xe_pm_residency.c
@@ -10,8 +10,10 @@
  * Functionality: GT C States
  * Test category: functionality test
  */
+#include <limits.h>
 
 #include "igt.h"
+#include "igt_device.h"
 #include "igt_sysfs.h"
 
 #include "xe/xe_query.h"
@@ -29,6 +31,11 @@ const double tolerance = 0.1;
 		     (tol) * 100.0, (tol) * 100.0, \
 		     (double)(ref))
 
+enum test_type {
+	TEST_S2IDLE,
+	TEST_SLEEP,
+};
+
 /**
  * SUBTEST: gt-c6-on-idle
  * Description: Validate GT C6 state on idle
@@ -38,9 +45,22 @@ const double tolerance = 0.1;
  * Description: basic residency test to validate idle residency
  *		measured over a time interval is within the tolerance
  * Run type: FULL
+ *
+ * SUBTEST: gt-c6-freeze
+ * Description: Validate idle residency measured over suspend(s2idle)
+ *              is within the tolerance
+ * Run type: FULL
  */
 IGT_TEST_DESCRIPTION("Tests for gtidle properties");
 
+static unsigned long walltime_ms(void)
+{
+	struct timespec ts;
+
+	clock_gettime(CLOCK_REALTIME, &ts);
+	return ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
+}
+
 static unsigned int measured_usleep(unsigned int usec)
 {
 	struct timespec ts = { };
@@ -69,15 +89,25 @@ static unsigned long read_idle_residency(int fd, int gt)
 	return residency;
 }
 
-static void test_idle_residency(int fd, int gt)
+static void test_idle_residency(int fd, int gt, enum test_type flag)
 {
 	unsigned long elapsed_ms, residency_start, residency_end;
 
 	igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n");
 
-	residency_start = read_idle_residency(fd, gt);
-	elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
-	residency_end = read_idle_residency(fd, gt);
+	if (flag == TEST_S2IDLE) {
+		residency_start = read_idle_residency(fd, gt);
+		elapsed_ms -= walltime_ms();
+		igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
+		elapsed_ms += walltime_ms();
+		residency_end = read_idle_residency(fd, gt);
+	}
+
+	if (flag == TEST_SLEEP) {
+		residency_start = read_idle_residency(fd, gt);
+		elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
+		residency_end = read_idle_residency(fd, gt);
+	}
 
 	igt_info("Measured %lums of idle residency in %lums\n",
 		 residency_end - residency_start, elapsed_ms);
@@ -88,6 +118,8 @@ static void test_idle_residency(int fd, int gt)
 igt_main
 {
 	int fd, gt;
+	char pci_slot_name[NAME_MAX];
+	uint32_t d3cold_allowed;
 
 	igt_fixture {
 		fd = drm_open_driver(DRIVER_XE);
@@ -99,10 +131,22 @@ igt_main
 		xe_for_each_gt(fd, gt)
 			igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n");
 
+	igt_describe("Validate idle residency measured over suspend cycle is within the tolerance");
+	igt_subtest("gt-c6-freeze") {
+		igt_device_get_pci_slot_name(fd, pci_slot_name);
+		igt_pm_get_d3cold_allowed(pci_slot_name, &d3cold_allowed);
+		igt_pm_set_d3cold_allowed(pci_slot_name, 0);
+
+		xe_for_each_gt(fd, gt)
+			test_idle_residency(fd, gt, TEST_S2IDLE);
+
+		igt_pm_set_d3cold_allowed(pci_slot_name, d3cold_allowed);
+	}
+
 	igt_describe("Validate idle residency measured over a time interval is within the tolerance");
 	igt_subtest("idle-residency")
 		xe_for_each_gt(fd, gt)
-			test_idle_residency(fd, gt);
+			test_idle_residency(fd, gt, TEST_SLEEP);
 
 	igt_fixture {
 		close(fd);
-- 
2.40.0

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] ○ CI.xeBAT: info for RFC Modify igt_pm functions and add GT C6 freeze test
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
                   ` (3 preceding siblings ...)
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro
@ 2023-08-03  6:05 ` Patchwork
  2023-08-03  6:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2023-08-03  7:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-08-03  6:05 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 351 bytes --]

== Series Details ==

Series: RFC Modify igt_pm functions and add GT C6 freeze test
URL   : https://patchwork.freedesktop.org/series/121921/
State : info

== Summary ==

Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9500](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9500/index.html)



[-- Attachment #2: Type: text/html, Size: 867 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for RFC Modify igt_pm functions and add GT C6 freeze test
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
                   ` (4 preceding siblings ...)
  2023-08-03  6:05 ` [igt-dev] ○ CI.xeBAT: info for RFC Modify igt_pm functions and add GT C6 freeze test Patchwork
@ 2023-08-03  6:09 ` Patchwork
  2023-08-03  7:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-08-03  6:09 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 4686 bytes --]

== Series Details ==

Series: RFC Modify igt_pm functions and add GT C6 freeze test
URL   : https://patchwork.freedesktop.org/series/121921/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13463 -> IGTPW_9500
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/index.html

Participating hosts (42 -> 15)
------------------------------

  Missing    (27): fi-kbl-soraka fi-rkl-11600 bat-adls-5 bat-dg1-5 fi-snb-2520m fi-apl-guc fi-pnv-d510 fi-blb-e6850 bat-rpls-2 fi-skl-6600u bat-dg2-8 bat-adlm-1 bat-dg2-9 fi-ilk-650 bat-adln-1 fi-ivb-3770 fi-kbl-7567u bat-adlp-9 fi-glk-j4005 bat-jsl-1 bat-mtlp-6 bat-mtlp-8 bat-adlp-11 fi-tgl-1115g4 fi-kbl-guc fi-kbl-x1275 bat-dg2-14 

Known issues
------------

  Here are the changes found in IGTPW_9500 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [PASS][1] -> [FAIL][2] ([i915#7940]) +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@dmabuf:
    - fi-bsw-nick:        [PASS][3] -> [DMESG-FAIL][4] ([i915#7562] / [i915#7913])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-bsw-nick/igt@i915_selftest@live@dmabuf.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/fi-bsw-nick/igt@i915_selftest@live@dmabuf.html

  * igt@kms_psr@cursor_plane_move:
    - bat-rplp-1:         NOTRUN -> [SKIP][5] ([i915#1072])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/bat-rplp-1/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@sprite_plane_onoff:
    - bat-rplp-1:         NOTRUN -> [ABORT][6] ([i915#8442] / [i915#8668] / [i915#8712])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@basic-rte:
    - fi-cfl-8700k:       [FAIL][7] ([i915#7940]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_selftest@live@guc:
    - bat-rpls-1:         [DMESG-WARN][9] ([i915#7852]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-rpls-1/igt@i915_selftest@live@guc.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/bat-rpls-1/igt@i915_selftest@live@guc.html

  
#### Warnings ####

  * igt@kms_psr@primary_page_flip:
    - bat-rplp-1:         [ABORT][11] ([i915#8860]) -> [SKIP][12] ([i915#1072])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-rplp-1/igt@kms_psr@primary_page_flip.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/bat-rplp-1/igt@kms_psr@primary_page_flip.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562
  [i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
  [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
  [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7412 -> IGTPW_9500

  CI-20190529: 20190529
  CI_DRM_13463: 20610a111d61d6945d578360942dc5c7bd828eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9500: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/index.html
  IGT_7412: 7412


Testlist changes
----------------

+igt@xe_pm_residency@gt-c6-freeze
-igt@msm_submitoverhead@submitbench-10-bos
-igt@msm_submitoverhead@submitbench-10-bos-no-implicit-sync
-igt@msm_submitoverhead@submitbench-100-bos
-igt@msm_submitoverhead@submitbench-100-bos-no-implicit-sync
-igt@msm_submitoverhead@submitbench-250-bos
-igt@msm_submitoverhead@submitbench-250-bos-no-implicit-sync
-igt@msm_submitoverhead@submitbench-500-bos
-igt@msm_submitoverhead@submitbench-500-bos-no-implicit-sync
-igt@msm_submitoverhead@submitbench-1000-bos
-igt@msm_submitoverhead@submitbench-1000-bos-no-implicit-sync

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/index.html

[-- Attachment #2: Type: text/html, Size: 5630 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro
@ 2023-08-03  6:44   ` Gupta, Anshuman
  0 siblings, 0 replies; 14+ messages in thread
From: Gupta, Anshuman @ 2023-08-03  6:44 UTC (permalink / raw)
  To: Tauro, Riana, igt-dev; +Cc: Nilawar, Badal



> -----Original Message-----
> From: Tauro, Riana <riana.tauro@intel.com>
> Sent: Thursday, August 3, 2023 10:36 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal
> <badal.nilawar@intel.com>; Sundaresan, Sujaritha
> <sujaritha.sundaresan@intel.com>
> Subject: [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot
> name
> 
> Add a function that gets the pci slot name of the pci device
What is the justification of doing that, please add that in to commit-log.
Thanks,
Anshuman Gupta.
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
>  lib/igt_device.c | 20 ++++++++++++++++++++  lib/igt_device.h |  1 +
>  2 files changed, 21 insertions(+)
> 
> diff --git a/lib/igt_device.c b/lib/igt_device.c index 49b771221..ffb3f56ce
> 100644
> --- a/lib/igt_device.c
> +++ b/lib/igt_device.c
> @@ -23,6 +23,7 @@
>   */
>  #include <sys/types.h>
>  #include <fcntl.h>
> +#include <limits.h>
> 
>  #include <sys/stat.h>
>  #ifdef __linux__
> @@ -287,3 +288,22 @@ igt_device_get_pci_root_port(int fd)
> 
>  	return prev;
>  }
> +
> +/**
> + * igt_device_get_pci_slot_name:
> + * @fd: the device.
> + * @pci_slot_name: pci slot name
> + *
> + * Looks up the graphics pci device using libpciaccess
> + * and gets the slot name
> + */
> +void igt_device_get_pci_slot_name(int fd, char *pci_slot_name) {
> +	struct pci_device *pci_dev;
> +
> +	pci_dev = __igt_device_get_pci_device(fd, 0);
> +	igt_require(pci_dev);
> +
> +	snprintf(pci_slot_name, NAME_MAX, "%04x:%02x:%02x.%01x",
> +		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev-
> >func); }
> diff --git a/lib/igt_device.h b/lib/igt_device.h index 800a0fcc3..dad7bb047
> 100644
> --- a/lib/igt_device.h
> +++ b/lib/igt_device.h
> @@ -36,4 +36,5 @@ struct pci_device *igt_device_get_pci_device(int fd);
> struct pci_device *__igt_device_get_pci_device(int fd, unsigned int vf_id);
> struct pci_device *igt_device_get_pci_root_port(int fd);
> 
> +void igt_device_get_pci_slot_name(int fd, char *pci_slot_name);
>  #endif /* __IGT_DEVICE_H__ */
> --
> 2.40.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro
@ 2023-08-03  7:07   ` Gupta, Anshuman
  2023-08-03  8:46     ` Riana Tauro
  0 siblings, 1 reply; 14+ messages in thread
From: Gupta, Anshuman @ 2023-08-03  7:07 UTC (permalink / raw)
  To: Tauro, Riana, igt-dev; +Cc: Nilawar, Badal



> -----Original Message-----
> From: Tauro, Riana <riana.tauro@intel.com>
> Sent: Thursday, August 3, 2023 10:36 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal
> <badal.nilawar@intel.com>; Sundaresan, Sujaritha
> <sujaritha.sundaresan@intel.com>
> Subject: [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function
> parameters
> 
> Change function parameter of d3cold_allowed get/set functions to pci slot
> name. Change the data type from char to uint32_t as it is more appropriate.
> 
> This change is done so that both xe tests and i915 test can use the same
> library function.
> Modify i915_suspend to use these functions.
> No Functional Changes.
Why xe test can not use card->pci_slot_name, add that justification in commit log.
Regards,
Anshuman.
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
>  lib/igt_pm.c              | 22 +++++++++++-----------
>  lib/igt_pm.h              |  4 ++--
>  tests/i915/i915_suspend.c |  8 ++++----
>  3 files changed, 17 insertions(+), 17 deletions(-)
> 
> diff --git a/lib/igt_pm.c b/lib/igt_pm.c index ba591f0f8..11cf82950 100644
> --- a/lib/igt_pm.c
> +++ b/lib/igt_pm.c
> @@ -1204,47 +1204,47 @@ void igt_pm_setup_pci_card_runtime_pm(struct
> pci_device *pci_dev)
> 
>  /**
>   * igt_pm_get_d3cold_allowed:
> - * @igt_device_card: device card
> - * @val: value to be read into
> + * @pci_slot_name: slot name of the pci device
> + * @value: value to be read into
>   *
>   * Reads the value of d3cold_allowed attribute
>   * of the pci device
>   */
> -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val)
> +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t
> +*value)
>  {
>  	char name[PATH_MAX];
>  	int fd;
> 
>  	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
> -		 card->pci_slot_name);
> +		 pci_slot_name);
> 
>  	fd = open(name, O_RDONLY);
>  	igt_assert_f(fd >= 0, "Can't open %s\n", name);
> 
> -	igt_sysfs_read(fd, "d3cold_allowed", val, sizeof(val));
> +	__igt_sysfs_get_u32(fd, "d3cold_allowed", value);
> 
>  	close(fd);
>  }
> 
>  /**
> - * igt_pm_get_d3cold_allowed:
> - * @igt_device_card: device card
> - * @val: value to be written
> + * igt_pm_set_d3cold_allowed:
> + * @pci_slot_name: slot name of pci device
> + * @value: value to be written
>   *
>   * writes the value to d3cold_allowed attribute of pci device
>   */
> -void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char
> *val)
> +void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t
> +value)
>  {
>  	char name[PATH_MAX];
>  	int fd;
> 
>  	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
> -		 card->pci_slot_name);
> +		 pci_slot_name);
> 
>  	fd = open(name, O_RDONLY);
>  	igt_assert_f(fd >= 0, "Can't open %s\n", name);
> 
> -	igt_sysfs_write(fd, "d3cold_allowed", val, sizeof(val));
> +	__igt_sysfs_set_u32(fd, "d3cold_allowed", value);
>  	close(fd);
>  }
> 
> diff --git a/lib/igt_pm.h b/lib/igt_pm.h index 71ec2f239..306a9eb46 100644
> --- a/lib/igt_pm.h
> +++ b/lib/igt_pm.h
> @@ -79,8 +79,8 @@ enum igt_acpi_d_state
>  igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev);  void
> igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
>  				       struct pci_device *i915);
> -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val); -
> void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char
> *val);
> +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t
> +*value); void igt_pm_set_d3cold_allowed(const char *pci_slot_name,
> +uint32_t value);
>  void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev);  void
> igt_pm_restore_pci_card_runtime_pm(void);
>  void igt_pm_print_pci_card_runtime_status(void);
> diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index
> 851e797c2..c25805584 100644
> --- a/tests/i915/i915_suspend.c
> +++ b/tests/i915/i915_suspend.c
> @@ -283,7 +283,7 @@ static void
>  test_suspend_without_i915(int state)
>  {
>  	struct igt_device_card card;
> -	char d3cold_allowed[2];
> +	uint32_t d3cold_allowed;
>  	int fd;
> 
>  	fd = __drm_open_driver(DRIVER_INTEL);
> @@ -297,8 +297,8 @@ test_suspend_without_i915(int state)
>  	 */
>  	if (state == SUSPEND_STATE_FREEZE &&
>  	    igt_device_find_first_i915_discrete_card(&card)) {
> -		igt_pm_get_d3cold_allowed(&card, d3cold_allowed);
> -		igt_pm_set_d3cold_allowed(&card, "0\n");
> +		igt_pm_get_d3cold_allowed(card.pci_slot_name,
> &d3cold_allowed);
> +		igt_pm_set_d3cold_allowed(card.pci_slot_name, 0);
>  	}
>  	drm_close_driver(fd);
> 
> @@ -308,7 +308,7 @@ test_suspend_without_i915(int state)
>  	igt_system_suspend_autoresume(state, SUSPEND_TEST_NONE);
> 
>  	if (state == SUSPEND_STATE_FREEZE && strlen(card.card))
> -		igt_pm_set_d3cold_allowed(&card, d3cold_allowed);
> +		igt_pm_set_d3cold_allowed(card.pci_slot_name,
> d3cold_allowed);
> 
>  	igt_kmsg(KMSG_INFO "Re-loading i915 \n");
>  	igt_assert_eq(igt_i915_driver_load(NULL), 0);
> --
> 2.40.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle
  2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro
@ 2023-08-03  7:47   ` Gupta, Anshuman
  2023-08-03  8:48     ` Riana Tauro
  0 siblings, 1 reply; 14+ messages in thread
From: Gupta, Anshuman @ 2023-08-03  7:47 UTC (permalink / raw)
  To: Tauro, Riana, igt-dev; +Cc: Nilawar, Badal



> -----Original Message-----
> From: Tauro, Riana <riana.tauro@intel.com>
> Sent: Thursday, August 3, 2023 10:36 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal
> <badal.nilawar@intel.com>; Sundaresan, Sujaritha
> <sujaritha.sundaresan@intel.com>
> Subject: [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during
> s2idle
> 
> During s2idle, the device is powered up and GT C6 enabled so we expect the
> residency to increase across suspend.
> Add a test that validates the residency over a s2idle cycle is within the
> threshold.
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
>  tests/xe/xe_pm_residency.c | 54
> ++++++++++++++++++++++++++++++++++----
>  1 file changed, 49 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
> index 4936de166..a2b56e78d 100644
> --- a/tests/xe/xe_pm_residency.c
> +++ b/tests/xe/xe_pm_residency.c
> @@ -10,8 +10,10 @@
>   * Functionality: GT C States
>   * Test category: functionality test
>   */
> +#include <limits.h>
> 
>  #include "igt.h"
> +#include "igt_device.h"
>  #include "igt_sysfs.h"
> 
>  #include "xe/xe_query.h"
> @@ -29,6 +31,11 @@ const double tolerance = 0.1;
>  		     (tol) * 100.0, (tol) * 100.0, \
>  		     (double)(ref))
> 
> +enum test_type {
> +	TEST_S2IDLE,
> +	TEST_SLEEP,
> +};
> +
>  /**
>   * SUBTEST: gt-c6-on-idle
>   * Description: Validate GT C6 state on idle @@ -38,9 +45,22 @@ const
> double tolerance = 0.1;
>   * Description: basic residency test to validate idle residency
>   *		measured over a time interval is within the tolerance
>   * Run type: FULL
> + *
> + * SUBTEST: gt-c6-freeze
> + * Description: Validate idle residency measured over suspend(s2idle)
> + *              is within the tolerance
> + * Run type: FULL
>   */
>  IGT_TEST_DESCRIPTION("Tests for gtidle properties");
> 
> +static unsigned long walltime_ms(void)
> +{
> +	struct timespec ts;
> +
> +	clock_gettime(CLOCK_REALTIME, &ts);
> +	return ts.tv_sec * 1000 + ts.tv_nsec / 1000000; }
> +
>  static unsigned int measured_usleep(unsigned int usec)  {
>  	struct timespec ts = { };
> @@ -69,15 +89,25 @@ static unsigned long read_idle_residency(int fd, int gt)
>  	return residency;
>  }
> 
> -static void test_idle_residency(int fd, int gt)
> +static void test_idle_residency(int fd, int gt, enum test_type flag)
>  {
>  	unsigned long elapsed_ms, residency_start, residency_end;
> 
>  	igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in
> C6\n");
> 
> -	residency_start = read_idle_residency(fd, gt);
> -	elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
> -	residency_end = read_idle_residency(fd, gt);
> +	if (flag == TEST_S2IDLE) {
> +		residency_start = read_idle_residency(fd, gt);
> +		elapsed_ms -= walltime_ms();
> +		igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE,
> SUSPEND_TEST_NONE);
> +		elapsed_ms += walltime_ms();
> +		residency_end = read_idle_residency(fd, gt);
> +	}
> +
> +	if (flag == TEST_SLEEP) {
> +		residency_start = read_idle_residency(fd, gt);
> +		elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) /
> 1000;
> +		residency_end = read_idle_residency(fd, gt);
> +	}
> 
>  	igt_info("Measured %lums of idle residency in %lums\n",
>  		 residency_end - residency_start, elapsed_ms); @@ -88,6
> +118,8 @@ static void test_idle_residency(int fd, int gt)  igt_main  {
>  	int fd, gt;
> +	char pci_slot_name[NAME_MAX];
> +	uint32_t d3cold_allowed;
> 
>  	igt_fixture {
>  		fd = drm_open_driver(DRIVER_XE);
> @@ -99,10 +131,22 @@ igt_main
>  		xe_for_each_gt(fd, gt)
>  			igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1),
> "GT not in C6\n");
> 
> +	igt_describe("Validate idle residency measured over suspend cycle is
> within the tolerance");
> +	igt_subtest("gt-c6-freeze") {
> +		igt_device_get_pci_slot_name(fd, pci_slot_name);
> +		igt_pm_get_d3cold_allowed(pci_slot_name,
> &d3cold_allowed);
> +		igt_pm_set_d3cold_allowed(pci_slot_name, 0);
We need to disallow d3cold only for discrete cards, rc6 residency should not get reset on integrated gfx.
This can save some execution time on CI.
Thanks,
Anshuman.
> +
> +		xe_for_each_gt(fd, gt)
> +			test_idle_residency(fd, gt, TEST_S2IDLE);
> +
> +		igt_pm_set_d3cold_allowed(pci_slot_name,
> d3cold_allowed);
> +	}
> +
>  	igt_describe("Validate idle residency measured over a time interval is
> within the tolerance");
>  	igt_subtest("idle-residency")
>  		xe_for_each_gt(fd, gt)
> -			test_idle_residency(fd, gt);
> +			test_idle_residency(fd, gt, TEST_SLEEP);
> 
>  	igt_fixture {
>  		close(fd);
> --
> 2.40.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for RFC Modify igt_pm functions and add GT C6 freeze test
  2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
                   ` (5 preceding siblings ...)
  2023-08-03  6:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-03  7:50 ` Patchwork
  6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-08-03  7:50 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 100272 bytes --]

== Series Details ==

Series: RFC Modify igt_pm functions and add GT C6 freeze test
URL   : https://patchwork.freedesktop.org/series/121921/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13463_full -> IGTPW_9500_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_9500_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_9500_full, please notify your bug team 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_9500/index.html

Participating hosts (10 -> 10)
------------------------------

  Additional (1): shard-rkl0 
  Missing    (1): pig-kbl-iris 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_9500_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@flip-vs-panning-vs-hang@b-vga1:
    - shard-snb:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-snb4/igt@kms_flip@flip-vs-panning-vs-hang@b-vga1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb7/igt@kms_flip@flip-vs-panning-vs-hang@b-vga1.html

  
Known issues
------------

  Here are the changes found in IGTPW_9500_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@drm_fdinfo@busy-idle-check-all@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][3] ([i915#8414]) +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@drm_fdinfo@busy-idle-check-all@ccs0.html

  * igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
    - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#8414]) +29 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html

  * igt@gem_caching@read-writes:
    - shard-mtlp:         NOTRUN -> [SKIP][5] ([i915#4873])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@gem_caching@read-writes.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
    - shard-dg1:          NOTRUN -> [SKIP][7] ([i915#3555] / [i915#5325])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-dg1:          NOTRUN -> [SKIP][8] ([i915#5325])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
    - shard-tglu:         NOTRUN -> [SKIP][9] ([i915#5325])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
    - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#5325])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-rkl:          [PASS][11] -> [FAIL][12] ([i915#6268])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-snb:          NOTRUN -> [DMESG-WARN][13] ([i915#8841]) +6 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-rkl:          [PASS][14] -> [FAIL][15] ([fdo#103375]) +3 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3@vcs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-mtlp:         NOTRUN -> [SKIP][16] ([fdo#109314])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@engines-hang:
    - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb5/igt@gem_ctx_persistence@engines-hang.html

  * igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
    - shard-mtlp:         [PASS][18] -> [FAIL][19] ([i915#2410])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html

  * igt@gem_ctx_persistence@legacy-engines-hang@bsd2:
    - shard-mtlp:         [PASS][20] -> [ABORT][21] ([i915#8865])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#5882]) +9 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-mtlp:         NOTRUN -> [ABORT][23] ([i915#8503])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_await@wide-contexts:
    - shard-dg2:          [PASS][24] -> [FAIL][25] ([i915#5892])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@gem_exec_await@wide-contexts.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gem_exec_await@wide-contexts.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#4771])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
    - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#4771]) +1 similar issue
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_balancer@bonded-pair:
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4771])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@gem_exec_balancer@bonded-pair.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-rkl:          [PASS][29] -> [FAIL][30] ([i915#2842])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][31] -> [FAIL][32] ([i915#2842])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#2842])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html
    - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-before-default.html

  * igt@gem_exec_gttfill@multigpu-basic:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#7697])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gem_exec_gttfill@multigpu-basic.html

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#3281]) +4 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
    - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#3281]) +3 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][40] ([i915#3281]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-dg1:          NOTRUN -> [SKIP][41] ([i915#3281]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4812])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#4860]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
    - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#4860])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4860])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-mtlp:         NOTRUN -> [SKIP][46] ([i915#4613]) +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][47] ([i915#4613])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][48] ([i915#4565])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [PASS][49] -> [TIMEOUT][50] ([i915#5493])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_mmap_gtt@basic-small-bo-tiledx:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4077]) +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4077]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-14/igt@gem_mmap_gtt@basic-small-bo-tiledx.html

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4077]) +3 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * igt@gem_mmap_wc@copy:
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#4083]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@gem_mmap_wc@copy.html

  * igt@gem_pxp@create-valid-protected-context:
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#4270]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@gem_pxp@create-valid-protected-context.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#3282]) +2 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][57] ([i915#8428]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][58] ([i915#3282]) +1 similar issue
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html
    - shard-dg1:          NOTRUN -> [SKIP][59] ([i915#4079]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_tiled_pread_basic:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4079]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@gem_tiled_pread_basic.html

  * igt@gem_userptr_blits@access-control:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#3297])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#3297])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
    - shard-dg1:          NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([fdo#109289]) +2 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-3/igt@gen7_exec_parse@chained-batch.html
    - shard-rkl:          NOTRUN -> [SKIP][66] ([fdo#109289]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-2/igt@gen7_exec_parse@chained-batch.html
    - shard-dg1:          NOTRUN -> [SKIP][67] ([fdo#109289]) +2 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-13/igt@gen7_exec_parse@chained-batch.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-mtlp:         NOTRUN -> [SKIP][68] ([i915#2856]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#2527])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-rkl:          NOTRUN -> [SKIP][70] ([i915#2527])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#2856]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_module_load@reload:
    - shard-snb:          [PASS][72] -> [ABORT][73] ([i915#4528])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-snb4/igt@i915_module_load@reload.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb6/igt@i915_module_load@reload.html

  * igt@i915_pipe_stress@stress-xrgb8888-untiled:
    - shard-mtlp:         [PASS][74] -> [FAIL][75] ([i915#8691])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglu:         [PASS][76] -> [FAIL][77] ([i915#3989] / [i915#454])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-rkl:          NOTRUN -> [SKIP][78] ([i915#8399])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][79] ([i915#8399])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-mtlp:         NOTRUN -> [SKIP][80] ([i915#6645])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_freq_api@freq-suspend@gt1:
    - shard-mtlp:         NOTRUN -> [SKIP][81] ([i915#8805])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@i915_pm_freq_api@freq-suspend@gt1.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [PASS][82] -> [SKIP][83] ([i915#1397])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-dg1:          [PASS][84] -> [SKIP][85] ([i915#1397]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-13/igt@i915_pm_rpm@dpms-non-lpsp.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
    - shard-tglu:         [PASS][86] -> [FAIL][87] ([i915#7940]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-3/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-2/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html

  * igt@i915_pm_rps@thresholds-idle@gt0:
    - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#8925])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-15/igt@i915_pm_rps@thresholds-idle@gt0.html

  * igt@i915_pm_rps@thresholds-park@gt0:
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#8925]) +2 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [PASS][90] -> [DMESG-FAIL][91] ([i915#6763])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@i915_selftest@live@workarounds.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#4212])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][93] ([i915#4212])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1:
    - shard-mtlp:         [PASS][94] -> [FAIL][95] ([i915#2521])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#8502] / [i915#8709]) +11 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
    - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#8502]) +7 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html

  * igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][98] ([i915#8247]) +1 similar issue
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
    - shard-snb:          NOTRUN -> [FAIL][99] ([i915#8247]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb1/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html

  * igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [FAIL][100] ([i915#8247]) +3 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#5286])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5286])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#5286])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
    - shard-tglu:         NOTRUN -> [SKIP][105] ([i915#5286])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][106] ([fdo#111614]) +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-rkl:          NOTRUN -> [SKIP][107] ([fdo#111614] / [i915#3638]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#3638]) +1 similar issue
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#5190]) +3 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-mtlp:         NOTRUN -> [SKIP][110] ([i915#6187])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
    - shard-rkl:          NOTRUN -> [SKIP][112] ([fdo#110723])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#4538])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][114] ([fdo#111615]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#3689] / [i915#3886] / [i915#5354])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#3886] / [i915#5354] / [i915#6095])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#3734] / [i915#5354] / [i915#6095])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][119] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][120] ([i915#6095]) +9 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#5354]) +8 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs_cc:
    - shard-tglu:         NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-2/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#3886] / [i915#6095]) +3 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_rc_ccs:
    - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_rc_ccs.html

  * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +10 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglu:         NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#5354]) +2 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#4087] / [i915#7213]) +3 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling:
    - shard-rkl:          NOTRUN -> [SKIP][129] ([i915#3742])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@kms_cdclk@plane-scaling.html
    - shard-dg1:          NOTRUN -> [SKIP][130] ([i915#3742])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#4087]) +3 similar issues
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-mtlp:         NOTRUN -> [SKIP][132] ([fdo#111827])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#7828]) +1 similar issue
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_chamelium_frames@dp-frame-dump.html
    - shard-rkl:          NOTRUN -> [SKIP][134] ([i915#7828]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html
    - shard-dg1:          NOTRUN -> [SKIP][135] ([i915#7828]) +1 similar issue
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-17/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#7828]) +3 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-mtlp:         NOTRUN -> [SKIP][137] ([i915#3299])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#3359])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][139] ([i915#8814])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#3359]) +1 similar issue
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#3359])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#4103] / [i915#4213]) +1 similar issue
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-rkl:          NOTRUN -> [SKIP][143] ([i915#4103]) +1 similar issue
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#4103] / [i915#4213]) +1 similar issue
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][145] ([fdo#111825]) +3 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
    - shard-dg2:          NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-mtlp:         NOTRUN -> [SKIP][147] ([i915#3546])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-mtlp:         NOTRUN -> [SKIP][148] ([fdo#111767] / [i915#3546])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
    - shard-tglu:         NOTRUN -> [SKIP][149] ([fdo#109274] / [fdo#111767])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][150] -> [FAIL][151] ([i915#2346])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          [PASS][152] -> [FAIL][153] ([i915#2346])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#3555])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][155] ([i915#3804])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([fdo#109274]) +3 similar issues
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][157] ([i915#3637]) +2 similar issues
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][158] ([fdo#111767] / [i915#3637])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-tglu:         NOTRUN -> [SKIP][159] ([fdo#109274] / [i915#3637])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
    - shard-glk:          [PASS][160] -> [FAIL][161] ([i915#79])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html

  * igt@kms_flip@plain-flip-fb-recreate@a-edp1:
    - shard-mtlp:         [PASS][162] -> [DMESG-WARN][163] ([i915#1982]) +1 similar issue
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][164] ([i915#2672]) +1 similar issue
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][166] ([i915#2672])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][167] ([i915#2587] / [i915#2672])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#2672]) +3 similar issues
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][169] ([i915#8708]) +5 similar issues
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][170] ([i915#1825]) +9 similar issues
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
    - shard-dg1:          NOTRUN -> [SKIP][171] ([fdo#111825]) +10 similar issues
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][172] ([i915#8708]) +4 similar issues
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][173] ([i915#8708]) +2 similar issues
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][174] ([fdo#110189])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([fdo#111825] / [i915#1825]) +6 similar issues
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
    - shard-tglu:         NOTRUN -> [SKIP][176] ([fdo#109280])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][177] ([i915#3458]) +4 similar issues
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
    - shard-rkl:          NOTRUN -> [SKIP][178] ([i915#3023]) +2 similar issues
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
    - shard-dg1:          NOTRUN -> [SKIP][179] ([i915#3458]) +2 similar issues
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-mtlp:         NOTRUN -> [SKIP][181] ([i915#4816])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][182] ([fdo#109289])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
    - shard-mtlp:         NOTRUN -> [SKIP][183] ([fdo#109289]) +2 similar issues
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
    - shard-mtlp:         [PASS][184] -> [FAIL][185] ([i915#1623])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#5176]) +3 similar issues
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html

  * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#5176]) +19 similar issues
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#5176]) +5 similar issues
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][189] ([i915#5235]) +7 similar issues
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#5235]) +19 similar issues
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#5235]) +15 similar issues
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          NOTRUN -> [SKIP][192] ([i915#658])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
    - shard-dg1:          NOTRUN -> [SKIP][193] ([i915#658])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#658]) +1 similar issue
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
    - shard-rkl:          NOTRUN -> [SKIP][195] ([fdo#111068] / [i915#658])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
    - shard-dg1:          NOTRUN -> [SKIP][196] ([fdo#111068] / [i915#658])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-15/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#1072]) +2 similar issues
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-snb:          NOTRUN -> [SKIP][198] ([fdo#109271]) +186 similar issues
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb6/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_psr@sprite_plane_onoff:
    - shard-rkl:          NOTRUN -> [SKIP][199] ([i915#1072])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_psr@sprite_plane_onoff.html
    - shard-dg1:          NOTRUN -> [SKIP][200] ([i915#1072] / [i915#4078])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][201] ([i915#4235])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2:          NOTRUN -> [SKIP][202] ([i915#4235])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
    - shard-mtlp:         NOTRUN -> [SKIP][203] ([i915#5030]) +3 similar issues
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html

  * igt@kms_selftest@drm_format_helper:
    - shard-snb:          NOTRUN -> [SKIP][204] ([fdo#109271] / [i915#8661])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-snb6/igt@kms_selftest@drm_format_helper.html
    - shard-glk:          NOTRUN -> [SKIP][205] ([fdo#109271] / [i915#8661])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk5/igt@kms_selftest@drm_format_helper.html

  * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
    - shard-dg2:          [PASS][206] -> [FAIL][207] ([fdo#103375]) +3 similar issues
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-6/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][208] ([i915#8808])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#3555]) +2 similar issues
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@kms_vrr@negative-basic.html
    - shard-rkl:          NOTRUN -> [SKIP][210] ([i915#3555]) +1 similar issue
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-4/igt@kms_vrr@negative-basic.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          NOTRUN -> [FAIL][211] ([i915#4349]) +3 similar issues
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html

  * igt@perf_pmu@busy-idle@vcs0:
    - shard-dg2:          [PASS][212] -> [FAIL][213] ([i915#4349]) +7 similar issues
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-2/igt@perf_pmu@busy-idle@vcs0.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@perf_pmu@busy-idle@vcs0.html
    - shard-dg1:          [PASS][214] -> [FAIL][215] ([i915#4349]) +2 similar issues
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@perf_pmu@busy-idle@vcs0.html
    - shard-mtlp:         [PASS][216] -> [FAIL][217] ([i915#4349]) +3 similar issues
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-5/igt@perf_pmu@busy-idle@vcs0.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@perf_pmu@busy-idle@vcs0.html

  * igt@perf_pmu@event-wait@rcs0:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([fdo#112283])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@perf_pmu@event-wait@rcs0.html

  * igt@perf_pmu@rc6@runtime-pm-long-gt1:
    - shard-mtlp:         [PASS][219] -> [SKIP][220] ([i915#8537]) +2 similar issues
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-1/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@perf_pmu@rc6@runtime-pm-long-gt1.html

  * igt@prime_vgem@coherency-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#3708] / [i915#4077])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@prime_vgem@coherency-gtt.html

  * igt@v3d/v3d_job_submission@array-job-submission:
    - shard-dg1:          NOTRUN -> [SKIP][222] ([i915#2575]) +3 similar issues
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-13/igt@v3d/v3d_job_submission@array-job-submission.html
    - shard-tglu:         NOTRUN -> [SKIP][223] ([fdo#109315] / [i915#2575]) +1 similar issue
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-7/igt@v3d/v3d_job_submission@array-job-submission.html

  * igt@v3d/v3d_mmap@mmap-bad-flags:
    - shard-rkl:          NOTRUN -> [SKIP][224] ([fdo#109315]) +1 similar issue
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@v3d/v3d_mmap@mmap-bad-flags.html

  * igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
    - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#2575]) +3 similar issues
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html

  * igt@v3d/v3d_submit_csd@bad-pad:
    - shard-glk:          NOTRUN -> [SKIP][226] ([fdo#109271]) +31 similar issues
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk4/igt@v3d/v3d_submit_csd@bad-pad.html

  * igt@v3d/v3d_submit_csd@job-perfmon:
    - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#2575]) +6 similar issues
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-6/igt@v3d/v3d_submit_csd@job-perfmon.html

  * igt@vc4/vc4_label_bo@set-bad-name:
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([i915#7711]) +1 similar issue
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-8/igt@vc4/vc4_label_bo@set-bad-name.html

  * igt@vc4/vc4_mmap@mmap-bo:
    - shard-dg2:          NOTRUN -> [SKIP][229] ([i915#7711]) +2 similar issues
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-3/igt@vc4/vc4_mmap@mmap-bo.html
    - shard-rkl:          NOTRUN -> [SKIP][230] ([i915#7711]) +1 similar issue
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-2/igt@vc4/vc4_mmap@mmap-bo.html
    - shard-dg1:          NOTRUN -> [SKIP][231] ([i915#7711]) +1 similar issue
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-13/igt@vc4/vc4_mmap@mmap-bo.html

  * igt@vc4/vc4_wait_bo@bad-pad:
    - shard-tglu:         NOTRUN -> [SKIP][232] ([i915#2575])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-tglu-10/igt@vc4/vc4_wait_bo@bad-pad.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-dg2:          [SKIP][233] ([i915#6767]) -> [PASS][234]
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@core_hotunplug@unbind-rebind.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@core_hotunplug@unbind-rebind.html

  * igt@core_setmaster@master-drop-set-root:
    - shard-dg2:          [FAIL][235] ([i915#6121]) -> [PASS][236]
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@core_setmaster@master-drop-set-root.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-glk:          [INCOMPLETE][237] ([i915#4793]) -> [PASS][238]
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@engines-hang@vcs0:
    - shard-mtlp:         [FAIL][239] ([i915#2410]) -> [PASS][240]
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-7/igt@gem_ctx_persistence@engines-hang@vcs0.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html

  * igt@gem_eio@reset-stress:
    - shard-dg2:          [FAIL][241] ([i915#5784]) -> [PASS][242]
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@gem_eio@reset-stress.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@gem_eio@reset-stress.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          [FAIL][243] ([i915#5784]) -> [PASS][244]
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-16/igt@gem_eio@unwedge-stress.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-18/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@hang:
    - shard-mtlp:         [ABORT][245] ([i915#8104]) -> [PASS][246]
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-1/igt@gem_exec_balancer@hang.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@gem_exec_balancer@hang.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-rkl:          [FAIL][247] ([i915#2846]) -> [PASS][248]
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-rkl:          [FAIL][249] ([i915#2842]) -> [PASS][250]
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_params@no-blt:
    - shard-dg2:          [SKIP][251] ([fdo#109283] / [i915#2575]) -> [PASS][252]
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_params@no-blt.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_exec_params@no-blt.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - shard-dg1:          [ABORT][253] ([i915#7975] / [i915#8213]) -> [PASS][254]
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

  * igt@i915_hangman@engine-engine-hang@vcs0:
    - shard-mtlp:         [FAIL][255] ([i915#7069]) -> [PASS][256]
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@i915_hangman@engine-engine-hang@vcs0.html

  * igt@i915_module_load@reload:
    - shard-dg2:          [FAIL][257] -> [PASS][258]
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_module_load@reload.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@i915_module_load@reload.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][259] ([fdo#109271]) -> [PASS][260]
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-apl1/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-dg1:          [SKIP][261] ([i915#1937]) -> [PASS][262]
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-15/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - shard-dg1:          [FAIL][263] ([i915#3591]) -> [PASS][264]
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - shard-dg1:          [FAIL][265] ([i915#7691]) -> [PASS][266]
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@cursor-dpms:
    - shard-dg1:          [FAIL][267] ([i915#7940]) -> [PASS][268]
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-14/igt@i915_pm_rpm@cursor-dpms.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-14/igt@i915_pm_rpm@cursor-dpms.html

  * igt@i915_pm_rpm@dpms-lpsp:
    - shard-dg2:          [SKIP][269] ([i915#1397]) -> [PASS][270]
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-2/igt@i915_pm_rpm@dpms-lpsp.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@i915_pm_rpm@dpms-lpsp.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-rkl:          [SKIP][271] ([i915#1397]) -> [PASS][272] +1 similar issue
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@i2c:
    - shard-dg2:          [FAIL][273] ([i915#8717]) -> [PASS][274]
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-2/igt@i915_pm_rpm@i2c.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@i915_pm_rpm@i2c.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - shard-dg1:          [SKIP][275] ([i915#1397]) -> [PASS][276] +1 similar issue
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [SKIP][277] ([i915#5174]) -> [PASS][278] +2 similar issues
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-dg2:          [WARN][279] ([i915#2575]) -> [PASS][280]
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
    - shard-dg2:          [SKIP][281] ([i915#2575] / [i915#5190]) -> [PASS][282]
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         [FAIL][283] ([i915#3743]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3:
    - shard-dg2:          [FAIL][285] ([fdo#103375]) -> [PASS][286] +3 similar issues
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-mtlp:         [FAIL][287] ([i915#2346]) -> [PASS][288]
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][289] ([i915#79]) -> [PASS][290]
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-dg2:          [SKIP][291] ([fdo#109315]) -> [PASS][292] +38 similar issues
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          [FAIL][293] ([IGT#2]) -> [PASS][294]
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-10/igt@kms_sysfs_edid_timing.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_sysfs_edid_timing.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [FAIL][295] ([i915#7484]) -> [PASS][296]
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html

  * igt@perf_pmu@all-busy-idle-check-all:
    - shard-dg2:          [SKIP][297] ([i915#5608]) -> [PASS][298] +8 similar issues
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html

  * igt@perf_pmu@busy-double-start@rcs0:
    - shard-mtlp:         [FAIL][299] ([i915#4349]) -> [PASS][300]
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html

  * igt@syncobj_timeline@device-submit-unordered:
    - shard-mtlp:         [DMESG-WARN][301] ([i915#2017]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-7/igt@syncobj_timeline@device-submit-unordered.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@syncobj_timeline@device-submit-unordered.html

  * igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
    - shard-dg2:          [SKIP][303] ([i915#2575]) -> [PASS][304] +251 similar issues
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html

  * igt@sysfs_timeslice_duration@timeout@vecs0:
    - shard-mtlp:         [ABORT][305] ([i915#8521]) -> [PASS][306]
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html

  
#### Warnings ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg2:          [SKIP][307] ([i915#2575]) -> [SKIP][308] ([i915#8411]) +1 similar issue
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@drm_fdinfo@virtual-busy-hang-all:
    - shard-dg2:          [SKIP][309] ([i915#5608]) -> [SKIP][310] ([i915#8414])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang-all.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang-all.html

  * igt@feature_discovery@display-2x:
    - shard-dg2:          [SKIP][311] ([i915#2575]) -> [SKIP][312] ([i915#1839])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@feature_discovery@display-2x.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@feature_discovery@display-2x.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-dg2:          [SKIP][313] ([i915#2575]) -> [SKIP][314] ([i915#7697]) +1 similar issue
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_ctx_persistence@heartbeat-hostile:
    - shard-dg2:          [SKIP][315] ([i915#2575]) -> [SKIP][316] ([i915#8555]) +2 similar issues
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg2:          [SKIP][317] ([i915#2575]) -> [SKIP][318] ([i915#280]) +1 similar issue
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg2:          [SKIP][319] ([i915#2575]) -> [SKIP][320] ([i915#4771])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          [SKIP][321] ([i915#2575]) -> [SKIP][322] ([i915#4812]) +1 similar issue
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg2:          [SKIP][323] ([i915#2575]) -> [SKIP][324] ([i915#3539] / [i915#4852]) +4 similar issues
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg2:          [SKIP][325] ([i915#2575]) -> [SKIP][326] ([i915#3539]) +1 similar issue
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-dg2:          [SKIP][327] ([fdo#109283] / [i915#2575]) -> [SKIP][328] ([fdo#109283] / [i915#5107])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          [SKIP][329] ([i915#2575]) -> [SKIP][330] ([i915#3281]) +18 similar issues
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html

  * igt@gem_exec_whisper@basic-contexts-forked-all:
    - shard-mtlp:         [ABORT][331] ([i915#7392] / [i915#8131]) -> [TIMEOUT][332] ([i915#7392] / [i915#8628])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - shard-mtlp:         [TIMEOUT][333] ([i915#7392]) -> [ABORT][334] ([i915#7392] / [i915#8131])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-priority-all.html

  * igt@gem_fenced_exec_thrash@2-spare-fences:
    - shard-dg2:          [SKIP][335] ([i915#2575]) -> [SKIP][336] ([i915#4860]) +2 similar issues
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html

  * igt@gem_media_vme:
    - shard-dg2:          [SKIP][337] ([i915#2575]) -> [SKIP][338] ([i915#284])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_media_vme.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_media_vme.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-dg2:          [SKIP][339] ([i915#2575]) -> [SKIP][340] ([i915#4077]) +10 similar issues
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_mmap_wc@bad-object:
    - shard-dg2:          [SKIP][341] ([i915#2575]) -> [SKIP][342] ([i915#4083]) +6 similar issues
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@gem_mmap_wc@bad-object.html

  * igt@gem_pread@snoop:
    - shard-dg2:          [SKIP][343] ([i915#2575]) -> [SKIP][344] ([i915#3282]) +8 similar issues
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_pread@snoop.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@gem_pread@snoop.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          [SKIP][345] ([i915#2575]) -> [SKIP][346] ([i915#4270]) +4 similar issues
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
    - shard-dg2:          [SKIP][347] ([i915#2575] / [i915#5190]) -> [SKIP][348] ([i915#5190]) +9 similar issues
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html

  * igt@gem_render_tiled_blits@basic:
    - shard-dg2:          [SKIP][349] ([i915#2575]) -> [SKIP][350] ([i915#4079])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_render_tiled_blits@basic.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@gem_render_tiled_blits@basic.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-dg2:          [SKIP][351] ([i915#2575]) -> [SKIP][352] ([i915#4885])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          [SKIP][353] ([i915#2575]) -> [SKIP][354] ([i915#4879])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_unfence_active_buffers.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          [SKIP][355] ([i915#2575]) -> [SKIP][356] ([i915#3297]) +4 similar issues
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate:
    - shard-dg2:          [SKIP][357] ([i915#2575]) -> [SKIP][358] ([i915#3297] / [i915#4880])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html

  * igt@gen3_render_linear_blits:
    - shard-dg2:          [SKIP][359] ([i915#2575]) -> [SKIP][360] ([fdo#109289]) +4 similar issues
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gen3_render_linear_blits.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@gen3_render_linear_blits.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-dg2:          [SKIP][361] ([i915#2575]) -> [SKIP][362] ([i915#2856]) +2 similar issues
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gen9_exec_parse@batch-invalid-length.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          [WARN][363] ([i915#7356]) -> [DMESG-WARN][364] ([i915#7061] / [i915#8617])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_backlight@fade:
    - shard-dg2:          [SKIP][365] ([i915#2575]) -> [SKIP][366] ([i915#5354] / [i915#7561])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_backlight@fade.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@i915_pm_backlight@fade.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-dg2:          [SKIP][367] ([i915#2575]) -> [SKIP][368] ([i915#658])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-dg2:          [SKIP][369] ([i915#2575]) -> [SKIP][370] ([i915#5978])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_dc@dc6-dpms.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-mtlp:         [SKIP][371] ([fdo#109289]) -> [SKIP][372] ([fdo#109289] / [i915#8403])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rpm@fences-dpms:
    - shard-dg2:          [SKIP][373] ([i915#5174]) -> [SKIP][374] ([i915#4077]) +1 similar issue
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rpm@fences-dpms.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@i915_pm_rpm@fences-dpms.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - shard-dg2:          [SKIP][375] ([i915#5174]) -> [SKIP][376] ([i915#1397])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-dg2:          [SKIP][377] ([i915#5174]) -> [SKIP][378] ([fdo#109506])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          [SKIP][379] ([i915#2575]) -> [SKIP][380] ([i915#6621]) +1 similar issue
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-dg2:          [SKIP][381] ([i915#2575]) -> [SKIP][382] ([fdo#109303])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_query@query-topology-known-pci-ids.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@i915_query@query-topology-known-pci-ids.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg2:          [SKIP][383] ([i915#2575]) -> [SKIP][384] ([i915#4212]) +3 similar issues
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2:          [SKIP][385] ([i915#2575]) -> [SKIP][386] ([i915#6228])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          [SKIP][387] ([i915#2575]) -> [SKIP][388] ([i915#404])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-dg2:          [SKIP][389] ([fdo#109315]) -> [SKIP][390] ([fdo#111614]) +7 similar issues
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          [SKIP][391] ([fdo#109315] / [i915#5190]) -> [SKIP][392] ([i915#5190]) +8 similar issues
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-dg2:          [SKIP][393] ([fdo#109315] / [i915#5190]) -> [SKIP][394] ([i915#4538] / [i915#5190]) +8 similar issues
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs:
    - shard-dg2:          [SKIP][395] ([i915#2575]) -> [SKIP][396] ([i915#5354]) +31 similar issues
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-dg2:          [SKIP][397] ([i915#2575]) -> [SKIP][398] ([i915#3689] / [i915#3886] / [i915#5354]) +14 similar issues
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
    - shard-dg2:          [SKIP][399] ([i915#2575]) -> [SKIP][400] ([i915#3689] / [i915#5354]) +27 similar issues
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          [SKIP][401] ([i915#2575]) -> [SKIP][402] ([fdo#111827]) +2 similar issues
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_chamelium_color@degamma.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-dg2:          [SKIP][403] ([i915#2575]) -> [SKIP][404] ([i915#7828]) +12 similar issues
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_color@deep-color:
    - shard-dg2:          [SKIP][405] ([i915#2575]) -> [SKIP][406] ([i915#3555]) +3 similar issues
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_color@deep-color.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_color@deep-color.html

  * igt@kms_content_protection@content_type_change:
    - shard-dg2:          [SKIP][407] ([i915#2575]) -> [SKIP][408] ([i915#7118] / [i915#7162])
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_content_protection@content_type_change.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_content_protection@content_type_change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2:          [SKIP][409] ([i915#2575]) -> [SKIP][410] ([i915#3299])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@mei_interface:
    - shard-dg2:          [SKIP][411] ([i915#7118]) -> [SKIP][412] ([i915#7118] / [i915#7162])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-3/igt@kms_content_protection@mei_interface.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2:          [SKIP][413] ([i915#2575]) -> [SKIP][414] ([i915#3359]) +2 similar issues
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2:          [SKIP][415] ([i915#2575]) -> [SKIP][416] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 similar issue
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          [SKIP][417] ([i915#2575]) -> [SKIP][418] ([fdo#109274] / [i915#5354]) +6 similar issues
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-mtlp:         [DMESG-FAIL][419] ([i915#2017] / [i915#5954]) -> [FAIL][420] ([i915#2346])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          [SKIP][421] ([i915#2575]) -> [SKIP][422] ([i915#4103] / [i915#4213])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          [SKIP][423] ([i915#2575]) -> [SKIP][424] ([i915#8588])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          [SKIP][425] ([fdo#109315]) -> [SKIP][426] ([i915#8812])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-basic:
    - shard-dg2:          [SKIP][427] ([fdo#109315]) -> [SKIP][428] ([i915#3555] / [i915#3840]) +1 similar issue
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_dsc@dsc-basic.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_dsc@dsc-basic.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          [SKIP][429] ([i915#3955]) -> [SKIP][430] ([fdo#110189] / [i915#3955])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-1/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][431] ([fdo#110189] / [i915#3955]) -> [SKIP][432] ([i915#3955])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-dg2:          [SKIP][433] ([i915#2575]) -> [SKIP][434] ([i915#3469])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          [SKIP][435] ([i915#2575]) -> [SKIP][436] ([fdo#109274]) +7 similar issues
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          [SKIP][437] ([fdo#109315]) -> [SKIP][438] ([i915#8708]) +29 similar issues
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2:          [SKIP][439] ([fdo#109315]) -> [SKIP][440] ([i915#5460])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-rte:
    - shard-dg2:          [SKIP][441] ([fdo#109315]) -> [SKIP][442] ([i915#3458]) +24 similar issues
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-rte.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg2:          [SKIP][443] ([fdo#109315]) -> [SKIP][444] ([i915#5354]) +40 similar issues
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2:          [SKIP][445] ([i915#2575]) -> [SKIP][446] ([i915#6118])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          [SKIP][447] ([i915#2575]) -> [SKIP][448] ([i915#3555] / [i915#8228]) +1 similar issue
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          [SKIP][449] ([i915#2575]) -> [SKIP][450] ([i915#6301])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_panel_fitting@legacy.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-6/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          [SKIP][451] ([i915#2575]) -> [SKIP][452] ([i915#6953])
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-dg2:          [SKIP][453] ([fdo#109315]) -> [SKIP][454] ([i915#658]) +5 similar issues
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@cursor_plane_move:
    - shard-dg1:          [SKIP][455] ([i915#1072]) -> [SKIP][456] ([i915#1072] / [i915#4078])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-19/igt@kms_psr@cursor_plane_move.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-16/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_page_flip:
    - shard-dg1:          [SKIP][457] ([i915#1072] / [i915#4078]) -> [SKIP][458] ([i915#1072]) +1 similar issue
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-18/igt@kms_psr@primary_page_flip.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg1-19/igt@kms_psr@primary_page_flip.html

  * igt@kms_psr@psr2_dpms:
    - shard-dg2:          [SKIP][459] ([fdo#109315]) -> [SKIP][460] ([i915#1072]) +8 similar issues
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_psr@psr2_dpms.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-3/igt@kms_psr@psr2_dpms.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2:          [SKIP][461] ([fdo#109315]) -> [SKIP][462] ([i915#5461] / [i915#658])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          [SKIP][463] ([i915#2575]) -> [SKIP][464] ([i915#4235]) +3 similar issues
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-dg2:          [SKIP][465] ([i915#2575]) -> [FAIL][466] ([fdo#103375])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          [SKIP][467] ([i915#2575]) -> [SKIP][468] ([i915#2437])
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html

  * igt@prime_vgem@fence-write-hang:
    - shard-dg2:          [SKIP][469] ([i915#2575]) -> [SKIP][470] ([i915#3708])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@prime_vgem@fence-write-hang.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/shard-dg2-1/igt@prime_vgem@fence-write-hang.html

  
  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2346]: https://gitlab.freedesktop.org/drm/in

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9500/index.html

[-- Attachment #2: Type: text/html, Size: 112963 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters
  2023-08-03  7:07   ` Gupta, Anshuman
@ 2023-08-03  8:46     ` Riana Tauro
  2023-08-03  8:48       ` Gupta, Anshuman
  0 siblings, 1 reply; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  8:46 UTC (permalink / raw)
  To: Gupta, Anshuman, igt-dev; +Cc: Nilawar, Badal


Hi Anshuman

On 8/3/2023 12:37 PM, Gupta, Anshuman wrote:
> 
> 
>> -----Original Message-----
>> From: Tauro, Riana <riana.tauro@intel.com>
>> Sent: Thursday, August 3, 2023 10:36 AM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
>> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
>> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal
>> <badal.nilawar@intel.com>; Sundaresan, Sujaritha
>> <sujaritha.sundaresan@intel.com>
>> Subject: [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function
>> parameters
>>
>> Change function parameter of d3cold_allowed get/set functions to pci slot
>> name. Change the data type from char to uint32_t as it is more appropriate.
>>
>> This change is done so that both xe tests and i915 test can use the same
>> library function.
>> Modify i915_suspend to use these functions.
>> No Functional Changes.
> Why xe test can not use card->pci_slot_name, add that justification in commit log.

i915_suspend tests find the first discrete card and that is done by 
igt_device_scan using udev.
So initially when this lib was written it made use of igt_device_card as 
it was appropriate for the test.

Xe tests use pci_device. To add a common function I couldn't convert 
igt_device_card to pci_device/ find a helper function to do so.

So i added the parameter slot name in this RFC patch as it was common. 
Should i continue with this? Or create a new function for XE?

Thanks
Riana

> Regards,
> Anshuman.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>>   lib/igt_pm.c              | 22 +++++++++++-----------
>>   lib/igt_pm.h              |  4 ++--
>>   tests/i915/i915_suspend.c |  8 ++++----
>>   3 files changed, 17 insertions(+), 17 deletions(-)
>>
>> diff --git a/lib/igt_pm.c b/lib/igt_pm.c index ba591f0f8..11cf82950 100644
>> --- a/lib/igt_pm.c
>> +++ b/lib/igt_pm.c
>> @@ -1204,47 +1204,47 @@ void igt_pm_setup_pci_card_runtime_pm(struct
>> pci_device *pci_dev)
>>
>>   /**
>>    * igt_pm_get_d3cold_allowed:
>> - * @igt_device_card: device card
>> - * @val: value to be read into
>> + * @pci_slot_name: slot name of the pci device
>> + * @value: value to be read into
>>    *
>>    * Reads the value of d3cold_allowed attribute
>>    * of the pci device
>>    */
>> -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val)
>> +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t
>> +*value)
>>   {
>>   	char name[PATH_MAX];
>>   	int fd;
>>
>>   	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
>> -		 card->pci_slot_name);
>> +		 pci_slot_name);
>>
>>   	fd = open(name, O_RDONLY);
>>   	igt_assert_f(fd >= 0, "Can't open %s\n", name);
>>
>> -	igt_sysfs_read(fd, "d3cold_allowed", val, sizeof(val));
>> +	__igt_sysfs_get_u32(fd, "d3cold_allowed", value);
>>
>>   	close(fd);
>>   }
>>
>>   /**
>> - * igt_pm_get_d3cold_allowed:
>> - * @igt_device_card: device card
>> - * @val: value to be written
>> + * igt_pm_set_d3cold_allowed:
>> + * @pci_slot_name: slot name of pci device
>> + * @value: value to be written
>>    *
>>    * writes the value to d3cold_allowed attribute of pci device
>>    */
>> -void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char
>> *val)
>> +void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t
>> +value)
>>   {
>>   	char name[PATH_MAX];
>>   	int fd;
>>
>>   	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
>> -		 card->pci_slot_name);
>> +		 pci_slot_name);
>>
>>   	fd = open(name, O_RDONLY);
>>   	igt_assert_f(fd >= 0, "Can't open %s\n", name);
>>
>> -	igt_sysfs_write(fd, "d3cold_allowed", val, sizeof(val));
>> +	__igt_sysfs_set_u32(fd, "d3cold_allowed", value);
>>   	close(fd);
>>   }
>>
>> diff --git a/lib/igt_pm.h b/lib/igt_pm.h index 71ec2f239..306a9eb46 100644
>> --- a/lib/igt_pm.h
>> +++ b/lib/igt_pm.h
>> @@ -79,8 +79,8 @@ enum igt_acpi_d_state
>>   igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev);  void
>> igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
>>   				       struct pci_device *i915);
>> -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val); -
>> void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char
>> *val);
>> +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t
>> +*value); void igt_pm_set_d3cold_allowed(const char *pci_slot_name,
>> +uint32_t value);
>>   void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev);  void
>> igt_pm_restore_pci_card_runtime_pm(void);
>>   void igt_pm_print_pci_card_runtime_status(void);
>> diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index
>> 851e797c2..c25805584 100644
>> --- a/tests/i915/i915_suspend.c
>> +++ b/tests/i915/i915_suspend.c
>> @@ -283,7 +283,7 @@ static void
>>   test_suspend_without_i915(int state)
>>   {
>>   	struct igt_device_card card;
>> -	char d3cold_allowed[2];
>> +	uint32_t d3cold_allowed;
>>   	int fd;
>>
>>   	fd = __drm_open_driver(DRIVER_INTEL);
>> @@ -297,8 +297,8 @@ test_suspend_without_i915(int state)
>>   	 */
>>   	if (state == SUSPEND_STATE_FREEZE &&
>>   	    igt_device_find_first_i915_discrete_card(&card)) {
>> -		igt_pm_get_d3cold_allowed(&card, d3cold_allowed);
>> -		igt_pm_set_d3cold_allowed(&card, "0\n");
>> +		igt_pm_get_d3cold_allowed(card.pci_slot_name,
>> &d3cold_allowed);
>> +		igt_pm_set_d3cold_allowed(card.pci_slot_name, 0);
>>   	}
>>   	drm_close_driver(fd);
>>
>> @@ -308,7 +308,7 @@ test_suspend_without_i915(int state)
>>   	igt_system_suspend_autoresume(state, SUSPEND_TEST_NONE);
>>
>>   	if (state == SUSPEND_STATE_FREEZE && strlen(card.card))
>> -		igt_pm_set_d3cold_allowed(&card, d3cold_allowed);
>> +		igt_pm_set_d3cold_allowed(card.pci_slot_name,
>> d3cold_allowed);
>>
>>   	igt_kmsg(KMSG_INFO "Re-loading i915 \n");
>>   	igt_assert_eq(igt_i915_driver_load(NULL), 0);
>> --
>> 2.40.0
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle
  2023-08-03  7:47   ` Gupta, Anshuman
@ 2023-08-03  8:48     ` Riana Tauro
  0 siblings, 0 replies; 14+ messages in thread
From: Riana Tauro @ 2023-08-03  8:48 UTC (permalink / raw)
  To: Gupta, Anshuman, igt-dev; +Cc: Nilawar, Badal



On 8/3/2023 1:17 PM, Gupta, Anshuman wrote:
> 
> 
>> -----Original Message-----
>> From: Tauro, Riana <riana.tauro@intel.com>
>> Sent: Thursday, August 3, 2023 10:36 AM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
>> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
>> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal
>> <badal.nilawar@intel.com>; Sundaresan, Sujaritha
>> <sujaritha.sundaresan@intel.com>
>> Subject: [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during
>> s2idle
>>
>> During s2idle, the device is powered up and GT C6 enabled so we expect the
>> residency to increase across suspend.
>> Add a test that validates the residency over a s2idle cycle is within the
>> threshold.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>>   tests/xe/xe_pm_residency.c | 54
>> ++++++++++++++++++++++++++++++++++----
>>   1 file changed, 49 insertions(+), 5 deletions(-)
>>
>> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
>> index 4936de166..a2b56e78d 100644
>> --- a/tests/xe/xe_pm_residency.c
>> +++ b/tests/xe/xe_pm_residency.c
>> @@ -10,8 +10,10 @@
>>    * Functionality: GT C States
>>    * Test category: functionality test
>>    */
>> +#include <limits.h>
>>
>>   #include "igt.h"
>> +#include "igt_device.h"
>>   #include "igt_sysfs.h"
>>
>>   #include "xe/xe_query.h"
>> @@ -29,6 +31,11 @@ const double tolerance = 0.1;
>>   		     (tol) * 100.0, (tol) * 100.0, \
>>   		     (double)(ref))
>>
>> +enum test_type {
>> +	TEST_S2IDLE,
>> +	TEST_SLEEP,
>> +};
>> +
>>   /**
>>    * SUBTEST: gt-c6-on-idle
>>    * Description: Validate GT C6 state on idle @@ -38,9 +45,22 @@ const
>> double tolerance = 0.1;
>>    * Description: basic residency test to validate idle residency
>>    *		measured over a time interval is within the tolerance
>>    * Run type: FULL
>> + *
>> + * SUBTEST: gt-c6-freeze
>> + * Description: Validate idle residency measured over suspend(s2idle)
>> + *              is within the tolerance
>> + * Run type: FULL
>>    */
>>   IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>>
>> +static unsigned long walltime_ms(void)
>> +{
>> +	struct timespec ts;
>> +
>> +	clock_gettime(CLOCK_REALTIME, &ts);
>> +	return ts.tv_sec * 1000 + ts.tv_nsec / 1000000; }
>> +
>>   static unsigned int measured_usleep(unsigned int usec)  {
>>   	struct timespec ts = { };
>> @@ -69,15 +89,25 @@ static unsigned long read_idle_residency(int fd, int gt)
>>   	return residency;
>>   }
>>
>> -static void test_idle_residency(int fd, int gt)
>> +static void test_idle_residency(int fd, int gt, enum test_type flag)
>>   {
>>   	unsigned long elapsed_ms, residency_start, residency_end;
>>
>>   	igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in
>> C6\n");
>>
>> -	residency_start = read_idle_residency(fd, gt);
>> -	elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
>> -	residency_end = read_idle_residency(fd, gt);
>> +	if (flag == TEST_S2IDLE) {
>> +		residency_start = read_idle_residency(fd, gt);
>> +		elapsed_ms -= walltime_ms();
>> +		igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE,
>> SUSPEND_TEST_NONE);
>> +		elapsed_ms += walltime_ms();
>> +		residency_end = read_idle_residency(fd, gt);
>> +	}
>> +
>> +	if (flag == TEST_SLEEP) {
>> +		residency_start = read_idle_residency(fd, gt);
>> +		elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) /
>> 1000;
>> +		residency_end = read_idle_residency(fd, gt);
>> +	}
>>
>>   	igt_info("Measured %lums of idle residency in %lums\n",
>>   		 residency_end - residency_start, elapsed_ms); @@ -88,6
>> +118,8 @@ static void test_idle_residency(int fd, int gt)  igt_main  {
>>   	int fd, gt;
>> +	char pci_slot_name[NAME_MAX];
>> +	uint32_t d3cold_allowed;
>>
>>   	igt_fixture {
>>   		fd = drm_open_driver(DRIVER_XE);
>> @@ -99,10 +131,22 @@ igt_main
>>   		xe_for_each_gt(fd, gt)
>>   			igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1),
>> "GT not in C6\n");
>>
>> +	igt_describe("Validate idle residency measured over suspend cycle is
>> within the tolerance");
>> +	igt_subtest("gt-c6-freeze") {
>> +		igt_device_get_pci_slot_name(fd, pci_slot_name);
>> +		igt_pm_get_d3cold_allowed(pci_slot_name,
>> &d3cold_allowed);
>> +		igt_pm_set_d3cold_allowed(pci_slot_name, 0);
> We need to disallow d3cold only for discrete cards, rc6 residency should not get reset on integrated gfx.
> This can save some execution time on CI.

Sure Will fix this.

Thanks
Riana
> Thanks,
> Anshuman.
>> +
>> +		xe_for_each_gt(fd, gt)
>> +			test_idle_residency(fd, gt, TEST_S2IDLE);
>> +
>> +		igt_pm_set_d3cold_allowed(pci_slot_name,
>> d3cold_allowed);
>> +	}
>> +
>>   	igt_describe("Validate idle residency measured over a time interval is
>> within the tolerance");
>>   	igt_subtest("idle-residency")
>>   		xe_for_each_gt(fd, gt)
>> -			test_idle_residency(fd, gt);
>> +			test_idle_residency(fd, gt, TEST_SLEEP);
>>
>>   	igt_fixture {
>>   		close(fd);
>> --
>> 2.40.0
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters
  2023-08-03  8:46     ` Riana Tauro
@ 2023-08-03  8:48       ` Gupta, Anshuman
  0 siblings, 0 replies; 14+ messages in thread
From: Gupta, Anshuman @ 2023-08-03  8:48 UTC (permalink / raw)
  To: Tauro, Riana, igt-dev; +Cc: Nilawar, Badal



> -----Original Message-----
> From: Tauro, Riana <riana.tauro@intel.com>
> Sent: Thursday, August 3, 2023 2:16 PM
> To: Gupta, Anshuman <anshuman.gupta@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: Dixit, Ashutosh <ashutosh.dixit@intel.com>; Belgaumkar, Vinay
> <vinay.belgaumkar@intel.com>; Nilawar, Badal <badal.nilawar@intel.com>;
> Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com>
> Subject: Re: [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function
> parameters
> 
> 
> Hi Anshuman
> 
> On 8/3/2023 12:37 PM, Gupta, Anshuman wrote:
> >
> >
> >> -----Original Message-----
> >> From: Tauro, Riana <riana.tauro@intel.com>
> >> Sent: Thursday, August 3, 2023 10:36 AM
> >> To: igt-dev@lists.freedesktop.org
> >> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
> >> <anshuman.gupta@intel.com>; Dixit, Ashutosh
> >> <ashutosh.dixit@intel.com>; Belgaumkar, Vinay
> >> <vinay.belgaumkar@intel.com>; Nilawar, Badal
> >> <badal.nilawar@intel.com>; Sundaresan, Sujaritha
> >> <sujaritha.sundaresan@intel.com>
> >> Subject: [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function
> >> parameters
> >>
> >> Change function parameter of d3cold_allowed get/set functions to pci
> >> slot name. Change the data type from char to uint32_t as it is more
> appropriate.
> >>
> >> This change is done so that both xe tests and i915 test can use the
> >> same library function.
> >> Modify i915_suspend to use these functions.
> >> No Functional Changes.
> > Why xe test can not use card->pci_slot_name, add that justification in
> commit log.
> 
> i915_suspend tests find the first discrete card and that is done by
> igt_device_scan using udev.
> So initially when this lib was written it made use of igt_device_card as it was
> appropriate for the test.
> 
> Xe tests use pci_device. To add a common function I couldn't convert
> igt_device_card to pci_device/ find a helper function to do so.
> 
> So i added the parameter slot name in this RFC patch as it was common.
> Should i continue with this? Or create a new function for XE?
Thanks for explanation.
Please continue with the change and add that justification in commit-log.
Thanks,
Anshuman.
> 
> Thanks
> Riana
> 
> > Regards,
> > Anshuman.
> >>
> >> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> >> ---
> >>   lib/igt_pm.c              | 22 +++++++++++-----------
> >>   lib/igt_pm.h              |  4 ++--
> >>   tests/i915/i915_suspend.c |  8 ++++----
> >>   3 files changed, 17 insertions(+), 17 deletions(-)
> >>
> >> diff --git a/lib/igt_pm.c b/lib/igt_pm.c index ba591f0f8..11cf82950
> >> 100644
> >> --- a/lib/igt_pm.c
> >> +++ b/lib/igt_pm.c
> >> @@ -1204,47 +1204,47 @@ void
> igt_pm_setup_pci_card_runtime_pm(struct
> >> pci_device *pci_dev)
> >>
> >>   /**
> >>    * igt_pm_get_d3cold_allowed:
> >> - * @igt_device_card: device card
> >> - * @val: value to be read into
> >> + * @pci_slot_name: slot name of the pci device
> >> + * @value: value to be read into
> >>    *
> >>    * Reads the value of d3cold_allowed attribute
> >>    * of the pci device
> >>    */
> >> -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char
> >> *val)
> >> +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t
> >> +*value)
> >>   {
> >>   	char name[PATH_MAX];
> >>   	int fd;
> >>
> >>   	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
> >> -		 card->pci_slot_name);
> >> +		 pci_slot_name);
> >>
> >>   	fd = open(name, O_RDONLY);
> >>   	igt_assert_f(fd >= 0, "Can't open %s\n", name);
> >>
> >> -	igt_sysfs_read(fd, "d3cold_allowed", val, sizeof(val));
> >> +	__igt_sysfs_get_u32(fd, "d3cold_allowed", value);
> >>
> >>   	close(fd);
> >>   }
> >>
> >>   /**
> >> - * igt_pm_get_d3cold_allowed:
> >> - * @igt_device_card: device card
> >> - * @val: value to be written
> >> + * igt_pm_set_d3cold_allowed:
> >> + * @pci_slot_name: slot name of pci device
> >> + * @value: value to be written
> >>    *
> >>    * writes the value to d3cold_allowed attribute of pci device
> >>    */
> >> -void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const
> >> char
> >> *val)
> >> +void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t
> >> +value)
> >>   {
> >>   	char name[PATH_MAX];
> >>   	int fd;
> >>
> >>   	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s",
> >> -		 card->pci_slot_name);
> >> +		 pci_slot_name);
> >>
> >>   	fd = open(name, O_RDONLY);
> >>   	igt_assert_f(fd >= 0, "Can't open %s\n", name);
> >>
> >> -	igt_sysfs_write(fd, "d3cold_allowed", val, sizeof(val));
> >> +	__igt_sysfs_set_u32(fd, "d3cold_allowed", value);
> >>   	close(fd);
> >>   }
> >>
> >> diff --git a/lib/igt_pm.h b/lib/igt_pm.h index 71ec2f239..306a9eb46
> >> 100644
> >> --- a/lib/igt_pm.h
> >> +++ b/lib/igt_pm.h
> >> @@ -79,8 +79,8 @@ enum igt_acpi_d_state
> >>   igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev);  void
> >> igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
> >>   				       struct pci_device *i915); -void
> >> igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val); -
> >> void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const
> >> char *val);
> >> +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t
> >> +*value); void igt_pm_set_d3cold_allowed(const char *pci_slot_name,
> >> +uint32_t value);
> >>   void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev);
> >> void igt_pm_restore_pci_card_runtime_pm(void);
> >>   void igt_pm_print_pci_card_runtime_status(void);
> >> diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c
> >> index
> >> 851e797c2..c25805584 100644
> >> --- a/tests/i915/i915_suspend.c
> >> +++ b/tests/i915/i915_suspend.c
> >> @@ -283,7 +283,7 @@ static void
> >>   test_suspend_without_i915(int state)
> >>   {
> >>   	struct igt_device_card card;
> >> -	char d3cold_allowed[2];
> >> +	uint32_t d3cold_allowed;
> >>   	int fd;
> >>
> >>   	fd = __drm_open_driver(DRIVER_INTEL); @@ -297,8 +297,8 @@
> >> test_suspend_without_i915(int state)
> >>   	 */
> >>   	if (state == SUSPEND_STATE_FREEZE &&
> >>   	    igt_device_find_first_i915_discrete_card(&card)) {
> >> -		igt_pm_get_d3cold_allowed(&card, d3cold_allowed);
> >> -		igt_pm_set_d3cold_allowed(&card, "0\n");
> >> +		igt_pm_get_d3cold_allowed(card.pci_slot_name,
> >> &d3cold_allowed);
> >> +		igt_pm_set_d3cold_allowed(card.pci_slot_name, 0);
> >>   	}
> >>   	drm_close_driver(fd);
> >>
> >> @@ -308,7 +308,7 @@ test_suspend_without_i915(int state)
> >>   	igt_system_suspend_autoresume(state, SUSPEND_TEST_NONE);
> >>
> >>   	if (state == SUSPEND_STATE_FREEZE && strlen(card.card))
> >> -		igt_pm_set_d3cold_allowed(&card, d3cold_allowed);
> >> +		igt_pm_set_d3cold_allowed(card.pci_slot_name,
> >> d3cold_allowed);
> >>
> >>   	igt_kmsg(KMSG_INFO "Re-loading i915 \n");
> >>   	igt_assert_eq(igt_i915_driver_load(NULL), 0);
> >> --
> >> 2.40.0
> >

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-08-03  8:49 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-03  5:06 [igt-dev] [PATCH i-g-t 0/4] RFC Modify igt_pm functions and add GT C6 freeze test Riana Tauro
2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro
2023-08-03  6:44   ` Gupta, Anshuman
2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro
2023-08-03  7:07   ` Gupta, Anshuman
2023-08-03  8:46     ` Riana Tauro
2023-08-03  8:48       ` Gupta, Anshuman
2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 3/4] tests/xe: use igt_pm library functions Riana Tauro
2023-08-03  5:06 ` [igt-dev] [PATCH i-g-t 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro
2023-08-03  7:47   ` Gupta, Anshuman
2023-08-03  8:48     ` Riana Tauro
2023-08-03  6:05 ` [igt-dev] ○ CI.xeBAT: info for RFC Modify igt_pm functions and add GT C6 freeze test Patchwork
2023-08-03  6:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-03  7:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.