All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool
@ 2022-05-17 13:31 Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 1/6] test/i915_pm_rpm: Add placement to gem-{mmap-type, execbuf} Anshuman Gupta
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, badal.nilawar, rodrigo.vivi

Kernel d3cold feature is wip therefore spin off tool patches 
from below series in order to merge it.

https://patchwork.freedesktop.org/series/102780/

Anshuman Gupta (6):
  test/i915_pm_rpm: Add placement to gem-{mmap-type, execbuf}
  lib/igt_device: Get gfx PCI card root port
  lib/igt_pm: D3Cold runtime pm infrastructure
  lib: Optional autosuspend_delay_ms configuration
  tools: Add intel_pm_rpm tool
  tools/intel_pm_rpm: Add an option to setup d3cold

 lib/igt_device.c         |  28 ++++
 lib/igt_device.h         |   1 +
 lib/igt_pm.c             | 346 +++++++++++++++++++++++++++++++++++++++
 lib/igt_pm.h             |  25 +++
 tests/i915/i915_pm_rpm.c |  23 ++-
 tools/intel_pm_rpm.c     | 250 ++++++++++++++++++++++++++++
 tools/meson.build        |   1 +
 7 files changed, 666 insertions(+), 8 deletions(-)
 create mode 100644 tools/intel_pm_rpm.c

-- 
2.26.2

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

* [igt-dev] [PATCH i-g-t 1/6] test/i915_pm_rpm: Add placement to gem-{mmap-type, execbuf}
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
@ 2022-05-17 13:31 ` Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 2/6] lib/igt_device: Get gfx PCI card root port Anshuman Gupta
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, Chris Wilson, badal.nilawar, rodrigo.vivi

Add memory region placement to gem-{mmap-type, execbuf} subtest.
This will be useful to extend these sub-test for D3Cold.

Cc: Chris Wilson <chris.p.wilson@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 tests/i915/i915_pm_rpm.c | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 461730e8a5..d2bce5826e 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -1069,7 +1069,8 @@ static void debugfs_forcewake_user_subtest(void)
 	igt_assert(wait_for_suspended());
 }
 
-static void gem_mmap_args(const struct mmap_offset *t)
+static void gem_mmap_args(const struct mmap_offset *t,
+			  struct drm_i915_gem_memory_class_instance *mem_regions)
 {
 	int i;
 	uint32_t handle;
@@ -1079,7 +1080,7 @@ static void gem_mmap_args(const struct mmap_offset *t)
 	/* Create, map and set data while the device is active. */
 	enable_one_screen_and_wait(&ms_data);
 
-	handle = gem_create(drm_fd, buf_size);
+	handle = gem_create_in_memory_region_list(drm_fd, buf_size, mem_regions, 1);
 
 	gem_buf = __gem_mmap_offset(drm_fd, handle, 0, buf_size,
 				    PROT_READ | PROT_WRITE, t->type);
@@ -1290,7 +1291,7 @@ static void submit_blt_cmd(uint32_t dst_handle, int dst_size,
 }
 
 /* Make sure we can submit a batch buffer and verify its result. */
-static void gem_execbuf_subtest(void)
+static void gem_execbuf_subtest(struct drm_i915_gem_memory_class_instance *mem_regions)
 {
 	int x, y;
 	uint32_t handle;
@@ -1308,7 +1309,7 @@ static void gem_execbuf_subtest(void)
 	/* Create and set data while the device is active. */
 	enable_one_screen_and_wait(&ms_data);
 
-	handle = gem_create(drm_fd, dst_size);
+	handle = gem_create_in_memory_region_list(drm_fd, dst_size, mem_regions, 1);
 
 	cpu_buf = malloc(dst_size);
 	igt_assert(cpu_buf);
@@ -2083,15 +2084,21 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 	/* GEM */
 	igt_subtest_with_dynamic("gem-mmap-type") {
 		for_each_mmap_offset_type(drm_fd, t) {
-			igt_dynamic_f("%s", t->name)
-				gem_mmap_args(t);
+			for_each_memory_region(r, drm_fd) {
+				igt_dynamic_f("%s-%s", t->name, r->name)
+				gem_mmap_args(t, &r->ci);
+			}
 		}
 	}
 
 	igt_subtest("gem-pread")
 		gem_pread_subtest();
-	igt_subtest("gem-execbuf")
-		gem_execbuf_subtest();
+	igt_subtest_with_dynamic("gem-execbuf") {
+		for_each_memory_region(r, drm_fd) {
+			igt_dynamic_f("%s", r->name)
+				gem_execbuf_subtest(&r->ci);
+		}
+	}
 	igt_subtest("gem-idle")
 		gem_idle_subtest();
 	igt_subtest("gem-evict-pwrite") {
-- 
2.26.2

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

* [igt-dev] [PATCH i-g-t 2/6] lib/igt_device: Get gfx PCI card root port
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 1/6] test/i915_pm_rpm: Add placement to gem-{mmap-type, execbuf} Anshuman Gupta
@ 2022-05-17 13:31 ` Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 3/6] lib/igt_pm: D3Cold runtime pm infrastructure Anshuman Gupta
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, badal.nilawar, rodrigo.vivi

Utility library function to get the Gfx Card PCI topology
root port pci device using libpaciaccess.
root port will be used to get the real ACPI D state.

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 lib/igt_device.c | 28 ++++++++++++++++++++++++++++
 lib/igt_device.h |  1 +
 2 files changed, 29 insertions(+)

diff --git a/lib/igt_device.c b/lib/igt_device.c
index 9794a9928f..fddfba72cd 100644
--- a/lib/igt_device.c
+++ b/lib/igt_device.c
@@ -257,3 +257,31 @@ struct pci_device *igt_device_get_pci_device(int fd)
 
 	return pci_dev;
 }
+
+/**
+ * igt_device_get_pci_root_port:
+ * @fd: the device.
+ *
+ * Looks up the graphics pci device root port using libpciaccess.
+ *
+ * Returns:
+ * The root port pci_device.
+ */
+struct pci_device *
+igt_device_get_pci_root_port(int fd)
+{
+	struct pci_device *pci_dev, *prev;
+
+	pci_dev = __igt_device_get_pci_device(fd, 0);
+	igt_require(pci_dev);
+
+	while (pci_dev) {
+		prev = pci_dev;
+		pci_dev = pci_device_get_parent_bridge(pci_dev);
+	}
+
+	igt_debug("Root Port PCI device %04x:%02x:%02x.%01x\n",
+		  prev->domain, prev->bus, prev->dev, prev->func);
+
+	return prev;
+}
diff --git a/lib/igt_device.h b/lib/igt_device.h
index 1aaa840e25..800a0fcc3c 100644
--- a/lib/igt_device.h
+++ b/lib/igt_device.h
@@ -34,5 +34,6 @@ void igt_device_drop_master(int fd);
 int igt_device_get_card_index(int fd);
 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);
 
 #endif /* __IGT_DEVICE_H__ */
-- 
2.26.2

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

* [igt-dev] [PATCH i-g-t 3/6] lib/igt_pm: D3Cold runtime pm infrastructure
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 1/6] test/i915_pm_rpm: Add placement to gem-{mmap-type, execbuf} Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 2/6] lib/igt_device: Get gfx PCI card root port Anshuman Gupta
@ 2022-05-17 13:31 ` Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 4/6] lib: Optional autosuspend_delay_ms configuration Anshuman Gupta
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, badal.nilawar, rodrigo.vivi

Enable gfx card pci devices runtime pm for all pci devices
and bridge under the topology of Gfx Card root port.

Added a library function to get the PCI root port ACPI
D state and to print the pci card devices runtime pm
status.

v2:
- Save pci dev power attrs to dynamically allocated array. [Rodrigo]
- Set autosuspend delay to 0 on supported devices. [Rodrigo]
- %s/else if/else in  igt_pm_get_acpi_real_d_state. [Kamil]
v3:
- Add comment for MAX_PCI_DEVICES. [Badal]
- Use static global array __pci_dev_pwrattr[]. [Rodrigo]
- Use pci_slot_match iter. [Badal]
- Destroy the iter. [Badal]
v4:
- Added igt_pm_enable_pci_card_autosuspend() to avoid any
  control attr save/restore by exit handler. [Rodrigo]
v5:
- Code refactoring to avoid code duplication.
-  Few function name changed. [Rodrigo]
  %s/igt_pm_enable_pci_card_autosuspend/igt_pm_enable_runtime_pm.
  %s/__igt_pm_setup_pci_card_runtime_pm/igt_pm_setup_pci_dev_power_attrs.
  %s/igt_pm_setup_power_attr/igt_pm_write_power_attr.
v5:
- %s/igt_pm_save_power_attr/igt_pm_read_power_attr/
- Added len argument to igt_pm_write_power_attr().

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 lib/igt_pm.c | 316 +++++++++++++++++++++++++++++++++++++++++++++++++++
 lib/igt_pm.h |  24 ++++
 2 files changed, 340 insertions(+)

diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index b409ec4632..4768deefc8 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -28,6 +28,7 @@
 #include <fcntl.h>
 #include <stdio.h>
 #include <limits.h>
+#include <pciaccess.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
@@ -75,6 +76,8 @@ enum {
 #define MIN_POWER_STR		"min_power\n"
 /* Remember to fix this if adding longer strings */
 #define MAX_POLICY_STRLEN	strlen(MAX_PERFORMANCE_STR)
+/* Root Port bus can have max 32 dev and each dev can have max 8 func */
+#define MAX_PCI_DEVICES		256
 int8_t *__sata_pm_policies;
 int __scsi_host_cnt;
 
@@ -856,3 +859,316 @@ bool i915_output_is_lpsp_capable(int drm_fd, igt_output_t *output)
 
 	return strstr(buf, "LPSP: capable");
 }
+
+/**
+ * igt_pm_acpi_d3cold_supported:
+ * @pci_dev: root port pci_dev.
+ * Check ACPI D3Cold support.
+ *
+ * Returns:
+ * True if ACPI D3Cold supported otherwise false.
+ */
+bool igt_pm_acpi_d3cold_supported(struct pci_device *pci_dev)
+{
+	char name[PATH_MAX];
+	int dir, fd;
+
+	snprintf(name, PATH_MAX,
+		 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/firmware_node",
+		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+
+	dir = open(name, O_RDONLY);
+	igt_require(dir > 0);
+
+	/* BIOS need to enable ACPI D3Cold Support.*/
+	fd = openat(dir, "real_power_state", O_RDONLY);
+	if (fd < 0 && errno == ENOENT)
+		return false;
+
+	igt_require(fd > 0);
+
+	return true;
+}
+
+/**
+ * igt_pm_get_acpi_real_d_state:
+ * @pci_dev: root port pci_dev.
+ * Get ACPI D state for a given root port.
+ *
+ * Returns:
+ * igt_acpi_d_state state.
+ */
+enum igt_acpi_d_state
+igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev)
+{
+	char name[PATH_MAX];
+	char acpi_d_state[64];
+	int fd, n_read;
+
+	snprintf(name, PATH_MAX,
+		 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/firmware_node/real_power_state",
+		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+
+	fd = open(name, O_RDONLY);
+	if (fd < 0)
+		return IGT_ACPI_UNKNOWN_STATE;
+
+	n_read = read(fd, acpi_d_state, sizeof(acpi_d_state) - 1);
+	igt_assert(n_read >= 0);
+	acpi_d_state[n_read] = '\0';
+	close(fd);
+
+	if (strncmp(acpi_d_state, "D0\n", n_read) == 0)
+		return IGT_ACPI_D0;
+	if  (strncmp(acpi_d_state, "D1\n", n_read) == 0)
+		return IGT_ACPI_D1;
+	if  (strncmp(acpi_d_state, "D2\n", n_read) == 0)
+		return IGT_ACPI_D2;
+	if  (strncmp(acpi_d_state, "D3hot\n", n_read) == 0)
+		return IGT_ACPI_D3Hot;
+	if  (strncmp(acpi_d_state, "D3cold\n", n_read) == 0)
+		return IGT_ACPI_D3Cold;
+
+	return IGT_ACPI_UNKNOWN_STATE;
+}
+
+static struct igt_pm_pci_dev_pwrattr  __pci_dev_pwrattr[MAX_PCI_DEVICES];
+
+static void __igt_pm_pci_card_exit_handler(int sig)
+{
+	igt_pm_restore_pci_card_runtime_pm();
+}
+
+static int igt_pm_get_power_attr_fd(struct pci_device *pci_dev, const char *attr)
+{
+	char name[PATH_MAX];
+	int fd;
+
+	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/power/%s",
+		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func, attr);
+
+	fd = open(name, O_RDWR);
+	igt_assert_f(fd >= 0, "Can't open %s\n", attr);
+
+	return fd;
+}
+
+static bool igt_pm_read_power_attr(int fd, char *attr, int len, bool autosuspend_delay)
+{
+	int size;
+
+	size = read(fd, attr, len - 1);
+
+	if (autosuspend_delay) {
+		if (size < 0 && errno == EIO)
+			return false;
+	} else {
+		igt_assert(size > 0);
+	}
+
+	attr[size] = '\0';
+	strchomp(attr);
+
+	return true;
+}
+
+static void igt_pm_write_power_attr(int fd, const char *val, int len)
+{
+	int size;
+	char buf[64];
+
+	size = write(fd, val, len);
+	if (size < 0 && errno == EIO)
+		return;
+
+	igt_assert_eq(size, len);
+	lseek(fd, 0, SEEK_SET);
+	size = read(fd, buf, ARRAY_SIZE(buf));
+	igt_assert_eq(size, len);
+	igt_assert(strncmp(buf, val, len) == 0);
+}
+
+static void
+igt_pm_setup_pci_dev_power_attrs(struct pci_device *pci_dev, struct igt_pm_pci_dev_pwrattr *pwrattr)
+{
+	int control_fd, delay_fd, control_size, delay_size;
+	char *control, *delay;
+
+	delay_fd = igt_pm_get_power_attr_fd(pci_dev, "autosuspend_delay_ms");
+	control_fd = igt_pm_get_power_attr_fd(pci_dev, "control");
+
+	if (!pwrattr)
+		goto write_power_attr;
+
+	control = pwrattr->control;
+	control_size =  sizeof(pwrattr->control);
+	delay = pwrattr->autosuspend_delay;
+	delay_size =  sizeof(pwrattr->autosuspend_delay);
+	pwrattr->pci_dev = pci_dev;
+	pwrattr->autosuspend_supported = true;
+
+	if (!igt_pm_read_power_attr(delay_fd, delay, delay_size, true)) {
+		pwrattr->autosuspend_supported = false;
+		igt_debug("PCI '%04x:%02x:%02x.%01x' doesn't support auto_suspend\n",
+			  pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+	}
+
+	igt_pm_read_power_attr(control_fd, control, control_size, false);
+	igt_debug("PCI '%04x:%02x:%02x.%01x' Saved 'control, autosuspend_delay_ms' as '%s, %s'\n",
+		  pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func, control,
+		  pwrattr->autosuspend_supported ? delay : "NA");
+
+	igt_install_exit_handler(__igt_pm_pci_card_exit_handler);
+
+write_power_attr:
+
+	igt_pm_write_power_attr(delay_fd, "0\n", 2);
+	igt_pm_write_power_attr(control_fd, "auto\n", 5);
+
+	close(delay_fd);
+	close(control_fd);
+}
+
+static void
+igt_pm_setup_pci_card_power_attrs(struct pci_device *pci_dev, bool save_attrs)
+{
+	int primary, secondary, subordinate, ret;
+	struct pci_device_iterator *iter;
+	struct pci_slot_match match;
+	struct pci_device *dev;
+	int i = 0;
+
+	ret = pci_device_get_bridge_buses(pci_dev, &primary, &secondary, &subordinate);
+	igt_assert(!ret);
+
+	ret = pci_system_init();
+	igt_assert(!ret);
+
+	match.domain = pci_dev->domain;
+	match.bus = PCI_MATCH_ANY;
+	match.dev = PCI_MATCH_ANY;
+	match.func = PCI_MATCH_ANY;
+	iter = pci_slot_match_iterator_create(&match);
+	igt_assert(iter);
+
+	/* Setup power attrs for PCI root port */
+	igt_pm_setup_pci_dev_power_attrs(pci_dev, save_attrs ? &__pci_dev_pwrattr[i++] : NULL);
+	while ((dev = pci_device_next(iter)) != NULL) {
+		if (dev->bus >= secondary && dev->bus <= subordinate) {
+			igt_pm_setup_pci_dev_power_attrs(dev,
+							 save_attrs ? &__pci_dev_pwrattr[i++] : NULL);
+			if (save_attrs)
+				igt_assert(i <  MAX_PCI_DEVICES);
+		}
+	}
+
+	pci_iterator_destroy(iter);
+}
+
+/**
+ * igt_pm_enable_pci_card_runtime_pm:
+ * @pci_dev: root port pci_dev.
+ * Enable runtime PM for all PCI endpoints devices for a given root port by
+ * setting power/control attr to "auto" and setting autosuspend_delay_ms
+ * to zero.
+ */
+void igt_pm_enable_pci_card_runtime_pm(struct pci_device *pci_dev)
+{
+	igt_pm_setup_pci_card_power_attrs(pci_dev, false);
+	pci_system_cleanup();
+}
+
+/**
+ * igt_pm_setup_pci_card_runtime_pm:
+ * @pci_dev: root port pci_dev.
+ * Setup runtime PM for all PCI endpoints devices for a given root port by
+ * enabling runtime suspend and setting autosuspend_delay_ms to zero.
+ * It also saves and restore power control attribute for all PCI endpoints
+ * devices under given root port.
+ */
+void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev)
+{
+	memset(__pci_dev_pwrattr, 0, sizeof(__pci_dev_pwrattr));
+	igt_pm_setup_pci_card_power_attrs(pci_dev, true);
+}
+
+static void
+igt_pm_restore_power_attr(struct pci_device *pci_dev, const char *attr, char *val, int len)
+{
+	int fd;
+
+	igt_debug("PCI '%04x:%02x:%02x.%01x' Restoring %s attr to '%s'\n",
+		  pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func, attr, val);
+
+	fd = igt_pm_get_power_attr_fd(pci_dev, attr);
+	igt_assert(write(fd, val, len) == len);
+
+	close(fd);
+}
+
+/**
+ * igt_pm_restore_pci_card_runtime_pm:
+ * Restore control and autosuspend_delay_ms power attribute for all
+ * PCI endpoints devices under gfx root port, which were saved earlier
+ * by igt_pm_setup_pci_card_runtime_pm().
+ */
+void igt_pm_restore_pci_card_runtime_pm(void)
+{
+	int i = 0;
+
+	for (i = 0; i < MAX_PCI_DEVICES; i++) {
+		if (!__pci_dev_pwrattr[i].pci_dev)
+			break;
+
+		igt_pm_restore_power_attr(__pci_dev_pwrattr[i].pci_dev, "control",
+					  __pci_dev_pwrattr[i].control,
+					  sizeof(__pci_dev_pwrattr[i].control));
+
+		if (!__pci_dev_pwrattr[i].autosuspend_supported)
+			continue;
+
+		igt_pm_restore_power_attr(__pci_dev_pwrattr[i].pci_dev, "autosuspend_delay_ms",
+					  __pci_dev_pwrattr[i].autosuspend_delay,
+					  sizeof(__pci_dev_pwrattr[i].autosuspend_delay));
+	}
+
+	memset(__pci_dev_pwrattr, 0, sizeof(__pci_dev_pwrattr));
+	pci_system_cleanup();
+}
+
+static void igt_pm_print_pci_dev_runtime_status(struct pci_device *pci_dev)
+{
+	char name[PATH_MAX], runtime_status[64];
+	int fd, n_read;
+
+	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/power/runtime_status",
+		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+
+	fd = open(name, O_RDONLY);
+	igt_assert_f(fd >= 0, "Can't open runtime_status\n");
+
+	n_read = read(fd, runtime_status, sizeof(runtime_status) - 1);
+	igt_assert(n_read >= 0);
+	runtime_status[n_read] = '\0';
+	igt_info("runtime suspend status for PCI '%04x:%02x:%02x.%01x' %s\n",
+		 pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func, runtime_status);
+	close(fd);
+}
+
+/**
+ * igt_pm_print_pci_card_runtime_status:
+ * @pci_dev: root port pci_dev.
+ * Print runtime suspend status for all PCI endpoints devices for a given
+ * root port.
+ */
+void igt_pm_print_pci_card_runtime_status(void)
+{
+	int i = 0;
+
+	for (i = 0; i < MAX_PCI_DEVICES; i++) {
+		if (!__pci_dev_pwrattr[i].pci_dev)
+			break;
+
+		igt_pm_print_pci_dev_runtime_status(__pci_dev_pwrattr[i].pci_dev);
+	}
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index 162d3ca3c1..c53dae2c31 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -46,6 +46,23 @@ enum igt_runtime_pm_status {
 	IGT_RUNTIME_PM_STATUS_UNKNOWN,
 };
 
+/* PCI ACPI firmware node real state */
+enum igt_acpi_d_state {
+	IGT_ACPI_D0,
+	IGT_ACPI_D1,
+	IGT_ACPI_D2,
+	IGT_ACPI_D3Hot,
+	IGT_ACPI_D3Cold,
+	IGT_ACPI_UNKNOWN_STATE,
+};
+
+struct	igt_pm_pci_dev_pwrattr {
+	struct pci_device *pci_dev;
+	char control[64];
+	bool autosuspend_supported;
+	char autosuspend_delay[64];
+};
+
 bool igt_setup_runtime_pm(int device);
 void igt_disable_runtime_pm(void);
 void igt_restore_runtime_pm(void);
@@ -54,5 +71,12 @@ bool igt_wait_for_pm_status(enum igt_runtime_pm_status status);
 bool igt_pm_dmc_loaded(int debugfs);
 bool igt_pm_pc8_plus_residencies_enabled(int msr_fd);
 bool i915_output_is_lpsp_capable(int drm_fd, igt_output_t *output);
+bool igt_pm_acpi_d3cold_supported(struct pci_device *pci_dev);
+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 *pci_dev);
+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);
 
 #endif /* IGT_PM_H */
-- 
2.26.2

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

* [igt-dev] [PATCH i-g-t 4/6] lib: Optional autosuspend_delay_ms configuration
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
                   ` (2 preceding siblings ...)
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 3/6] lib/igt_pm: D3Cold runtime pm infrastructure Anshuman Gupta
@ 2022-05-17 13:31 ` Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 5/6] tools: Add intel_pm_rpm tool Anshuman Gupta
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, badal.nilawar, rodrigo.vivi

Add an option to configure autosuspend_delay_ms as i915 read
autosuspend_delay_ms to all PCI devices under GFX root port.

configuring autosuspend_delay_ms as optional.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
---
 lib/igt_pm.c | 48 +++++++++++++++++++++++++++++++++++++++---------
 lib/igt_pm.h |  3 ++-
 2 files changed, 41 insertions(+), 10 deletions(-)

diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 4768deefc8..6ebbad330c 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -988,11 +988,25 @@ static void igt_pm_write_power_attr(int fd, const char *val, int len)
 	igt_assert(strncmp(buf, val, len) == 0);
 }
 
+static int igt_pm_get_autosuspend_delay(struct pci_device *pci_dev)
+{
+	char delay_str[64];
+	int delay, delay_fd;
+
+	delay_fd = igt_pm_get_power_attr_fd(pci_dev, "autosuspend_delay_ms");
+	if (igt_pm_read_power_attr(delay_fd, delay_str, 64, true))
+		igt_assert(sscanf(delay_str, "%d", &delay) > 0);
+
+	return delay;
+}
+
 static void
-igt_pm_setup_pci_dev_power_attrs(struct pci_device *pci_dev, struct igt_pm_pci_dev_pwrattr *pwrattr)
+igt_pm_setup_pci_dev_power_attrs(struct pci_device *pci_dev,
+				 struct igt_pm_pci_dev_pwrattr *pwrattr, int delay_ms)
 {
 	int control_fd, delay_fd, control_size, delay_size;
 	char *control, *delay;
+	char buff[64];
 
 	delay_fd = igt_pm_get_power_attr_fd(pci_dev, "autosuspend_delay_ms");
 	control_fd = igt_pm_get_power_attr_fd(pci_dev, "control");
@@ -1022,7 +1036,12 @@ igt_pm_setup_pci_dev_power_attrs(struct pci_device *pci_dev, struct igt_pm_pci_d
 
 write_power_attr:
 
-	igt_pm_write_power_attr(delay_fd, "0\n", 2);
+	if (delay_ms >= 0) {
+		int wc;
+		wc = snprintf(buff, 64, "%d\n", delay_ms);
+		igt_pm_write_power_attr(delay_fd, buff, wc);
+	}
+
 	igt_pm_write_power_attr(control_fd, "auto\n", 5);
 
 	close(delay_fd);
@@ -1030,7 +1049,7 @@ write_power_attr:
 }
 
 static void
-igt_pm_setup_pci_card_power_attrs(struct pci_device *pci_dev, bool save_attrs)
+igt_pm_setup_pci_card_power_attrs(struct pci_device *pci_dev, bool save_attrs, int delay)
 {
 	int primary, secondary, subordinate, ret;
 	struct pci_device_iterator *iter;
@@ -1052,11 +1071,15 @@ igt_pm_setup_pci_card_power_attrs(struct pci_device *pci_dev, bool save_attrs)
 	igt_assert(iter);
 
 	/* Setup power attrs for PCI root port */
-	igt_pm_setup_pci_dev_power_attrs(pci_dev, save_attrs ? &__pci_dev_pwrattr[i++] : NULL);
+	igt_pm_setup_pci_dev_power_attrs(pci_dev,
+					 save_attrs ? &__pci_dev_pwrattr[i++] : NULL,
+					 delay);
+
 	while ((dev = pci_device_next(iter)) != NULL) {
 		if (dev->bus >= secondary && dev->bus <= subordinate) {
 			igt_pm_setup_pci_dev_power_attrs(dev,
-							 save_attrs ? &__pci_dev_pwrattr[i++] : NULL);
+							 save_attrs ? &__pci_dev_pwrattr[i++] : NULL,
+							 delay);
 			if (save_attrs)
 				igt_assert(i <  MAX_PCI_DEVICES);
 		}
@@ -1067,14 +1090,21 @@ igt_pm_setup_pci_card_power_attrs(struct pci_device *pci_dev, bool save_attrs)
 
 /**
  * igt_pm_enable_pci_card_runtime_pm:
- * @pci_dev: root port pci_dev.
+ * @root: root port pci_dev.
+ * @i915: i915 pci_dev.
  * Enable runtime PM for all PCI endpoints devices for a given root port by
  * setting power/control attr to "auto" and setting autosuspend_delay_ms
  * to zero.
  */
-void igt_pm_enable_pci_card_runtime_pm(struct pci_device *pci_dev)
+void igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
+				       struct pci_device *i915)
 {
-	igt_pm_setup_pci_card_power_attrs(pci_dev, false);
+	int delay = -1;
+
+	if (i915)
+		delay = igt_pm_get_autosuspend_delay(i915);
+
+	igt_pm_setup_pci_card_power_attrs(root, false, delay);
 	pci_system_cleanup();
 }
 
@@ -1089,7 +1119,7 @@ void igt_pm_enable_pci_card_runtime_pm(struct pci_device *pci_dev)
 void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev)
 {
 	memset(__pci_dev_pwrattr, 0, sizeof(__pci_dev_pwrattr));
-	igt_pm_setup_pci_card_power_attrs(pci_dev, true);
+	igt_pm_setup_pci_card_power_attrs(pci_dev, true, 0);
 }
 
 static void
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index c53dae2c31..f28b6ebfde 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -74,7 +74,8 @@ bool i915_output_is_lpsp_capable(int drm_fd, igt_output_t *output);
 bool igt_pm_acpi_d3cold_supported(struct pci_device *pci_dev);
 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 *pci_dev);
+void igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
+				       struct pci_device *i915);
 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);
-- 
2.26.2

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

* [igt-dev] [PATCH i-g-t 5/6] tools: Add intel_pm_rpm tool
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
                   ` (3 preceding siblings ...)
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 4/6] lib: Optional autosuspend_delay_ms configuration Anshuman Gupta
@ 2022-05-17 13:31 ` Anshuman Gupta
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 6/6] tools/intel_pm_rpm: Add an option to setup d3cold Anshuman Gupta
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, badal.nilawar, rodrigo.vivi

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 6946 bytes --]

intel_pm_rpm tool is a debug tool. It can be use to setup
and prepare the gfx card to go to D3Cold.
It also provide the debug option to disable all display and
prepare device to enter to runtime suspend.

v2:
- Removed IS_DGFX() condition.
v3:
- Change naming convention from setup-d3cold to force-d3cold-wait
  disable-display to disable-display-wait. [Rodrigo]
v4:
- Use igt_setup_runtime_pm() only for --disable-display-wait.

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 tools/intel_pm_rpm.c | 210 +++++++++++++++++++++++++++++++++++++++++++
 tools/meson.build    |   1 +
 2 files changed, 211 insertions(+)
 create mode 100644 tools/intel_pm_rpm.c

diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c
new file mode 100644
index 0000000000..1f90c4fce2
--- /dev/null
+++ b/tools/intel_pm_rpm.c
@@ -0,0 +1,210 @@
+/*
+ * Copyright © 2022 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ */
+
+#include <errno.h>
+#include <getopt.h>
+#include <glib.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdbool.h>
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_device_scan.h"
+#include "igt_pm.h"
+
+typedef struct {
+	int drm_fd;
+	int debugfs_fd;
+	uint32_t devid;
+	drmModeResPtr res;
+	igt_display_t display;
+} data_t;
+
+const char *help_str =
+	"  --disable-display-wait\t\tDisable all screens and try to go into runtime pm.\n"
+	"  --force-d3cold-wait\t\tForce dgfx gfx card to enter runtime D3Cold.\n"
+	"  --help\t\tProvide help. Provide card name with IGT_DEVICE=drm:/dev/dri/card*.";
+static struct option long_options[] = {
+	{"disable-display-wait", 0, 0, 'd'},
+	{"force-d3cold-wait", 0, 0, 'f'},
+	{"help", 0, 0, 'h'},
+	{ 0, 0, 0, 0 }
+};
+
+const char *optstr = "dfh";
+
+static void usage(const char *name)
+{
+	igt_info("Usage: %s [options]\n", name);
+	igt_info("%s\n", help_str);
+}
+
+static void disable_all_displays(data_t *data)
+{
+	igt_output_t *output;
+
+	for (int i = 0; i < data->display.n_outputs; i++) {
+		output = &data->display.outputs[i];
+		igt_output_set_pipe(output, PIPE_NONE);
+		igt_display_commit(&data->display);
+	}
+}
+
+static void force_gfx_card_d3cold(data_t *data)
+{
+	struct pci_device *root;
+	int d_state;
+
+	root = igt_device_get_pci_root_port(data->drm_fd);
+
+	if (!igt_pm_acpi_d3cold_supported(root)) {
+		igt_info("D3Cold isn't supported on Root port %04x:%02x:%02x.%01x\n",
+			 root->domain, root->bus, root->dev, root->func);
+		return;
+	}
+
+	disable_all_displays(data);
+	igt_pm_setup_pci_card_runtime_pm(root);
+	sleep(1);
+	d_state = igt_pm_get_acpi_real_d_state(root);
+
+	if (d_state == IGT_ACPI_D3Cold) {
+		igt_info("D3Cold achieved for root port %04x:%02x:%02x.%01x\n",
+			 root->domain, root->bus, root->dev, root->func);
+	} else {
+		igt_pm_print_pci_card_runtime_status();
+		igt_info("D3Cold not achieved yet. Please monitor %04x:%02x:%02x.%01x real_power_state\n",
+			 root->domain, root->bus, root->dev, root->func);
+	}
+
+	igt_info("Hit CTRL-C to exit\n");
+	while (1)
+		sleep(600);
+}
+
+int main(int argc, char *argv[])
+{
+	bool disable_display = false, force_d3cold = false;
+	struct igt_device_card card;
+	char *env_device = NULL;
+	int c, option_index = 0;
+	data_t data = {};
+	int ret = 0;
+
+	if (argc <= 1) {
+		usage(argv[0]);
+		return EXIT_SUCCESS;
+	}
+
+	env_device = getenv("IGT_DEVICE");
+	igt_devices_scan(false);
+
+	if (env_device) {
+		if (!igt_device_card_match(env_device, &card)) {
+			igt_warn("No device found for the env_device\n");
+			ret = EXIT_FAILURE;
+			goto exit;
+		}
+	} else {
+		if (!igt_device_find_first_i915_discrete_card(&card)) {
+			igt_warn("No discrete gpu found\n");
+			ret = EXIT_FAILURE;
+			goto exit;
+		}
+	}
+
+	while ((c = getopt_long(argc, argv, optstr,
+				long_options, &option_index)) != -1) {
+		switch (c) {
+		case 'd':
+			disable_display = true;
+			break;
+		case 'f':
+			force_d3cold = true;
+			break;
+		default:
+		case 'h':
+			usage(argv[0]);
+			ret = EXIT_SUCCESS;
+			goto exit;
+		}
+	}
+
+	data.drm_fd = igt_open_card(&card);
+	if (data.drm_fd  >= 0) {
+		igt_info("Device %s successfully opened\n", card.card);
+	} else {
+		igt_warn("Cannot open card %s device\n", card.card);
+		ret = EXIT_FAILURE;
+		goto exit;
+	}
+
+	data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
+	data.devid = intel_get_drm_devid(data.drm_fd);
+
+	data.res = drmModeGetResources(data.drm_fd);
+	if (data.res) {
+		kmstest_set_vt_graphics_mode();
+		igt_display_require(&data.display, data.drm_fd);
+
+		/* i915 disables RPM in case DMC is not loaded on kms supported cards */
+		if (!igt_pm_dmc_loaded(data.debugfs_fd)) {
+			igt_warn("dmc fw is not loaded, no runtime pm\n");
+			ret = EXIT_FAILURE;
+			goto exit;
+		}
+	}
+
+	if (disable_display) {
+		igt_setup_runtime_pm(data.drm_fd);
+		disable_all_displays(&data);
+		if (!igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)) {
+			__igt_debugfs_dump(data.drm_fd, "i915_runtime_pm_status", IGT_LOG_INFO);
+			ret = EXIT_FAILURE;
+			goto exit;
+		}
+
+		igt_info("Device runtime suspended, Useful for debugging.\n"
+			 "Hit CTRL-C to exit\n");
+		/* Don't return useful for debugging */
+		while (1)
+			sleep(600);
+	}
+
+	if (force_d3cold)
+		force_gfx_card_d3cold(&data);
+
+exit:
+	igt_restore_runtime_pm();
+
+	if (data.res)
+		igt_display_fini(&data.display);
+
+	close(data.debugfs_fd);
+	close(data.drm_fd);
+	igt_devices_free();
+
+	return ret;
+}
diff --git a/tools/meson.build b/tools/meson.build
index 771d0b9e3d..24d0ea7140 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -28,6 +28,7 @@ tools_progs = [
 	'intel_lid',
 	'intel_opregion_decode',
 	'intel_panel_fitter',
+	'intel_pm_rpm',
 	'intel_reg_checker',
 	'intel_residency',
 	'intel_stepping',
-- 
2.26.2

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

* [igt-dev] [PATCH i-g-t 6/6] tools/intel_pm_rpm: Add an option to setup d3cold
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
                   ` (4 preceding siblings ...)
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 5/6] tools: Add intel_pm_rpm tool Anshuman Gupta
@ 2022-05-17 13:31 ` Anshuman Gupta
  2022-05-17 14:34 ` [igt-dev] ✓ Fi.CI.BAT: success for D3Cold Tool Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Anshuman Gupta @ 2022-05-17 13:31 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, badal.nilawar, rodrigo.vivi

Few PCI devices under DGFX card tree don't have any kernel driver.
These devices will block D3cold state of gfx root port.
Adding support to setup d3cold by enabling runtime PM for all PCI
devices under the gfx root port.
It will not save/restore pci devices power attributes.
It will be useful to tune D3Cold after boot.

v2:
- Change naming convention from configure_autosuspend to
  setup-d3cold. [Rodrigo].
v3:
- Kept setting auto-suspend delay as optional. [Rodrigo]

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 tools/intel_pm_rpm.c | 42 +++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 41 insertions(+), 1 deletion(-)

diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c
index 1f90c4fce2..53ad252d6e 100644
--- a/tools/intel_pm_rpm.c
+++ b/tools/intel_pm_rpm.c
@@ -34,6 +34,9 @@
 #include "igt_device_scan.h"
 #include "igt_pm.h"
 
+#define DONT_SET_AUTOSUSPEND_DELAY (1 << 0)
+#define SET_I915_AUTOSUSPEND_DELAY (1 << 1)
+
 typedef struct {
 	int drm_fd;
 	int debugfs_fd;
@@ -45,15 +48,18 @@ typedef struct {
 const char *help_str =
 	"  --disable-display-wait\t\tDisable all screens and try to go into runtime pm.\n"
 	"  --force-d3cold-wait\t\tForce dgfx gfx card to enter runtime D3Cold.\n"
+	"  --setup-d3cold\t\tEnable gfx card runtime pm and optionally set autosupend delay to"
+	"  i915 autosuspend delay. Use --setup-d3cold=i915-auto-delay as optional argument.\n"
 	"  --help\t\tProvide help. Provide card name with IGT_DEVICE=drm:/dev/dri/card*.";
 static struct option long_options[] = {
 	{"disable-display-wait", 0, 0, 'd'},
 	{"force-d3cold-wait", 0, 0, 'f'},
+	{"setup-d3cold", 2, 0, 's'},
 	{"help", 0, 0, 'h'},
 	{ 0, 0, 0, 0 }
 };
 
-const char *optstr = "dfh";
+const char *optstr = "dfs::h";
 
 static void usage(const char *name)
 {
@@ -72,6 +78,23 @@ static void disable_all_displays(data_t *data)
 	}
 }
 
+static void
+setup_gfx_card_d3cold(data_t *data, unsigned char setup_d3cold)
+{
+	struct pci_device *root, *i915;
+
+	root = igt_device_get_pci_root_port(data->drm_fd);
+	if (setup_d3cold == DONT_SET_AUTOSUSPEND_DELAY) {
+		igt_pm_enable_pci_card_runtime_pm(root, NULL);
+	} else if (setup_d3cold == SET_I915_AUTOSUSPEND_DELAY) {
+		i915 = igt_device_get_pci_device(data->drm_fd);
+		igt_pm_enable_pci_card_runtime_pm(root, i915);
+	}
+
+	igt_info("Enabled pci devs runtime pm under Root port %04x:%02x:%02x.%01x\n",
+		 root->domain, root->bus, root->dev, root->func);
+}
+
 static void force_gfx_card_d3cold(data_t *data)
 {
 	struct pci_device *root;
@@ -107,6 +130,7 @@ static void force_gfx_card_d3cold(data_t *data)
 int main(int argc, char *argv[])
 {
 	bool disable_display = false, force_d3cold = false;
+	unsigned char setup_d3cold = 0;
 	struct igt_device_card card;
 	char *env_device = NULL;
 	int c, option_index = 0;
@@ -144,6 +168,19 @@ int main(int argc, char *argv[])
 		case 'f':
 			force_d3cold = true;
 			break;
+		case 's':
+			if (optarg) {
+				if (!strcmp(optarg, "i915-auto-delay")) {
+					setup_d3cold = SET_I915_AUTOSUSPEND_DELAY;
+				} else	{
+					usage(argv[0]);
+					ret = EXIT_SUCCESS;
+					goto exit;
+				}
+			} else {
+				setup_d3cold = DONT_SET_AUTOSUSPEND_DELAY;
+			}
+			break;
 		default:
 		case 'h':
 			usage(argv[0]);
@@ -196,6 +233,9 @@ int main(int argc, char *argv[])
 	if (force_d3cold)
 		force_gfx_card_d3cold(&data);
 
+	if (setup_d3cold)
+		setup_gfx_card_d3cold(&data, setup_d3cold);
+
 exit:
 	igt_restore_runtime_pm();
 
-- 
2.26.2

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

* [igt-dev] ✓ Fi.CI.BAT: success for D3Cold Tool
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
                   ` (5 preceding siblings ...)
  2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 6/6] tools/intel_pm_rpm: Add an option to setup d3cold Anshuman Gupta
@ 2022-05-17 14:34 ` Patchwork
  2022-05-17 15:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2022-05-18 17:56 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-05-17 14:34 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

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

== Series Details ==

Series: D3Cold Tool
URL   : https://patchwork.freedesktop.org/series/104082/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11664 -> IGTPW_7122
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (41 -> 40)
------------------------------

  Missing    (1): fi-rkl-11600 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-5:          NOTRUN -> [DMESG-FAIL][1] ([i915#4494] / [i915#4957])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
    - bat-dg1-6:          [PASS][2] -> [DMESG-FAIL][3] ([i915#4494] / [i915#4957])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/bat-dg1-6/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - bat-dg1-5:          NOTRUN -> [INCOMPLETE][4] ([i915#6011])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/bat-dg1-5/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-rkl-guc:         NOTRUN -> [SKIP][5] ([fdo#111827])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/fi-rkl-guc/igt@kms_chamelium@common-hpd-after-suspend.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_engines:
    - bat-dg1-5:          [INCOMPLETE][6] ([i915#4418]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/bat-dg1-5/igt@i915_selftest@live@gt_engines.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/bat-dg1-5/igt@i915_selftest@live@gt_engines.html

  * igt@i915_selftest@live@gt_lrc:
    - fi-rkl-guc:         [INCOMPLETE][8] ([i915#4983]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@perf:
    - {bat-dg2-9}:        [DMESG-WARN][10] ([i915#5763]) -> [PASS][11] +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/bat-dg2-9/igt@i915_selftest@live@perf.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/bat-dg2-9/igt@i915_selftest@live@perf.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
  [i915#5950]: https://gitlab.freedesktop.org/drm/intel/issues/5950
  [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6476 -> IGTPW_7122

  CI-20190529: 20190529
  CI_DRM_11664: ff658f5f8e7e427556a8e6f1adc0e4519527ca95 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7122: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/index.html
  IGT_6476: 08aa9296163b94cf4c529fc890ae3e90e21c3cdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for D3Cold Tool
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
                   ` (6 preceding siblings ...)
  2022-05-17 14:34 ` [igt-dev] ✓ Fi.CI.BAT: success for D3Cold Tool Patchwork
@ 2022-05-17 15:35 ` Patchwork
  2022-05-18 16:23   ` Gupta, Anshuman
  2022-05-18 17:56 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  8 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2022-05-17 15:35 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

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

== Series Details ==

Series: D3Cold Tool
URL   : https://patchwork.freedesktop.org/series/104082/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11664_full -> IGTPW_7122_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7122_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7122_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_7122/index.html

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

  Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@i915_pm_rpm@gem-mmap-type@wc-smem0} (NEW):
    - {shard-rkl}:        NOTRUN -> [SKIP][1] +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-4/igt@i915_pm_rpm@gem-mmap-type@wc-smem0.html

  * igt@kms_color@pipe-c-deep-color:
    - shard-tglb:         NOTRUN -> [SKIP][2] +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_color@pipe-c-deep-color.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_pm_dc@dc6-psr:
    - {shard-rkl}:        NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_color@pipe-a-deep-color:
    - {shard-tglu}:       NOTRUN -> [SKIP][4] +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-6/igt@kms_color@pipe-a-deep-color.html

  * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen:
    - {shard-dg1}:        [PASS][5] -> [DMESG-WARN][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html

  * {igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1}:
    - shard-tglb:         NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html

  * {igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3}:
    - {shard-dg1}:        NOTRUN -> [SKIP][8] +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html

  * {igt@kms_hdr@static-toggle@pipe-a-edp-1}:
    - {shard-rkl}:        NOTRUN -> [SKIP][9]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_hdr@static-toggle@pipe-a-edp-1.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11664_full and IGTPW_7122_full:

### New IGT tests (6) ###

  * igt@i915_pm_rpm@gem-mmap-type@fixed-lmem0:
    - Statuses : 1 pass(s)
    - Exec time: [2.30] s

  * igt@i915_pm_rpm@gem-mmap-type@fixed-smem0:
    - Statuses : 1 pass(s)
    - Exec time: [2.22] s

  * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 15.49] s

  * igt@i915_pm_rpm@gem-mmap-type@uc-smem0:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 6.77] s

  * igt@i915_pm_rpm@gem-mmap-type@wb-smem0:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 6.84] s

  * igt@i915_pm_rpm@gem-mmap-type@wc-smem0:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.47] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-glk:          [PASS][10] -> [DMESG-WARN][11] ([i915#118] / [i915#1888])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk4/igt@drm_read@short-buffer-wakeup.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk9/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_ccs@block-copy-inplace:
    - shard-tglb:         NOTRUN -> [SKIP][12] ([i915#3555] / [i915#5325]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@gem_ccs@block-copy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-iclb:         NOTRUN -> [SKIP][13] ([i915#5327])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][14] ([i915#4991])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_create@create-massive.html

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

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         NOTRUN -> [FAIL][16] ([i915#2842]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
    - shard-tglb:         NOTRUN -> [FAIL][17] ([i915#2842]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [PASS][18] -> [FAIL][19] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][22] -> [FAIL][23] ([i915#2842]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([fdo#109313])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-snb:          [PASS][25] -> [SKIP][26] ([fdo#109271]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb5/igt@gem_exec_flush@basic-uc-prw-default.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb6/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_params@secure-non-root:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#112283])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@gem_exec_params@secure-non-root.html

  * igt@gem_lmem_swapping@basic:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#4613]) +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +2 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([i915#4613]) +3 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-kbl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +6 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#4270]) +2 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#4270]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#768])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_softpin@evict-single-offset:
    - shard-kbl:          NOTRUN -> [FAIL][35] ([i915#4171])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@gem_softpin@evict-single-offset.html

  * igt@gem_userptr_blits@access-control:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([i915#3297]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-kbl:          NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3323])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-apl:          NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3323])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3297]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-iclb:         NOTRUN -> [FAIL][40] ([i915#3318])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_userptr_blits@vma-merge.html
    - shard-kbl:          NOTRUN -> [FAIL][41] ([i915#3318])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl3/igt@gem_userptr_blits@vma-merge.html
    - shard-tglb:         NOTRUN -> [FAIL][42] ([i915#3318])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#109289]) +4 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109289]) +6 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb7/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#2527] / [i915#2856]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([i915#2856]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109293] / [fdo#109506])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109506] / [i915#2411])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-snb:          NOTRUN -> [SKIP][49] ([fdo#109271]) +92 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#110892])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_sseu@full-enable:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([i915#4387])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@i915_pm_sseu@full-enable.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][53] -> [DMESG-WARN][54] ([i915#5591])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglb6/igt@i915_selftest@live@hangcheck.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@i915_selftest@live@hangcheck.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3826])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-iclb:         NOTRUN -> [SKIP][56] ([i915#3826])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([i915#5286]) +4 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([i915#5286]) +6 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][59] ([fdo#109271]) +53 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#111614]) +5 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#110725] / [fdo#111614]) +4 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111615]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271]) +198 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#110723]) +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([i915#2705])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@kms_big_joiner@invalid-modeset.html
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#2705])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#3886]) +3 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#3689]) +5 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#3886]) +12 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#3689] / [i915#3886]) +3 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109278] / [i915#3886]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109278]) +27 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#3886])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#111615] / [i915#3689]) +9 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color@pipe-d-ctm-max:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#1149])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_color@pipe-d-ctm-max.html

  * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([fdo#109284] / [fdo#111827]) +11 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-25:
    - shard-glk:          NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
    - shard-apl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_color_chamelium@pipe-d-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +18 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
    - shard-snb:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][83] ([i915#1319]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#3116])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([i915#3116] / [i915#3299]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][86] ([i915#1319]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_content_protection@lic.html
    - shard-tglb:         NOTRUN -> [SKIP][87] ([i915#1063]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@mei_interface:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3319]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([fdo#109279] / [i915#3359]) +5 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#3359]) +7 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([fdo#109274] / [fdo#109278]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([i915#4103]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][95] ([i915#5287])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-blt-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#5287]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-blt-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          NOTRUN -> [FAIL][97] ([i915#4767])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][98] -> [FAIL][99] ([i915#79])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-tglb:         NOTRUN -> [SKIP][100] ([fdo#109274] / [fdo#111825]) +11 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][101] ([fdo#109274]) +5 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][102] ([i915#180]) +3 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][103] ([i915#180]) +3 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#2587])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
    - shard-iclb:         [PASS][105] -> [SKIP][106] ([i915#3701])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-iclb:         NOTRUN -> [SKIP][107] ([i915#3701])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109280]) +30 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][109] ([fdo#109280] / [fdo#111825]) +45 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-kbl:          NOTRUN -> [SKIP][110] ([fdo#109271]) +376 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([i915#1839])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#533]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [PASS][113] -> [DMESG-WARN][114] ([i915#180])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][115] ([i915#265])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) +1 similar issue
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][117] ([fdo#108145] / [i915#265]) +3 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][118] ([fdo#108145] / [i915#265])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-a-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5288])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-4.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][120] ([i915#3536]) +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#3536]) +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([fdo#111615] / [fdo#112054])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][123] ([i915#5176]) +3 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale:
    - shard-tglb:         NOTRUN -> [SKIP][124] ([i915#5235]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-kbl:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#658]) +2 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglb:         NOTRUN -> [SKIP][126] ([i915#2920])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-iclb:         [PASS][127] -> [SKIP][128] ([fdo#109642] / [fdo#111068] / [i915#658])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][129] ([i915#1911])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html
    - shard-apl:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#658]) +2 similar issues
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_psr2_su@page_flip-nv12.html
    - shard-glk:          NOTRUN -> [SKIP][131] ([fdo#109271] / [i915#658])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk7/igt@kms_psr2_su@page_flip-nv12.html
    - shard-iclb:         NOTRUN -> [SKIP][132] ([fdo#109642] / [fdo#111068] / [i915#658])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-iclb:         [PASS][133] -> [SKIP][134] ([fdo#109441])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][135] ([i915#132] / [i915#3467]) +3 similar issues
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         NOTRUN -> [SKIP][136] ([fdo#109441]) +2 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         [PASS][137] -> [SKIP][138] ([i915#5519])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-tglb:         NOTRUN -> [SKIP][139] ([fdo#111615] / [i915#5289])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-iclb:         NOTRUN -> [SKIP][140] ([i915#3555]) +2 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][141] ([IGT#2])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_sysfs_edid_timing.html
    - shard-kbl:          NOTRUN -> [FAIL][142] ([IGT#2])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-apl:          [PASS][143] -> [DMESG-WARN][144] ([i915#180]) +1 similar issue
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#533]) +3 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][146] ([i915#3555]) +3 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_vrr@flip-basic.html

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][147] ([i915#2530]) +1 similar issue
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@nouveau_crc@pipe-c-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][148] ([i915#2530]) +2 similar issues
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][149] ([fdo#109291]) +4 similar issues
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@prime_nv_pcopy@test3_2:
    - shard-tglb:         NOTRUN -> [SKIP][150] ([fdo#109291]) +8 similar issues
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@prime_nv_pcopy@test3_2.html

  * igt@syncobj_timeline@invalid-transfer-non-existent-point:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][151] ([i915#5098])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@syncobj_timeline@invalid-transfer-non-existent-point.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][152] ([i915#5098])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@syncobj_timeline@invalid-transfer-non-existent-point.html

  * igt@sysfs_clients@fair-3:
    - shard-kbl:          NOTRUN -> [SKIP][153] ([fdo#109271] / [i915#2994]) +4 similar issues
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@recycle:
    - shard-iclb:         NOTRUN -> [SKIP][154] ([i915#2994]) +2 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@sysfs_clients@recycle.html

  * igt@sysfs_clients@sema-10:
    - shard-tglb:         NOTRUN -> [SKIP][155] ([i915#2994]) +4 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@sysfs_clients@sema-10.html
    - shard-apl:          NOTRUN -> [SKIP][156] ([fdo#109271] / [i915#2994]) +4 similar issues
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@sysfs_clients@sema-10.html
    - shard-glk:          NOTRUN -> [SKIP][157] ([fdo#109271] / [i915#2994]) +1 similar issue
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk7/igt@sysfs_clients@sema-10.html

  
#### Possible fixes ####

  * igt@drm_mm@all@color:
    - {shard-rkl}:        [INCOMPLETE][158] -> [PASS][159]
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@drm_mm@all@color.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@drm_mm@all@color.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [FAIL][160] ([i915#2842]) -> [PASS][161] +2 similar issues
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html
    - shard-apl:          [FAIL][162] ([i915#2842]) -> [PASS][163] +1 similar issue
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - {shard-tglu}:       [FAIL][164] ([i915#2842]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][166] ([i915#2849]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-uc:
    - shard-snb:          [SKIP][168] ([fdo#109271]) -> [PASS][169] +2 similar issues
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][170] ([i915#180]) -> [PASS][171] +3 similar issues
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [DMESG-WARN][172] ([i915#5566] / [i915#716]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk8/igt@gen9_exec_parse@allowed-single.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@gen9_exec_parse@allowed-single.html
    - shard-apl:          [DMESG-WARN][174] ([i915#5566] / [i915#716]) -> [PASS][175]
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@gen9_exec_parse@allowed-single.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_backlight@fade:
    - {shard-rkl}:        [SKIP][176] ([i915#3012]) -> [PASS][177] +1 similar issue
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@i915_pm_backlight@fade.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_backlight@fade.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [FAIL][178] ([i915#454]) -> [PASS][179] +1 similar issue
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html
    - {shard-tglu}:       [FAIL][180] ([i915#454]) -> [PASS][181]
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@basic-rte:
    - {shard-rkl}:        [SKIP][182] ([fdo#109308]) -> [PASS][183] +1 similar issue
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@i915_pm_rpm@basic-rte.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - {shard-rkl}:        [SKIP][184] ([i915#1397]) -> [PASS][185]
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - {shard-dg1}:        [SKIP][186] ([i915#1397]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rps@waitboost:
    - {shard-rkl}:        [FAIL][188] ([i915#4016]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@i915_pm_rps@waitboost.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@i915_pm_rps@waitboost.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [INCOMPLETE][190] ([i915#3921]) -> [PASS][191]
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb4/igt@i915_selftest@live@hangcheck.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb4/igt@i915_selftest@live@hangcheck.html

  * igt@kms_color@pipe-a-ctm-0-75:
    - {shard-rkl}:        [SKIP][192] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][193] +2 similar issues
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-75.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding:
    - {shard-rkl}:        [SKIP][194] ([fdo#112022] / [i915#4070]) -> [PASS][195] +4 similar issues
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html

  * igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge:
    - {shard-rkl}:        [SKIP][196] ([i915#4070] / [i915#4098]) -> [PASS][197]
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge.html

  * igt@kms_cursor_legacy@pipe-c-torture-bo:
    - {shard-rkl}:        ([SKIP][198], [PASS][199]) ([i915#4070]) -> [PASS][200]
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_cursor_legacy@pipe-c-torture-bo.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_cursor_legacy@pipe-c-torture-bo.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@kms_cursor_legacy@pipe-c-torture-bo.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
    - {shard-rkl}:        [SKIP][201] ([fdo#111825] / [i915#4070]) -> [PASS][202] +1 similar issue
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_aux_dev:
    - {shard-rkl}:        [SKIP][203] ([i915#1257]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_dp_aux_dev.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_dp_aux_dev.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
    - shard-glk:          [FAIL][205] ([i915#79]) -> [PASS][206]
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [DMESG-WARN][207] ([i915#180]) -> [PASS][208] +4 similar issues
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-glk:          [FAIL][209] ([i915#4911]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
    - {shard-rkl}:        ([SKIP][211], [SKIP][212]) ([i915#1849] / [i915#4098]) -> [PASS][213]
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - {shard-rkl}:        [SKIP][214] ([i915#1849] / [i915#4098]) -> [PASS][215] +12 similar issues
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_plane@pixel-format@pipe-a-planes:
    - {shard-rkl}:        [SKIP][216] ([i915#3558]) -> [PASS][217] +1 similar issue
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_plane@pixel-format@pipe-a-planes.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane@pixel-format@pipe-a-planes.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
    - {shard-rkl}:        [SKIP][218] ([i915#1849] / [i915#3558]) -> [PASS][219] +1 similar issue
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
    - {shard-rkl}:        ([SKIP][220], [SKIP][221]) ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][222]
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid:
    - {shard-rkl}:        [SKIP][223] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale:
    - shard-iclb:         [SKIP][225] ([i915#5235]) -> [PASS][226] +2 similar issues
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html

  * igt@kms_prime@basic-crc@second-to-first:
    - {shard-rkl}:        [SKIP][227] ([i915#1849]) -> [PASS][228]
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_prime@basic-crc@second-to-first.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_prime@basic-crc@second-to-first.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][229] ([fdo#109441]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb3/igt@kms_psr@psr2_basic.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_psr@psr2_basic.html

  * igt@kms_universal_plane@universal-plane-pipe-a-sanity:
    - {shard-rkl}:        [SKIP][231] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][232]
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html

  * igt@kms_vblank@pipe-a-ts-continuation-modeset:
    - {shard-rkl}:        [SKIP][233] ([i915#1845] / [i915#4098]) -> [PASS][234] +20 similar issues
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_vblank@pipe-a-ts-continuation-modeset.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset.html

  * igt@kms_vblank@pipe-b-wait-forked-hang:
    - {shard-rkl}:        ([SKIP][235], [SKIP][236]) ([i915#1845] / [i915#4098]) -> [PASS][237]
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_vblank@pipe-b-wait-forked-hang.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_vblank@pipe-b-wait-forked-hang.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_vblank@pipe-b-wait-forked-hang.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel:
    - shard-iclb:         [DMESG-WARN][238] ([i915#5614]) -> [SKIP][239] ([i915#4525]) +1 similar issue
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb4/igt@gem_exec_balancer@parallel.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@gem_exec_balancer@parallel.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][240] ([i915#2920]) -> [SKIP][241] ([fdo#111068] / [i915#658])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-iclb:         [FAIL][242] ([i915#5939]) -> [SKIP][243] ([fdo#109642] / [fdo#111068] / [i915#658])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_psr2_su@page_flip-p010.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][244], [FAIL][245], [FAIL][246], [FAIL][247], [FAIL][248], [FAIL][249], [FAIL][250], [FAIL][251], [FAIL][252], [FAIL][253]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][254], [FAIL][255], [FAIL][256], [FAIL][257], [FAIL][258], [FAIL][259], [FAIL][260], [FAIL][261], [FAIL][262], [FAIL][263], [FAIL][264]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl4/igt@runner@aborted.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@runner@aborted.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@runner@aborted.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl7/igt@runner@aborted.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@runner@aborted.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl4/igt@runner@aborted.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@runner@aborted.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl7/igt@runner@aborted.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@runner@aborted.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@runner@aborted.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@runner@aborted.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@runner@aborted.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl8/igt@runner@aborted.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@runner@aborted.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl8/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3736]: https://gitlab.freedesktop.org/drm/intel/issues/3736
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3963]: https://gitlab.freedesktop.org/drm/intel/issues/3963
  [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
  [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4807]: https://gitlab.freedesktop.org/drm/intel/issues/4807
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
  [i915#4886]: https://gitlab.freedesktop.org/drm/intel/issues/4886
  [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
  [i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
  [i915#4929]: https://gitlab.freedesktop.org/drm/intel/issues/4929
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
  [i915#5080]: https://gitlab.freedesktop.org/drm/intel/issues/5080
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5266]: https://gitlab.freedesktop.org/drm/intel/issues/5266
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6476 -> IGTPW_7122
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11664: ff658f5f8e7e427556a8e6f1adc0e4519527ca95 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7122: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/index.html
  IGT_6476: 08aa9296163b94cf4c529fc890ae3e90e21c3cdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for D3Cold Tool
  2022-05-17 15:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-18 16:23   ` Gupta, Anshuman
  0 siblings, 0 replies; 11+ messages in thread
From: Gupta, Anshuman @ 2022-05-18 16:23 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev

Hi Lakshmi ,
The below 
CI_IGT failures are not related to this series.
https://patchwork.freedesktop.org/series/104082/
These are just the igt tool patches.
Could you please re-report the results.
Thanks,
Anshuman
From: Patchwork <patchwork@emeril.freedesktop.org> 
Sent: Tuesday, May 17, 2022 9:05 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for D3Cold Tool

Patch Details 
Series:
D3Cold Tool
URL:
https://patchwork.freedesktop.org/series/104082/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/index.html
CI Bug Log - changes from CI_DRM_11664_full -> IGTPW_7122_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_7122_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7122_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_7122/index.html
Participating hosts (13 -> 10)
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_7122_full:
IGT changes
Possible regressions
• {igt@i915_pm_rpm@gem-mmap-type@wc-smem0} (NEW):
o {shard-rkl}: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-4/igt@i915_pm_rpm@gem-mmap-type@wc-smem0.html +3 similar issues
• igt@kms_color@pipe-c-deep-color:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_color@pipe-c-deep-color.html +1 similar issue
Suppressed
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
• igt@i915_pm_dc@dc6-psr:
o {shard-rkl}: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@i915_pm_dc@dc6-psr.html
• igt@kms_color@pipe-a-deep-color:
o {shard-tglu}: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-6/igt@kms_color@pipe-a-deep-color.html +1 similar issue
• igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen:
o {shard-dg1}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html
• {igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1}:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html
• {igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3}:
o {shard-dg1}: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html +1 similar issue
• {igt@kms_hdr@static-toggle@pipe-a-edp-1}:
o {shard-rkl}: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_hdr@static-toggle@pipe-a-edp-1.html
New tests
New tests have been introduced between CI_DRM_11664_full and IGTPW_7122_full:
New IGT tests (6)
• igt@i915_pm_rpm@gem-mmap-type@fixed-lmem0:
o Statuses : 1 pass(s)
o Exec time: [2.30] s
• igt@i915_pm_rpm@gem-mmap-type@fixed-smem0:
o Statuses : 1 pass(s)
o Exec time: [2.22] s
• igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
o Statuses : 6 pass(s) 1 skip(s)
o Exec time: [0.0, 15.49] s
• igt@i915_pm_rpm@gem-mmap-type@uc-smem0:
o Statuses : 6 pass(s) 1 skip(s)
o Exec time: [0.0, 6.77] s
• igt@i915_pm_rpm@gem-mmap-type@wb-smem0:
o Statuses : 6 pass(s) 1 skip(s)
o Exec time: [0.0, 6.84] s
• igt@i915_pm_rpm@gem-mmap-type@wc-smem0:
o Statuses : 6 pass(s) 1 skip(s)
o Exec time: [0.0, 3.47] s
Known issues
Here are the changes found in IGTPW_7122_full that come from known issues:
IGT changes
Issues hit
• igt@drm_read@short-buffer-wakeup:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk4/igt@drm_read@short-buffer-wakeup.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk9/igt@drm_read@short-buffer-wakeup.html (https://gitlab.freedesktop.org/drm/intel/issues/118 / https://gitlab.freedesktop.org/drm/intel/issues/1888)
• igt@gem_ccs@block-copy-inplace:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@gem_ccs@block-copy-inplace.html (https://gitlab.freedesktop.org/drm/intel/issues/3555 / https://gitlab.freedesktop.org/drm/intel/issues/5325) +1 similar issue
• igt@gem_ccs@ctrl-surf-copy:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@gem_ccs@ctrl-surf-copy.html (https://gitlab.freedesktop.org/drm/intel/issues/5327)
• igt@gem_create@create-massive:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_create@create-massive.html (https://gitlab.freedesktop.org/drm/intel/issues/4991)
• igt@gem_ctx_persistence@engines-hostile:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb2/igt@gem_ctx_persistence@engines-hostile.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/1099) +1 similar issue
• igt@gem_exec_fair@basic-none-rrul@rcs0:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842) +1 similar issue
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842) +1 similar issue
• igt@gem_exec_fair@basic-none-share@rcs0:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842)
• igt@gem_exec_fair@basic-pace-share@rcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842)
• igt@gem_exec_fair@basic-pace@vcs0:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842) +1 similar issue
• igt@gem_exec_flush@basic-batch-kernel-default-cmd:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html (https://bugs.freedesktop.org/show_bug.cgi?id=109313)
• igt@gem_exec_flush@basic-uc-prw-default:
o shard-snb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb5/igt@gem_exec_flush@basic-uc-prw-default.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb6/igt@gem_exec_flush@basic-uc-prw-default.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271) +3 similar issues
• igt@gem_exec_params@secure-non-root:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@gem_exec_params@secure-non-root.html (https://bugs.freedesktop.org/show_bug.cgi?id=112283)
• igt@gem_lmem_swapping@basic:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_lmem_swapping@basic.html (https://gitlab.freedesktop.org/drm/intel/issues/4613) +2 similar issues
• igt@gem_lmem_swapping@heavy-verify-random-ccs:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/4613) +2 similar issues
• igt@gem_lmem_swapping@parallel-random-verify-ccs:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html (https://gitlab.freedesktop.org/drm/intel/issues/4613) +3 similar issues
• igt@gem_lmem_swapping@smem-oom:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_lmem_swapping@smem-oom.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/4613) +6 similar issues
• igt@gem_pxp@create-protected-buffer:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_pxp@create-protected-buffer.html (https://gitlab.freedesktop.org/drm/intel/issues/4270) +2 similar issues
• igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html (https://gitlab.freedesktop.org/drm/intel/issues/4270) +3 similar issues
• igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html (https://gitlab.freedesktop.org/drm/intel/issues/768)
• igt@gem_softpin@evict-single-offset:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@gem_softpin@evict-single-offset.html (https://gitlab.freedesktop.org/drm/intel/issues/4171)
• igt@gem_userptr_blits@access-control:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_userptr_blits@access-control.html (https://gitlab.freedesktop.org/drm/intel/issues/3297) +1 similar issue
• igt@gem_userptr_blits@dmabuf-sync:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/3323)
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/3323)
• igt@gem_userptr_blits@unsync-unmap-cycles:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html (https://gitlab.freedesktop.org/drm/intel/issues/3297) +2 similar issues
• igt@gem_userptr_blits@vma-merge:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_userptr_blits@vma-merge.html (https://gitlab.freedesktop.org/drm/intel/issues/3318)
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl3/igt@gem_userptr_blits@vma-merge.html (https://gitlab.freedesktop.org/drm/intel/issues/3318)
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@gem_userptr_blits@vma-merge.html (https://gitlab.freedesktop.org/drm/intel/issues/3318)
• igt@gen7_exec_parse@batch-without-end:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@gen7_exec_parse@batch-without-end.html (https://bugs.freedesktop.org/show_bug.cgi?id=109289) +4 similar issues
• igt@gen7_exec_parse@cmd-crossing-page:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb7/igt@gen7_exec_parse@cmd-crossing-page.html (https://bugs.freedesktop.org/show_bug.cgi?id=109289) +6 similar issues
• igt@gen9_exec_parse@allowed-single:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@gen9_exec_parse@allowed-single.html (https://gitlab.freedesktop.org/drm/intel/issues/2527 / https://gitlab.freedesktop.org/drm/intel/issues/2856) +3 similar issues
• igt@gen9_exec_parse@secure-batches:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@gen9_exec_parse@secure-batches.html (https://gitlab.freedesktop.org/drm/intel/issues/2856) +1 similar issue
• igt@i915_pm_rpm@gem-execbuf-stress-pc8:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html (https://bugs.freedesktop.org/show_bug.cgi?id=109293 / https://bugs.freedesktop.org/show_bug.cgi?id=109506)
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html (https://bugs.freedesktop.org/show_bug.cgi?id=109506 / https://gitlab.freedesktop.org/drm/intel/issues/2411)
• igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271) +92 similar issues
• igt@i915_pm_rpm@modeset-non-lpsp:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@i915_pm_rpm@modeset-non-lpsp.html (https://bugs.freedesktop.org/show_bug.cgi?id=110892)
• igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html (https://bugs.freedesktop.org/show_bug.cgi?id=111644 / https://gitlab.freedesktop.org/drm/intel/issues/1397 / https://gitlab.freedesktop.org/drm/intel/issues/2411) +1 similar issue
• igt@i915_pm_sseu@full-enable:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@i915_pm_sseu@full-enable.html (https://gitlab.freedesktop.org/drm/intel/issues/4387)
• igt@i915_selftest@live@hangcheck:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglb6/igt@i915_selftest@live@hangcheck.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@i915_selftest@live@hangcheck.html (https://gitlab.freedesktop.org/drm/intel/issues/5591)
• igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html (https://gitlab.freedesktop.org/drm/intel/issues/3826)
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html (https://gitlab.freedesktop.org/drm/intel/issues/3826)
• igt@kms_big_fb@4-tiled-8bpp-rotate-180:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html (https://gitlab.freedesktop.org/drm/intel/issues/5286) +4 similar issues
• igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html (https://gitlab.freedesktop.org/drm/intel/issues/5286) +6 similar issues
• igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271) +53 similar issues
• igt@kms_big_fb@linear-8bpp-rotate-90:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_big_fb@linear-8bpp-rotate-90.html (https://bugs.freedesktop.org/show_bug.cgi?id=111614) +5 similar issues
• igt@kms_big_fb@x-tiled-16bpp-rotate-270:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html (https://bugs.freedesktop.org/show_bug.cgi?id=110725 / https://bugs.freedesktop.org/show_bug.cgi?id=111614) +4 similar issues
• igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html (https://bugs.freedesktop.org/show_bug.cgi?id=111615) +6 similar issues
• igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271) +198 similar issues
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html (https://bugs.freedesktop.org/show_bug.cgi?id=110723) +1 similar issue
• igt@kms_big_joiner@invalid-modeset:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@kms_big_joiner@invalid-modeset.html (https://gitlab.freedesktop.org/drm/intel/issues/2705)
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_big_joiner@invalid-modeset.html (https://gitlab.freedesktop.org/drm/intel/issues/2705)
• igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/3886) +3 similar issues
• igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html (https://gitlab.freedesktop.org/drm/intel/issues/3689) +5 similar issues
• igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/3886) +12 similar issues
• igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html (https://gitlab.freedesktop.org/drm/intel/issues/3689 / https://gitlab.freedesktop.org/drm/intel/issues/3886) +3 similar issues
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html (https://bugs.freedesktop.org/show_bug.cgi?id=109278 / https://gitlab.freedesktop.org/drm/intel/issues/3886) +1 similar issue
• igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html (https://bugs.freedesktop.org/show_bug.cgi?id=109278) +27 similar issues
• igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/3886)
• igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html (https://bugs.freedesktop.org/show_bug.cgi?id=111615 / https://gitlab.freedesktop.org/drm/intel/issues/3689) +9 similar issues
• igt@kms_chamelium@vga-hpd-for-each-pipe:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_chamelium@vga-hpd-for-each-pipe.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +23 similar issues
• igt@kms_color@pipe-d-ctm-max:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_color@pipe-d-ctm-max.html (https://bugs.freedesktop.org/show_bug.cgi?id=109278 / https://gitlab.freedesktop.org/drm/intel/issues/1149)
• igt@kms_color_chamelium@pipe-a-ctm-red-to-blue:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html (https://bugs.freedesktop.org/show_bug.cgi?id=109284 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +11 similar issues
• igt@kms_color_chamelium@pipe-d-ctm-0-25:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_color_chamelium@pipe-d-ctm-0-25.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +4 similar issues
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +12 similar issues
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_color_chamelium@pipe-d-ctm-0-25.html (https://bugs.freedesktop.org/show_bug.cgi?id=109278 / https://bugs.freedesktop.org/show_bug.cgi?id=109284 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +1 similar issue
• igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html (https://bugs.freedesktop.org/show_bug.cgi?id=109284 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +18 similar issues
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://bugs.freedesktop.org/show_bug.cgi?id=111827) +2 similar issues
• igt@kms_content_protection@atomic:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_content_protection@atomic.html (https://gitlab.freedesktop.org/drm/intel/issues/1319) +1 similar issue
• igt@kms_content_protection@dp-mst-lic-type-0:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-0.html (https://gitlab.freedesktop.org/drm/intel/issues/3116)
• igt@kms_content_protection@dp-mst-type-0:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_content_protection@dp-mst-type-0.html (https://gitlab.freedesktop.org/drm/intel/issues/3116 / https://gitlab.freedesktop.org/drm/intel/issues/3299) +1 similar issue
• igt@kms_content_protection@lic:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_content_protection@lic.html (https://gitlab.freedesktop.org/drm/intel/issues/1319) +1 similar issue
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_content_protection@lic.html (https://gitlab.freedesktop.org/drm/intel/issues/1063) +1 similar issue
• igt@kms_content_protection@mei_interface:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_content_protection@mei_interface.html (https://bugs.freedesktop.org/show_bug.cgi?id=109300 / https://bugs.freedesktop.org/show_bug.cgi?id=111066) +1 similar issue
• igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html (https://gitlab.freedesktop.org/drm/intel/issues/3319) +1 similar issue
• igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html (https://bugs.freedesktop.org/show_bug.cgi?id=109278 / https://bugs.freedesktop.org/show_bug.cgi?id=109279) +1 similar issue
• igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html (https://bugs.freedesktop.org/show_bug.cgi?id=109279 / https://gitlab.freedesktop.org/drm/intel/issues/3359) +5 similar issues
• igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html (https://gitlab.freedesktop.org/drm/intel/issues/3359) +7 similar issues
• igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html (https://bugs.freedesktop.org/show_bug.cgi?id=109274 / https://bugs.freedesktop.org/show_bug.cgi?id=109278) +2 similar issues
• igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html (https://gitlab.freedesktop.org/drm/intel/issues/4103) +1 similar issue
• igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled.html (https://gitlab.freedesktop.org/drm/intel/issues/5287)
• igt@kms_draw_crc@draw-method-xrgb8888-blt-4tiled:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-blt-4tiled.html (https://gitlab.freedesktop.org/drm/intel/issues/5287) +1 similar issue
• igt@kms_fbcon_fbt@fbc-suspend:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html (https://gitlab.freedesktop.org/drm/intel/issues/4767)
• igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html (https://gitlab.freedesktop.org/drm/intel/issues/79)
• igt@kms_flip@2x-flip-vs-rmfb:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_flip@2x-flip-vs-rmfb.html (https://bugs.freedesktop.org/show_bug.cgi?id=109274 / https://bugs.freedesktop.org/show_bug.cgi?id=111825) +11 similar issues
• igt@kms_flip@2x-flip-vs-rmfb-interruptible:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html (https://bugs.freedesktop.org/show_bug.cgi?id=109274) +5 similar issues
• igt@kms_flip@flip-vs-suspend@a-dp1:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html (https://gitlab.freedesktop.org/drm/intel/issues/180) +3 similar issues
• igt@kms_flip@flip-vs-suspend@c-dp1:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html (https://gitlab.freedesktop.org/drm/intel/issues/180) +3 similar issues
• igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html (https://gitlab.freedesktop.org/drm/intel/issues/2587)
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html (https://gitlab.freedesktop.org/drm/intel/issues/3701)
• igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html (https://gitlab.freedesktop.org/drm/intel/issues/3701)
• igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html (https://bugs.freedesktop.org/show_bug.cgi?id=109280) +30 similar issues
• igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html (https://bugs.freedesktop.org/show_bug.cgi?id=109280 / https://bugs.freedesktop.org/show_bug.cgi?id=111825) +45 similar issues
• igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271) +376 similar issues
• igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html (https://gitlab.freedesktop.org/drm/intel/issues/1839)
• igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/533) +1 similar issue
• igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html (https://gitlab.freedesktop.org/drm/intel/issues/180)
• igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html (https://gitlab.freedesktop.org/drm/intel/issues/265)
• igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html (https://bugs.freedesktop.org/show_bug.cgi?id=108145 / https://gitlab.freedesktop.org/drm/intel/issues/265) +1 similar issue
• igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html (https://bugs.freedesktop.org/show_bug.cgi?id=108145 / https://gitlab.freedesktop.org/drm/intel/issues/265) +3 similar issues
• igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html (https://bugs.freedesktop.org/show_bug.cgi?id=108145 / https://gitlab.freedesktop.org/drm/intel/issues/265)
• igt@kms_plane_lowres@pipe-a-tiling-4:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-4.html (https://gitlab.freedesktop.org/drm/intel/issues/5288)
• igt@kms_plane_lowres@pipe-a-tiling-x:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html (https://gitlab.freedesktop.org/drm/intel/issues/3536) +1 similar issue
• igt@kms_plane_lowres@pipe-b-tiling-y:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html (https://gitlab.freedesktop.org/drm/intel/issues/3536) +1 similar issue
• igt@kms_plane_lowres@pipe-d-tiling-yf:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-yf.html (https://bugs.freedesktop.org/show_bug.cgi?id=111615 / https://bugs.freedesktop.org/show_bug.cgi?id=112054)
• igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation.html (https://gitlab.freedesktop.org/drm/intel/issues/5176) +3 similar issues
• igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale.html (https://gitlab.freedesktop.org/drm/intel/issues/5235) +3 similar issues
• igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/658) +2 similar issues
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html (https://gitlab.freedesktop.org/drm/intel/issues/2920)
• igt@kms_psr2_su@frontbuffer-xrgb8888:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html (https://bugs.freedesktop.org/show_bug.cgi?id=109642 / https://bugs.freedesktop.org/show_bug.cgi?id=111068 / https://gitlab.freedesktop.org/drm/intel/issues/658)
• igt@kms_psr2_su@page_flip-nv12:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html (https://gitlab.freedesktop.org/drm/intel/issues/1911)
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_psr2_su@page_flip-nv12.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/658) +2 similar issues
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk7/igt@kms_psr2_su@page_flip-nv12.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/658)
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_psr2_su@page_flip-nv12.html (https://bugs.freedesktop.org/show_bug.cgi?id=109642 / https://bugs.freedesktop.org/show_bug.cgi?id=111068 / https://gitlab.freedesktop.org/drm/intel/issues/658)
• igt@kms_psr@psr2_cursor_plane_move:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@kms_psr@psr2_cursor_plane_move.html (https://bugs.freedesktop.org/show_bug.cgi?id=109441)
• igt@kms_psr@psr2_cursor_plane_onoff:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_psr@psr2_cursor_plane_onoff.html (https://gitlab.freedesktop.org/drm/intel/issues/132 / https://gitlab.freedesktop.org/drm/intel/issues/3467) +3 similar issues
• igt@kms_psr@psr2_sprite_plane_move:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_psr@psr2_sprite_plane_move.html (https://bugs.freedesktop.org/show_bug.cgi?id=109441) +2 similar issues
• igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html (https://gitlab.freedesktop.org/drm/intel/issues/5519)
• igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html (https://bugs.freedesktop.org/show_bug.cgi?id=111615 / https://gitlab.freedesktop.org/drm/intel/issues/5289)
• igt@kms_setmode@invalid-clone-single-crtc:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html (https://gitlab.freedesktop.org/drm/intel/issues/3555) +2 similar issues
• igt@kms_sysfs_edid_timing:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_sysfs_edid_timing.html (https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2)
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_sysfs_edid_timing.html (https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2)
• igt@kms_vblank@pipe-a-ts-continuation-suspend:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html (https://gitlab.freedesktop.org/drm/intel/issues/180) +1 similar issue
• igt@kms_vblank@pipe-d-wait-idle:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_vblank@pipe-d-wait-idle.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/533) +3 similar issues
• igt@kms_vrr@flip-basic:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_vrr@flip-basic.html (https://gitlab.freedesktop.org/drm/intel/issues/3555) +3 similar issues
• igt@nouveau_crc@pipe-c-source-rg:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@nouveau_crc@pipe-c-source-rg.html (https://gitlab.freedesktop.org/drm/intel/issues/2530) +1 similar issue
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@nouveau_crc@pipe-c-source-rg.html (https://gitlab.freedesktop.org/drm/intel/issues/2530) +2 similar issues
• igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html (https://bugs.freedesktop.org/show_bug.cgi?id=109291) +4 similar issues
• igt@prime_nv_pcopy@test3_2:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@prime_nv_pcopy@test3_2.html (https://bugs.freedesktop.org/show_bug.cgi?id=109291) +8 similar issues
• igt@syncobj_timeline@invalid-transfer-non-existent-point:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@syncobj_timeline@invalid-transfer-non-existent-point.html (https://gitlab.freedesktop.org/drm/intel/issues/5098)
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@syncobj_timeline@invalid-transfer-non-existent-point.html (https://gitlab.freedesktop.org/drm/intel/issues/5098)
• igt@sysfs_clients@fair-3:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@sysfs_clients@fair-3.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/2994) +4 similar issues
• igt@sysfs_clients@recycle:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@sysfs_clients@recycle.html (https://gitlab.freedesktop.org/drm/intel/issues/2994) +2 similar issues
• igt@sysfs_clients@sema-10:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@sysfs_clients@sema-10.html (https://gitlab.freedesktop.org/drm/intel/issues/2994) +4 similar issues
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@sysfs_clients@sema-10.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/2994) +4 similar issues
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk7/igt@sysfs_clients@sema-10.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/2994) +1 similar issue
Possible fixes
• igt@drm_mm@all@color:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@drm_mm@all@color.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@drm_mm@all@color.html
• igt@gem_exec_fair@basic-none@vcs0:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html +2 similar issues
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html +1 similar issue
• igt@gem_exec_fair@basic-pace-share@rcs0:
o {shard-tglu}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2842) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
• igt@gem_exec_fair@basic-throttle@rcs0:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html (https://gitlab.freedesktop.org/drm/intel/issues/2849) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
• igt@gem_exec_flush@basic-batch-kernel-default-uc:
o shard-snb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html (https://bugs.freedesktop.org/show_bug.cgi?id=109271) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html +2 similar issues
• igt@gem_workarounds@suspend-resume-fd:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html (https://gitlab.freedesktop.org/drm/intel/issues/180) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html +3 similar issues
• igt@gen9_exec_parse@allowed-single:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk8/igt@gen9_exec_parse@allowed-single.html (https://gitlab.freedesktop.org/drm/intel/issues/5566 / https://gitlab.freedesktop.org/drm/intel/issues/716) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@gen9_exec_parse@allowed-single.html
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@gen9_exec_parse@allowed-single.html (https://gitlab.freedesktop.org/drm/intel/issues/5566 / https://gitlab.freedesktop.org/drm/intel/issues/716) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@gen9_exec_parse@allowed-single.html
• igt@i915_pm_backlight@fade:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@i915_pm_backlight@fade.html (https://gitlab.freedesktop.org/drm/intel/issues/3012) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_backlight@fade.html +1 similar issue
• igt@i915_pm_dc@dc6-dpms:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html (https://gitlab.freedesktop.org/drm/intel/issues/454) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html +1 similar issue
o {shard-tglu}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html (https://gitlab.freedesktop.org/drm/intel/issues/454) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html
• igt@i915_pm_rpm@basic-rte:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@i915_pm_rpm@basic-rte.html (https://bugs.freedesktop.org/show_bug.cgi?id=109308) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_rpm@basic-rte.html +1 similar issue
• igt@i915_pm_rpm@dpms-mode-unset-lpsp:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html (https://gitlab.freedesktop.org/drm/intel/issues/1397) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
• igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
o {shard-dg1}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html (https://gitlab.freedesktop.org/drm/intel/issues/1397) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
• igt@i915_pm_rps@waitboost:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@i915_pm_rps@waitboost.html (https://gitlab.freedesktop.org/drm/intel/issues/4016) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@i915_pm_rps@waitboost.html
• igt@i915_selftest@live@hangcheck:
o shard-snb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb4/igt@i915_selftest@live@hangcheck.html (https://gitlab.freedesktop.org/drm/intel/issues/3921) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb4/igt@i915_selftest@live@hangcheck.html
• igt@kms_color@pipe-a-ctm-0-75:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-75.html (https://gitlab.freedesktop.org/drm/intel/issues/1149 / https://gitlab.freedesktop.org/drm/intel/issues/1849 / https://gitlab.freedesktop.org/drm/intel/issues/4070 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html +2 similar issues
• igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html (https://bugs.freedesktop.org/show_bug.cgi?id=112022 / https://gitlab.freedesktop.org/drm/intel/issues/4070) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html +4 similar issues
• igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge.html (https://gitlab.freedesktop.org/drm/intel/issues/4070 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge.html
• igt@kms_cursor_legacy@pipe-c-torture-bo:
o {shard-rkl}: (https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_cursor_legacy@pipe-c-torture-bo.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_cursor_legacy@pipe-c-torture-bo.html) (https://gitlab.freedesktop.org/drm/intel/issues/4070) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@kms_cursor_legacy@pipe-c-torture-bo.html
• igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html (https://bugs.freedesktop.org/show_bug.cgi?id=111825 / https://gitlab.freedesktop.org/drm/intel/issues/4070) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html +1 similar issue
• igt@kms_dp_aux_dev:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_dp_aux_dev.html (https://gitlab.freedesktop.org/drm/intel/issues/1257) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_dp_aux_dev.html
• igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html (https://gitlab.freedesktop.org/drm/intel/issues/79) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
• igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html (https://gitlab.freedesktop.org/drm/intel/issues/180) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html +4 similar issues
• igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html (https://gitlab.freedesktop.org/drm/intel/issues/4911) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
• igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
o {shard-rkl}: (https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html) (https://gitlab.freedesktop.org/drm/intel/issues/1849 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
• igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html (https://gitlab.freedesktop.org/drm/intel/issues/1849 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html +12 similar issues
• igt@kms_plane@pixel-format@pipe-a-planes:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_plane@pixel-format@pipe-a-planes.html (https://gitlab.freedesktop.org/drm/intel/issues/3558) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane@pixel-format@pipe-a-planes.html +1 similar issue
• igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html (https://gitlab.freedesktop.org/drm/intel/issues/1849 / https://gitlab.freedesktop.org/drm/intel/issues/3558) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html +1 similar issue
• igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
o {shard-rkl}: (https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html) (https://gitlab.freedesktop.org/drm/intel/issues/1849 / https://gitlab.freedesktop.org/drm/intel/issues/4070 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
• igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html (https://gitlab.freedesktop.org/drm/intel/issues/1849 / https://gitlab.freedesktop.org/drm/intel/issues/4070 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html
• igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html (https://gitlab.freedesktop.org/drm/intel/issues/5235) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html +2 similar issues
• igt@kms_prime@basic-crc@second-to-first:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_prime@basic-crc@second-to-first.html (https://gitlab.freedesktop.org/drm/intel/issues/1849) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_prime@basic-crc@second-to-first.html
• igt@kms_psr@psr2_basic:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb3/igt@kms_psr@psr2_basic.html (https://bugs.freedesktop.org/show_bug.cgi?id=109441) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_psr@psr2_basic.html
• igt@kms_universal_plane@universal-plane-pipe-a-sanity:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html (https://gitlab.freedesktop.org/drm/intel/issues/1845 / https://gitlab.freedesktop.org/drm/intel/issues/4070 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
• igt@kms_vblank@pipe-a-ts-continuation-modeset:
o {shard-rkl}: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_vblank@pipe-a-ts-continuation-modeset.html (https://gitlab.freedesktop.org/drm/intel/issues/1845 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset.html +20 similar issues
• igt@kms_vblank@pipe-b-wait-forked-hang:
o {shard-rkl}: (https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_vblank@pipe-b-wait-forked-hang.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_vblank@pipe-b-wait-forked-hang.html) (https://gitlab.freedesktop.org/drm/intel/issues/1845 / https://gitlab.freedesktop.org/drm/intel/issues/4098) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_vblank@pipe-b-wait-forked-hang.html
Warnings
• igt@gem_exec_balancer@parallel:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb4/igt@gem_exec_balancer@parallel.html (https://gitlab.freedesktop.org/drm/intel/issues/5614) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@gem_exec_balancer@parallel.html (https://gitlab.freedesktop.org/drm/intel/issues/4525) +1 similar issue
• igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html (https://gitlab.freedesktop.org/drm/intel/issues/2920) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html (https://bugs.freedesktop.org/show_bug.cgi?id=111068 / https://gitlab.freedesktop.org/drm/intel/issues/658)
• igt@kms_psr2_su@page_flip-p010:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html (https://gitlab.freedesktop.org/drm/intel/issues/5939) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_psr2_su@page_flip-p010.html (https://bugs.freedesktop.org/show_bug.cgi?id=109642 / https://bugs.freedesktop.org/show_bug.cgi?id=111068 / https://gitlab.freedesktop.org/drm/intel/issues/658)
• igt@runner@aborted:
o shard-apl: (https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl4/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl7/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl4/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@runner@aborted.html) (https://bugs.freedesktop.org/show_bug.cgi?id=109271 / https://gitlab.freedesktop.org/drm/intel/issues/180 / https://gitlab.freedesktop.org/drm/intel/issues/3002 / https://gitlab.freedesktop.org/drm/intel/issues/4312 / https://gitlab.freedesktop.org/drm/intel/issues/5257) -> (https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl7/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl8/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html, https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl8/igt@runner@aborted.html) (https://gitlab.freedesktop.org/drm/intel/issues/180 / https://gitlab.freedesktop.org/drm/intel/issues/3002 / https://gitlab.freedesktop.org/drm/intel/issues/4312 / https://gitlab.freedesktop.org/drm/intel/issues/5257)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
• CI: CI-20190529 -> None
• IGT: IGT_6476 -> IGTPW_7122
• Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_11664: ff658f5f8e7e427556a8e6f1adc0e4519527ca95 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7122: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/index.html
IGT_6476: 08aa9296163b94cf4c529fc890ae3e90e21c3cdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

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

* [igt-dev] ✓ Fi.CI.IGT: success for D3Cold Tool
  2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
                   ` (7 preceding siblings ...)
  2022-05-17 15:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-18 17:56 ` Patchwork
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-05-18 17:56 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

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

== Series Details ==

Series: D3Cold Tool
URL   : https://patchwork.freedesktop.org/series/104082/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11664_full -> IGTPW_7122_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_pm_dc@dc6-psr:
    - {shard-rkl}:        NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen:
    - {shard-dg1}:        [PASS][2] -> [DMESG-WARN][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html

  * {igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3}:
    - {shard-dg1}:        NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html

  * {igt@kms_hdr@static-toggle@pipe-a-edp-1}:
    - {shard-rkl}:        NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_hdr@static-toggle@pipe-a-edp-1.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11664_full and IGTPW_7122_full:

### New IGT tests (2) ###

  * igt@i915_pm_rpm@gem-mmap-type@fixed-lmem0:
    - Statuses : 1 pass(s)
    - Exec time: [2.30] s

  * igt@i915_pm_rpm@gem-mmap-type@fixed-smem0:
    - Statuses : 1 pass(s)
    - Exec time: [2.22] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-glk:          [PASS][6] -> [DMESG-WARN][7] ([i915#118] / [i915#1888])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk4/igt@drm_read@short-buffer-wakeup.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk9/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_ccs@block-copy-inplace:
    - shard-tglb:         NOTRUN -> [SKIP][8] ([i915#3555] / [i915#5325]) +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@gem_ccs@block-copy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-iclb:         NOTRUN -> [SKIP][9] ([i915#5327])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][10] ([i915#4991])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_create@create-massive.html

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

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [PASS][14] -> [FAIL][15] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][18] -> [FAIL][19] ([i915#2842]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-tglb:         NOTRUN -> [SKIP][20] ([fdo#109313])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-snb:          [PASS][21] -> [SKIP][22] ([fdo#109271]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb5/igt@gem_exec_flush@basic-uc-prw-default.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb6/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_params@secure-non-root:
    - shard-iclb:         NOTRUN -> [SKIP][23] ([fdo#112283])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@gem_exec_params@secure-non-root.html

  * igt@gem_lmem_swapping@basic:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#4613]) +2 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +2 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#4613]) +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +6 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#4270]) +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([i915#4270]) +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][30] ([i915#768])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_softpin@evict-single-offset:
    - shard-kbl:          NOTRUN -> [FAIL][31] ([i915#4171])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@gem_softpin@evict-single-offset.html

  * igt@gem_userptr_blits@access-control:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#3297]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-kbl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3323])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3323])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([i915#3297]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-iclb:         NOTRUN -> [FAIL][36] ([i915#3318])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@gem_userptr_blits@vma-merge.html
    - shard-kbl:          NOTRUN -> [FAIL][37] ([i915#3318])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl3/igt@gem_userptr_blits@vma-merge.html
    - shard-tglb:         NOTRUN -> [FAIL][38] ([i915#3318])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109289]) +4 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109289]) +6 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb7/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#2527] / [i915#2856]) +3 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#2856]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#109293] / [fdo#109506])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109506] / [i915#2411])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-snb:          NOTRUN -> [SKIP][45] ([fdo#109271]) +92 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#110892])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_sseu@full-enable:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([i915#4387])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@i915_pm_sseu@full-enable.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][49] -> [DMESG-WARN][50] ([i915#5591])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglb6/igt@i915_selftest@live@hangcheck.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@i915_selftest@live@hangcheck.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3826])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-iclb:         NOTRUN -> [SKIP][52] ([i915#3826])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([i915#5286]) +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#5286]) +6 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][55] ([fdo#109271]) +53 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111614]) +5 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#110725] / [fdo#111614]) +4 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111615]) +6 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271]) +198 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#110723]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([i915#2705])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@kms_big_joiner@invalid-modeset.html
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#2705])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +3 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([i915#3689]) +5 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +12 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3689] / [i915#3886]) +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109278] / [i915#3886]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109278]) +27 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#3886])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111615] / [i915#3689]) +9 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color@pipe-c-deep-color:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#6029]) +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_color@pipe-c-deep-color.html

  * igt@kms_color@pipe-d-ctm-max:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109278] / [i915#1149])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_color@pipe-d-ctm-max.html

  * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109284] / [fdo#111827]) +11 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-25:
    - shard-glk:          NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
    - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
    - shard-iclb:         NOTRUN -> [SKIP][77] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_color_chamelium@pipe-d-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][78] ([fdo#109284] / [fdo#111827]) +18 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
    - shard-snb:          NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb6/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][80] ([i915#1319]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-iclb:         NOTRUN -> [SKIP][81] ([i915#3116])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][82] ([i915#3116] / [i915#3299]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][83] ([i915#1319]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_content_protection@lic.html
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#1063]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@mei_interface:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#3319]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#109279] / [i915#3359]) +5 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3359]) +7 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109274] / [fdo#109278]) +2 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#4103]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][92] ([i915#5287])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-blt-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#5287]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-blt-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          NOTRUN -> [FAIL][94] ([i915#4767])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][95] -> [FAIL][96] ([i915#79])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([fdo#109274] / [fdo#111825]) +11 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][98] ([fdo#109274]) +5 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][99] ([i915#180]) +3 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][100] ([i915#180]) +3 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-tglb:         NOTRUN -> [SKIP][101] ([i915#2587])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
    - shard-iclb:         [PASS][102] -> [SKIP][103] ([i915#3701])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-iclb:         NOTRUN -> [SKIP][104] ([i915#3701])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][105] ([fdo#109280]) +30 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][106] ([fdo#109280] / [fdo#111825]) +45 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-kbl:          NOTRUN -> [SKIP][107] ([fdo#109271]) +376 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([i915#1839])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#533]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [PASS][110] -> [DMESG-WARN][111] ([i915#180])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][112] ([i915#265])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl1/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][113] ([fdo#108145] / [i915#265]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][114] ([fdo#108145] / [i915#265]) +3 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-a-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#5288])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-4.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][117] ([i915#3536]) +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#3536]) +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][119] ([fdo#111615] / [fdo#112054])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][120] ([i915#5176]) +3 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale:
    - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#5235]) +3 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-kbl:          NOTRUN -> [SKIP][122] ([fdo#109271] / [i915#658]) +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglb:         NOTRUN -> [SKIP][123] ([i915#2920])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-iclb:         [PASS][124] -> [SKIP][125] ([fdo#109642] / [fdo#111068] / [i915#658])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][126] ([i915#1911])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html
    - shard-apl:          NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#658]) +2 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@kms_psr2_su@page_flip-nv12.html
    - shard-glk:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#658])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk7/igt@kms_psr2_su@page_flip-nv12.html
    - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109642] / [fdo#111068] / [i915#658])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-iclb:         [PASS][130] -> [SKIP][131] ([fdo#109441])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][132] ([i915#132] / [i915#3467]) +3 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb3/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         NOTRUN -> [SKIP][133] ([fdo#109441]) +2 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         [PASS][134] -> [SKIP][135] ([i915#5519])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-tglb:         NOTRUN -> [SKIP][136] ([fdo#111615] / [i915#5289])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-iclb:         NOTRUN -> [SKIP][137] ([i915#3555]) +2 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][138] ([IGT#2])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@kms_sysfs_edid_timing.html
    - shard-kbl:          NOTRUN -> [FAIL][139] ([IGT#2])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl4/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-apl:          [PASS][140] -> [DMESG-WARN][141] ([i915#180]) +1 similar issue
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#533]) +3 similar issues
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][143] ([i915#3555]) +3 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@kms_vrr@flip-basic.html

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][144] ([i915#2530]) +1 similar issue
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@nouveau_crc@pipe-c-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][145] ([i915#2530]) +2 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][146] ([fdo#109291]) +4 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb3/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@prime_nv_pcopy@test3_2:
    - shard-tglb:         NOTRUN -> [SKIP][147] ([fdo#109291]) +8 similar issues
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb6/igt@prime_nv_pcopy@test3_2.html

  * igt@syncobj_timeline@invalid-transfer-non-existent-point:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][148] ([i915#5098])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl7/igt@syncobj_timeline@invalid-transfer-non-existent-point.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][149] ([i915#5098])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb2/igt@syncobj_timeline@invalid-transfer-non-existent-point.html

  * igt@sysfs_clients@fair-3:
    - shard-kbl:          NOTRUN -> [SKIP][150] ([fdo#109271] / [i915#2994]) +4 similar issues
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@recycle:
    - shard-iclb:         NOTRUN -> [SKIP][151] ([i915#2994]) +2 similar issues
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@sysfs_clients@recycle.html

  * igt@sysfs_clients@sema-10:
    - shard-tglb:         NOTRUN -> [SKIP][152] ([i915#2994]) +4 similar issues
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglb1/igt@sysfs_clients@sema-10.html
    - shard-apl:          NOTRUN -> [SKIP][153] ([fdo#109271] / [i915#2994]) +4 similar issues
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@sysfs_clients@sema-10.html
    - shard-glk:          NOTRUN -> [SKIP][154] ([fdo#109271] / [i915#2994]) +1 similar issue
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk7/igt@sysfs_clients@sema-10.html

  
#### Possible fixes ####

  * igt@drm_mm@all@color:
    - {shard-rkl}:        [INCOMPLETE][155] -> [PASS][156]
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@drm_mm@all@color.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@drm_mm@all@color.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [FAIL][157] ([i915#2842]) -> [PASS][158] +2 similar issues
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html
    - shard-apl:          [FAIL][159] ([i915#2842]) -> [PASS][160] +1 similar issue
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - {shard-tglu}:       [FAIL][161] ([i915#2842]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][163] ([i915#2849]) -> [PASS][164]
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-uc:
    - shard-snb:          [SKIP][165] ([fdo#109271]) -> [PASS][166] +2 similar issues
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][167] ([i915#180]) -> [PASS][168] +3 similar issues
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [DMESG-WARN][169] ([i915#5566] / [i915#716]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk8/igt@gen9_exec_parse@allowed-single.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk8/igt@gen9_exec_parse@allowed-single.html
    - shard-apl:          [DMESG-WARN][171] ([i915#5566] / [i915#716]) -> [PASS][172]
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@gen9_exec_parse@allowed-single.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_backlight@fade:
    - {shard-rkl}:        [SKIP][173] ([i915#3012]) -> [PASS][174] +1 similar issue
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@i915_pm_backlight@fade.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_backlight@fade.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [FAIL][175] ([i915#454]) -> [PASS][176] +1 similar issue
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html
    - {shard-tglu}:       [FAIL][177] ([i915#454]) -> [PASS][178]
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@basic-rte:
    - {shard-rkl}:        [SKIP][179] ([fdo#109308]) -> [PASS][180] +1 similar issue
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@i915_pm_rpm@basic-rte.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - {shard-rkl}:        [SKIP][181] ([i915#1397]) -> [PASS][182]
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - {shard-dg1}:        [SKIP][183] ([i915#1397]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rps@waitboost:
    - {shard-rkl}:        [FAIL][185] ([i915#4016]) -> [PASS][186]
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@i915_pm_rps@waitboost.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@i915_pm_rps@waitboost.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [INCOMPLETE][187] ([i915#3921]) -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-snb4/igt@i915_selftest@live@hangcheck.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-snb4/igt@i915_selftest@live@hangcheck.html

  * igt@kms_color@pipe-a-ctm-0-75:
    - {shard-rkl}:        [SKIP][189] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][190] +2 similar issues
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_color@pipe-a-ctm-0-75.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding:
    - {shard-rkl}:        [SKIP][191] ([fdo#112022] / [i915#4070]) -> [PASS][192] +4 similar issues
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html

  * igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge:
    - {shard-rkl}:        [SKIP][193] ([i915#4070] / [i915#4098]) -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-64x64-bottom-edge.html

  * igt@kms_cursor_legacy@pipe-c-torture-bo:
    - {shard-rkl}:        ([SKIP][195], [PASS][196]) ([i915#4070]) -> [PASS][197]
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_cursor_legacy@pipe-c-torture-bo.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_cursor_legacy@pipe-c-torture-bo.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-5/igt@kms_cursor_legacy@pipe-c-torture-bo.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
    - {shard-rkl}:        [SKIP][198] ([fdo#111825] / [i915#4070]) -> [PASS][199] +1 similar issue
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_aux_dev:
    - {shard-rkl}:        [SKIP][200] ([i915#1257]) -> [PASS][201]
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_dp_aux_dev.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_dp_aux_dev.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
    - shard-glk:          [FAIL][202] ([i915#79]) -> [PASS][203]
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [DMESG-WARN][204] ([i915#180]) -> [PASS][205] +4 similar issues
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-glk:          [FAIL][206] ([i915#4911]) -> [PASS][207]
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
    - {shard-rkl}:        ([SKIP][208], [SKIP][209]) ([i915#1849] / [i915#4098]) -> [PASS][210]
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - {shard-rkl}:        [SKIP][211] ([i915#1849] / [i915#4098]) -> [PASS][212] +12 similar issues
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_plane@pixel-format@pipe-a-planes:
    - {shard-rkl}:        [SKIP][213] ([i915#3558]) -> [PASS][214] +1 similar issue
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_plane@pixel-format@pipe-a-planes.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane@pixel-format@pipe-a-planes.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
    - {shard-rkl}:        [SKIP][215] ([i915#1849] / [i915#3558]) -> [PASS][216] +1 similar issue
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
    - {shard-rkl}:        ([SKIP][217], [SKIP][218]) ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][219]
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid:
    - {shard-rkl}:        [SKIP][220] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale:
    - shard-iclb:         [SKIP][222] ([i915#5235]) -> [PASS][223] +2 similar issues
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html

  * igt@kms_prime@basic-crc@second-to-first:
    - {shard-rkl}:        [SKIP][224] ([i915#1849]) -> [PASS][225]
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_prime@basic-crc@second-to-first.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_prime@basic-crc@second-to-first.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][226] ([fdo#109441]) -> [PASS][227]
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb3/igt@kms_psr@psr2_basic.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb2/igt@kms_psr@psr2_basic.html

  * igt@kms_universal_plane@universal-plane-pipe-a-sanity:
    - {shard-rkl}:        [SKIP][228] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][229]
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-5/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html

  * igt@kms_vblank@pipe-a-ts-continuation-modeset:
    - {shard-rkl}:        [SKIP][230] ([i915#1845] / [i915#4098]) -> [PASS][231] +20 similar issues
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-1/igt@kms_vblank@pipe-a-ts-continuation-modeset.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset.html

  * igt@kms_vblank@pipe-b-wait-forked-hang:
    - {shard-rkl}:        ([SKIP][232], [SKIP][233]) ([i915#1845] / [i915#4098]) -> [PASS][234]
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-4/igt@kms_vblank@pipe-b-wait-forked-hang.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-rkl-2/igt@kms_vblank@pipe-b-wait-forked-hang.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-rkl-6/igt@kms_vblank@pipe-b-wait-forked-hang.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel:
    - shard-iclb:         [DMESG-WARN][235] ([i915#5614]) -> [SKIP][236] ([i915#4525]) +1 similar issue
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb4/igt@gem_exec_balancer@parallel.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb8/igt@gem_exec_balancer@parallel.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][237] ([i915#2920]) -> [SKIP][238] ([fdo#111068] / [i915#658])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-iclb:         [FAIL][239] ([i915#5939]) -> [SKIP][240] ([fdo#109642] / [fdo#111068] / [i915#658])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-iclb5/igt@kms_psr2_su@page_flip-p010.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][241], [FAIL][242], [FAIL][243], [FAIL][244], [FAIL][245], [FAIL][246], [FAIL][247], [FAIL][248], [FAIL][249], [FAIL][250]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][251], [FAIL][252], [FAIL][253], [FAIL][254], [FAIL][255], [FAIL][256], [FAIL][257], [FAIL][258], [FAIL][259], [FAIL][260], [FAIL][261]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl4/igt@runner@aborted.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@runner@aborted.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@runner@aborted.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl7/igt@runner@aborted.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl8/igt@runner@aborted.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl4/igt@runner@aborted.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl2/igt@runner@aborted.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11664/shard-apl3/igt@runner@aborted.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl7/igt@runner@aborted.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@runner@aborted.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl1/igt@runner@aborted.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl2/igt@runner@aborted.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl3/igt@runner@aborted.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl8/igt@runner@aborted.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl6/igt@runner@aborted.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl4/igt@runner@aborted.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/shard-apl8/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3736]: https://gitlab.freedesktop.org/drm/intel/issues/3736
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3963]: https://gitlab.freedesktop.org/drm/intel/issues/3963
  [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
  [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4807]: https://gitlab.freedesktop.org/drm/intel/issues/4807
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
  [i915#4886]: https://gitlab.freedesktop.org/drm/intel/issues/4886
  [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
  [i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
  [i915#4929]: https://gitlab.freedesktop.org/drm/intel/issues/4929
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
  [i915#5080]: https://gitlab.freedesktop.org/drm/intel/issues/5080
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5266]: https://gitlab.freedesktop.org/drm/intel/issues/5266
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
  [i915#6029]: https://gitlab.freedesktop.org/drm/intel/issues/6029
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6476 -> IGTPW_7122
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11664: ff658f5f8e7e427556a8e6f1adc0e4519527ca95 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7122: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7122/index.html
  IGT_6476: 08aa9296163b94cf4c529fc890ae3e90e21c3cdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

end of thread, other threads:[~2022-05-18 17:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-17 13:31 [igt-dev] [PATCH i-g-t 0/6] D3Cold Tool Anshuman Gupta
2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 1/6] test/i915_pm_rpm: Add placement to gem-{mmap-type, execbuf} Anshuman Gupta
2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 2/6] lib/igt_device: Get gfx PCI card root port Anshuman Gupta
2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 3/6] lib/igt_pm: D3Cold runtime pm infrastructure Anshuman Gupta
2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 4/6] lib: Optional autosuspend_delay_ms configuration Anshuman Gupta
2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 5/6] tools: Add intel_pm_rpm tool Anshuman Gupta
2022-05-17 13:31 ` [igt-dev] [PATCH i-g-t 6/6] tools/intel_pm_rpm: Add an option to setup d3cold Anshuman Gupta
2022-05-17 14:34 ` [igt-dev] ✓ Fi.CI.BAT: success for D3Cold Tool Patchwork
2022-05-17 15:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-18 16:23   ` Gupta, Anshuman
2022-05-18 17:56 ` [igt-dev] ✓ Fi.CI.IGT: success " 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.