* [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management
@ 2026-03-27 3:53 Jason-JH Lin
2026-03-27 4:45 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jason-JH Lin @ 2026-03-27 3:53 UTC (permalink / raw)
To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
Cc: Jani, Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang,
Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group
Refactor framebuffer management to improve reusability:
- Create framebuffers once per CRTC at test initialization via
create_fbs() and reuse them across all subtests
- Centralize cleanup in remove_fbs() called at test fixture end
- Use per-CRTC framebuffer array (data.fbs[IGT_MAX_PIPES]) indexed
by crtc->crtc_index instead of single global framebuffers
Each framebuffer is created with the actual resolution of the first
output that can connect to that CRTC, avoiding buffer size mismatch
issues (e.g., 3504x2190 panel incorrectly using 3840x2160 buffer).
For MST tests, multiple outputs share bandwidth and may require mode
override to fit within bandwidth constraints. When mode override
changes the resolution, properly detach planes before removing the
existing framebuffers, then recreate them with the new dimensions.
Suggested-by: Karthik B.S <karthik.b.s@intel.com>
Reviewed-by: Fei Shao <fshao@chromium.org>
Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
---
tests/kms_content_protection.c | 190 ++++++++++++++++++++++++---------
1 file changed, 142 insertions(+), 48 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index caf3d7a56ae4..8b131277ffea 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -107,10 +107,15 @@
IGT_TEST_DESCRIPTION("Test content protection (HDCP)");
+struct hdcp_test_fbs {
+ struct igt_fb red;
+ struct igt_fb green;
+};
+
struct data {
int drm_fd;
igt_display_t display;
- struct igt_fb red, green;
+ struct hdcp_test_fbs fbs[IGT_MAX_PIPES];
unsigned int cp_tests;
struct udev_monitor *uevent_monitor;
bool is_force_hdcp14;
@@ -258,7 +263,15 @@ commit_display_and_wait_for_flip(enum igt_commit_style commit_style)
}
}
-static void modeset_with_fb(igt_output_t *output,
+static igt_crtc_t *output_get_driving_crtc_assert(igt_output_t *output)
+{
+ igt_crtc_t *crtc = igt_output_get_driving_crtc(output);
+
+ igt_assert(crtc);
+ return crtc;
+}
+
+static void modeset_with_fb(igt_output_t *output, igt_crtc_t *crtc,
enum igt_commit_style commit_style)
{
igt_display_t *display = &data.display;
@@ -268,18 +281,19 @@ static void modeset_with_fb(igt_output_t *output,
mode = igt_output_get_mode(output);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
- igt_plane_set_fb(primary, &data.red);
- igt_fb_set_size(&data.red, primary, mode->hdisplay, mode->vdisplay);
+ igt_plane_set_fb(primary, &data.fbs[crtc->crtc_index].red);
+ igt_fb_set_size(&data.fbs[crtc->crtc_index].red, primary, mode->hdisplay, mode->vdisplay);
igt_display_commit2(display, commit_style);
- igt_plane_set_fb(primary, &data.green);
+ igt_plane_set_fb(primary, &data.fbs[crtc->crtc_index].green);
/* Wait for Flip completion before starting the HDCP authentication */
commit_display_and_wait_for_flip(commit_style);
}
-static bool test_cp_enable(igt_output_t *output, enum igt_commit_style commit_style,
+static bool test_cp_enable(igt_output_t *output, igt_crtc_t *crtc,
+ enum igt_commit_style commit_style,
int content_type, bool type_change)
{
igt_display_t *display = &data.display;
@@ -302,7 +316,7 @@ static bool test_cp_enable(igt_output_t *output, enum igt_commit_style commit_st
ret = wait_for_prop_value(output, CP_ENABLED,
KERNEL_AUTH_TIME_ALLOWED_MSEC);
if (ret) {
- igt_plane_set_fb(primary, &data.green);
+ igt_plane_set_fb(primary, &data.fbs[crtc->crtc_index].green);
igt_display_commit2(display, commit_style);
}
@@ -315,13 +329,15 @@ static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[],
{
igt_display_t *display = &data.display;
igt_plane_t *primary;
+ igt_crtc_t *crtc;
bool ret;
int count;
u64 val;
for (count = 0; count < valid_outputs; count++) {
+ crtc = output_get_driving_crtc_assert(hdcp_mst_output[count]);
primary = igt_output_get_plane_type(hdcp_mst_output[count], DRM_PLANE_TYPE_PRIMARY);
- igt_plane_set_fb(primary, &data.red);
+ igt_plane_set_fb(primary, &data.fbs[crtc->crtc_index].red);
igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION,
CP_UNDESIRED);
}
@@ -339,7 +355,8 @@ static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[],
igt_assert_f(ret, "Content Protection not cleared on all MST outputs\n");
}
-static void test_cp_disable(igt_output_t *output, enum igt_commit_style commit_style)
+static void test_cp_disable(igt_output_t *output, igt_crtc_t *crtc,
+ enum igt_commit_style commit_style)
{
igt_display_t *display = &data.display;
igt_plane_t *primary;
@@ -353,7 +370,7 @@ static void test_cp_disable(igt_output_t *output, enum igt_commit_style commit_s
*/
igt_output_set_prop_value(output, IGT_CONNECTOR_CONTENT_PROTECTION,
CP_UNDESIRED);
- igt_plane_set_fb(primary, &data.red);
+ igt_plane_set_fb(primary, &data.fbs[crtc->crtc_index].red);
igt_display_commit2(display, commit_style);
/* Wait for HDCP to be disabled, before crtc off */
@@ -362,7 +379,7 @@ static void test_cp_disable(igt_output_t *output, enum igt_commit_style commit_s
igt_assert_f(ret, "Content Protection not cleared\n");
}
-static void test_cp_enable_with_retry(igt_output_t *output,
+static void test_cp_enable_with_retry(igt_output_t *output, igt_crtc_t *crtc,
enum igt_commit_style commit_style,
int retry, int content_type,
bool expect_failure,
@@ -373,16 +390,16 @@ static void test_cp_enable_with_retry(igt_output_t *output,
do {
if (!type_change || retry_orig != retry)
- test_cp_disable(output, commit_style);
+ test_cp_disable(output, crtc, commit_style);
- ret = test_cp_enable(output, commit_style, content_type, type_change);
+ ret = test_cp_enable(output, crtc, commit_style, content_type, type_change);
if (!ret && --retry)
igt_debug("Retry (%d/2) ...\n", 3 - retry);
} while (retry && !ret);
if (!ret)
- test_cp_disable(output, commit_style);
+ test_cp_disable(output, crtc, commit_style);
if (expect_failure)
igt_assert_f(!ret,
@@ -452,16 +469,16 @@ static void test_content_protection_on_output(igt_output_t *output,
igt_display_t *display = &data.display;
bool ret;
- test_cp_enable_with_retry(output, commit_style, 3, content_type, false,
+ test_cp_enable_with_retry(output, crtc, commit_style, 3, content_type, false,
false);
if (data.cp_tests & CP_TYPE_CHANGE) {
/* Type 1 -> Type 0 */
- test_cp_enable_with_retry(output, commit_style, 3,
+ test_cp_enable_with_retry(output, crtc, commit_style, 3,
HDCP_CONTENT_TYPE_0, false,
true);
/* Type 0 -> Type 1 */
- test_cp_enable_with_retry(output, commit_style, 3,
+ test_cp_enable_with_retry(output, crtc, commit_style, 3,
content_type, false,
true);
}
@@ -471,14 +488,14 @@ static void test_content_protection_on_output(igt_output_t *output,
"mei_hdcp unload failed");
/* Expected to fail */
- test_cp_enable_with_retry(output, commit_style, 3,
+ test_cp_enable_with_retry(output, crtc, commit_style, 3,
content_type, true, false);
igt_assert_f(!igt_kmod_load("mei_hdcp", NULL),
"mei_hdcp load failed");
/* Expected to pass */
- test_cp_enable_with_retry(output, commit_style, 3,
+ test_cp_enable_with_retry(output, crtc, commit_style, 3,
content_type, false, false);
}
@@ -497,7 +514,7 @@ static void test_content_protection_on_output(igt_output_t *output,
ret = wait_for_prop_value(output, CP_ENABLED,
KERNEL_AUTH_TIME_ALLOWED_MSEC);
if (!ret)
- test_cp_enable_with_retry(output, commit_style, 2,
+ test_cp_enable_with_retry(output, crtc, commit_style, 2,
content_type, false,
false);
}
@@ -508,7 +525,7 @@ static void test_content_protection_on_output(igt_output_t *output,
ret = wait_for_prop_value(output, CP_ENABLED,
KERNEL_AUTH_TIME_ALLOWED_MSEC);
if (!ret)
- test_cp_enable_with_retry(output, commit_style, 2,
+ test_cp_enable_with_retry(output, crtc, commit_style, 2,
content_type, false,
false);
}
@@ -578,21 +595,24 @@ static bool sink_hdcp2_capable(igt_output_t *output)
return strstr(buf, "HDCP2.2");
}
-static void prepare_modeset_on_mst_output(igt_output_t *output, bool is_enabled)
+static void prepare_modeset_on_mst_output(igt_output_t *output, igt_crtc_t *crtc, bool is_enabled)
{
drmModeModeInfo *mode;
igt_plane_t *primary;
int width, height;
+ struct igt_fb *fb;
mode = igt_output_get_mode(output);
width = mode->hdisplay;
height = mode->vdisplay;
+ fb = is_enabled ? &data.fbs[crtc->crtc_index].green : &data.fbs[crtc->crtc_index].red;
+
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- igt_plane_set_fb(primary, is_enabled ? &data.green : &data.red);
- igt_fb_set_size(is_enabled ? &data.green : &data.red, primary, width, height);
+ igt_plane_set_fb(primary, fb);
+ igt_fb_set_size(fb, primary, width, height);
igt_plane_set_size(primary, width, height);
}
@@ -664,11 +684,11 @@ static void reset_i915_force_hdcp14(igt_output_t *output)
}
static void
-test_fini(igt_output_t *output, enum igt_commit_style commit_style)
+test_fini(igt_output_t *output, igt_crtc_t *crtc, enum igt_commit_style commit_style)
{
igt_plane_t *primary;
- test_cp_disable(output, commit_style);
+ test_cp_disable(output, crtc, commit_style);
primary = igt_output_get_plane_type(output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
@@ -764,7 +784,7 @@ test_content_protection(enum igt_commit_style commit_style, int content_type)
if (!intel_pipe_output_combo_valid(display))
continue;
- modeset_with_fb(output, commit_style);
+ modeset_with_fb(output, crtc, commit_style);
if (data.is_force_hdcp14)
set_i915_force_hdcp14(output);
@@ -778,7 +798,8 @@ test_content_protection(enum igt_commit_style commit_style, int content_type)
if (data.is_force_hdcp14)
reset_i915_force_hdcp14(output);
- test_fini(output, commit_style);
+ test_fini(output, crtc, commit_style);
+
/*
* Testing a output with a pipe is enough for HDCP
* testing. No ROI in testing the connector with other
@@ -871,8 +892,11 @@ test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int valid_outputs
if (!ret || retries)
igt_debug("Retry %d/3\n", 3 - retries);
- for (i = 0; i < valid_outputs; i++)
- prepare_modeset_on_mst_output(hdcp_mst_output[i], ret);
+ for (i = 0; i < valid_outputs; i++) {
+ igt_crtc_t *crtc = output_get_driving_crtc_assert(hdcp_mst_output[i]);
+
+ prepare_modeset_on_mst_output(hdcp_mst_output[i], crtc, ret);
+ }
igt_display_commit2(display, COMMIT_ATOMIC);
} while (retries && !ret);
@@ -914,7 +938,7 @@ test_content_protection_mst(int content_type)
igt_assert_f(pipe_found, "No valid pipe found for %s\n", output->name);
igt_output_set_crtc(output, crtc);
- prepare_modeset_on_mst_output(output, false);
+ prepare_modeset_on_mst_output(output, crtc, false);
dp_mst_outputs++;
if (output_hdcp_capable(output, content_type))
hdcp_mst_output[valid_outputs++] = output;
@@ -930,9 +954,33 @@ test_content_protection_mst(int content_type)
bool found = igt_override_all_active_output_modes_to_fit_bw(display);
igt_require_f(found, "No valid mode combo found for MST modeset\n");
- for (count = 0; count < valid_outputs; count++)
- prepare_modeset_on_mst_output(hdcp_mst_output[count], false);
+ /* Detach planes before removing framebuffers */
+ for (count = 0; count < valid_outputs; count++) {
+ crtc = output_get_driving_crtc_assert(hdcp_mst_output[count]);
+ prepare_modeset_on_mst_output(hdcp_mst_output[count], crtc, false);
+ }
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ /* Need to re-prepare after mode override */
+ for (count = 0; count < valid_outputs; count++) {
+ drmModeModeInfo *mode;
+
+ crtc = output_get_driving_crtc_assert(hdcp_mst_output[count]);
+ igt_remove_fb(data.drm_fd, &data.fbs[crtc->crtc_index].red);
+ igt_remove_fb(data.drm_fd, &data.fbs[crtc->crtc_index].green);
+
+ mode = igt_output_get_mode(hdcp_mst_output[count]);
+
+ igt_create_color_fb(data.drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1.f, 0.f, 0.f, &data.fbs[crtc->crtc_index].red);
+ igt_create_color_fb(data.drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.f, 1.f, 0.f, &data.fbs[crtc->crtc_index].green);
+
+ prepare_modeset_on_mst_output(hdcp_mst_output[count], crtc, false);
+ }
ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
igt_require_f(ret == 0, "Commit failure during MST modeset\n");
}
@@ -958,8 +1006,9 @@ test_content_protection_mst(int content_type)
/*
* Verify if CP is still enabled on other outputs by disabling CP on the first output.
*/
+ crtc = output_get_driving_crtc_assert(hdcp_mst_output[0]);
igt_debug("CP Prop being UNDESIRED on %s\n", hdcp_mst_output[0]->name);
- test_cp_disable(hdcp_mst_output[0], COMMIT_ATOMIC);
+ test_cp_disable(hdcp_mst_output[0], crtc, COMMIT_ATOMIC);
/* CP is expected to be still enabled on other outputs*/
for (i = 1; i < valid_outputs; i++) {
@@ -970,13 +1019,26 @@ test_content_protection_mst(int content_type)
if (data.cp_tests & CP_LIC)
test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 1);
-}
+ /* Detach planes before removing framebuffers */
+ for (count = 0; count < valid_outputs; count++) {
+ crtc = output_get_driving_crtc_assert(hdcp_mst_output[count]);
+ prepare_modeset_on_mst_output(hdcp_mst_output[count], crtc, false);
+ }
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ for (count = 0; count < valid_outputs; count++) {
+ crtc = output_get_driving_crtc_assert(hdcp_mst_output[count]);
+ igt_remove_fb(data.drm_fd, &data.fbs[crtc->crtc_index].red);
+ igt_remove_fb(data.drm_fd, &data.fbs[crtc->crtc_index].green);
+ }
+}
static void test_content_protection_cleanup(void)
{
igt_display_t *display = &data.display;
igt_output_t *output;
+ igt_crtc_t *crtc;
uint64_t val;
for_each_connected_output(display, output) {
@@ -988,34 +1050,56 @@ static void test_content_protection_cleanup(void)
if (val == CP_UNDESIRED)
continue;
+ crtc = igt_output_get_driving_crtc(output);
+ if (!crtc)
+ continue;
+
igt_info("CP Prop being UNDESIRED on %s\n", output->name);
- test_cp_disable(output, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
+ test_cp_disable(output, crtc, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
}
-
- igt_remove_fb(data.drm_fd, &data.red);
- igt_remove_fb(data.drm_fd, &data.green);
}
static void create_fbs(void)
{
- uint16_t width = 0, height = 0;
drmModeModeInfo *mode;
igt_output_t *output;
+ igt_crtc_t *crtc;
+ /* Create framebuffers for each connected output's pipe */
for_each_connected_output(&data.display, output) {
mode = igt_output_get_mode(output);
igt_assert(mode);
- width = max(width, mode->hdisplay);
- height = max(height, mode->vdisplay);
+ /* Find a valid crtc for this output */
+ for_each_crtc(&data.display, crtc) {
+ if (!igt_crtc_connector_valid(crtc, output))
+ continue;
+
+ /* Skip if already created for this crtc */
+ if (data.fbs[crtc->crtc_index].red.fb_id)
+ continue;
+
+ igt_create_color_fb(data.drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1.f, 0.f, 0.f, &data.fbs[crtc->crtc_index].red);
+ igt_create_color_fb(data.drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.f, 1.f, 0.f, &data.fbs[crtc->crtc_index].green);
+ break;
+ }
}
+}
+
+static void remove_fbs(void)
+{
+ igt_crtc_t *crtc;
- igt_create_color_fb(data.drm_fd, width, height,
- DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
- 1.f, 0.f, 0.f, &data.red);
- igt_create_color_fb(data.drm_fd, width, height,
- DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
- 0.f, 1.f, 0.f, &data.green);
+ for_each_crtc(&data.display, crtc) {
+ if (data.fbs[crtc->crtc_index].red.fb_id)
+ igt_remove_fb(data.drm_fd, &data.fbs[crtc->crtc_index].red);
+ if (data.fbs[crtc->crtc_index].green.fb_id)
+ igt_remove_fb(data.drm_fd, &data.fbs[crtc->crtc_index].green);
+ }
}
static const struct {
@@ -1180,9 +1264,18 @@ static const struct {
int igt_main()
{
igt_fixture() {
+ igt_crtc_t *crtc;
+
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
igt_display_require(&data.display, data.drm_fd);
igt_display_require_output(&data.display);
+
+ /* Ensure all CRTCs can be indexed within our framebuffer array */
+ for_each_crtc(&data.display, crtc)
+ igt_assert_f(crtc->crtc_index < IGT_MAX_PIPES,
+ "crtc_index %u exceeds IGT_MAX_PIPES %u\n",
+ crtc->crtc_index, IGT_MAX_PIPES);
+
create_fbs();
}
@@ -1241,6 +1334,7 @@ int igt_main()
igt_fixture() {
test_content_protection_cleanup();
+ remove_fbs();
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_content_protection: Optimize framebuffer management (rev3)
2026-03-27 3:53 [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jason-JH Lin
@ 2026-03-27 4:45 ` Patchwork
2026-03-27 5:08 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-27 4:45 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1093 bytes --]
== Series Details ==
Series: tests/kms_content_protection: Optimize framebuffer management (rev3)
URL : https://patchwork.freedesktop.org/series/163255/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8834_BAT -> XEIGTPW_14869_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8834 -> IGTPW_14869
* Linux: xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf -> xe-4802-113d411a9890a805edaffd3c3dd2cf436a868b68
IGTPW_14869: 8fbaa114ec8c8c1890c7d32fc5f7dc4d273ba011 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8834: 8834
xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf
xe-4802-113d411a9890a805edaffd3c3dd2cf436a868b68: 113d411a9890a805edaffd3c3dd2cf436a868b68
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14869/index.html
[-- Attachment #2: Type: text/html, Size: 1652 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_content_protection: Optimize framebuffer management (rev3)
2026-03-27 3:53 [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jason-JH Lin
2026-03-27 4:45 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
@ 2026-03-27 5:08 ` Patchwork
2026-03-27 10:40 ` [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jani Nikula
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-27 5:08 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1160 bytes --]
== Series Details ==
Series: tests/kms_content_protection: Optimize framebuffer management (rev3)
URL : https://patchwork.freedesktop.org/series/163255/
State : success
== Summary ==
CI Bug Log - changes from IGT_8834 -> IGTPW_14869
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 bat-mtlp-9
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8834 -> IGTPW_14869
* Linux: CI_DRM_18222 -> CI_DRM_18231
CI-20190529: 20190529
CI_DRM_18222: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18231: 113d411a9890a805edaffd3c3dd2cf436a868b68 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14869: 8fbaa114ec8c8c1890c7d32fc5f7dc4d273ba011 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8834: 8834
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/index.html
[-- Attachment #2: Type: text/html, Size: 1740 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management
2026-03-27 3:53 [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jason-JH Lin
2026-03-27 4:45 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
2026-03-27 5:08 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-27 10:40 ` Jani Nikula
2026-03-30 2:40 ` Jason-JH Lin (林睿祥)
2026-03-27 20:55 ` ✓ Xe.CI.FULL: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
2026-03-28 5:00 ` ✗ i915.CI.Full: failure " Patchwork
4 siblings, 1 reply; 7+ messages in thread
From: Jani Nikula @ 2026-03-27 10:40 UTC (permalink / raw)
To: Jason-JH Lin, igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
Cc: Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang, Gil Dekel,
Yacoub, Project_Global_Chrome_Upstream_Group
On Fri, 27 Mar 2026, Jason-JH Lin <jason-jh.lin@mediatek.com> wrote:
> Refactor framebuffer management to improve reusability:
> - Create framebuffers once per CRTC at test initialization via
> create_fbs() and reuse them across all subtests
> - Centralize cleanup in remove_fbs() called at test fixture end
> - Use per-CRTC framebuffer array (data.fbs[IGT_MAX_PIPES]) indexed
> by crtc->crtc_index instead of single global framebuffers
>
> Each framebuffer is created with the actual resolution of the first
> output that can connect to that CRTC, avoiding buffer size mismatch
> issues (e.g., 3504x2190 panel incorrectly using 3840x2160 buffer).
>
> For MST tests, multiple outputs share bandwidth and may require mode
> override to fit within bandwidth constraints. When mode override
> changes the resolution, properly detach planes before removing the
> existing framebuffers, then recreate them with the new dimensions.
Feels like there's a bunch of changes grouped together in one commit
that should probably be split up.
For example, passing the crtc around is a change. Adding the fb cleanup
is another. Adding multiple fbs is another.
The point is, if a bisected regression landed here, would you be able to
immediately tell what the problem is?
> Suggested-by: Karthik B.S <karthik.b.s@intel.com>
> Reviewed-by: Fei Shao <fshao@chromium.org>
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---
> tests/kms_content_protection.c | 190 ++++++++++++++++++++++++---------
> 1 file changed, 142 insertions(+), 48 deletions(-)
>
> diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
> index caf3d7a56ae4..8b131277ffea 100644
> --- a/tests/kms_content_protection.c
> +++ b/tests/kms_content_protection.c
> @@ -258,7 +263,15 @@ commit_display_and_wait_for_flip(enum igt_commit_style commit_style)
> }
> }
>
> -static void modeset_with_fb(igt_output_t *output,
> +static igt_crtc_t *output_get_driving_crtc_assert(igt_output_t *output)
> +{
> + igt_crtc_t *crtc = igt_output_get_driving_crtc(output);
> +
> + igt_assert(crtc);
> + return crtc;
> +}
I'm personally not fond of abstracting/hiding asserts like this. Do you
even need it really? It's a test logic issue if you hit this.
> +
> +static void modeset_with_fb(igt_output_t *output, igt_crtc_t *crtc,
> enum igt_commit_style commit_style)
> {
> igt_display_t *display = &data.display;
> @@ -268,18 +281,19 @@ static void modeset_with_fb(igt_output_t *output,
> @@ -1180,9 +1264,18 @@ static const struct {
> int igt_main()
> {
> igt_fixture() {
> + igt_crtc_t *crtc;
> +
> data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> igt_display_require(&data.display, data.drm_fd);
> igt_display_require_output(&data.display);
> +
> + /* Ensure all CRTCs can be indexed within our framebuffer array */
> + for_each_crtc(&data.display, crtc)
> + igt_assert_f(crtc->crtc_index < IGT_MAX_PIPES,
> + "crtc_index %u exceeds IGT_MAX_PIPES %u\n",
> + crtc->crtc_index, IGT_MAX_PIPES);
This is handled by igt_display_require(), and is completely unnecessary
here.
BR,
Jani.
> +
> create_fbs();
> }
>
> @@ -1241,6 +1334,7 @@ int igt_main()
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_content_protection: Optimize framebuffer management (rev3)
2026-03-27 3:53 [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jason-JH Lin
` (2 preceding siblings ...)
2026-03-27 10:40 ` [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jani Nikula
@ 2026-03-27 20:55 ` Patchwork
2026-03-28 5:00 ` ✗ i915.CI.Full: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-27 20:55 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2649 bytes --]
== Series Details ==
Series: tests/kms_content_protection: Optimize framebuffer management (rev3)
URL : https://patchwork.freedesktop.org/series/163255/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8834_FULL -> XEIGTPW_14869_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14869_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#7340]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14869/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
#### Possible fixes ####
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][3] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14869/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
#### Warnings ####
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-lnl: [SKIP][5] ([Intel XE#7675]) -> [SKIP][6] ([Intel XE#7675] / [Intel XE#7679]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14869/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7675
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
Build changes
-------------
* IGT: IGT_8834 -> IGTPW_14869
* Linux: xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf -> xe-4802-113d411a9890a805edaffd3c3dd2cf436a868b68
IGTPW_14869: 8fbaa114ec8c8c1890c7d32fc5f7dc4d273ba011 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8834: 8834
xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf
xe-4802-113d411a9890a805edaffd3c3dd2cf436a868b68: 113d411a9890a805edaffd3c3dd2cf436a868b68
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14869/index.html
[-- Attachment #2: Type: text/html, Size: 3400 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_content_protection: Optimize framebuffer management (rev3)
2026-03-27 3:53 [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jason-JH Lin
` (3 preceding siblings ...)
2026-03-27 20:55 ` ✓ Xe.CI.FULL: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
@ 2026-03-28 5:00 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-28 5:00 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 141556 bytes --]
== Series Details ==
Series: tests/kms_content_protection: Optimize framebuffer management (rev3)
URL : https://patchwork.freedesktop.org/series/163255/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18231_full -> IGTPW_14869_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14869_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14869_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14869_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@objects:
- shard-dg2: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-6/igt@i915_selftest@live@objects.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-4/igt@i915_selftest@live@objects.html
New tests
---------
New tests have been introduced between CI_DRM_18231_full and IGTPW_14869_full:
### New IGT tests (24) ###
* igt@kms_plane_multiple@2x-tiling-x@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-a-hdmi-a-1-pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.04] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-a-hdmi-a-2-pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.24] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-a-hdmi-a-2-pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-b-hdmi-a-1-pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.26] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-b-hdmi-a-1-pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.97] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-b-hdmi-a-2-pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.20] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-b-hdmi-a-2-pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.06] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-c-hdmi-a-1-pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-c-hdmi-a-1-pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.98] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-c-hdmi-a-2-pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.18] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-c-hdmi-a-2-pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.05] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.04] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.29] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.11] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.41] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.10] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.29] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.10] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.09] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.11] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.26] s
* igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [1.18] s
Known issues
------------
Here are the changes found in IGTPW_14869_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@fbdev@pan:
- shard-snb: NOTRUN -> [FAIL][8] ([i915#15792])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb6/igt@fbdev@pan.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#14544] / [i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][18] -> [INCOMPLETE][19] ([i915#13356]) +3 other tests incomplete
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#13356]) +1 other test incomplete
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk1/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb5/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#13390])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk8/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_big@single:
- shard-rkl: [PASS][26] -> [DMESG-FAIL][27] ([i915#15478])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@gem_exec_big@single.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_exec_big@single.html
- shard-tglu: NOTRUN -> [DMESG-FAIL][28] ([i915#15478])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@gem_exec_big@single.html
- shard-mtlp: [PASS][29] -> [DMESG-FAIL][30] ([i915#15478])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-4/igt@gem_exec_big@single.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-8/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-glk10: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk10/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#6334]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#6344])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-wc-active.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk11: NOTRUN -> [INCOMPLETE][40] ([i915#13196] / [i915#13356]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk11/igt@gem_exec_suspend@basic-s3.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#2190])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#14544] / [i915#4613] / [i915#7582])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk1/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3282]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#284])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#284])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#284])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#284])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-7/igt@gem_media_vme.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-3/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-bo-tiledy:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +9 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@gem_mmap_wc@write-prefaulted.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-8/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][57] ([i915#14702] / [i915#2658])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#13717])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#13398])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@gem_render_copy@yf-tiled.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@gem_tiled_pread_pwrite.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4879])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3281] / [i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3281] / [i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@gem_userptr_blits@relocations.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#14544] / [i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: [PASS][83] -> [INCOMPLETE][84] ([i915#13356] / [i915#14586])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-glk3/igt@gem_workarounds@suspend-resume.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk9/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][85] -> [ABORT][86] ([i915#5566])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-glk2/igt@gen9_exec_parse@allowed-single.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@gen9_exec_parse@batch-zero-length.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#14073]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#14118])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-16/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [PASS][95] -> [DMESG-WARN][96] ([i915#14545])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-1/igt@i915_module_load@resize-bar.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@i915_pm_freq_api@freq-basic-api.html
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#8399])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#14498])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][100] -> [INCOMPLETE][101] ([i915#13356])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-glk5/igt@i915_pm_rpm@system-suspend.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [PASS][102] -> [ABORT][103] ([i915#15060])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@i915_pm_rpm@system-suspend-execbuf.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-glk: NOTRUN -> [DMESG-WARN][104] ([i915#118]) +1 other test dmesg-warn
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk3/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][105] -> [SKIP][106] ([i915#7984])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-3/igt@i915_power@sanity.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-8/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#6245])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: NOTRUN -> [DMESG-FAIL][108] ([i915#12964]) +1 other test dmesg-fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][109] -> [INCOMPLETE][110] ([i915#4817]) +1 other test incomplete
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#4817])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk6/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#4817])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-glk2/igt@i915_suspend@sysfs-reader.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk4/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#5190])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4212])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#9531])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#9531])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#9531])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][124] -> [FAIL][125] ([i915#5956]) +1 other test fail
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544] / [i915#5286]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][132] +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3828])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#3828])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#14544] / [i915#3638])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5190]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][139] +17 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#6095]) +43 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +14 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#6095]) +20 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#6095]) +98 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#6095]) +61 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#6095]) +14 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +177 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6095]) +44 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][152] +122 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544] / [i915#6095]) +9 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][154] +372 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][155] +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-8/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#14544] / [i915#7828])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#12655] / [i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#15865]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#15330] / [i915#3116])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#15330]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#15330])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#15330]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#15330])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#15330]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#15865]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: NOTRUN -> [FAIL][172] ([i915#13566]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][173] -> [FAIL][174] ([i915#13566]) +3 other tests fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
- shard-rkl: [PASS][175] -> [FAIL][176] ([i915#13566])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#13049])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#13049])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8814])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][183] ([i915#13566]) +2 other tests fail
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#13049])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#4103]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][186] ([i915#15804])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#9067])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#4103])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#13691])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#13691])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#13691])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#13691])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13691])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#14544] / [i915#3804])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#13749])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#3555] / [i915#3840])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [PASS][199] -> [INCOMPLETE][200] ([i915#9878])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3955])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#1839])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#1839])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#1839])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1839])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#1839]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#9337])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#9337])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#9337])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#9337])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#9337])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#658])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#658])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#658])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#4881])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-4/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3637] / [i915#9934]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#9934]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#9934]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#9934])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#9934])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#8381])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9934]) +7 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12314] / [i915#12745] / [i915#4839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#12314] / [i915#4839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [TIMEOUT][226] ([i915#14033]) +1 other test timeout
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +6 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-dpms-on-nop:
- shard-snb: [PASS][228] -> [FAIL][229] ([i915#10826]) +1 other test fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-snb5/igt@kms_flip@flip-vs-dpms-on-nop.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb4/igt@kms_flip@flip-vs-dpms-on-nop.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: [PASS][230] -> [FAIL][231] ([i915#10826])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate.html
- shard-tglu: [PASS][232] -> [FAIL][233] ([i915#14600]) +1 other test fail
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][234] ([i915#10826])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#15643])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#15643]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#15643]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15643])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15643])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#15643])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15643] / [i915#5190]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [PASS][243] -> [SKIP][244] ([i915#15672])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-2/igt@kms_force_connector_basic@force-edid.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +16 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#1825]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][247] +24 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#8708]) +11 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][249] ([i915#10056])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15104])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15102]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#15102])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#15102]) +16 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][255] +20 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1825]) +33 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][257] +97 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#15102] / [i915#3458]) +8 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#5439])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#9766])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#9766])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#9766])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#15104]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15102] / [i915#3023]) +12 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8708]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#8708]) +10 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +12 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][268] +121 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][269] +52 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15102]) +10 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15102] / [i915#3458]) +7 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-9/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#15460])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15458]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15460])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15460])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#15460])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15460])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15460])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15458])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15458])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#15458])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#15458])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#14544] / [i915#15638] / [i915#15722])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#6301])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#15709]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#15709]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#15709]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#15709]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15608]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15709])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#15608]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15709]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg1: [PASS][297] -> [DMESG-WARN][298] ([i915#4423]) +5 other tests dmesg-warn
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-18/igt@kms_plane@plane-panning-bottom-right-suspend.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][299] ([i915#10647] / [i915#12169])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][300] ([i915#10647]) +3 other tests fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][301] ([i915#10647] / [i915#12177])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#8821])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8821])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3555]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3555]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#13958])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#14259])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#15887] / [i915#9809])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#13046] / [i915#5354] / [i915#9423])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#6953])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#15329]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#14544] / [i915#15329] / [i915#3555])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#14544] / [i915#15329]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#15329]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#15329]) +4 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#15329]) +4 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#9812]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#5354])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][319] ([i915#15752])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][320] ([i915#15752])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#15739])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#8430])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: NOTRUN -> [DMESG-WARN][323] ([i915#4423])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-16/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][324] -> [SKIP][325] ([i915#15073]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#15073])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][327] -> [SKIP][328] ([i915#15073])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-dg1: [PASS][329] -> [SKIP][330] ([i915#15073])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#15403])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@kms_pm_rpm@package-g7.html
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#15403])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@kms_pm_rpm@package-g7.html
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#15403])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_pm_rpm@package-g7.html
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#15403])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_pm_rpm@package-g7.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#15403])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [PASS][336] -> [ABORT][337] ([i915#15132])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#6524])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#11520]) +7 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#12316]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][341] ([i915#11520]) +11 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#11520] / [i915#14544])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#11520]) +4 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][344] ([i915#11520]) +3 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][345] ([i915#11520]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#11520]) +2 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][347] ([i915#11520]) +3 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#11520]) +5 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520]) +4 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#9683])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +13 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9688]) +11 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-8/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +12 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#9732]) +19 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-8/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +21 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9732]) +9 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk11: NOTRUN -> [INCOMPLETE][358] ([i915#15492])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk11/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][359] ([i915#15500])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#12755] / [i915#15867])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#5289])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#5289])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#5289])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#3555]) +2 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#8623])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][366] ([i915#10959])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][367] ([i915#12276]) +3 other tests incomplete
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][368] ([i915#15243] / [i915#3555])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#15243] / [i915#3555])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-4/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#9906]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#9906]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#9906]) +2 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#8808] / [i915#9906]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#2434])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-idle@bcs0:
- shard-mtlp: [PASS][376] -> [FAIL][377] ([i915#4349]) +3 other tests fail
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-8/igt@perf_pmu@busy-idle@bcs0.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@perf_pmu@busy-idle@bcs0.html
* igt@perf_pmu@module-unload:
- shard-glk10: NOTRUN -> [ABORT][378] ([i915#15778])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk10/igt@perf_pmu@module-unload.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#14121]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#3708] / [i915#4077])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#3291] / [i915#3708])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#3708]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-17/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#3708])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#9917]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][387] ([i915#12910])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-mtlp: NOTRUN -> [FAIL][388] ([i915#12910])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#9917])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][390] ([i915#12910]) +18 other tests fail
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [FAIL][391] ([i915#9561]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][393] ([i915#13356]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][395] ([i915#13356]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-glk4/igt@gem_workarounds@suspend-resume-context.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-tglu: [ABORT][397] ([i915#15652]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-tglu-4/igt@i915_suspend@basic-s2idle-without-i915.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-9/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: [INCOMPLETE][399] ([i915#4817]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-glk1/igt@i915_suspend@debugfs-reader.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-glk2/igt@i915_suspend@debugfs-reader.html
- shard-rkl: [INCOMPLETE][401] ([i915#4817]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@i915_suspend@debugfs-reader.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [FAIL][403] ([i915#5956]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][405] ([i915#15582]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [FAIL][407] ([i915#13566]) -> [PASS][408] +2 other tests pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][409] ([i915#13566]) -> [PASS][410] +5 other tests pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-tglu-6/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][411] ([i915#14033]) -> [PASS][412] +1 other test pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [FAIL][413] ([i915#15389] / [i915#6880]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [SKIP][415] ([i915#3555] / [i915#8228]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [SKIP][417] ([i915#15073]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-13/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][419] ([i915#15073]) -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][421] ([i915#15106]) -> [PASS][422] +2 other tests pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][423] ([i915#4349]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@drm_buddy@drm_buddy:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#15678]) -> [SKIP][426] ([i915#15678])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@drm_buddy@drm_buddy.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][427] ([i915#14544] / [i915#3281]) -> [SKIP][428] ([i915#3281]) +1 other test skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][429] ([i915#3555] / [i915#9323]) -> [SKIP][430] ([i915#14544] / [i915#3555] / [i915#9323])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: [SKIP][431] ([i915#14544] / [i915#4525]) -> [SKIP][432] ([i915#4525])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][433] ([i915#3281]) -> [SKIP][434] ([i915#14544] / [i915#3281]) +4 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: [SKIP][435] ([i915#14544] / [i915#4613]) -> [SKIP][436] ([i915#4613])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][437] ([i915#4613]) -> [SKIP][438] ([i915#14544] / [i915#4613])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-engines.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#3282]) -> [SKIP][440] ([i915#3282]) +2 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][441] ([i915#3282]) -> [SKIP][442] ([i915#14544] / [i915#3282]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][443] ([i915#13717]) -> [SKIP][444] ([i915#13717] / [i915#14544])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][445] ([i915#3297]) -> [SKIP][446] ([i915#14544] / [i915#3297])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#3297]) -> [SKIP][448] ([i915#3297]) +1 other test skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][449] ([i915#2527]) -> [SKIP][450] ([i915#14544] / [i915#2527])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][451] ([i915#7984]) -> [SKIP][452] ([i915#14544] / [i915#7984])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@i915_power@sanity.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@i915_power@sanity.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][453] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][454] ([i915#1769] / [i915#3555])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][455] ([i915#5286]) -> [SKIP][456] ([i915#14544] / [i915#5286])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#5286]) -> [SKIP][458] ([i915#5286])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#3638]) -> [SKIP][460] ([i915#3638])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#3828]) -> [SKIP][462] ([i915#3828])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][463] ([i915#3638]) -> [SKIP][464] ([i915#14544] / [i915#3638]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][465] ([i915#6095]) -> [SKIP][466] ([i915#14544] / [i915#6095]) +3 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][467] ([i915#12313] / [i915#14544]) -> [SKIP][468] ([i915#12313])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
- shard-rkl: [SKIP][469] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][470] ([i915#14098] / [i915#6095])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][471] ([i915#14098] / [i915#6095]) -> [SKIP][472] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][473] ([i915#12313]) -> [SKIP][474] ([i915#12313] / [i915#14544])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_color@ctm-max:
- shard-rkl: [SKIP][475] ([i915#14544]) -> [SKIP][476]
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_chamelium_color@ctm-max.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: [SKIP][477] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][478] ([i915#11151] / [i915#7828]) +3 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][479] ([i915#11151] / [i915#7828]) -> [SKIP][480] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: [SKIP][481] ([i915#15330]) -> [SKIP][482] ([i915#14544] / [i915#15330]) +1 other test skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][483] ([i915#15865]) -> [SKIP][484] ([i915#9433])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-16/igt@kms_content_protection@mei-interface.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][485] ([i915#13049]) -> [SKIP][486] ([i915#13049] / [i915#14544]) +1 other test skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][487] ([i915#13049] / [i915#14544]) -> [SKIP][488] ([i915#13049])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: [SKIP][489] ([i915#3555]) -> [SKIP][490] ([i915#14544] / [i915#3555])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-max-size.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][491] -> [SKIP][492] ([i915#14544]) +9 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][493] ([i915#14544] / [i915#9723]) -> [SKIP][494] ([i915#9723])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][495] ([i915#3555] / [i915#3804]) -> [SKIP][496] ([i915#14544] / [i915#3555] / [i915#3804])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][497] ([i915#13707]) -> [SKIP][498] ([i915#13707] / [i915#14544])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#9934]) -> [SKIP][500] ([i915#9934]) +2 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-rkl: [SKIP][501] ([i915#9934]) -> [SKIP][502] ([i915#14544] / [i915#9934]) +3 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][503] ([i915#15643]) -> [SKIP][504] ([i915#14544] / [i915#15643])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][505] ([i915#15672]) -> [SKIP][506]
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#1825]) -> [SKIP][508] ([i915#1825]) +7 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][509] -> [SKIP][510] ([i915#4423])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#15102]) -> [SKIP][512] ([i915#15102]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][513] ([i915#15102] / [i915#3023]) -> [SKIP][514] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][515] ([i915#15102] / [i915#3458]) -> [SKIP][516] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][517] ([i915#1825]) -> [SKIP][518] ([i915#14544] / [i915#1825]) +8 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: [SKIP][519] ([i915#15102]) -> [SKIP][520] ([i915#14544] / [i915#15102]) +1 other test skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][521] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][522] ([i915#15102] / [i915#3458]) +2 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][524] ([i915#15102] / [i915#3023]) +3 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][525] ([i915#15459]) -> [SKIP][526] ([i915#14544] / [i915#15459])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: [SKIP][527] ([i915#15815]) -> [SKIP][528] ([i915#15815] / [i915#4423])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-19/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][529] ([i915#6301]) -> [SKIP][530] ([i915#14544] / [i915#6301])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@kms_panel_fitting@legacy.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: [SKIP][531] ([i915#14544] / [i915#14712]) -> [SKIP][532] ([i915#14712])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-rkl: [SKIP][533] ([i915#15709]) -> [SKIP][534] ([i915#14544] / [i915#15709]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][535] ([i915#14544] / [i915#15709]) -> [SKIP][536] ([i915#15709])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][537] ([i915#9685]) -> [SKIP][538] ([i915#14544] / [i915#9685])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][539] ([i915#3828]) -> [SKIP][540] ([i915#9340])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][541] ([i915#11520]) -> [SKIP][542] ([i915#11520] / [i915#14544]) +2 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][543] ([i915#11520] / [i915#14544]) -> [SKIP][544] ([i915#11520]) +1 other test skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][545] ([i915#9683]) -> [SKIP][546] ([i915#14544] / [i915#9683])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-rkl: [SKIP][547] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][548] ([i915#1072] / [i915#9732]) +3 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-move.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-7/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][549] ([i915#1072] / [i915#9732]) -> [SKIP][550] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-3/igt@kms_psr@fbc-psr-cursor-plane-move.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [INCOMPLETE][551] ([i915#13520]) -> [ABORT][552] ([i915#15778])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-mtlp-6/igt@perf_pmu@module-unload.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-mtlp-7/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][553] ([i915#14544] / [i915#8516]) -> [SKIP][554] ([i915#8516])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][555] ([i915#3708]) -> [SKIP][556] ([i915#14544] / [i915#3708])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18231/shard-rkl-8/igt@prime_vgem@coherency-gtt.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8834 -> IGTPW_14869
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18231: 113d411a9890a805edaffd3c3dd2cf436a868b68 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14869: 8fbaa114ec8c8c1890c7d32fc5f7dc4d273ba011 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8834: 8834
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14869/index.html
[-- Attachment #2: Type: text/html, Size: 188007 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management
2026-03-27 10:40 ` [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jani Nikula
@ 2026-03-30 2:40 ` Jason-JH Lin (林睿祥)
0 siblings, 0 replies; 7+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-03-30 2:40 UTC (permalink / raw)
To: karthik.b.s@intel.com, swati2.sharma@intel.com,
juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
bhanuprakash.modem@gmail.com, igt-dev@lists.freedesktop.org,
kamil.konieczny@linux.intel.com, fshao@chromium.org
Cc: Project_Global_Chrome_Upstream_Group,
Paul-pl Chen (陳柏霖), markyacoub@chromium.org,
Nancy Lin (林欣螢),
Singo Chang (張興國), gildekel@google.com
On Fri, 2026-03-27 at 12:40 +0200, Jani Nikula wrote:
> On Fri, 27 Mar 2026, Jason-JH Lin <jason-jh.lin@mediatek.com> wrote:
> > Refactor framebuffer management to improve reusability:
> > - Create framebuffers once per CRTC at test initialization via
> > create_fbs() and reuse them across all subtests
> > - Centralize cleanup in remove_fbs() called at test fixture end
> > - Use per-CRTC framebuffer array (data.fbs[IGT_MAX_PIPES]) indexed
> > by crtc->crtc_index instead of single global framebuffers
> >
> > Each framebuffer is created with the actual resolution of the first
> > output that can connect to that CRTC, avoiding buffer size mismatch
> > issues (e.g., 3504x2190 panel incorrectly using 3840x2160 buffer).
> >
> > For MST tests, multiple outputs share bandwidth and may require
> > mode
> > override to fit within bandwidth constraints. When mode override
> > changes the resolution, properly detach planes before removing the
> > existing framebuffers, then recreate them with the new dimensions.
>
> Feels like there's a bunch of changes grouped together in one commit
> that should probably be split up.
>
> For example, passing the crtc around is a change. Adding the fb
> cleanup
> is another. Adding multiple fbs is another.
>
> The point is, if a bisected regression landed here, would you be able
> to
> immediately tell what the problem is?
>
Hi Jani,
Thank you for the thorough review and suggestions!
I will split the commit into 3 logical patches for easier bisecting:
- Patch 1: Add per-CRTC framebuffer infrastructure
- Patch 2: Pass crtc parameter and use per-CRTC FBs
- Patch 3: Add FB cleanup for MST tests
> > Suggested-by: Karthik B.S <karthik.b.s@intel.com>
> > Reviewed-by: Fei Shao <fshao@chromium.org>
> > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > ---
> > tests/kms_content_protection.c | 190 ++++++++++++++++++++++++-----
> > ----
> > 1 file changed, 142 insertions(+), 48 deletions(-)
> >
> > diff --git a/tests/kms_content_protection.c
> > b/tests/kms_content_protection.c
> > index caf3d7a56ae4..8b131277ffea 100644
> > --- a/tests/kms_content_protection.c
> > +++ b/tests/kms_content_protection.c
>
> > @@ -258,7 +263,15 @@ commit_display_and_wait_for_flip(enum
> > igt_commit_style commit_style)
> > }
> > }
> >
> > -static void modeset_with_fb(igt_output_t *output,
> > +static igt_crtc_t *output_get_driving_crtc_assert(igt_output_t
> > *output)
> > +{
> > + igt_crtc_t *crtc = igt_output_get_driving_crtc(output);
> > +
> > + igt_assert(crtc);
> > + return crtc;
> > +}
>
> I'm personally not fond of abstracting/hiding asserts like this. Do
> you
> even need it really? It's a test logic issue if you hit this.
>
I will remove output_get_driving_crtc_assert() helper function and use
igt_output_get_driving_crtc() directly without assertions. As you
pointed out, NULL crtc would indicate a test logic issue that
should fail naturally for easier debugging.
> > +
> > +static void modeset_with_fb(igt_output_t *output, igt_crtc_t
> > *crtc,
> > enum igt_commit_style commit_style)
> > {
> > igt_display_t *display = &data.display;
> > @@ -268,18 +281,19 @@ static void modeset_with_fb(igt_output_t
> > *output,
>
>
> > @@ -1180,9 +1264,18 @@ static const struct {
> > int igt_main()
> > {
> > igt_fixture() {
> > + igt_crtc_t *crtc;
> > +
> > data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> > igt_display_require(&data.display, data.drm_fd);
> > igt_display_require_output(&data.display);
> > +
> > + /* Ensure all CRTCs can be indexed within our
> > framebuffer array */
> > + for_each_crtc(&data.display, crtc)
> > + igt_assert_f(crtc->crtc_index <
> > IGT_MAX_PIPES,
> > + "crtc_index %u exceeds
> > IGT_MAX_PIPES %u\n",
> > + crtc->crtc_index,
> > IGT_MAX_PIPES);
>
> This is handled by igt_display_require(), and is completely
> unnecessary
> here.
>
Ok, I will remove the unnecessary CRTC index check in igt_main() since
igt_display_require() already handles this validation.
> BR,
> Jani.
>
I will send v5 shortly.
Regards,
Jason-JH Lin
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-30 2:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-27 3:53 [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jason-JH Lin
2026-03-27 4:45 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
2026-03-27 5:08 ` ✓ i915.CI.BAT: " Patchwork
2026-03-27 10:40 ` [PATCH i-g-t v4] tests/kms_content_protection: Optimize framebuffer management Jani Nikula
2026-03-30 2:40 ` Jason-JH Lin (林睿祥)
2026-03-27 20:55 ` ✓ Xe.CI.FULL: success for tests/kms_content_protection: Optimize framebuffer management (rev3) Patchwork
2026-03-28 5:00 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox