All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting
@ 2021-09-01 12:37 Stylon Wang
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP displays Stylon Wang
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Stylon Wang @ 2021-09-01 12:37 UTC (permalink / raw)
  To: igt-dev; +Cc: nicholas.kazlauskas, sunpeng.li, rodrigo.siqueira, Stylon Wang

These new tests check if Freesync capability are correctly parsed from
EDID and reported to debugfs. They were originally made for Freesync
HDMI only and got extended to cover DP displays. Simulated hotplug triggered
via debugfs is used to implement the tests and is the major reason why
the tests are made amdgpu specific.

Changes from prior rev1 to now:

v2:
- Add missing call to igt_amd_require_hpd()

Stylon Wang (3):
  tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP
    displays
  tests/amdgpu: Add tests for relaxed reporting of Freesync capability
  tests/amdgpu: Add tests for Freesync capability with suspend-resume

 tests/amdgpu/amd_vrr_range.c | 342 +++++++++++++++++++++++++++++++++++
 tests/amdgpu/meson.build     |   1 +
 2 files changed, 343 insertions(+)
 create mode 100644 tests/amdgpu/amd_vrr_range.c

-- 
2.32.0

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

* [igt-dev] [PATCH i-g-t v2 1/3] tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP displays
  2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
@ 2021-09-01 12:37 ` Stylon Wang
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/amdgpu: Add tests for relaxed reporting of Freesync capability Stylon Wang
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Stylon Wang @ 2021-09-01 12:37 UTC (permalink / raw)
  To: igt-dev; +Cc: nicholas.kazlauskas, sunpeng.li, rodrigo.siqueira, Stylon Wang

Freesync capability is parsed from EDID and reported to debugfs.
The new tests check if the parsing is correct by overriding EDID with
golden sample.

Signed-off-by: Stylon Wang <stylon.wang@amd.com>
---
 tests/amdgpu/amd_vrr_range.c | 265 +++++++++++++++++++++++++++++++++++
 tests/amdgpu/meson.build     |   1 +
 2 files changed, 266 insertions(+)
 create mode 100644 tests/amdgpu/amd_vrr_range.c

diff --git a/tests/amdgpu/amd_vrr_range.c b/tests/amdgpu/amd_vrr_range.c
new file mode 100644
index 00000000..219162c0
--- /dev/null
+++ b/tests/amdgpu/amd_vrr_range.c
@@ -0,0 +1,265 @@
+/*
+ * Copyright 2020 Advanced Micro Devices, Inc.
+ *
+ * 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 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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 "igt.h"
+#include "igt_sysfs.h"
+#include "igt_amd.h"
+#include <fcntl.h>
+
+IGT_TEST_DESCRIPTION("Test EDID parsing and debugfs reporting on Freesync displays");
+
+/* Common test data. */
+typedef struct data {
+	igt_display_t display;
+	igt_plane_t *primary;
+	igt_output_t *output;
+	int fd;
+} data_t;
+
+typedef struct range {
+	unsigned int min;
+	unsigned int max;
+} range_t;
+
+struct {
+	const char *name;
+	uint32_t connector_type;
+	const unsigned char edid[256];
+	const range_t range;
+} edid_database[] = {
+	{
+		/* DP EDID from Benq EL-2870u */
+		"Benq EL-2870u DP",
+		DRM_MODE_CONNECTOR_DisplayPort,
+		{
+		0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
+		0x09, 0xd1, 0x49, 0x79, 0x45, 0x54, 0x00, 0x00,
+		0x0c, 0x1e, 0x01, 0x04, 0xb5, 0x3e, 0x22, 0x78,
+		0x3f, 0x08, 0xa5, 0xa2, 0x57, 0x4f, 0xa2, 0x28,
+		0x0f, 0x50, 0x54, 0xa5, 0x6b, 0x80, 0xd1, 0xc0,
+		0x81, 0xc0, 0x81, 0x00, 0x81, 0x80, 0xa9, 0xc0,
+		0xb3, 0x00, 0xa9, 0x40, 0x01, 0x01, 0x4d, 0xd0,
+		0x00, 0xa0, 0xf0, 0x70, 0x3e, 0x80, 0x30, 0x20,
+		0x35, 0x00, 0x6d, 0x55, 0x21, 0x00, 0x00, 0x1a,
+		0x00, 0x00, 0x00, 0xff, 0x00, 0x46, 0x33, 0x4c,
+		0x30, 0x34, 0x33, 0x33, 0x33, 0x53, 0x4c, 0x30,
+		0x0a, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x28,
+		0x3c, 0x87, 0x87, 0x3c, 0x01, 0x0a, 0x20, 0x20,
+		0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
+		0x00, 0x42, 0x65, 0x6e, 0x51, 0x20, 0x45, 0x4c,
+		0x32, 0x38, 0x37, 0x30, 0x55, 0x0a, 0x01, 0xa8,
+		0x02, 0x03, 0x2e, 0xf1, 0x56, 0x61, 0x60, 0x5d,
+		0x5e, 0x5f, 0x10, 0x05, 0x04, 0x03, 0x02, 0x07,
+		0x06, 0x0f, 0x1f, 0x20, 0x21, 0x22, 0x14, 0x13,
+		0x12, 0x16, 0x01, 0x23, 0x09, 0x07, 0x07, 0x83,
+		0x01, 0x00, 0x00, 0xe3, 0x05, 0xc0, 0x00, 0xe6,
+		0x06, 0x05, 0x01, 0x5a, 0x53, 0x44, 0x02, 0x3a,
+		0x80, 0x18, 0x71, 0x38, 0x2d, 0x40, 0x58, 0x2c,
+		0x45, 0x00, 0x6d, 0x55, 0x21, 0x00, 0x00, 0x1e,
+		0x56, 0x5e, 0x00, 0xa0, 0xa0, 0xa0, 0x29, 0x50,
+		0x30, 0x20, 0x35, 0x00, 0x6d, 0x55, 0x21, 0x00,
+		0x00, 0x1a, 0x8c, 0x64, 0x00, 0x50, 0xf0, 0x70,
+		0x1f, 0x80, 0x08, 0x20, 0x18, 0x04, 0x6d, 0x55,
+		0x21, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93
+		},
+		{40, 60},
+	},
+	{
+		/* HDMI EDID from ASUS VP249QGR */
+		"ASUS VP249QGR HDMI",
+		DRM_MODE_CONNECTOR_HDMIA,
+		{
+		0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
+		0x06, 0xb3, 0xaf, 0x24, 0x01, 0x01, 0x01, 0x01,
+		0x00, 0x1d, 0x01, 0x03, 0x80, 0x35, 0x1e, 0x78,
+		0x2a, 0x51, 0xb5, 0xa4, 0x54, 0x4f, 0xa0, 0x26,
+		0x0d, 0x50, 0x54, 0xbf, 0xcf, 0x00, 0x81, 0x40,
+		0x81, 0x80, 0x95, 0x00, 0x71, 0x4f, 0x81, 0xc0,
+		0xb3, 0x00, 0x01, 0x01, 0x01, 0x01, 0x02, 0x3a,
+		0x80, 0x18, 0x71, 0x38, 0x2d, 0x40, 0x58, 0x2c,
+		0x45, 0x00, 0x0f, 0x28, 0x21, 0x00, 0x00, 0x1e,
+		0xfc, 0x7e, 0x80, 0x88, 0x70, 0x38, 0x12, 0x40,
+		0x18, 0x20, 0x35, 0x00, 0x0f, 0x28, 0x21, 0x00,
+		0x00, 0x1e, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x30,
+		0x90, 0x1e, 0xb4, 0x22, 0x00, 0x0a, 0x20, 0x20,
+		0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
+		0x00, 0x41, 0x53, 0x55, 0x53, 0x20, 0x56, 0x50,
+		0x32, 0x34, 0x39, 0x0a, 0x20, 0x20, 0x01, 0x94,
+		0x02, 0x03, 0x2d, 0xf1, 0x4f, 0x01, 0x03, 0x04,
+		0x13, 0x1f, 0x12, 0x02, 0x11, 0x90, 0x0e, 0x0f,
+		0x1d, 0x1e, 0x3f, 0x40, 0x23, 0x09, 0x07, 0x07,
+		0x83, 0x01, 0x00, 0x00, 0x67, 0x03, 0x0c, 0x00,
+		0x10, 0x00, 0x00, 0x44, 0x68, 0x1a, 0x00, 0x00,
+		0x01, 0x01, 0x30, 0x90, 0xe6, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16
+		},
+		{48, 144},
+	},
+};
+
+/* Common test setup. */
+static void test_init(data_t *data, uint32_t connector_type)
+{
+	igt_display_t *display = &data->display;
+
+	igt_display_reset(display);
+
+	/* find connected outputs */
+	data->output = NULL;
+	for (int i=0; i < data->display.n_outputs; ++i) {
+		drmModeConnector *connector = data->display.outputs[i].config.connector;
+		if (connector->connection == DRM_MODE_CONNECTED &&
+			connector->connector_type == connector_type) {
+			data->output = &data->display.outputs[i];
+		}
+	}
+	igt_assert_f(data->output, "Requires connected output\n");
+
+}
+
+/* Common test cleanup. */
+static void test_fini(data_t *data)
+{
+	igt_display_reset(&data->display);
+}
+
+static int find_test_edid_index(uint32_t connector_type)
+{
+	int i;
+
+	for(i = 0; i < sizeof(edid_database)/sizeof(edid_database[0]); ++i) {
+		if (edid_database[i].connector_type == connector_type) {
+			return i;
+		}
+	}
+
+	igt_assert_f(0, "should not reach here");
+	return -1;
+}
+
+/* Returns the min and max vrr range from the connector debugfs. */
+static range_t get_freesync_range(data_t *data, igt_output_t *output)
+{
+	char buf[256];
+	char *start_loc;
+	int fd, res;
+	range_t range;
+
+	fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
+	igt_assert(fd >= 0);
+
+	res = igt_debugfs_simple_read(fd, "vrr_range", buf, sizeof(buf));
+	igt_require(res > 0);
+
+	close(fd);
+
+	igt_assert(start_loc = strstr(buf, "Min: "));
+	igt_assert_eq(sscanf(start_loc, "Min: %u", &range.min), 1);
+
+	igt_assert(start_loc = strstr(buf, "Max: "));
+	igt_assert_eq(sscanf(start_loc, "Max: %u", &range.max), 1);
+
+	return range;
+}
+
+/* Check if EDID parsing is correctly reporting Freesync capability
+ * by overriding EDID with ones from golden sample. Display under test
+ * must still support Freesync.
+ */
+static void test_freesync_parsing(data_t *data, uint32_t connector_type)
+{
+	const struct edid *edid;
+	range_t range, expected_range;
+	int i;
+
+	test_init(data, connector_type);
+
+	igt_amd_require_hpd(&data->display, data->fd);
+
+	/* find a test EDID */
+	i = find_test_edid_index(connector_type);
+	edid = (const struct edid *)edid_database[i].edid;
+	expected_range = edid_database[i].range;
+
+	kmstest_force_edid(data->fd, data->output->config.connector, edid);
+
+	igt_amd_trigger_hotplug(data->fd, data->output->name);
+
+	range = get_freesync_range(data, data->output);
+
+	/* undo EDID override and trigger a re-parsing of EDID */
+	kmstest_force_edid(data->fd, data->output->config.connector, NULL);
+	igt_amd_trigger_hotplug(data->fd, data->output->name);
+
+	test_fini(data);
+
+	igt_assert_f(range.min == expected_range.min &&
+			range.max == expected_range.max,
+			"Expecting Freesync range %d-%d, got %d-%d\n",
+			expected_range.min, expected_range.max,
+			range.min, range.max);
+	igt_info("Freesync range: %d-%d\n", range.min, range.max);
+}
+
+igt_main
+{
+	data_t data;
+
+	igt_skip_on_simulation();
+
+	memset(&data, 0, sizeof(data));
+
+	igt_fixture
+	{
+		data.fd = drm_open_driver_master(DRIVER_AMDGPU);
+
+		kmstest_set_vt_graphics_mode();
+
+		igt_display_require(&data.display, data.fd);
+		igt_require(data.display.is_atomic);
+		igt_display_require_output(&data.display);
+	}
+
+	igt_describe("Freesync EDID parsing on HDMI");
+	igt_subtest("freesync-parsing-hdmi") test_freesync_parsing(&data,
+			DRM_MODE_CONNECTOR_HDMIA);
+	igt_describe("Freesync EDID parsing on DP");
+	igt_subtest("freesync-parsing-dp") test_freesync_parsing(&data,
+			DRM_MODE_CONNECTOR_DisplayPort);
+
+	igt_fixture
+	{
+		igt_display_fini(&data.display);
+	}
+}
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index 90489d82..d262faa5 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -12,6 +12,7 @@ if libdrm_amdgpu.found()
 			  'amd_info',
 			  'amd_prime',
 			  'amd_module_load',
+			  'amd_vrr_range',
 			]
 	amdgpu_deps += libdrm_amdgpu
 endif
-- 
2.32.0

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

* [igt-dev] [PATCH i-g-t v2 2/3] tests/amdgpu: Add tests for relaxed reporting of Freesync capability
  2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP displays Stylon Wang
@ 2021-09-01 12:37 ` Stylon Wang
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/amdgpu: Add tests for Freesync capability with suspend-resume Stylon Wang
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Stylon Wang @ 2021-09-01 12:37 UTC (permalink / raw)
  To: igt-dev; +Cc: nicholas.kazlauskas, sunpeng.li, rodrigo.siqueira, Stylon Wang

These new tests only check if frame rate range is within legal range.

Signed-off-by: Stylon Wang <stylon.wang@amd.com>
---
 tests/amdgpu/amd_vrr_range.c | 43 ++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/tests/amdgpu/amd_vrr_range.c b/tests/amdgpu/amd_vrr_range.c
index 219162c0..1d0e6b54 100644
--- a/tests/amdgpu/amd_vrr_range.c
+++ b/tests/amdgpu/amd_vrr_range.c
@@ -232,6 +232,42 @@ static void test_freesync_parsing(data_t *data, uint32_t connector_type)
 	igt_info("Freesync range: %d-%d\n", range.min, range.max);
 }
 
+/* Returns true if an output supports VRR. */
+static bool has_vrr(igt_output_t *output)
+{
+	return igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
+	       igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
+}
+
+/* More relaxed checking on Freesync capability.
+ * Only checks if frame rate range is within legal range.
+ */
+static void test_freesync_range(data_t *data, uint32_t connector_type)
+{
+	range_t range;
+
+	test_init(data, connector_type);
+
+	igt_amd_require_hpd(&data->display, data->fd);
+
+	igt_assert_f(has_vrr(data->output),
+			"connector %s is not VRR capable\n",
+			data->output->name);
+
+	igt_amd_trigger_hotplug(data->fd, data->output->name);
+
+	range = get_freesync_range(data, data->output);
+
+	test_fini(data);
+
+	igt_assert_f(range.min != 0 &&
+			range.max != 0 &&
+			range.max - range.min > 10,
+			"Invalid Freesync range %d-%d\n",
+			range.min, range.max);
+	igt_info("Freesync range: %d-%d\n", range.min, range.max);
+}
+
 igt_main
 {
 	data_t data;
@@ -258,6 +294,13 @@ igt_main
 	igt_subtest("freesync-parsing-dp") test_freesync_parsing(&data,
 			DRM_MODE_CONNECTOR_DisplayPort);
 
+	igt_describe("Freesync range on HDMI");
+	igt_subtest("freesync-range-hdmi") test_freesync_range(&data,
+			DRM_MODE_CONNECTOR_HDMIA);
+	igt_describe("Freesync range on DP");
+	igt_subtest("freesync-range-dp") test_freesync_range(&data,
+			DRM_MODE_CONNECTOR_DisplayPort);
+
 	igt_fixture
 	{
 		igt_display_fini(&data.display);
-- 
2.32.0

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

* [igt-dev] [PATCH i-g-t v2 3/3] tests/amdgpu: Add tests for Freesync capability with suspend-resume
  2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP displays Stylon Wang
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/amdgpu: Add tests for relaxed reporting of Freesync capability Stylon Wang
@ 2021-09-01 12:37 ` Stylon Wang
  2021-09-01 13:42 ` [igt-dev] ✓ Fi.CI.BAT: success for Add tests to check Freesync capability reporting (rev2) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Stylon Wang @ 2021-09-01 12:37 UTC (permalink / raw)
  To: igt-dev; +Cc: nicholas.kazlauskas, sunpeng.li, rodrigo.siqueira, Stylon Wang

Add tests to check Freesync capability reporting after system resume
from suspend.

Signed-off-by: Stylon Wang <stylon.wang@amd.com>
---
 tests/amdgpu/amd_vrr_range.c | 50 ++++++++++++++++++++++++++++++------
 1 file changed, 42 insertions(+), 8 deletions(-)

diff --git a/tests/amdgpu/amd_vrr_range.c b/tests/amdgpu/amd_vrr_range.c
index 1d0e6b54..2f27296d 100644
--- a/tests/amdgpu/amd_vrr_range.c
+++ b/tests/amdgpu/amd_vrr_range.c
@@ -40,6 +40,12 @@ typedef struct range {
 	unsigned int max;
 } range_t;
 
+/* Test flags. */
+enum {
+	TEST_NONE = 1 << 0,
+	TEST_SUSPEND = 1 << 1,
+};
+
 struct {
 	const char *name;
 	uint32_t connector_type;
@@ -193,11 +199,24 @@ static range_t get_freesync_range(data_t *data, igt_output_t *output)
 	return range;
 }
 
+static void trigger_edid_parse(data_t *data, uint32_t test_flags)
+{
+	if (test_flags & TEST_SUSPEND)
+		igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+					      SUSPEND_TEST_NONE);
+	else
+		igt_amd_trigger_hotplug(data->fd, data->output->name);
+
+	/* more safe margin until resume and hotplug is completed */
+	usleep(1500000);
+}
+
 /* Check if EDID parsing is correctly reporting Freesync capability
  * by overriding EDID with ones from golden sample. Display under test
  * must still support Freesync.
  */
-static void test_freesync_parsing(data_t *data, uint32_t connector_type)
+static void test_freesync_parsing(data_t *data, uint32_t connector_type,
+		uint32_t test_flags)
 {
 	const struct edid *edid;
 	range_t range, expected_range;
@@ -214,7 +233,7 @@ static void test_freesync_parsing(data_t *data, uint32_t connector_type)
 
 	kmstest_force_edid(data->fd, data->output->config.connector, edid);
 
-	igt_amd_trigger_hotplug(data->fd, data->output->name);
+	trigger_edid_parse(data, test_flags);
 
 	range = get_freesync_range(data, data->output);
 
@@ -242,7 +261,8 @@ static bool has_vrr(igt_output_t *output)
 /* More relaxed checking on Freesync capability.
  * Only checks if frame rate range is within legal range.
  */
-static void test_freesync_range(data_t *data, uint32_t connector_type)
+static void test_freesync_range(data_t *data, uint32_t connector_type,
+		uint32_t test_flags)
 {
 	range_t range;
 
@@ -254,7 +274,7 @@ static void test_freesync_range(data_t *data, uint32_t connector_type)
 			"connector %s is not VRR capable\n",
 			data->output->name);
 
-	igt_amd_trigger_hotplug(data->fd, data->output->name);
+	trigger_edid_parse(data, test_flags);
 
 	range = get_freesync_range(data, data->output);
 
@@ -289,17 +309,31 @@ igt_main
 
 	igt_describe("Freesync EDID parsing on HDMI");
 	igt_subtest("freesync-parsing-hdmi") test_freesync_parsing(&data,
-			DRM_MODE_CONNECTOR_HDMIA);
+			DRM_MODE_CONNECTOR_HDMIA, TEST_NONE);
 	igt_describe("Freesync EDID parsing on DP");
 	igt_subtest("freesync-parsing-dp") test_freesync_parsing(&data,
-			DRM_MODE_CONNECTOR_DisplayPort);
+			DRM_MODE_CONNECTOR_DisplayPort, TEST_NONE);
+
+	igt_describe("Freesync EDID parsing on HDMI after suspend");
+	igt_subtest("freesync-parsing-hdmi-suspend") test_freesync_parsing(&data,
+			DRM_MODE_CONNECTOR_HDMIA, TEST_SUSPEND);
+	igt_describe("Freesync EDID parsing on DP after suspend");
+	igt_subtest("freesync-parsing-dp-suspend") test_freesync_parsing(&data,
+			DRM_MODE_CONNECTOR_DisplayPort, TEST_SUSPEND);
 
 	igt_describe("Freesync range on HDMI");
 	igt_subtest("freesync-range-hdmi") test_freesync_range(&data,
-			DRM_MODE_CONNECTOR_HDMIA);
+			DRM_MODE_CONNECTOR_HDMIA, TEST_NONE);
 	igt_describe("Freesync range on DP");
 	igt_subtest("freesync-range-dp") test_freesync_range(&data,
-			DRM_MODE_CONNECTOR_DisplayPort);
+			DRM_MODE_CONNECTOR_DisplayPort, TEST_NONE);
+
+	igt_describe("Freesync range on HDMI after suspend");
+	igt_subtest("freesync-range-hdmi-suspend") test_freesync_range(&data,
+			DRM_MODE_CONNECTOR_HDMIA, TEST_SUSPEND);
+	igt_describe("Freesync range on DP after suspend");
+	igt_subtest("freesync-range-dp-suspend") test_freesync_range(&data,
+			DRM_MODE_CONNECTOR_DisplayPort, TEST_SUSPEND);
 
 	igt_fixture
 	{
-- 
2.32.0

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

* [igt-dev] ✓ Fi.CI.BAT: success for Add tests to check Freesync capability reporting (rev2)
  2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
                   ` (2 preceding siblings ...)
  2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/amdgpu: Add tests for Freesync capability with suspend-resume Stylon Wang
@ 2021-09-01 13:42 ` Patchwork
  2021-09-01 15:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2021-09-10 15:00 ` [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Rodrigo Siqueira
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2021-09-01 13:42 UTC (permalink / raw)
  To: Stylon Wang; +Cc: igt-dev

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

== Series Details ==

Series: Add tests to check Freesync capability reporting (rev2)
URL   : https://patchwork.freedesktop.org/series/94244/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10543 -> IGTPW_6184
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-kbl-guc:         [FAIL][1] ([i915#2203] / [i915#579]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@hangcheck:
    - {fi-hsw-gt1}:       [DMESG-WARN][3] ([i915#3303]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html

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

  [i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579


Participating hosts (43 -> 35)
------------------------------

  Missing    (8): fi-ilk-m540 bat-adls-5 bat-dg1-6 bat-dg1-5 fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus bat-jsl-1 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6193 -> IGTPW_6184

  CI-20190529: 20190529
  CI_DRM_10543: 53abe6ce13dc725c123934c74d1f23157bf99c39 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6184: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/index.html
  IGT_6193: 080869f804cb86b25a38889e5ce9a870571cd8c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git



== Testlist changes ==

+igt@amdgpu/amd_vrr_range@freesync-parsing-dp
+igt@amdgpu/amd_vrr_range@freesync-parsing-dp-suspend
+igt@amdgpu/amd_vrr_range@freesync-parsing-hdmi
+igt@amdgpu/amd_vrr_range@freesync-parsing-hdmi-suspend
+igt@amdgpu/amd_vrr_range@freesync-range-dp
+igt@amdgpu/amd_vrr_range@freesync-range-dp-suspend
+igt@amdgpu/amd_vrr_range@freesync-range-hdmi
+igt@amdgpu/amd_vrr_range@freesync-range-hdmi-suspend

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Add tests to check Freesync capability reporting (rev2)
  2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
                   ` (3 preceding siblings ...)
  2021-09-01 13:42 ` [igt-dev] ✓ Fi.CI.BAT: success for Add tests to check Freesync capability reporting (rev2) Patchwork
@ 2021-09-01 15:48 ` Patchwork
  2021-09-14  5:40   ` Modem, Bhanuprakash
  2021-09-10 15:00 ` [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Rodrigo Siqueira
  5 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2021-09-01 15:48 UTC (permalink / raw)
  To: Stylon Wang; +Cc: igt-dev

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

== Series Details ==

Series: Add tests to check Freesync capability reporting (rev2)
URL   : https://patchwork.freedesktop.org/series/94244/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10543_full -> IGTPW_6184_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-massive:
    - shard-apl:          NOTRUN -> [DMESG-WARN][1] ([i915#3002])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl1/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1099]) +6 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][3] -> [TIMEOUT][4] ([i915#2369] / [i915#3063] / [i915#3648])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-tglb6/igt@gem_eio@unwedge-stress.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb2/igt@gem_eio@unwedge-stress.html
    - shard-iclb:         [PASS][5] -> [TIMEOUT][6] ([i915#2369] / [i915#2481] / [i915#3070])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-iclb6/igt@gem_eio@unwedge-stress.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-kbl3/igt@gem_exec_fair@basic-deadline.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
    - shard-apl:          NOTRUN -> [FAIL][9] ([i915#2846])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl1/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-apl:          [PASS][10] -> [SKIP][11] ([fdo#109271])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-apl8/igt@gem_exec_fair@basic-none-share@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][12] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb7/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][13] ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][20] ([i915#2842]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

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

  * igt@gem_exec_params@no-bsd:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#109283])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb2/igt@gem_exec_params@no-bsd.html
    - shard-iclb:         NOTRUN -> [SKIP][23] ([fdo#109283])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb8/igt@gem_exec_params@no-bsd.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#2190])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl8/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#2190])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk4/igt@gem_huc_copy@huc-copy.html
    - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#2190])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb5/igt@gem_huc_copy@huc-copy.html
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#2190])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl1/igt@gem_huc_copy@huc-copy.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-apl:          [PASS][28] -> [FAIL][29] ([i915#644])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-apl2/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][30] ([i915#2658])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl2/igt@gem_pwrite@basic-exhaustion.html

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

  * igt@gem_userptr_blits@access-control:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#3297]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb6/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_6184/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#3297])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb5/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][35] ([i915#180])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109289]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb6/igt@gen7_exec_parse@basic-allowed.html

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

  * igt@gen9_exec_parse@bb-start-far:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#2856])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@gen9_exec_parse@bb-start-far.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([fdo#109289] / [fdo#111719])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109293] / [fdo#109506])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109506] / [i915#2411])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@gem-mmap-type@fixed:
    - shard-glk:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3976])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk2/igt@i915_pm_rpm@gem-mmap-type@fixed.html
    - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3976])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl1/igt@i915_pm_rpm@gem-mmap-type@fixed.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#3826])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-tglb:         [PASS][45] -> [INCOMPLETE][46] ([i915#4009])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-tglb6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3777]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3777])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-glk:          [PASS][49] -> [DMESG-WARN][50] ([i915#118] / [i915#95]) +2 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-glk3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111614])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#110725] / [fdo#111614])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3777])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([fdo#111615]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271]) +247 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3886]) +7 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109278] / [i915#3886]) +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +17 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([i915#3689] / [i915#3886]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-snb:          NOTRUN -> [SKIP][61] ([fdo#109271]) +489 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#3689]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb8/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb2/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_chamelium@hdmi-aspect-ratio:
    - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk6/igt@kms_chamelium@hdmi-aspect-ratio.html

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl3/igt@kms_chamelium@hdmi-edid-change-during-suspend.html

  * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +8 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb1/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-d-gamma:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@kms_color_chamelium@pipe-d-gamma.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-snb:          NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +31 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#3116])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3116])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][72] ([i915#1319]) +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl2/igt@kms_content_protection@lic.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109278]) +18 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-onscreen.html

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

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([fdo#109279] / [i915#3359]) +3 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#3359]) +2 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109274] / [fdo#109278])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3788])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb6/igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglb:         NOTRUN -> [SKIP][80] ([fdo#111825]) +21 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb2/igt@kms_flip@2x-plain-flip-ts-check.html
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb1/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [PASS][82] -> [DMESG-WARN][83] ([i915#180]) +2 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2672])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
    - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2672])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109280]) +17 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-iclb:         [PASS][88] -> [INCOMPLETE][89] ([i915#123])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-iclb7/igt@kms_frontbuffer_tracking@psr-suspend.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb3/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][90] -> [SKIP][91] ([i915#433])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#1187])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb7/igt@kms_hdr@static-toggle-suspend.html
    - shard-iclb:         NOTRUN -> [SKIP][93] ([i915#1187])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb6/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109289]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb6/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#533]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#533]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][97] ([fdo#108145] / [i915#265]) +4 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
    - shard-kbl:          NOTRUN -> [FAIL][98] ([fdo#108145] / [i915#265]) +4 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [FAIL][99] ([fdo#108145] / [i915#265])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-iclb:         [PASS][100] -> [FAIL][101] ([i915#265])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-iclb8/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb8/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  * igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
    - shard-glk:          [PASS][102] -> [FAIL][103] ([i915#1779] / [i915#1888])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-glk1/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk3/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2733])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2920]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb5/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-apl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658]) +3 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         NOTRUN -> [SKIP][107] ([i915#658]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
    - shard-glk:          NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#658]) +3 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
    - shard-kbl:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#658]) +7 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_su@page_flip:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([i915#1911])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb5/igt@kms_psr2_su@page_flip.html
    - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109642] / [fdo#111068] / [i915#658])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb8/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [PASS][112] -> [SKIP][113] ([fdo#109441]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_psr@psr2_cursor_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][114] ([i915#132] / [i915#3467])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb7/igt@kms_psr@psr2_cursor_mmap_gtt.html
    - shard-iclb:         NOTRUN -> [SKIP][115] ([fdo#109441])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_gtt.html

  * igt@kms_rotation_crc@cursor-rotation-180:
    - shard-glk:          NOTRUN -> [FAIL][116] ([i915#1888] / [i915#65])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk1/igt@kms_rotation_crc@cursor-rotation-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-glk:          NOTRUN -> [SKIP][117] ([fdo#109271]) +92 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [PASS][118] -> [DMESG-WARN][119] ([i915#180] / [i915#295])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10543/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vrr@flip-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][120] ([fdo#109502])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@kms_vrr@flip-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][121] ([fdo#109502])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb8/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-glk:          NOTRUN -> [SKIP][122] ([fdo#109271] / [i915#2437])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html
    - shard-kbl:          NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#2437]) +1 similar issue
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl4/igt@kms_writeback@writeback-pixel-formats.html
    - shard-iclb:         NOTRUN -> [SKIP][124] ([i915#2437])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb2/igt@kms_writeback@writeback-pixel-formats.html
    - shard-tglb:         NOTRUN -> [SKIP][125] ([i915#2437])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb5/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-b-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][126] ([i915#2530])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb8/igt@nouveau_crc@pipe-b-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][127] ([i915#2530])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb8/igt@nouveau_crc@pipe-b-source-rg.html

  * igt@prime_nv_pcopy@test3_5:
    - shard-iclb:         NOTRUN -> [SKIP][128] ([fdo#109291])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb3/igt@prime_nv_pcopy@test3_5.html
    - shard-tglb:         NOTRUN -> [SKIP][129] ([fdo#109291])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb3/igt@prime_nv_pcopy@test3_5.html

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

  * igt@sysfs_clients@recycle-many:
    - shard-apl:          NOTRUN -> [SKIP][131] ([fdo#109271] / [i915#2994]) +3 similar issues
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl3/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@split-25:
    - shard-tglb:         NOTRUN -> [SKIP][132] ([i915#2994])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-tglb1/igt@sysfs_clients@split-25.html
    - shard-glk:          NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#2994]) +1 similar issue
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-glk9/igt@sysfs_clients@split-25.html
    - shard-iclb:         NOTRUN -> [SKIP][134] ([i915#2994])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-iclb4/igt@sysfs_clients@split-25.html

  
#### Possible fixes ####

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting
  2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
                   ` (4 preceding siblings ...)
  2021-09-01 15:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2021-09-10 15:00 ` Rodrigo Siqueira
  5 siblings, 0 replies; 8+ messages in thread
From: Rodrigo Siqueira @ 2021-09-10 15:00 UTC (permalink / raw)
  To: Stylon Wang; +Cc: igt-dev, nicholas.kazlauskas, sunpeng.li

Hi Stylon,

This series lgtm.

Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>

On 09/01, Stylon Wang wrote:
> These new tests check if Freesync capability are correctly parsed from
> EDID and reported to debugfs. They were originally made for Freesync
> HDMI only and got extended to cover DP displays. Simulated hotplug triggered
> via debugfs is used to implement the tests and is the major reason why
> the tests are made amdgpu specific.
> 
> Changes from prior rev1 to now:
> 
> v2:
> - Add missing call to igt_amd_require_hpd()
> 
> Stylon Wang (3):
>   tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP
>     displays
>   tests/amdgpu: Add tests for relaxed reporting of Freesync capability
>   tests/amdgpu: Add tests for Freesync capability with suspend-resume
> 
>  tests/amdgpu/amd_vrr_range.c | 342 +++++++++++++++++++++++++++++++++++
>  tests/amdgpu/meson.build     |   1 +
>  2 files changed, 343 insertions(+)
>  create mode 100644 tests/amdgpu/amd_vrr_range.c
> 
> -- 
> 2.32.0
> 

-- 
Rodrigo Siqueira
https://siqueira.tech

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

* Re: [igt-dev] ✓ Fi.CI.IGT: success for Add tests to check Freesync capability reporting (rev2)
  2021-09-01 15:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2021-09-14  5:40   ` Modem, Bhanuprakash
  0 siblings, 0 replies; 8+ messages in thread
From: Modem, Bhanuprakash @ 2021-09-14  5:40 UTC (permalink / raw)
  To: igt-dev, Stylon Wang

Just curies to understand why we created a new file "tests/amdgpu/amd_vrr_range.c" instead of using the existing "tests/kms_vrr.c"


Thanks,
Bhanu

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Patchwork
> Sent: Wednesday, September 1, 2021 9:19 PM
> To: Stylon Wang <stylon.wang@amd.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: [igt-dev] ✓ Fi.CI.IGT: success for Add tests to check Freesync
> capability reporting (rev2)
> 
> Patch Details
> Series:	Add tests to check Freesync capability reporting (rev2)
> URL:	https://patchwork.freedesktop.org/series/94244/
> State:	success
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/index.html
> 
> CI Bug Log - changes from CI_DRM_10543_full -> IGTPW_6184_full
> 
> 
> Summary
> 
> 
> SUCCESS
> 
> No regressions found.
> 
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/index.html
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6184_full that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@gem_create@create-massive:
> 
> 	*	shard-apl: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6184/shard-apl1/igt@gem_create@create-
> massive.html>  ([i915#3002])
> 
> *	igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
> 
> 	*	shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-
> preempt.html>  ([fdo#109271] / [i915#1099]) +6 similar issues
> 
> *	igt@gem_eio@unwedge-stress:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-tglb6/igt@gem_eio@unwedge-stress.html>  -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> tglb2/igt@gem_eio@unwedge-stress.html>  ([i915#2369] / [i915#3063] /
> [i915#3648])
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-iclb6/igt@gem_eio@unwedge-stress.html>  -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> iclb4/igt@gem_eio@unwedge-stress.html>  ([i915#2369] / [i915#2481] /
> [i915#3070])
> 
> *	igt@gem_exec_fair@basic-deadline:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-kbl3/igt@gem_exec_fair@basic-deadline.html>  -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> kbl1/igt@gem_exec_fair@basic-deadline.html>  ([i915#2846])
> 
> 	*	shard-apl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl1/igt@gem_exec_fair@basic-deadline.html>
> ([i915#2846])
> 
> *	igt@gem_exec_fair@basic-none-share@rcs0:
> 
> 	*	shard-apl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-apl8/igt@gem_exec_fair@basic-none-share@rcs0.html>  ->
> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> apl2/igt@gem_exec_fair@basic-none-share@rcs0.html>  ([fdo#109271])
> 
> *	igt@gem_exec_fair@basic-none-vip@rcs0:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb7/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> ([i915#2842])
> 
> 	*	shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-none@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html>  -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> kbl4/igt@gem_exec_fair@basic-none@vcs0.html>  ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-pace-share@rcs0:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html>  ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
> 	*	shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html>  ([i915#2842]) +1 similar
> issue
> 
> *	igt@gem_exec_fair@basic-pace@vcs1:
> 
> 	*	shard-iclb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html>
> ([i915#2842]) +2 similar issues
> 
> *	igt@gem_exec_flush@basic-batch-kernel-default-cmd:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb6/igt@gem_exec_flush@basic-batch-kernel-default-
> cmd.html>  ([fdo#109313])
> 
> *	igt@gem_exec_params@no-bsd:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb2/igt@gem_exec_params@no-bsd.html>  ([fdo#109283])
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb8/igt@gem_exec_params@no-bsd.html>  ([fdo#109283])
> 
> *	igt@gem_huc_copy@huc-copy:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl8/igt@gem_huc_copy@huc-copy.html>  ([fdo#109271] /
> [i915#2190])
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk4/igt@gem_huc_copy@huc-copy.html>  ([fdo#109271] /
> [i915#2190])
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb5/igt@gem_huc_copy@huc-copy.html>  ([i915#2190])
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl1/igt@gem_huc_copy@huc-copy.html>  ([fdo#109271] /
> [i915#2190])
> 
> *	igt@gem_ppgtt@flink-and-close-vma-leak:
> 
> 	*	shard-apl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-apl2/igt@gem_ppgtt@flink-and-close-vma-leak.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html>  ([i915#644])
> 
> *	igt@gem_pwrite@basic-exhaustion:
> 
> 	*	shard-kbl: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl2/igt@gem_pwrite@basic-exhaustion.html>  ([i915#2658])
> 
> *	igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html>
> ([i915#768])
> 
> *	igt@gem_userptr_blits@access-control:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb6/igt@gem_userptr_blits@access-control.html>
> ([i915#3297]) +1 similar issue
> 
> *	igt@gem_userptr_blits@dmabuf-sync:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html>
> ([fdo#109271] / [i915#3323])
> 
> *	igt@gem_userptr_blits@readonly-pwrite-unsync:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb5/igt@gem_userptr_blits@readonly-pwrite-unsync.html>
> ([i915#3297])
> 
> *	igt@gem_workarounds@suspend-resume-fd:
> 
> 	*	shard-kbl: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6184/shard-kbl6/igt@gem_workarounds@suspend-
> resume-fd.html>  ([i915#180])
> 
> *	igt@gen7_exec_parse@basic-allowed:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb6/igt@gen7_exec_parse@basic-allowed.html>
> ([fdo#109289]) +1 similar issue
> 
> *	igt@gen9_exec_parse@bb-oversize:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb3/igt@gen9_exec_parse@bb-oversize.html>
> ([i915#2856]) +1 similar issue
> 
> *	igt@gen9_exec_parse@bb-start-far:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@gen9_exec_parse@bb-start-far.html>
> ([i915#2856])
> 
> *	igt@i915_pm_rc6_residency@media-rc6-accuracy:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html>
> ([fdo#109289] / [fdo#111719])
> 
> *	igt@i915_pm_rpm@gem-execbuf-stress-pc8:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html>
> ([fdo#109293] / [fdo#109506])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html>
> ([fdo#109506] / [i915#2411])
> 
> *	igt@i915_pm_rpm@gem-mmap-type@fixed:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk2/igt@i915_pm_rpm@gem-mmap-type@fixed.html>
> ([fdo#109271] / [i915#3976])
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl1/igt@i915_pm_rpm@gem-mmap-type@fixed.html>
> ([fdo#109271] / [i915#3976])
> 
> *	igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb7/igt@kms_addfb_basic@invalid-smem-bo-on-
> discrete.html>  ([i915#3826])
> 
> *	igt@kms_atomic_transition@plane-toggle-modeset-transition:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-tglb6/igt@kms_atomic_transition@plane-toggle-modeset-
> transition.html>  -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb6/igt@kms_atomic_transition@plane-toggle-modeset-
> transition.html>  ([i915#4009])
> 
> *	igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-
> hflip.html>  ([fdo#109271] / [i915#3777]) +3 similar issues
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-
> hflip.html>  ([fdo#109271] / [i915#3777])
> 
> *	igt@kms_big_fb@y-tiled-32bpp-rotate-0:
> 
> 	*	shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-glk3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html>  ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> glk4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html>  ([i915#118] / [i915#95]) +2
> similar issues
> 
> *	igt@kms_big_fb@y-tiled-8bpp-rotate-90:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html>
> ([fdo#111614])
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html>
> ([fdo#110725] / [fdo#111614])
> 
> *	igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-
> hflip.html>  ([fdo#109271] / [i915#3777])
> 
> *	igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-
> 0-async-flip.html>  ([fdo#111615]) +1 similar issue
> 
> *	igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-
> 0.html>  ([fdo#109271]) +247 similar issues
> 
> *	igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl7/igt@kms_ccs@pipe-a-bad-rotation-90-
> y_tiled_gen12_rc_ccs_cc.html>  ([fdo#109271] / [i915#3886]) +7 similar issues
> 
> *	igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109271] / [i915#3886]) +2 similar issues
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109278] / [i915#3886]) +4 similar issues
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109271] / [i915#3886]) +17 similar issues
> 
> *	igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb6/igt@kms_ccs@pipe-b-ccs-on-another-bo-
> y_tiled_gen12_mc_ccs.html>  ([i915#3689] / [i915#3886]) +2 similar issues
> 
> *	igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
> 
> 	*	shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-
> y_tiled_ccs.html>  ([fdo#109271]) +489 similar issues
> 
> *	igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb8/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-
> y_tiled_ccs.html>  ([i915#3689]) +6 similar issues
> 
> *	igt@kms_chamelium@dp-frame-dump:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb2/igt@kms_chamelium@dp-frame-dump.html>
> ([fdo#109284] / [fdo#111827]) +5 similar issues
> 
> *	igt@kms_chamelium@hdmi-aspect-ratio:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk6/igt@kms_chamelium@hdmi-aspect-ratio.html>
> ([fdo#109271] / [fdo#111827]) +13 similar issues
> 
> *	igt@kms_chamelium@hdmi-edid-change-during-suspend:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl3/igt@kms_chamelium@hdmi-edid-change-during-
> suspend.html>  ([fdo#109271] / [fdo#111827]) +23 similar issues
> 
> *	igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> ([fdo#109271] / [fdo#111827]) +23 similar issues
> 
> *	igt@kms_color_chamelium@pipe-b-ctm-limited-range:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb1/igt@kms_color_chamelium@pipe-b-ctm-limited-
> range.html>  ([fdo#109284] / [fdo#111827]) +8 similar issues
> 
> *	igt@kms_color_chamelium@pipe-d-gamma:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@kms_color_chamelium@pipe-d-gamma.html>
> ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
> 
> *	igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
> 
> 	*	shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-
> sizes.html>  ([fdo#109271] / [fdo#111827]) +31 similar issues
> 
> *	igt@kms_content_protection@dp-mst-lic-type-0:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@kms_content_protection@dp-mst-lic-type-0.html>
> ([i915#3116])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb8/igt@kms_content_protection@dp-mst-lic-type-0.html>
> ([i915#3116])
> 
> *	igt@kms_content_protection@lic:
> 
> 	*	shard-apl: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl2/igt@kms_content_protection@lic.html>  ([i915#1319])
> +1 similar issue
> 
> *	igt@kms_cursor_crc@pipe-a-cursor-32x32-onscreen:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-
> onscreen.html>  ([fdo#109278]) +18 similar issues
> 
> *	igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-
> sliding.html>  ([i915#3319]) +1 similar issue
> 
> *	igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-512x170-
> offscreen.html>  ([fdo#109279] / [i915#3359]) +3 similar issues
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x170-
> offscreen.html>  ([fdo#109278] / [fdo#109279]) +1 similar issue
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-
> movement.html>  ([i915#3359]) +2 similar issues
> 
> *	igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-
> transitions-varying-size.html>  ([fdo#109274] / [fdo#109278])
> 
> *	igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb6/igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-
> a.html>  ([i915#3788])
> 
> *	igt@kms_flip@2x-plain-flip-ts-check:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb2/igt@kms_flip@2x-plain-flip-ts-check.html>
> ([fdo#111825]) +21 similar issues
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb1/igt@kms_flip@2x-plain-flip-ts-check.html>
> ([fdo#109274]) +1 similar issue
> 
> *	igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
> 
> 	*	shard-apl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@c-
> dp1.html>  -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-
> dp1.html>  ([i915#180]) +2 similar issues
> 
> *	igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-
> ytilegen12rcccs.html>  ([fdo#109271] / [i915#2672])
> 
> *	igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-
> ytilercccs.html>  ([fdo#109271] / [i915#2672])
> 
> *	igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-
> indfb-draw-render.html>  ([fdo#109280]) +17 similar issues
> 
> *	igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-
> mmap-wc.html>  ([fdo#109271]) +220 similar issues
> 
> *	igt@kms_frontbuffer_tracking@psr-suspend:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-iclb7/igt@kms_frontbuffer_tracking@psr-suspend.html>  -
> > INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> iclb3/igt@kms_frontbuffer_tracking@psr-suspend.html>  ([i915#123])
> 
> *	igt@kms_hdmi_inject@inject-audio:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> tglb7/igt@kms_hdmi_inject@inject-audio.html>  ([i915#433])
> 
> *	igt@kms_hdr@static-toggle-suspend:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb7/igt@kms_hdr@static-toggle-suspend.html>
> ([i915#1187])
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb6/igt@kms_hdr@static-toggle-suspend.html>
> ([i915#1187])
> 
> *	igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb6/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-
> c.html>  ([fdo#109289]) +1 similar issue
> 
> *	igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-
> d.html>  ([fdo#109271] / [i915#533]) +1 similar issue
> 
> *	igt@kms_pipe_crc_basic@read-crc-pipe-d:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html>
> ([fdo#109271] / [i915#533]) +1 similar issue
> 
> *	igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
> 
> 	*	shard-apl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-
> fb.html>  ([fdo#108145] / [i915#265]) +4 similar issues
> 
> *	igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html>
> ([fdo#108145] / [i915#265]) +4 similar issues
> 
> *	igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
> 
> 	*	shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-
> fb.html>  ([fdo#108145] / [i915#265])
> 
> *	igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-iclb8/igt@kms_plane_alpha_blend@pipe-c-coverage-
> 7efc.html>  -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb8/igt@kms_plane_alpha_blend@pipe-c-coverage-
> 7efc.html>  ([i915#265])
> 
> *	igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
> 
> 	*	shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-glk1/igt@kms_plane_multiple@atomic-pipe-b-tiling-
> none.html>  -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk3/igt@kms_plane_multiple@atomic-pipe-b-tiling-
> none.html>  ([i915#1779] / [i915#1888])
> 
> *	igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
> clipping-clamping:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl2/igt@kms_plane_scaling@scaler-with-clipping-
> clamping@pipe-c-scaler-with-clipping-clamping.html>  ([fdo#109271] /
> [i915#2733])
> 
> *	igt@kms_psr2_sf@cursor-plane-update-sf:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb5/igt@kms_psr2_sf@cursor-plane-update-sf.html>
> ([i915#2920]) +1 similar issue
> 
> *	igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-
> 4.html>  ([fdo#109271] / [i915#658]) +3 similar issues
> 
> *	igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-
> 1.html>  ([i915#658]) +1 similar issue
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-
> 1.html>  ([fdo#109271] / [i915#658]) +3 similar issues
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-
> 1.html>  ([fdo#109271] / [i915#658]) +7 similar issues
> 
> *	igt@kms_psr2_su@page_flip:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb5/igt@kms_psr2_su@page_flip.html>  ([i915#1911])
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb8/igt@kms_psr2_su@page_flip.html>  ([fdo#109642] /
> [fdo#111068] / [i915#658])
> 
> *	igt@kms_psr@psr2_cursor_mmap_cpu:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6184/shard-
> iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html>  ([fdo#109441]) +1 similar issue
> 
> *	igt@kms_psr@psr2_cursor_mmap_gtt:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb7/igt@kms_psr@psr2_cursor_mmap_gtt.html>  ([i915#132]
> / [i915#3467])
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_gtt.html>
> ([fdo#109441])
> 
> *	igt@kms_rotation_crc@cursor-rotation-180:
> 
> 	*	shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk1/igt@kms_rotation_crc@cursor-rotation-180.html>
> ([i915#1888] / [i915#65])
> 
> *	igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-
> 180.html>  ([fdo#109271]) +92 similar issues
> 
> *	igt@kms_vblank@pipe-a-ts-continuation-suspend:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10543/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-
> suspend.html>  -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> ([i915#180] / [i915#295])
> 
> *	igt@kms_vrr@flip-dpms:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@kms_vrr@flip-dpms.html>  ([fdo#109502])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb8/igt@kms_vrr@flip-dpms.html>  ([fdo#109502])
> 
> *	igt@kms_writeback@writeback-pixel-formats:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html>
> ([fdo#109271] / [i915#2437])
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl4/igt@kms_writeback@writeback-pixel-formats.html>
> ([fdo#109271] / [i915#2437]) +1 similar issue
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb2/igt@kms_writeback@writeback-pixel-formats.html>
> ([i915#2437])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb5/igt@kms_writeback@writeback-pixel-formats.html>
> ([i915#2437])
> 
> *	igt@nouveau_crc@pipe-b-source-rg:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb8/igt@nouveau_crc@pipe-b-source-rg.html>
> ([i915#2530])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb8/igt@nouveau_crc@pipe-b-source-rg.html>
> ([i915#2530])
> 
> *	igt@prime_nv_pcopy@test3_5:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb3/igt@prime_nv_pcopy@test3_5.html>  ([fdo#109291])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb3/igt@prime_nv_pcopy@test3_5.html>  ([fdo#109291])
> 
> *	igt@sysfs_clients@fair-3:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-kbl4/igt@sysfs_clients@fair-3.html>  ([fdo#109271] /
> [i915#2994]) +4 similar issues
> 
> *	igt@sysfs_clients@recycle-many:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-apl3/igt@sysfs_clients@recycle-many.html>  ([fdo#109271]
> / [i915#2994]) +3 similar issues
> 
> *	igt@sysfs_clients@split-25:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-tglb1/igt@sysfs_clients@split-25.html>  ([i915#2994])
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-glk9/igt@sysfs_clients@split-25.html>  ([fdo#109271] /
> [i915#2994]) +1 similar issue
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6184/shard-iclb4/igt@sysfs_clients@split-25.html>  ([i915#2994])
> 
> 
> Possible fixes
> 
> 
> *	igt@gem_exec_fair@basic-none-share@rcs0:
> 
> 	*	shard


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

end of thread, other threads:[~2021-09-14  5:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-01 12:37 [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Stylon Wang
2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] tests/amdgpu: Add tests for Freesync capability reporting on HDMI & DP displays Stylon Wang
2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 2/3] tests/amdgpu: Add tests for relaxed reporting of Freesync capability Stylon Wang
2021-09-01 12:37 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/amdgpu: Add tests for Freesync capability with suspend-resume Stylon Wang
2021-09-01 13:42 ` [igt-dev] ✓ Fi.CI.BAT: success for Add tests to check Freesync capability reporting (rev2) Patchwork
2021-09-01 15:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-09-14  5:40   ` Modem, Bhanuprakash
2021-09-10 15:00 ` [igt-dev] [PATCH i-g-t v2 0/3] Add tests to check Freesync capability reporting Rodrigo Siqueira

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.