* [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification
@ 2024-12-30 19:03 Swati Sharma
2024-12-30 19:03 ` [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Swati Sharma
` (9 more replies)
0 siblings, 10 replies; 17+ messages in thread
From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma
Based on the review comments received, add highres and lowres
functions to lib and made corresponding changes in the lib.
On top, broken initial patches into smaller patches to better
review.
Swati Sharma (6):
lib/igt_kms: Add highres() and lowres() func
tests/intel/kms_cdclk: Modify highest resolution restriction
tests/intel/kms_cdclk: Add conditions to filter valid outputs
tests/intel/kms_cdclk: Introduce set_mode()
tests/intel/kms_cdclk.c: Modify skip condition
tests/intel/kms_cdclk: Add get_max_cdclk_freq()
lib/igt_kms.c | 34 +++++++
lib/igt_kms.h | 2 +
tests/intel/kms_cdclk.c | 199 +++++++++++++++++++++-----------------
tests/intel/kms_dsc.c | 14 +--
tests/kms_display_modes.c | 14 +--
5 files changed, 146 insertions(+), 117 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma @ 2024-12-30 19:03 ` Swati Sharma 2025-01-27 11:32 ` Reddy Guddati, Santhosh 2025-02-03 13:47 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 2/6] tests/intel/kms_cdclk: Modify highest resolution restriction Swati Sharma ` (8 subsequent siblings) 9 siblings, 2 replies; 17+ messages in thread From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma Functions returning highest and lowest mode are added to lib. Corresponding changes are done in relevant binaries. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 34 +++++++++++++++++ lib/igt_kms.h | 2 + tests/intel/kms_cdclk.c | 77 +++++++++++++++++---------------------- tests/intel/kms_dsc.c | 14 +------ tests/kms_display_modes.c | 14 +------ 5 files changed, 72 insertions(+), 69 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index a67d17c4f..4f2a5ca0f 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -4851,6 +4851,40 @@ drmModeModeInfo *igt_output_get_mode(igt_output_t *output) return &output->config.default_mode; } +/** + * igt_output_get_highres_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the highest mode + */ +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *highest_mode = NULL; + + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); + highest_mode = &connector->modes[0]; + + return highest_mode; +} + +/** + * igt_output_get_lowres_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the lowest mode + */ +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *lowest_mode = NULL; + + igt_sort_connector_modes(connector, sort_drm_modes_by_res_asc); + lowest_mode = &connector->modes[0]; + + return lowest_mode; +} + /** * igt_output_override_mode: * @output: Output of which the mode will be overridden diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..18c480ce5 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -546,6 +546,8 @@ void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe); const char *igt_output_name(igt_output_t *output); drmModeModeInfo *igt_output_get_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); int igt_output_preferred_vrefresh(igt_output_t *output); void igt_output_set_pipe(igt_output_t *output, enum pipe pipe); diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index 382b3e9d1..f1a019eb7 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -110,24 +110,6 @@ static __u64 get_mode_data_rate(drmModeModeInfo *mode) return data_rate; } -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeModeInfo *highest_mode = NULL; - drmModeConnector *connector = output->config.connector; - int j; - - for (j = 0; j < connector->count_modes; j++) { - if (connector->modes[j].vdisplay == VDISPLAY_4K && - connector->modes[j].hdisplay == HDISPLAY_4K && - connector->modes[j].vrefresh == VREFRESH) { - highest_mode = &connector->modes[j]; - break; - } - } - - return highest_mode; -} - static drmModeModeInfo *get_lowres_mode(igt_output_t *output) { drmModeModeInfo *lowest_mode = NULL; @@ -172,7 +154,7 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu int cdclk_ref, cdclk_new; struct igt_fb fb; igt_plane_t *primary; - drmModeModeInfo *mode; + drmModeModeInfo mode; int scaling = 50; int ret; bool test_complete = false; @@ -182,14 +164,17 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu igt_display_reset(display); igt_output_set_pipe(output, pipe); - mode = get_highres_mode(output); - igt_require(mode != NULL); - igt_output_override_mode(output, mode); + mode = *igt_output_get_highres_mode(output); + igt_require_f(mode.hdisplay == HDISPLAY_4K && mode.vdisplay == VDISPLAY_4K && + mode.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); + + igt_output_override_mode(output, &mode); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_create_color_pattern_fb(display->drm_fd, - mode->hdisplay, mode->vdisplay, + mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, 0.0, 0.0, 0.0, &fb); @@ -225,18 +210,20 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out int cdclk_ref, cdclk_new; struct igt_fb fb; igt_plane_t *primary; - drmModeModeInfo *mode_hi, *mode_lo, *mode; + drmModeModeInfo mode_hi, mode_lo, *mode; do_cleanup_display(display); igt_display_reset(display); igt_output_set_pipe(output, pipe); mode = igt_output_get_mode(output); - mode_lo = get_lowres_mode(output); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_lo = *get_lowres_mode(output); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); - igt_skip_on_f(mode_hi->hdisplay == mode_lo->hdisplay && mode_hi->vdisplay == mode_lo->vdisplay, + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, "Highest and lowest mode resolutions are same; no transition\n"); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -248,13 +235,13 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out 0.0, 0.0, 0.0, &fb); /* switch to lower resolution */ - igt_output_override_mode(output, mode_lo); + igt_output_override_mode(output, &mode_lo); igt_plane_set_fb(primary, &fb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); cdclk_ref = get_current_cdclk_freq(debugfs_fd); /* switch to higher resolution */ - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); igt_plane_set_fb(primary, &fb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); cdclk_new = get_current_cdclk_freq(debugfs_fd); @@ -273,7 +260,7 @@ static void test_mode_transition_on_all_outputs(data_t *data) { igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; - drmModeModeInfo *mode, *mode_hi, *mode_lo; + drmModeModeInfo *mode, mode_hi, mode_lo; igt_output_t *output; int valid_outputs = 0; int cdclk_ref, cdclk_new; @@ -297,11 +284,13 @@ static void test_mode_transition_on_all_outputs(data_t *data) width = max(width, mode->hdisplay); height = max(height, mode->vdisplay); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); igt_output_set_pipe(output, i); - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); i++; } igt_require(intel_pipe_output_combo_valid(display)); @@ -320,12 +309,12 @@ static void test_mode_transition_on_all_outputs(data_t *data) mode = igt_output_get_mode(output); igt_assert(mode); - mode_lo = get_lowres_mode(output); + mode_lo = *get_lowres_mode(output); - igt_output_override_mode(output, mode_lo); + igt_output_override_mode(output, &mode_lo); igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_lo->hdisplay, mode_lo->vdisplay); - igt_plane_set_size(plane, mode_lo->hdisplay, mode_lo->vdisplay); + igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); + igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); i++; } @@ -343,13 +332,15 @@ static void test_mode_transition_on_all_outputs(data_t *data) mode = igt_output_get_mode(output); igt_assert(mode); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_hi->hdisplay, mode_hi->vdisplay); - igt_plane_set_size(plane, mode_hi->hdisplay, mode_hi->vdisplay); + igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); + igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); j++; } diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 5508e7a9e..1392e1cd4 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -94,18 +94,6 @@ static inline void manual(const char *expected) igt_debug_interactive_mode_check("all", expected); } -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeConnector *connector = output->config.connector; - drmModeModeInfo *highest_mode = NULL; - - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - - highest_mode = &connector->modes[0]; - - return highest_mode; -} - static drmModeModeInfo *get_next_mode(igt_output_t *output, int index) { drmModeConnector *connector = output->config.connector; @@ -184,7 +172,7 @@ static void update_display(data_t *data, uint32_t test_type) igt_skip_on(!igt_plane_has_format_mod(primary, data->plane_format, DRM_FORMAT_MOD_LINEAR)); - mode = get_highres_mode(output); + mode = igt_output_get_highres_mode(output); do { if (data->output_format != DSC_FORMAT_RGB && index > 0) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index e41c60cc0..6ea44944a 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -60,18 +60,6 @@ typedef struct { int n_pipes; } data_t; -/* Get higher mode supported by panel. */ -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeConnector *connector = output->config.connector; - drmModeModeInfo *highest_mode = NULL; - - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - highest_mode = &connector->modes[0]; - - return highest_mode; -} - /* Get the 4k or less then 4k mode of connected panel. */ static drmModeModeInfo *get_mode(igt_output_t *output) { @@ -344,7 +332,7 @@ igt_main igt_require_f(dp_mst_outputs > 1, "MST not found more then one\n"); memcpy(&data.mode_mst[0], get_mode(data.mst_output[0]), sizeof(drmModeModeInfo)); - memcpy(&data.mode_mst[1], get_highres_mode(data.mst_output[1]), + memcpy(&data.mode_mst[1], igt_output_get_highres_mode(data.mst_output[1]), sizeof(drmModeModeInfo)); igt_require_f((data.mode_mst[1].hdisplay >= HDISPLAY_4K && data.mode_mst[1].vdisplay >= VDISPLAY_4K), "4k panel not found\n"); -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func 2024-12-30 19:03 ` [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Swati Sharma @ 2025-01-27 11:32 ` Reddy Guddati, Santhosh 2025-01-28 5:51 ` Reddy Guddati, Santhosh 2025-02-03 13:47 ` Nautiyal, Ankit K 1 sibling, 1 reply; 17+ messages in thread From: Reddy Guddati, Santhosh @ 2025-01-27 11:32 UTC (permalink / raw) To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Nautiyal, Ankit K [-- Attachment #1: Type: text/plain, Size: 13549 bytes --] Hi Swati, ________________________________ From: Sharma, Swati2 <swati2.sharma@intel.com> Sent: Tuesday, December 31, 2024 12:33 AM To: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com>; Sharma, Swati2 <swati2.sharma@intel.com> Subject: [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Functions returning highest and lowest mode are added to lib. Corresponding changes are done in relevant binaries. LGTM Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 34 +++++++++++++++++ lib/igt_kms.h | 2 + tests/intel/kms_cdclk.c | 77 +++++++++++++++++---------------------- tests/intel/kms_dsc.c | 14 +------ tests/kms_display_modes.c | 14 +------ 5 files changed, 72 insertions(+), 69 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index a67d17c4f..4f2a5ca0f 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -4851,6 +4851,40 @@ drmModeModeInfo *igt_output_get_mode(igt_output_t *output) return &output->config.default_mode; } +/** + * igt_output_get_highres_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the highest mode + */ +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *highest_mode = NULL; + + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); + highest_mode = &connector->modes[0]; + + return highest_mode; +} + +/** + * igt_output_get_lowres_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the lowest mode + */ +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *lowest_mode = NULL; + + igt_sort_connector_modes(connector, sort_drm_modes_by_res_asc); + lowest_mode = &connector->modes[0]; + + return lowest_mode; +} + /** * igt_output_override_mode: * @output: Output of which the mode will be overridden diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..18c480ce5 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -546,6 +546,8 @@ void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe); const char *igt_output_name(igt_output_t *output); drmModeModeInfo *igt_output_get_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); int igt_output_preferred_vrefresh(igt_output_t *output); void igt_output_set_pipe(igt_output_t *output, enum pipe pipe); diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index 382b3e9d1..f1a019eb7 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -110,24 +110,6 @@ static __u64 get_mode_data_rate(drmModeModeInfo *mode) return data_rate; } -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeModeInfo *highest_mode = NULL; - drmModeConnector *connector = output->config.connector; - int j; - - for (j = 0; j < connector->count_modes; j++) { - if (connector->modes[j].vdisplay == VDISPLAY_4K && - connector->modes[j].hdisplay == HDISPLAY_4K && - connector->modes[j].vrefresh == VREFRESH) { - highest_mode = &connector->modes[j]; - break; - } - } - - return highest_mode; -} - static drmModeModeInfo *get_lowres_mode(igt_output_t *output) { drmModeModeInfo *lowest_mode = NULL; @@ -172,7 +154,7 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu int cdclk_ref, cdclk_new; struct igt_fb fb; igt_plane_t *primary; - drmModeModeInfo *mode; + drmModeModeInfo mode; int scaling = 50; int ret; bool test_complete = false; @@ -182,14 +164,17 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu igt_display_reset(display); igt_output_set_pipe(output, pipe); - mode = get_highres_mode(output); - igt_require(mode != NULL); - igt_output_override_mode(output, mode); + mode = *igt_output_get_highres_mode(output); + igt_require_f(mode.hdisplay == HDISPLAY_4K && mode.vdisplay == VDISPLAY_4K && + mode.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); + + igt_output_override_mode(output, &mode); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_create_color_pattern_fb(display->drm_fd, - mode->hdisplay, mode->vdisplay, + mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, 0.0, 0.0, 0.0, &fb); @@ -225,18 +210,20 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out int cdclk_ref, cdclk_new; struct igt_fb fb; igt_plane_t *primary; - drmModeModeInfo *mode_hi, *mode_lo, *mode; + drmModeModeInfo mode_hi, mode_lo, *mode; do_cleanup_display(display); igt_display_reset(display); igt_output_set_pipe(output, pipe); mode = igt_output_get_mode(output); - mode_lo = get_lowres_mode(output); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_lo = *get_lowres_mode(output); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); - igt_skip_on_f(mode_hi->hdisplay == mode_lo->hdisplay && mode_hi->vdisplay == mode_lo->vdisplay, + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, "Highest and lowest mode resolutions are same; no transition\n"); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -248,13 +235,13 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out 0.0, 0.0, 0.0, &fb); /* switch to lower resolution */ - igt_output_override_mode(output, mode_lo); + igt_output_override_mode(output, &mode_lo); igt_plane_set_fb(primary, &fb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); cdclk_ref = get_current_cdclk_freq(debugfs_fd); /* switch to higher resolution */ - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); igt_plane_set_fb(primary, &fb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); cdclk_new = get_current_cdclk_freq(debugfs_fd); @@ -273,7 +260,7 @@ static void test_mode_transition_on_all_outputs(data_t *data) { igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; - drmModeModeInfo *mode, *mode_hi, *mode_lo; + drmModeModeInfo *mode, mode_hi, mode_lo; igt_output_t *output; int valid_outputs = 0; int cdclk_ref, cdclk_new; @@ -297,11 +284,13 @@ static void test_mode_transition_on_all_outputs(data_t *data) width = max(width, mode->hdisplay); height = max(height, mode->vdisplay); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); igt_output_set_pipe(output, i); - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); i++; } igt_require(intel_pipe_output_combo_valid(display)); @@ -320,12 +309,12 @@ static void test_mode_transition_on_all_outputs(data_t *data) mode = igt_output_get_mode(output); igt_assert(mode); - mode_lo = get_lowres_mode(output); + mode_lo = *get_lowres_mode(output); - igt_output_override_mode(output, mode_lo); + igt_output_override_mode(output, &mode_lo); igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_lo->hdisplay, mode_lo->vdisplay); - igt_plane_set_size(plane, mode_lo->hdisplay, mode_lo->vdisplay); + igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); + igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); i++; } @@ -343,13 +332,15 @@ static void test_mode_transition_on_all_outputs(data_t *data) mode = igt_output_get_mode(output); igt_assert(mode); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_output_name(output)); - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_hi->hdisplay, mode_hi->vdisplay); - igt_plane_set_size(plane, mode_hi->hdisplay, mode_hi->vdisplay); + igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); + igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); j++; } diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 5508e7a9e..1392e1cd4 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -94,18 +94,6 @@ static inline void manual(const char *expected) igt_debug_interactive_mode_check("all", expected); } -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeConnector *connector = output->config.connector; - drmModeModeInfo *highest_mode = NULL; - - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - - highest_mode = &connector->modes[0]; - - return highest_mode; -} - static drmModeModeInfo *get_next_mode(igt_output_t *output, int index) { drmModeConnector *connector = output->config.connector; @@ -184,7 +172,7 @@ static void update_display(data_t *data, uint32_t test_type) igt_skip_on(!igt_plane_has_format_mod(primary, data->plane_format, DRM_FORMAT_MOD_LINEAR)); - mode = get_highres_mode(output); + mode = igt_output_get_highres_mode(output); do { if (data->output_format != DSC_FORMAT_RGB && index > 0) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index e41c60cc0..6ea44944a 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -60,18 +60,6 @@ typedef struct { int n_pipes; } data_t; -/* Get higher mode supported by panel. */ -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeConnector *connector = output->config.connector; - drmModeModeInfo *highest_mode = NULL; - - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - highest_mode = &connector->modes[0]; - - return highest_mode; -} - /* Get the 4k or less then 4k mode of connected panel. */ static drmModeModeInfo *get_mode(igt_output_t *output) { @@ -344,7 +332,7 @@ igt_main igt_require_f(dp_mst_outputs > 1, "MST not found more then one\n"); memcpy(&data.mode_mst[0], get_mode(data.mst_output[0]), sizeof(drmModeModeInfo)); - memcpy(&data.mode_mst[1], get_highres_mode(data.mst_output[1]), + memcpy(&data.mode_mst[1], igt_output_get_highres_mode(data.mst_output[1]), sizeof(drmModeModeInfo)); igt_require_f((data.mode_mst[1].hdisplay >= HDISPLAY_4K && data.mode_mst[1].vdisplay >= VDISPLAY_4K), "4k panel not found\n"); -- 2.25.1 [-- Attachment #2: Type: text/html, Size: 27098 bytes --] ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func 2025-01-27 11:32 ` Reddy Guddati, Santhosh @ 2025-01-28 5:51 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 17+ messages in thread From: Reddy Guddati, Santhosh @ 2025-01-28 5:51 UTC (permalink / raw) To: igt-dev On 27-01-2025 17:02, Reddy Guddati, Santhosh wrote: > Hi Swati, > > ------------------------------------------------------------------------ > *From:* Sharma, Swati2 <swati2.sharma@intel.com> > *Sent:* Tuesday, December 31, 2024 12:33 AM > *To:* igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org> > *Cc:* Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Reddy Guddati, > Santhosh <santhosh.reddy.guddati@intel.com>; Sharma, Swati2 > <swati2.sharma@intel.com> > *Subject:* [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func > Functions returning highest and lowest mode are added to lib. > Corresponding changes are done in relevant binaries. > > LGTM > Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_kms.c | 34 +++++++++++++++++ > lib/igt_kms.h | 2 + > tests/intel/kms_cdclk.c | 77 +++++++++++++++++---------------------- > tests/intel/kms_dsc.c | 14 +------ > tests/kms_display_modes.c | 14 +------ > 5 files changed, 72 insertions(+), 69 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index a67d17c4f..4f2a5ca0f 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -4851,6 +4851,40 @@ drmModeModeInfo *igt_output_get_mode(igt_output_t > *output) > return &output->config.default_mode; > } > > +/** > + * igt_output_get_highres_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the highest mode > + */ > +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *highest_mode = NULL; > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > + highest_mode = &connector->modes[0]; > + > + return highest_mode; > +} > + > +/** > + * igt_output_get_lowres_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the lowest mode > + */ > +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *lowest_mode = NULL; > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_asc); > + lowest_mode = &connector->modes[0]; > + > + return lowest_mode; > +} > + > /** > * igt_output_override_mode: > * @output: Output of which the mode will be overridden > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 1e2a927ab..18c480ce5 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -546,6 +546,8 @@ void > igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe); > > const char *igt_output_name(igt_output_t *output); > drmModeModeInfo *igt_output_get_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); > void igt_output_override_mode(igt_output_t *output, const > drmModeModeInfo *mode); > int igt_output_preferred_vrefresh(igt_output_t *output); > void igt_output_set_pipe(igt_output_t *output, enum pipe pipe); > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index 382b3e9d1..f1a019eb7 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -110,24 +110,6 @@ static __u64 get_mode_data_rate(drmModeModeInfo *mode) > return data_rate; > } > > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeModeInfo *highest_mode = NULL; > - drmModeConnector *connector = output->config.connector; > - int j; > - > - for (j = 0; j < connector->count_modes; j++) { > - if (connector->modes[j].vdisplay == VDISPLAY_4K && > - connector->modes[j].hdisplay == HDISPLAY_4K && > - connector->modes[j].vrefresh == VREFRESH) { > - highest_mode = &connector->modes[j]; > - break; > - } > - } > - > - return highest_mode; > -} > - > static drmModeModeInfo *get_lowres_mode(igt_output_t *output) > { > drmModeModeInfo *lowest_mode = NULL; > @@ -172,7 +154,7 @@ static void test_plane_scaling(data_t *data, enum > pipe pipe, igt_output_t *outpu > int cdclk_ref, cdclk_new; > struct igt_fb fb; > igt_plane_t *primary; > - drmModeModeInfo *mode; > + drmModeModeInfo mode; > int scaling = 50; > int ret; > bool test_complete = false; > @@ -182,14 +164,17 @@ static void test_plane_scaling(data_t *data, enum > pipe pipe, igt_output_t *outpu > igt_display_reset(display); > > igt_output_set_pipe(output, pipe); > - mode = get_highres_mode(output); > - igt_require(mode != NULL); > - igt_output_override_mode(output, mode); > + mode = *igt_output_get_highres_mode(output); > + igt_require_f(mode.hdisplay == HDISPLAY_4K && > mode.vdisplay == VDISPLAY_4K && > + mode.vrefresh == VREFRESH, "4K mode not > found on output %s.\n", > + igt_output_name(output)); > + > + igt_output_override_mode(output, &mode); > > primary = igt_output_get_plane_type(output, > DRM_PLANE_TYPE_PRIMARY); > > igt_create_color_pattern_fb(display->drm_fd, > - mode->hdisplay, mode->vdisplay, > + mode.hdisplay, mode.vdisplay, > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 0.0, 0.0, 0.0, &fb); > @@ -225,18 +210,20 @@ static void test_mode_transition(data_t *data, > enum pipe pipe, igt_output_t *out > int cdclk_ref, cdclk_new; > struct igt_fb fb; > igt_plane_t *primary; > - drmModeModeInfo *mode_hi, *mode_lo, *mode; > + drmModeModeInfo mode_hi, mode_lo, *mode; > > do_cleanup_display(display); > igt_display_reset(display); > > igt_output_set_pipe(output, pipe); > mode = igt_output_get_mode(output); > - mode_lo = get_lowres_mode(output); > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_lo = *get_lowres_mode(output); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && > mode_hi.vdisplay == VDISPLAY_4K && > + mode_hi.vrefresh == VREFRESH, "4K mode not found > on output %s.\n", > + igt_output_name(output)); > > - igt_skip_on_f(mode_hi->hdisplay == mode_lo->hdisplay && mode_hi- > >vdisplay == mode_lo->vdisplay, > + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && > mode_hi.vdisplay == mode_lo.vdisplay, > "Highest and lowest mode resolutions are same; > no transition\n"); > > primary = igt_output_get_plane_type(output, > DRM_PLANE_TYPE_PRIMARY); > @@ -248,13 +235,13 @@ static void test_mode_transition(data_t *data, > enum pipe pipe, igt_output_t *out > 0.0, 0.0, 0.0, &fb); > > /* switch to lower resolution */ > - igt_output_override_mode(output, mode_lo); > + igt_output_override_mode(output, &mode_lo); > igt_plane_set_fb(primary, &fb); > igt_display_commit_atomic(display, > DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > cdclk_ref = get_current_cdclk_freq(debugfs_fd); > > /* switch to higher resolution */ > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > igt_plane_set_fb(primary, &fb); > igt_display_commit_atomic(display, > DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > cdclk_new = get_current_cdclk_freq(debugfs_fd); > @@ -273,7 +260,7 @@ static void > test_mode_transition_on_all_outputs(data_t *data) > { > igt_display_t *display = &data->display; > int debugfs_fd = data->debugfs_fd; > - drmModeModeInfo *mode, *mode_hi, *mode_lo; > + drmModeModeInfo *mode, mode_hi, mode_lo; > igt_output_t *output; > int valid_outputs = 0; > int cdclk_ref, cdclk_new; > @@ -297,11 +284,13 @@ static void > test_mode_transition_on_all_outputs(data_t *data) > width = max(width, mode->hdisplay); > height = max(height, mode->vdisplay); > > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && > mode_hi.vdisplay == VDISPLAY_4K && > + mode_hi.vrefresh == VREFRESH, "4K mode not > found on output %s.\n", > + igt_output_name(output)); > > igt_output_set_pipe(output, i); > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > i++; > } > igt_require(intel_pipe_output_combo_valid(display)); > @@ -320,12 +309,12 @@ static void > test_mode_transition_on_all_outputs(data_t *data) > mode = igt_output_get_mode(output); > igt_assert(mode); > > - mode_lo = get_lowres_mode(output); > + mode_lo = *get_lowres_mode(output); > > - igt_output_override_mode(output, mode_lo); > + igt_output_override_mode(output, &mode_lo); > igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_lo->hdisplay, mode_lo- > >vdisplay); > - igt_plane_set_size(plane, mode_lo->hdisplay, mode_lo- > >vdisplay); > + igt_fb_set_size(&fb, plane, mode_lo.hdisplay, > mode_lo.vdisplay); > + igt_plane_set_size(plane, mode_lo.hdisplay, > mode_lo.vdisplay); > i++; > } > > @@ -343,13 +332,15 @@ static void > test_mode_transition_on_all_outputs(data_t *data) > mode = igt_output_get_mode(output); > igt_assert(mode); > > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && > mode_hi.vdisplay == VDISPLAY_4K && > + mode_hi.vrefresh == VREFRESH, "4K mode not > found on output %s.\n", > + igt_output_name(output)); > > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_hi->hdisplay, mode_hi- > >vdisplay); > - igt_plane_set_size(plane, mode_hi->hdisplay, mode_hi- > >vdisplay); > + igt_fb_set_size(&fb, plane, mode_hi.hdisplay, > mode_hi.vdisplay); > + igt_plane_set_size(plane, mode_hi.hdisplay, > mode_hi.vdisplay); > j++; > } > > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 5508e7a9e..1392e1cd4 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -94,18 +94,6 @@ static inline void manual(const char *expected) > igt_debug_interactive_mode_check("all", expected); > } > > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeConnector *connector = output->config.connector; > - drmModeModeInfo *highest_mode = NULL; > - > - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); > - > - highest_mode = &connector->modes[0]; > - > - return highest_mode; > -} > - > static drmModeModeInfo *get_next_mode(igt_output_t *output, int index) > { > drmModeConnector *connector = output->config.connector; > @@ -184,7 +172,7 @@ static void update_display(data_t *data, uint32_t > test_type) > igt_skip_on(!igt_plane_has_format_mod(primary, data->plane_format, > DRM_FORMAT_MOD_LINEAR)); > > - mode = get_highres_mode(output); > + mode = igt_output_get_highres_mode(output); > > do { > if (data->output_format != DSC_FORMAT_RGB && index > 0) > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c > index e41c60cc0..6ea44944a 100644 > --- a/tests/kms_display_modes.c > +++ b/tests/kms_display_modes.c > @@ -60,18 +60,6 @@ typedef struct { > int n_pipes; > } data_t; > > -/* Get higher mode supported by panel. */ > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeConnector *connector = output->config.connector; > - drmModeModeInfo *highest_mode = NULL; > - > - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > - highest_mode = &connector->modes[0]; > - > - return highest_mode; > -} > - > /* Get the 4k or less then 4k mode of connected panel. */ > static drmModeModeInfo *get_mode(igt_output_t *output) > { > @@ -344,7 +332,7 @@ igt_main > igt_require_f(dp_mst_outputs > 1, "MST not found more > then one\n"); > > memcpy(&data.mode_mst[0], > get_mode(data.mst_output[0]), sizeof(drmModeModeInfo)); > - memcpy(&data.mode_mst[1], > get_highres_mode(data.mst_output[1]), > + memcpy(&data.mode_mst[1], > igt_output_get_highres_mode(data.mst_output[1]), > sizeof(drmModeModeInfo)); > igt_require_f((data.mode_mst[1].hdisplay >= HDISPLAY_4K && > data.mode_mst[1].vdisplay >= > VDISPLAY_4K), "4k panel not found\n"); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func 2024-12-30 19:03 ` [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Swati Sharma 2025-01-27 11:32 ` Reddy Guddati, Santhosh @ 2025-02-03 13:47 ` Nautiyal, Ankit K 1 sibling, 0 replies; 17+ messages in thread From: Nautiyal, Ankit K @ 2025-02-03 13:47 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: santhosh.reddy.guddati On 12/31/2024 12:33 AM, Swati Sharma wrote: > Functions returning highest and lowest mode are added to lib. > Corresponding changes are done in relevant binaries. Use imperative mood. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_kms.c | 34 +++++++++++++++++ > lib/igt_kms.h | 2 + > tests/intel/kms_cdclk.c | 77 +++++++++++++++++---------------------- > tests/intel/kms_dsc.c | 14 +------ > tests/kms_display_modes.c | 14 +------ > 5 files changed, 72 insertions(+), 69 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index a67d17c4f..4f2a5ca0f 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -4851,6 +4851,40 @@ drmModeModeInfo *igt_output_get_mode(igt_output_t *output) > return &output->config.default_mode; > } > > +/** > + * igt_output_get_highres_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the highest mode Returns NULL otherwise > + */ > +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *highest_mode = NULL; > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > + highest_mode = &connector->modes[0]; > + > + return highest_mode; > +} > + > +/** > + * igt_output_get_lowres_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the lowest mode ditto > + */ > +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *lowest_mode = NULL; > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_asc); > + lowest_mode = &connector->modes[0]; > + > + return lowest_mode; > +} > + > /** > * igt_output_override_mode: > * @output: Output of which the mode will be overridden > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 1e2a927ab..18c480ce5 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -546,6 +546,8 @@ void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe); > > const char *igt_output_name(igt_output_t *output); > drmModeModeInfo *igt_output_get_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); > void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); > int igt_output_preferred_vrefresh(igt_output_t *output); > void igt_output_set_pipe(igt_output_t *output, enum pipe pipe); > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index 382b3e9d1..f1a019eb7 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -110,24 +110,6 @@ static __u64 get_mode_data_rate(drmModeModeInfo *mode) > return data_rate; > } > > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeModeInfo *highest_mode = NULL; > - drmModeConnector *connector = output->config.connector; > - int j; > - > - for (j = 0; j < connector->count_modes; j++) { > - if (connector->modes[j].vdisplay == VDISPLAY_4K && > - connector->modes[j].hdisplay == HDISPLAY_4K && > - connector->modes[j].vrefresh == VREFRESH) { > - highest_mode = &connector->modes[j]; > - break; > - } > - } > - > - return highest_mode; > -} > - > static drmModeModeInfo *get_lowres_mode(igt_output_t *output) > { > drmModeModeInfo *lowest_mode = NULL; > @@ -172,7 +154,7 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu > int cdclk_ref, cdclk_new; > struct igt_fb fb; > igt_plane_t *primary; > - drmModeModeInfo *mode; > + drmModeModeInfo mode; > int scaling = 50; > int ret; > bool test_complete = false; > @@ -182,14 +164,17 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu > igt_display_reset(display); > > igt_output_set_pipe(output, pipe); > - mode = get_highres_mode(output); > - igt_require(mode != NULL); > - igt_output_override_mode(output, mode); > + mode = *igt_output_get_highres_mode(output); > + igt_require_f(mode.hdisplay == HDISPLAY_4K && mode.vdisplay == VDISPLAY_4K && > + mode.vrefresh == VREFRESH, "4K mode not found on output %s.\n", > + igt_output_name(output)); This is functionally different than what was happening earlier. Earlier the test was only getting the 4K mode from the list of modes. Now the patch is getting highest mode and checking if its 4K or not. With 8k config, this will result in skip now. I understand you are trying to solve two existing problems. 1. if a config has say 8k mode the current code will always take 4K mode. For cdclk transition, as I understand you want to have anything more than 4K (as done in next patch). 2. For finding such a mode we iterate through the modes several times, you want to avoid this and just sort the mode once and get highest mode. If this is the case, you can combine patch#1 and 2 with the above reasoning clearly called out. Regards, Ankit > + > + igt_output_override_mode(output, &mode); > > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > > igt_create_color_pattern_fb(display->drm_fd, > - mode->hdisplay, mode->vdisplay, > + mode.hdisplay, mode.vdisplay, > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 0.0, 0.0, 0.0, &fb); > @@ -225,18 +210,20 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > int cdclk_ref, cdclk_new; > struct igt_fb fb; > igt_plane_t *primary; > - drmModeModeInfo *mode_hi, *mode_lo, *mode; > + drmModeModeInfo mode_hi, mode_lo, *mode; > > do_cleanup_display(display); > igt_display_reset(display); > > igt_output_set_pipe(output, pipe); > mode = igt_output_get_mode(output); > - mode_lo = get_lowres_mode(output); > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_lo = *get_lowres_mode(output); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && > + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", > + igt_output_name(output)); > > - igt_skip_on_f(mode_hi->hdisplay == mode_lo->hdisplay && mode_hi->vdisplay == mode_lo->vdisplay, > + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, > "Highest and lowest mode resolutions are same; no transition\n"); > > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > @@ -248,13 +235,13 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > 0.0, 0.0, 0.0, &fb); > > /* switch to lower resolution */ > - igt_output_override_mode(output, mode_lo); > + igt_output_override_mode(output, &mode_lo); > igt_plane_set_fb(primary, &fb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > cdclk_ref = get_current_cdclk_freq(debugfs_fd); > > /* switch to higher resolution */ > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > igt_plane_set_fb(primary, &fb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > cdclk_new = get_current_cdclk_freq(debugfs_fd); > @@ -273,7 +260,7 @@ static void test_mode_transition_on_all_outputs(data_t *data) > { > igt_display_t *display = &data->display; > int debugfs_fd = data->debugfs_fd; > - drmModeModeInfo *mode, *mode_hi, *mode_lo; > + drmModeModeInfo *mode, mode_hi, mode_lo; > igt_output_t *output; > int valid_outputs = 0; > int cdclk_ref, cdclk_new; > @@ -297,11 +284,13 @@ static void test_mode_transition_on_all_outputs(data_t *data) > width = max(width, mode->hdisplay); > height = max(height, mode->vdisplay); > > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && > + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", > + igt_output_name(output)); > > igt_output_set_pipe(output, i); > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > i++; > } > igt_require(intel_pipe_output_combo_valid(display)); > @@ -320,12 +309,12 @@ static void test_mode_transition_on_all_outputs(data_t *data) > mode = igt_output_get_mode(output); > igt_assert(mode); > > - mode_lo = get_lowres_mode(output); > + mode_lo = *get_lowres_mode(output); > > - igt_output_override_mode(output, mode_lo); > + igt_output_override_mode(output, &mode_lo); > igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_lo->hdisplay, mode_lo->vdisplay); > - igt_plane_set_size(plane, mode_lo->hdisplay, mode_lo->vdisplay); > + igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); > + igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); > i++; > } > > @@ -343,13 +332,15 @@ static void test_mode_transition_on_all_outputs(data_t *data) > mode = igt_output_get_mode(output); > igt_assert(mode); > > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && > + mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", > + igt_output_name(output)); > > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_hi->hdisplay, mode_hi->vdisplay); > - igt_plane_set_size(plane, mode_hi->hdisplay, mode_hi->vdisplay); > + igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); > + igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); > j++; > } > > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 5508e7a9e..1392e1cd4 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -94,18 +94,6 @@ static inline void manual(const char *expected) > igt_debug_interactive_mode_check("all", expected); > } > > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeConnector *connector = output->config.connector; > - drmModeModeInfo *highest_mode = NULL; > - > - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); > - > - highest_mode = &connector->modes[0]; > - > - return highest_mode; > -} > - > static drmModeModeInfo *get_next_mode(igt_output_t *output, int index) > { > drmModeConnector *connector = output->config.connector; > @@ -184,7 +172,7 @@ static void update_display(data_t *data, uint32_t test_type) > igt_skip_on(!igt_plane_has_format_mod(primary, data->plane_format, > DRM_FORMAT_MOD_LINEAR)); > > - mode = get_highres_mode(output); > + mode = igt_output_get_highres_mode(output); > > do { > if (data->output_format != DSC_FORMAT_RGB && index > 0) > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c > index e41c60cc0..6ea44944a 100644 > --- a/tests/kms_display_modes.c > +++ b/tests/kms_display_modes.c > @@ -60,18 +60,6 @@ typedef struct { > int n_pipes; > } data_t; > > -/* Get higher mode supported by panel. */ > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeConnector *connector = output->config.connector; > - drmModeModeInfo *highest_mode = NULL; > - > - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > - highest_mode = &connector->modes[0]; > - > - return highest_mode; > -} > - > /* Get the 4k or less then 4k mode of connected panel. */ > static drmModeModeInfo *get_mode(igt_output_t *output) > { > @@ -344,7 +332,7 @@ igt_main > igt_require_f(dp_mst_outputs > 1, "MST not found more then one\n"); > > memcpy(&data.mode_mst[0], get_mode(data.mst_output[0]), sizeof(drmModeModeInfo)); > - memcpy(&data.mode_mst[1], get_highres_mode(data.mst_output[1]), > + memcpy(&data.mode_mst[1], igt_output_get_highres_mode(data.mst_output[1]), > sizeof(drmModeModeInfo)); > igt_require_f((data.mode_mst[1].hdisplay >= HDISPLAY_4K && > data.mode_mst[1].vdisplay >= VDISPLAY_4K), "4k panel not found\n"); ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 2/6] tests/intel/kms_cdclk: Modify highest resolution restriction 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2024-12-30 19:03 ` [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Swati Sharma @ 2024-12-30 19:03 ` Swati Sharma 2024-12-30 19:03 ` [PATCH i-g-t 3/6] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma ` (7 subsequent siblings) 9 siblings, 0 replies; 17+ messages in thread From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma Currently, highres is considered as mode equal to 4K. Modify this restriction to consider highres as >= 4K. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index f1a019eb7..e78d22e1d 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -165,8 +165,8 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu igt_output_set_pipe(output, pipe); mode = *igt_output_get_highres_mode(output); - igt_require_f(mode.hdisplay == HDISPLAY_4K && mode.vdisplay == VDISPLAY_4K && - mode.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_require_f(mode.hdisplay >= HDISPLAY_4K && mode.vdisplay >= VDISPLAY_4K && + mode.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", igt_output_name(output)); igt_output_override_mode(output, &mode); @@ -219,8 +219,8 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out mode = igt_output_get_mode(output); mode_lo = *get_lowres_mode(output); mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && - mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", igt_output_name(output)); igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, @@ -285,8 +285,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) height = max(height, mode->vdisplay); mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && - mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", igt_output_name(output)); igt_output_set_pipe(output, i); @@ -333,8 +333,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_assert(mode); mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay == HDISPLAY_4K && mode_hi.vdisplay == VDISPLAY_4K && - mode_hi.vrefresh == VREFRESH, "4K mode not found on output %s.\n", + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", igt_output_name(output)); igt_output_override_mode(output, &mode_hi); -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH i-g-t 3/6] tests/intel/kms_cdclk: Add conditions to filter valid outputs 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2024-12-30 19:03 ` [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Swati Sharma 2024-12-30 19:03 ` [PATCH i-g-t 2/6] tests/intel/kms_cdclk: Modify highest resolution restriction Swati Sharma @ 2024-12-30 19:03 ` Swati Sharma 2025-02-03 14:05 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 4/6] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma ` (6 subsequent siblings) 9 siblings, 1 reply; 17+ messages in thread From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma Conditions are added to filter valid outputs. Also, highres and lowres of valid outputs are stored in an array to be re-used later. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 52 +++++++++++++++++++++++++++++------------ 1 file changed, 37 insertions(+), 15 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index e78d22e1d..dfc64ae2e 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -261,8 +261,10 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; drmModeModeInfo *mode, mode_hi, mode_lo; + drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; + igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; igt_output_t *output; - int valid_outputs = 0; + int count = 0; int cdclk_ref, cdclk_new; uint16_t width = 0, height = 0; struct igt_fb fb; @@ -273,31 +275,51 @@ static void test_mode_transition_on_all_outputs(data_t *data) do_cleanup_display(display); igt_display_reset(display); - for_each_connected_output(&data->display, output) - valid_outputs++; - - i = 0; for_each_connected_output(display, output) { - mode = igt_output_get_mode(output); + drmModeModeInfo highres_mode; + drmModeModeInfo lowres_mode; + + highres_mode = *igt_output_get_highres_mode(output); + igt_require_f(highres_mode.hdisplay >= HDISPLAY_4K && highres_mode.vdisplay >= VDISPLAY_4K && + highres_mode.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", + igt_output_name(output)); + + lowres_mode = *get_lowres_mode(output); + + if (highres_mode.hdisplay == lowres_mode.hdisplay && + highres_mode.vdisplay == lowres_mode.vdisplay) { + igt_info("Highest and lowest mode resolutions are same on output %s; no transition will occur, skipping\n", + igt_output_name(output)); + continue; + } + + valid_outputs[count++] = output; + } + + igt_skip_on_f(count < 2, + "Number of valid outputs (%d) must be greater than or equal to 2\n", count); + + for (int k = 0; k < count; k++) { + mode_highres[k] = *igt_output_get_highres_mode(valid_outputs[k]); + mode_lowres[k] = *get_lowres_mode(valid_outputs[k]); + + mode = igt_output_get_mode(valid_outputs[k]); igt_assert(mode); + // Update the maximum width and height for the framebuffer width = max(width, mode->hdisplay); height = max(height, mode->vdisplay); - mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", - igt_output_name(output)); - - igt_output_set_pipe(output, i); - igt_output_override_mode(output, &mode_hi); - i++; + igt_output_set_pipe(valid_outputs[k], k); + igt_output_override_mode(valid_outputs[k], &mode_highres[k]); } + igt_require(intel_pipe_output_combo_valid(display)); - igt_display_reset(display); + // Create a framebuffer with the maximum dimensions calculated earlier igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &fb); + i = 0; for_each_connected_output(display, output) { pipe = &display->pipes[i]; -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 3/6] tests/intel/kms_cdclk: Add conditions to filter valid outputs 2024-12-30 19:03 ` [PATCH i-g-t 3/6] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma @ 2025-02-03 14:05 ` Nautiyal, Ankit K 0 siblings, 0 replies; 17+ messages in thread From: Nautiyal, Ankit K @ 2025-02-03 14:05 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: santhosh.reddy.guddati On 12/31/2024 12:33 AM, Swati Sharma wrote: > Conditions are added to filter valid outputs. Also, highres and > lowres of valid outputs are stored in an array to be re-used > later. Imperative mood. Also mention why the condition are added. Perhaps to check if both low res and high res are same there would be no cdclk transition. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_cdclk.c | 52 +++++++++++++++++++++++++++++------------ > 1 file changed, 37 insertions(+), 15 deletions(-) > > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index e78d22e1d..dfc64ae2e 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -261,8 +261,10 @@ static void test_mode_transition_on_all_outputs(data_t *data) > igt_display_t *display = &data->display; > int debugfs_fd = data->debugfs_fd; > drmModeModeInfo *mode, mode_hi, mode_lo; > + drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; > + igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; > igt_output_t *output; > - int valid_outputs = 0; > + int count = 0; > int cdclk_ref, cdclk_new; > uint16_t width = 0, height = 0; > struct igt_fb fb; > @@ -273,31 +275,51 @@ static void test_mode_transition_on_all_outputs(data_t *data) > do_cleanup_display(display); > igt_display_reset(display); > > - for_each_connected_output(&data->display, output) > - valid_outputs++; > - > - i = 0; > for_each_connected_output(display, output) { > - mode = igt_output_get_mode(output); > + drmModeModeInfo highres_mode; > + drmModeModeInfo lowres_mode; > + > + highres_mode = *igt_output_get_highres_mode(output); > + igt_require_f(highres_mode.hdisplay >= HDISPLAY_4K && highres_mode.vdisplay >= VDISPLAY_4K && > + highres_mode.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > + igt_output_name(output)); > + > + lowres_mode = *get_lowres_mode(output); > + > + if (highres_mode.hdisplay == lowres_mode.hdisplay && > + highres_mode.vdisplay == lowres_mode.vdisplay) { > + igt_info("Highest and lowest mode resolutions are same on output %s; no transition will occur, skipping\n", > + igt_output_name(output)); > + continue; > + } > + > + valid_outputs[count++] = output; > + } > + > + igt_skip_on_f(count < 2, > + "Number of valid outputs (%d) must be greater than or equal to 2\n", count); > + > + for (int k = 0; k < count; k++) { Do we need two loops? At least highres mode and lowres mode can be stored in the previous loop itself. > + mode_highres[k] = *igt_output_get_highres_mode(valid_outputs[k]); > + mode_lowres[k] = *get_lowres_mode(valid_outputs[k]); > + > + mode = igt_output_get_mode(valid_outputs[k]); > igt_assert(mode); > > + // Update the maximum width and height for the framebuffer I dont think we need these comments. > width = max(width, mode->hdisplay); > height = max(height, mode->vdisplay); > > - mode_hi = *igt_output_get_highres_mode(output); > - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && > - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > - igt_output_name(output)); > - > - igt_output_set_pipe(output, i); > - igt_output_override_mode(output, &mode_hi); > - i++; > + igt_output_set_pipe(valid_outputs[k], k); > + igt_output_override_mode(valid_outputs[k], &mode_highres[k]); > } > + > igt_require(intel_pipe_output_combo_valid(display)); > - igt_display_reset(display); > > + // Create a framebuffer with the maximum dimensions calculated earlier Ditto. Regards, Ankit > igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, &fb); > + > i = 0; > for_each_connected_output(display, output) { > pipe = &display->pipes[i]; ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 4/6] tests/intel/kms_cdclk: Introduce set_mode() 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (2 preceding siblings ...) 2024-12-30 19:03 ` [PATCH i-g-t 3/6] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma @ 2024-12-30 19:03 ` Swati Sharma 2025-02-03 14:11 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 5/6] tests/intel/kms_cdclk.c: Modify skip condition Swati Sharma ` (5 subsequent siblings) 9 siblings, 1 reply; 17+ messages in thread From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma Encapsulate the mode-setting functionality in the set_mode function to reduce redundancy. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 71 +++++++++++++---------------------------- 1 file changed, 22 insertions(+), 49 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index dfc64ae2e..67efdaa3f 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -256,21 +256,36 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out igt_remove_fb(display->drm_fd, &fb); } +static void set_mode(data_t *data, int count, drmModeModeInfo *mode, + igt_output_t **valid_outputs, struct igt_fb fb) +{ + igt_display_t *display = &data->display; + igt_pipe_t *pipe; + igt_plane_t *plane; + + for (int i = 0; i < count; i++) { + pipe = &display->pipes[i]; + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); + + igt_output_override_mode(valid_outputs[i], &mode[i]); + + igt_plane_set_fb(plane, &fb); + igt_fb_set_size(&fb, plane, mode[i].hdisplay, mode[i].vdisplay); + igt_plane_set_size(plane, mode[i].hdisplay, mode[i].vdisplay); + } +} + static void test_mode_transition_on_all_outputs(data_t *data) { igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; - drmModeModeInfo *mode, mode_hi, mode_lo; - drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; + drmModeModeInfo *mode, mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; igt_output_t *output; int count = 0; int cdclk_ref, cdclk_new; uint16_t width = 0, height = 0; struct igt_fb fb; - igt_pipe_t *pipe; - igt_plane_t *plane; - int i = 0, j = 0; do_cleanup_display(display); igt_display_reset(display); @@ -320,52 +335,11 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &fb); - i = 0; - for_each_connected_output(display, output) { - pipe = &display->pipes[i]; - plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); - - mode = NULL; - - igt_output_set_pipe(output, i); - mode = igt_output_get_mode(output); - igt_assert(mode); - - mode_lo = *get_lowres_mode(output); - - igt_output_override_mode(output, &mode_lo); - igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); - igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); - i++; - } - + set_mode(data, count, mode_lowres, valid_outputs, fb); igt_display_commit2(display, COMMIT_ATOMIC); cdclk_ref = get_current_cdclk_freq(debugfs_fd); - j = 0; - for_each_connected_output(display, output) { - pipe = &display->pipes[j]; - plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); - - mode = NULL; - - igt_output_set_pipe(output, j); - mode = igt_output_get_mode(output); - igt_assert(mode); - - mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", - igt_output_name(output)); - - igt_output_override_mode(output, &mode_hi); - igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); - igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); - j++; - } - + set_mode(data, count, mode_highres, valid_outputs, fb); igt_display_commit2(display, COMMIT_ATOMIC); cdclk_new = get_current_cdclk_freq(debugfs_fd); igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); @@ -373,7 +347,6 @@ static void test_mode_transition_on_all_outputs(data_t *data) /* cdclk should bump */ igt_assert_lt(cdclk_ref, cdclk_new); - igt_plane_set_fb(plane, NULL); do_cleanup_display(display); igt_remove_fb(data->drm_fd, &fb); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 4/6] tests/intel/kms_cdclk: Introduce set_mode() 2024-12-30 19:03 ` [PATCH i-g-t 4/6] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma @ 2025-02-03 14:11 ` Nautiyal, Ankit K 0 siblings, 0 replies; 17+ messages in thread From: Nautiyal, Ankit K @ 2025-02-03 14:11 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: santhosh.reddy.guddati On 12/31/2024 12:33 AM, Swati Sharma wrote: > Encapsulate the mode-setting functionality in the set_mode > function to reduce redundancy. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_cdclk.c | 71 +++++++++++++---------------------------- > 1 file changed, 22 insertions(+), 49 deletions(-) > > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index dfc64ae2e..67efdaa3f 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -256,21 +256,36 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > igt_remove_fb(display->drm_fd, &fb); > } > > +static void set_mode(data_t *data, int count, drmModeModeInfo *mode, > + igt_output_t **valid_outputs, struct igt_fb fb) > +{ > + igt_display_t *display = &data->display; > + igt_pipe_t *pipe; > + igt_plane_t *plane; > + > + for (int i = 0; i < count; i++) { > + pipe = &display->pipes[i]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_output_override_mode(valid_outputs[i], &mode[i]); > + > + igt_plane_set_fb(plane, &fb); > + igt_fb_set_size(&fb, plane, mode[i].hdisplay, mode[i].vdisplay); > + igt_plane_set_size(plane, mode[i].hdisplay, mode[i].vdisplay); > + } > +} > + > static void test_mode_transition_on_all_outputs(data_t *data) > { > igt_display_t *display = &data->display; > int debugfs_fd = data->debugfs_fd; > - drmModeModeInfo *mode, mode_hi, mode_lo; > - drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; > + drmModeModeInfo *mode, mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; > igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; > igt_output_t *output; > int count = 0; > int cdclk_ref, cdclk_new; > uint16_t width = 0, height = 0; > struct igt_fb fb; > - igt_pipe_t *pipe; > - igt_plane_t *plane; > - int i = 0, j = 0; > > do_cleanup_display(display); > igt_display_reset(display); > @@ -320,52 +335,11 @@ static void test_mode_transition_on_all_outputs(data_t *data) > igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, &fb); > > - i = 0; > - for_each_connected_output(display, output) { > - pipe = &display->pipes[i]; > - plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > - > - mode = NULL; > - > - igt_output_set_pipe(output, i); > - mode = igt_output_get_mode(output); > - igt_assert(mode); > - > - mode_lo = *get_lowres_mode(output); > - > - igt_output_override_mode(output, &mode_lo); > - igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); > - igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); > - i++; > - } > - > + set_mode(data, count, mode_lowres, valid_outputs, fb); > igt_display_commit2(display, COMMIT_ATOMIC); > cdclk_ref = get_current_cdclk_freq(debugfs_fd); > > - j = 0; > - for_each_connected_output(display, output) { > - pipe = &display->pipes[j]; > - plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > - > - mode = NULL; > - > - igt_output_set_pipe(output, j); > - mode = igt_output_get_mode(output); > - igt_assert(mode); > - > - mode_hi = *igt_output_get_highres_mode(output); > - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && > - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > - igt_output_name(output)); > - > - igt_output_override_mode(output, &mode_hi); > - igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); > - igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); > - j++; > - } > - > + set_mode(data, count, mode_highres, valid_outputs, fb); > igt_display_commit2(display, COMMIT_ATOMIC); > cdclk_new = get_current_cdclk_freq(debugfs_fd); > igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); > @@ -373,7 +347,6 @@ static void test_mode_transition_on_all_outputs(data_t *data) > /* cdclk should bump */ > igt_assert_lt(cdclk_ref, cdclk_new); > > - igt_plane_set_fb(plane, NULL); This doesnt seem to be related to the change. Otherwise LGTM. Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > do_cleanup_display(display); > igt_remove_fb(data->drm_fd, &fb); > } ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 5/6] tests/intel/kms_cdclk.c: Modify skip condition 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (3 preceding siblings ...) 2024-12-30 19:03 ` [PATCH i-g-t 4/6] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma @ 2024-12-30 19:03 ` Swati Sharma 2025-02-03 14:12 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 6/6] tests/intel/kms_cdclk: Add get_max_cdclk_freq() Swati Sharma ` (4 subsequent siblings) 9 siblings, 1 reply; 17+ messages in thread From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma Add vrefresh also as a parameter to check if highest and lowest refresh rates are identical. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index 67efdaa3f..fcbfa3f37 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -223,7 +223,9 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", igt_output_name(output)); - igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && + mode_hi.vdisplay == mode_lo.vdisplay && + mode_hi.vrefresh == mode_lo.vrefresh, "Highest and lowest mode resolutions are same; no transition\n"); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -302,7 +304,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) lowres_mode = *get_lowres_mode(output); if (highres_mode.hdisplay == lowres_mode.hdisplay && - highres_mode.vdisplay == lowres_mode.vdisplay) { + highres_mode.vdisplay == lowres_mode.vdisplay && + highres_mode.vrefresh == lowres_mode.vrefresh) { igt_info("Highest and lowest mode resolutions are same on output %s; no transition will occur, skipping\n", igt_output_name(output)); continue; -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 5/6] tests/intel/kms_cdclk.c: Modify skip condition 2024-12-30 19:03 ` [PATCH i-g-t 5/6] tests/intel/kms_cdclk.c: Modify skip condition Swati Sharma @ 2025-02-03 14:12 ` Nautiyal, Ankit K 0 siblings, 0 replies; 17+ messages in thread From: Nautiyal, Ankit K @ 2025-02-03 14:12 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: santhosh.reddy.guddati On 12/31/2024 12:33 AM, Swati Sharma wrote: > Add vrefresh also as a parameter to check if highest and > lowest refresh rates are identical. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_cdclk.c | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index 67efdaa3f..fcbfa3f37 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -223,7 +223,9 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > igt_output_name(output)); > > - igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, > + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && > + mode_hi.vdisplay == mode_lo.vdisplay && This can be part of patch were the condition is introduced Patch#3. Regards, Ankit > + mode_hi.vrefresh == mode_lo.vrefresh, > "Highest and lowest mode resolutions are same; no transition\n"); > > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > @@ -302,7 +304,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) > lowres_mode = *get_lowres_mode(output); > > if (highres_mode.hdisplay == lowres_mode.hdisplay && > - highres_mode.vdisplay == lowres_mode.vdisplay) { > + highres_mode.vdisplay == lowres_mode.vdisplay && > + highres_mode.vrefresh == lowres_mode.vrefresh) { > igt_info("Highest and lowest mode resolutions are same on output %s; no transition will occur, skipping\n", > igt_output_name(output)); > continue; ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 6/6] tests/intel/kms_cdclk: Add get_max_cdclk_freq() 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (4 preceding siblings ...) 2024-12-30 19:03 ` [PATCH i-g-t 5/6] tests/intel/kms_cdclk.c: Modify skip condition Swati Sharma @ 2024-12-30 19:03 ` Swati Sharma 2024-12-30 19:43 ` ✓ i915.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) Patchwork ` (3 subsequent siblings) 9 siblings, 0 replies; 17+ messages in thread From: Swati Sharma @ 2024-12-30 19:03 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, santhosh.reddy.guddati, Swati Sharma Replace hardcoded max cdclk freq with one computed from debugfs. Also, add same condition for all_outputs subtest. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index fcbfa3f37..2ea805b94 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -53,7 +53,6 @@ IGT_TEST_DESCRIPTION("Test cdclk features : crawling and squashing"); #define HDISPLAY_4K 3840 #define VDISPLAY_4K 2160 #define VREFRESH 60 -#define MAX_CDCLK_4K 307200 /* Test flags */ enum { @@ -104,6 +103,34 @@ static int get_current_cdclk_freq(int debugfs_fd) return cdclk_freq_current; } +static int get_max_cdclk_freq(int debugfs_fd) +{ + int cdclk_freq_max; + char buf[1024]; + char *start_loc; + int res; + + /* + * Display specific clock frequency info is moved to i915_cdclk_info, + * On older kernels if this debugfs is not found, fallback to read from + * i915_frequency_info. + * + * FIXME: As of now, XE debugfs is still using i915 namespace, once the + * Kernel changes are landed, update this to use the XE specific debugfs. + */ + res = igt_debugfs_simple_read(debugfs_fd, "i915_cdclk_info", + buf, sizeof(buf)); + if (res <= 0) + res = igt_debugfs_simple_read(debugfs_fd, "i915_frequency_info", + buf, sizeof(buf)); + igt_require(res > 0); + + igt_assert(start_loc = strstr(buf, "Max CD clock frequency: ")); + igt_assert_eq(sscanf(start_loc, "Max CD clock frequency: %d", &cdclk_freq_max), 1); + + return cdclk_freq_max; +} + static __u64 get_mode_data_rate(drmModeModeInfo *mode) { __u64 data_rate = (__u64)mode->hdisplay * (__u64)mode->vdisplay * (__u64)mode->vrefresh; @@ -250,7 +277,7 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); /* cdclk should bump */ - if (cdclk_new != MAX_CDCLK_4K) + if (cdclk_new != get_max_cdclk_freq(debugfs_fd)) igt_assert_lt(cdclk_ref, cdclk_new); /* cleanup */ @@ -348,7 +375,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); /* cdclk should bump */ - igt_assert_lt(cdclk_ref, cdclk_new); + if (cdclk_new != get_max_cdclk_freq(debugfs_fd)) + igt_assert_lt(cdclk_ref, cdclk_new); do_cleanup_display(display); igt_remove_fb(data->drm_fd, &fb); -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (5 preceding siblings ...) 2024-12-30 19:03 ` [PATCH i-g-t 6/6] tests/intel/kms_cdclk: Add get_max_cdclk_freq() Swati Sharma @ 2024-12-30 19:43 ` Patchwork 2024-12-30 19:47 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 9 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-12-30 19:43 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) URL : https://patchwork.freedesktop.org/series/142515/ State : success == Summary == CI Bug Log - changes from IGT_8172 -> IGTPW_12367 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/index.html Participating hosts (43 -> 39) ------------------------------ Additional (1): bat-rplp-1 Missing (5): bat-adlm-1 fi-snb-2520m fi-glk-j4005 bat-twl-1 fi-skl-6600u Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12367: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@basic-flip-vs-wf_vblank: - {bat-mtlp-9}: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8172/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html Known issues ------------ Here are the changes found in IGTPW_12367 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rplp-1: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-rplp-1: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-rplp-1: NOTRUN -> [SKIP][5] ([i915#3282]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-rplp-1: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@i915_pm_rps@basic-api.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [PASS][7] -> [DMESG-WARN][8] ([i915#12253]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8172/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-rplp-1: NOTRUN -> [SKIP][9] ([i915#4103] / [i915#4213]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-rplp-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-connector-state: - bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#4093]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_hdmi_inject@inject-audio: - bat-rplp-1: NOTRUN -> [SKIP][12] ([i915#4369]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr@psr-primary-page-flip: - bat-rplp-1: NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-rplp-1: NOTRUN -> [SKIP][15] ([i915#3708]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-rplp-1/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][16] ([i915#12061]) -> [PASS][17] +1 other test pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8172/bat-arlh-3/igt@i915_selftest@live@workarounds.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-arlh-3/igt@i915_selftest@live@workarounds.html - {bat-mtlp-9}: [ABORT][18] ([i915#12061]) -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8172/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/bat-mtlp-9/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4093 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4369]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4369 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8172 -> IGTPW_12367 * Linux: CI_DRM_15880 -> CI_DRM_15892 CI-20190529: 20190529 CI_DRM_15880: d574310669011e7ef8da6d7e17a2938cae06e077 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12367: 15e92e1b7ae0b4c0e860ddd36e13f7cf7664105e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8172: 9112581619aa198fa03041d5c7e18e02f42ac00f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/index.html ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (6 preceding siblings ...) 2024-12-30 19:43 ` ✓ i915.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) Patchwork @ 2024-12-30 19:47 ` Patchwork 2024-12-30 21:56 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-30 22:20 ` ✗ Xe.CI.Full: " Patchwork 9 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-12-30 19:47 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2572 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) URL : https://patchwork.freedesktop.org/series/142515/ State : success == Summary == CI Bug Log - changes from XEIGT_8172_BAT -> XEIGTPW_12367_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12367_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][1] ([Intel XE#3517]) -> [PASS][2] +2 other tests pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-WARN][3] ([Intel XE#1033]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [SKIP][5] ([Intel XE#455]) -> [PASS][6] +3 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8172 -> IGTPW_12367 * Linux: xe-2412-d574310669011e7ef8da6d7e17a2938cae06e077 -> xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 IGTPW_12367: 15e92e1b7ae0b4c0e860ddd36e13f7cf7664105e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8172: 9112581619aa198fa03041d5c7e18e02f42ac00f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2412-d574310669011e7ef8da6d7e17a2938cae06e077: d574310669011e7ef8da6d7e17a2938cae06e077 xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/index.html [-- Attachment #2: Type: text/html, Size: 3208 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (7 preceding siblings ...) 2024-12-30 19:47 ` ✓ Xe.CI.BAT: " Patchwork @ 2024-12-30 21:56 ` Patchwork 2024-12-30 22:20 ` ✗ Xe.CI.Full: " Patchwork 9 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-12-30 21:56 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) URL : https://patchwork.freedesktop.org/series/142515/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15892_full -> IGTPW_12367_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12367_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12367_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_12367/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12367_full: ### IGT changes ### #### Possible regressions #### * igt@gem_caching@writes: - shard-snb: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb2/igt@gem_caching@writes.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][2] -> [ABORT][3] +1 other test abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-2/igt@i915_suspend@basic-s3-without-i915.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-glk: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-glk8/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk6/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][6] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html #### Warnings #### * igt@kms_cdclk@mode-transition: - shard-mtlp: [SKIP][7] ([i915#7213] / [i915#9010]) -> [SKIP][8] +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-mtlp-8/igt@kms_cdclk@mode-transition.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-3/igt@kms_cdclk@mode-transition.html - shard-dg2: [SKIP][9] ([i915#11616] / [i915#7213]) -> [SKIP][10] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-7/igt@kms_cdclk@mode-transition.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: [SKIP][11] ([i915#4087]) -> [SKIP][12] +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-mtlp-2/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html New tests --------- New tests have been introduced between CI_DRM_15892_full and IGTPW_12367_full: ### New IGT tests (2) ### * igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-dp4: - Statuses : 1 pass(s) - Exec time: [0.87] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@b-dp4: - Statuses : 1 pass(s) - Exec time: [0.83] s Known issues ------------ Here are the changes found in IGTPW_12367_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8411]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8411]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8414]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-6/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#6335]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb2/igt@gem_ctx_persistence@smoketest.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-5/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][34] -> [DMESG-WARN][35] ([i915#12964]) +31 other tests dmesg-warn [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-2/igt@gem_eio@in-flight-suspend.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#13197] / [i915#13390]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk5/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][37] ([i915#8898]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb7/igt@gem_eio@unwedge-stress.html - shard-dg1: [PASS][38] -> [FAIL][39] ([i915#12714] / [i915#5784]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-17/igt@gem_eio@unwedge-stress.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4036]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@gem_exec_balancer@parallel.html - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4525]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][47] ([i915#11713]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-2/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#6344]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#5107]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +16 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3281]) +20 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][58] -> [INCOMPLETE][59] ([i915#11441] / [i915#13304]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][60] -> [INCOMPLETE][61] ([i915#11441]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-3/igt@gem_exec_suspend@basic-s0@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#2190]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-4/igt@gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][68] ([i915#4613]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][71] -> [TIMEOUT][72] ([i915#5493]) +1 other test timeout [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#284]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4083]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-5/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@gem_pread@self.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#13398]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#13398]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +1 other test timeout [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#4270]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][88] +316 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4079]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-5/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4885]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#13306]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk6/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4077]) +14 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][96] ([i915#13263]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb2/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4879]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3281] / [i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][109] ([i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6412]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][113] ([i915#2681]) +1 other test warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][114] -> [FAIL][115] ([i915#12739] / [i915#3591]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@i915_pm_rps@thresholds.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#4387]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@i915_pm_sseu@full-enable.html - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#4387]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#6188]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live: - shard-tglu: [PASS][120] -> [ABORT][121] ([i915#12061] / [i915#13010]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-tglu-3/igt@i915_selftest@live.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-3/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - shard-tglu: [PASS][122] -> [ABORT][123] ([i915#13010]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-tglu-3/igt@i915_selftest@live@sanitycheck.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-3/igt@i915_selftest@live@sanitycheck.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#4817]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk9/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#7707]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-5/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4215]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: NOTRUN -> [FAIL][130] ([i915#10991] / [i915#13335]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][131] ([i915#10991]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#12761]) +1 other test incomplete [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#8709]) +15 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#8709]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#8709]) +11 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [INCOMPLETE][136] ([i915#13287] / [i915#9878]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_async_flips@crc.html - shard-tglu: NOTRUN -> [INCOMPLETE][137] ([i915#13287] / [i915#9878]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][138] ([i915#13287]) +7 other tests crash [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html - shard-snb: NOTRUN -> [INCOMPLETE][139] ([i915#13287]) +1 other test incomplete [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [INCOMPLETE][140] ([i915#13287]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html - shard-rkl: NOTRUN -> [INCOMPLETE][141] ([i915#13287]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html * igt@kms_atomic_interruptible@legacy-dpms: - shard-dg1: [PASS][142] -> [DMESG-WARN][143] ([i915#4423]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-14/igt@kms_atomic_interruptible@legacy-dpms.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_atomic_interruptible@legacy-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [PASS][145] -> [FAIL][146] ([i915#5956]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5286]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5286]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#5286]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5286]) +6 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][152] -> [FAIL][153] ([i915#5138]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3638]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3638]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +14 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4538]) +8 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +200 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6095]) +49 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) +154 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6095]) +85 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#12805]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +19 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6095]) +39 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#12805]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#12805]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#6095]) +18 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#12313]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3742]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#4423] / [i915#7828]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][176] +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7828]) +12 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7828]) +12 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#7828]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#7828]) +12 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#7828]) +8 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#7828]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#7118] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3116]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3299]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3299]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#6944] / [i915#9424]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#9424]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#9424]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#9433]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#7116] / [i915#9424]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#7118] / [i915#9424]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#13049]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][196] ([i915#13049]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#13049]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8814]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555]) +7 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-glk: [PASS][201] -> [DMESG-WARN][202] ([i915#118] / [i915#1982]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-glk6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][205] +25 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9067]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9723]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][210] ([i915#12170]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][211] ([i915#11968]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9833]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3555]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8588]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555]) +6 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#12402]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#12402]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#8812]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#8812]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3840] / [i915#9053]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3469]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#4854]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][226] ([i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#658]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][228] ([i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3637]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#9934]) +12 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#9934]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3637]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-7/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [PASS][233] -> [FAIL][234] ([i915#11989]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3637]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#8381]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#8381]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-fences@a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][239] ([i915#12964]) +20 other tests dmesg-warn [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12745] / [i915#4839]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12745]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8810] / [i915#8813]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8810]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#2672]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672]) +6 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [PASS][256] -> [FAIL][257] ([i915#6880]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8708]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][259] ([i915#6880]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +25 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#1825]) +10 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-snb: [PASS][262] -> [SKIP][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][264] +57 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#5439]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +12 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#8708]) +25 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][268] +59 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5439]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9766]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9766]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9766]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9766]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#10433] / [i915#3458]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#3023]) +26 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#8708]) +16 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#1825]) +43 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3458]) +26 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#12713]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12713]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][286] -> [SKIP][287] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_histogram@algo-color: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#13389]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_histogram@algo-color.html * igt@kms_histogram@global-basic: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#13388]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-6/igt@kms_histogram@global-basic.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][290] -> [SKIP][291] ([i915#12388]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#12394]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12339]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12388]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#12388]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#12339]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#6301]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][298] +6 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-dg1: NOTRUN -> [DMESG-WARN][299] ([i915#4423]) +1 other test dmesg-warn [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#13026]) +1 other test incomplete [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][301] ([i915#10647] / [i915#12169]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][302] ([i915#10647]) +1 other test fail [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8821]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#6953]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][306] ([i915#6953]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#12247]) +13 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][308] ([i915#12247] / [i915#9423]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12247]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#12247]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247]) +14 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#12247] / [i915#6953]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#6953] / [i915#9423]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#3555]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#3555] / [i915#9423]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#12247]) +31 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#5354]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9812]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-10/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12343]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#5354]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9812]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3828]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#3361]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#9685]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#4281]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#8430]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#4077]) +14 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][331] -> [SKIP][332] ([i915#9519]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9519]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#9519]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][335] -> [SKIP][336] ([i915#12916]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9519]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][338] -> [SKIP][339] ([i915#9519]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#6524]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#6524] / [i915#6805]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-3/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][342] ([i915#11520]) +12 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12316]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#11520]) +11 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#11520]) +9 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#11520]) +5 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][347] ([i915#11520]) +12 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#11520]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +7 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9683]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#9683]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9683]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +29 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#9688]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-5/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#9732]) +13 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9732]) +10 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +17 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +27 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#9685]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9685]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#9685]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#4235]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#12755]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#5190]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#5289]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#5289]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#5289]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-snb: NOTRUN -> [SKIP][368] +439 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-snb7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#3555]) +12 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][370] ([i915#13179]) +1 other test abort [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk7/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#8623]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][372] ([i915#8623]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [PASS][373] -> [DMESG-WARN][374] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-4/igt@kms_vblank@query-forked-hang.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_vblank@query-forked-hang.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][375] -> [INCOMPLETE][376] ([i915#12276]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#11920]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][379] ([i915#9906]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#2437]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#2437]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][382] ([i915#2437]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][383] ([i915#2437]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][385] ([i915#2437]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][386] ([i915#2437]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#2434]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-4/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#2433]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-13/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [PASS][390] -> [FAIL][391] ([i915#4349]) +5 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-5/igt@perf_pmu@busy-idle@vcs0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-10/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@busy-idle@vcs1: - shard-mtlp: [PASS][392] -> [FAIL][393] ([i915#4349]) +3 other tests fail [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-mtlp-2/igt@perf_pmu@busy-idle@vcs1.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-1/igt@perf_pmu@busy-idle@vcs1.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][394] ([i915#12549] / [i915#6806]) +1 other test fail [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-18/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#8516]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][396] ([i915#3708] / [i915#4077]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3291] / [i915#3708]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-1/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][399] ([i915#3708]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-3/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][400] +70 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][401] ([i915#3708]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][402] ([i915#12910]) +28 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][403] ([i915#9917]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][404] ([i915#9917]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4: - shard-mtlp: NOTRUN -> [FAIL][405] ([i915#12910]) +8 other tests fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-mtlp-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][406] ([i915#7297]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-7/igt@gem_ccs@suspend-resume.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][408] ([i915#12392] / [i915#7297]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg2-11/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][410] ([i915#13363]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-tglu-7/igt@gem_eio@kms.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-6/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][412] ([i915#12543] / [i915#5784]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-13/igt@gem_eio@reset-stress.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-rkl: [DMESG-WARN][414] ([i915#12964]) -> [PASS][415] +21 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-5/igt@gem_exec_flush@basic-uc-prw-default.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-5/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][416] ([i915#7975] / [i915#8213]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-tglu: [SKIP][418] ([i915#4270]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-off-3.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [DMESG-WARN][420] -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][422] ([i915#3591]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rpm@gem-execbuf: - shard-rkl: [SKIP][424] ([i915#13328]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf.html * igt@i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][426] ([i915#4817]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15892/shard-glk1/igt@i915_suspend@debugfs-reader.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/shard-glk9/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@async-f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12367/index.html ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (8 preceding siblings ...) 2024-12-30 21:56 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-30 22:20 ` Patchwork 9 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-12-30 22:20 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84038 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) URL : https://patchwork.freedesktop.org/series/142515/ State : failure == Summary == CI Bug Log - changes from XEIGT_8172_full -> XEIGTPW_12367_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12367_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12367_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12367_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][1] +2 other tests incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][2] +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_flip@2x-absolute-wf_vblank.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-absolute-wf_vblank@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank@cd-hdmi-a6-dp4.html * igt@kms_vblank@ts-continuation-suspend: - shard-bmg: NOTRUN -> [FAIL][6] +2 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2: - shard-bmg: [INCOMPLETE][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][9] ([Intel XE#314]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: [SKIP][11] ([Intel XE#314]) -> [SKIP][12] +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling: - shard-lnl: [SKIP][13] ([Intel XE#1152]) -> [SKIP][14] +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-6/igt@kms_cdclk@plane-scaling.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: [SKIP][15] ([Intel XE#1152]) -> [SKIP][16] +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html New tests --------- New tests have been introduced between XEIGT_8172_full and XEIGTPW_12367_full: ### New IGT tests (10) ### * igt@kms_flip@blocking-wf_vblank@a-dp4: - Statuses : 1 pass(s) - Exec time: [4.36] s * igt@kms_flip@blocking-wf_vblank@b-dp4: - Statuses : 1 pass(s) - Exec time: [4.36] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-dp4: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp4: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-dp4: - Statuses : 1 pass(s) - Exec time: [0.77] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@b-dp4: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-dp4: - Statuses : 1 pass(s) - Exec time: [0.99] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@b-dp4: - Statuses : 1 pass(s) - Exec time: [1.00] s * igt@kms_flip@plain-flip-fb-recreate@a-dp4: - Statuses : 1 pass(s) - Exec time: [4.28] s * igt@kms_flip@plain-flip-fb-recreate@b-dp4: - Statuses : 1 pass(s) - Exec time: [4.27] s Known issues ------------ Here are the changes found in XEIGTPW_12367_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4: - shard-dg2-set2: [PASS][17] -> [FAIL][18] ([Intel XE#3908]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2550]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs.html * igt@kms_atomic@plane-invalid-params: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2423] / [i915#2575]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_atomic@plane-invalid-params.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2385]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2370]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-transition-nonblocking: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3007]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition-nonblocking.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1407]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2327]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#316]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +13 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1428]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2328]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#610]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2314] / [Intel XE#2894]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#367]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#367]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#367]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1512]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-8/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2907]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-b-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#787]) +107 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-b-dp-5.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3432]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#3432]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2887]) +18 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#2136]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-5.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2724]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2325]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_chamelium_color@ctm-0-25.html - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#306]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@gamma: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#306]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-5/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2252]) +13 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#373]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#307]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2390]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#307]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#1178]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2341]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#1188]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2320]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2321]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2321]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1424]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#308]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#309]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#877]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1508]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2323]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2244]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2244]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2372]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2374]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#301]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2597]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1421]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [INCOMPLETE][83] ([Intel XE#1504]) +1 other test incomplete [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#886]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][86] -> [FAIL][87] ([Intel XE#301]) +4 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp5: - shard-dg2-set2: [PASS][88] -> [FAIL][89] ([Intel XE#3321]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp5.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp5.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: - shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#3321]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][92] ([Intel XE#2597]) +1 other test incomplete [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#455]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2293]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#352]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-5/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) +50 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#2333]) +24 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#651]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2136]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +42 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#656]) +21 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#653]) +9 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2340]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1503]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2927]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2927]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2486]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@kms_panel_fitting@legacy.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][117] -> [FAIL][118] ([Intel XE#616]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_plane_cursor@viewport.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@kms_plane_cursor@viewport.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2393]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2763]) +19 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#870]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#870]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2391]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3309]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][126] ([Intel XE#1430]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2446]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms.html - shard-dg2-set2: [PASS][128] -> [SKIP][129] ([Intel XE#2446]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2893]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1489]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1489]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2387]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1128]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2234] / [Intel XE#2850]) +22 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1406]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2414]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#3414]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2330]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1127]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2413]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#330]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#330]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@wait-busy-hang: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#3007]) +9 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@kms_vblank@wait-busy-hang.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2168]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_vrr@lobf.html - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2168]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1499]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][151] -> [FAIL][152] ([Intel XE#2142]) +1 other test fail [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#756]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#756]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1447]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1126]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_drm_fdinfo@utilization-others-full-load: - shard-bmg: NOTRUN -> [FAIL][157] ([Intel XE#3869]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@xe_drm_fdinfo@utilization-others-full-load.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +14 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2905]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2905]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#688]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][162] ([Intel XE#1473]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][163] ([Intel XE#1473] / [Intel XE#2472]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-large-multi-vm: - shard-bmg: [PASS][164] -> [SKIP][165] ([Intel XE#1130]) +20 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-7/igt@xe_evict@evict-threads-large-multi-vm.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@xe_evict@evict-threads-large-multi-vm.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1392]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2322]) +15 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#288]) +13 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_threads@threads-bal-shared-vm-rebind: - shard-dg2-set2: [PASS][169] -> [INCOMPLETE][170] ([Intel XE#1169]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@xe_exec_threads@threads-bal-shared-vm-rebind.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@xe_exec_threads@threads-bal-shared-vm-rebind.html * igt@xe_exec_threads@threads-hang-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1130]) +11 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2229]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2459] / [Intel XE#2596]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@xe_media_fill@media-fill.html - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#560]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@xe_media_fill@media-fill.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1416]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-4/igt@xe_mmap@vram.html * igt@xe_oa@buffer-fill: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@xe_oa@buffer-fill.html * igt@xe_oa@polling: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#1130]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_oa@polling.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2427]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@xe_peer2peer@write.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2284]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][180] -> [SKIP][181] ([Intel XE#1130]) +23 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@xe_pm@s3-basic-exec.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2284] / [Intel XE#366]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#584]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-8/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-mocs: - shard-bmg: NOTRUN -> [INCOMPLETE][184] ([Intel XE#569]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@xe_pm@s3-mocs.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#579]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#944]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#944]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#3342]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-lnl: [DMESG-WARN][189] -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-7/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][191] ([Intel XE#1727]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][193] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][195] ([Intel XE#3878]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][197] ([Intel XE#1475]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-set2: [INCOMPLETE][199] -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][201] ([Intel XE#2882]) -> [PASS][202] +2 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][203] ([Intel XE#301]) -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][205] ([Intel XE#3321]) -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][207] ([Intel XE#2597]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][209] ([Intel XE#2635]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][211] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [INCOMPLETE][213] ([Intel XE#2049]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [FAIL][215] ([Intel XE#886]) -> [PASS][216] +4 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [INCOMPLETE][217] -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][219] ([Intel XE#1035]) -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@kms_plane@plane-panning-bottom-right-suspend.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][221] ([Intel XE#718]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][223] ([Intel XE#899]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][225] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind: - shard-dg2-set2: [FAIL][227] -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html * igt@xe_exec_reset@gt-reset-stress: - shard-bmg: [DMESG-WARN][229] -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@xe_exec_reset@gt-reset-stress.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][231] ([Intel XE#3546]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@xe_module_load@reload.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@xe_module_load@reload.html - shard-bmg: [FAIL][233] ([Intel XE#3625]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@xe_module_load@reload.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@xe_module_load@reload.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [FAIL][235] -> [PASS][236] +2 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@xe_pm_residency@gt-c6-freeze@gt1.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt1.html #### Warnings #### * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][237] ([Intel XE#607]) -> [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][239] ([Intel XE#607]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2351]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][241] ([Intel XE#1124]) -> [SKIP][242] ([Intel XE#2136]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-bmg: [SKIP][243] ([Intel XE#1124]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2231]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][245] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][246] ([Intel XE#2136]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][247] ([Intel XE#2887]) -> [SKIP][248] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][249] ([Intel XE#2325]) -> [SKIP][250] ([Intel XE#3007]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@kms_chamelium_color@ctm-negative.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html - shard-dg2-set2: [SKIP][251] ([Intel XE#306]) -> [SKIP][252] ([Intel XE#2423] / [i915#2575]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_chamelium_color@ctm-negative.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@vga-edid-read: - shard-dg2-set2: [SKIP][253] ([Intel XE#373]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_chamelium_edid@vga-edid-read.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_chamelium_edid@vga-edid-read.html - shard-bmg: [SKIP][255] ([Intel XE#2252]) -> [SKIP][256] ([Intel XE#3007]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-4/igt@kms_chamelium_edid@vga-edid-read.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][257] ([Intel XE#2341]) -> [SKIP][258] ([Intel XE#3007]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-4/igt@kms_content_protection@content-type-change.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][259] ([Intel XE#2311]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][261] ([Intel XE#651]) -> [SKIP][262] ([Intel XE#2136]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-bmg: [INCOMPLETE][263] ([Intel XE#2050]) -> [FAIL][264] ([Intel XE#2333]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][265] ([Intel XE#2313]) -> [SKIP][266] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html - shard-dg2-set2: [SKIP][267] ([Intel XE#653]) -> [SKIP][268] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2-set2: [SKIP][269] ([Intel XE#455]) -> [SKIP][270] ([Intel XE#2136]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][271] ([Intel XE#653]) -> [SKIP][272] ([Intel XE#2136]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][273] ([Intel XE#2934]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: [SKIP][275] ([Intel XE#2925]) -> [SKIP][276] ([Intel XE#2136]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][277] ([Intel XE#1489]) -> [SKIP][278] ([Intel XE#2136] / [Intel XE#2231]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][279] ([Intel XE#1489]) -> [SKIP][280] ([Intel XE#2136]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][281] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@kms_psr@fbc-psr-suspend.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_psr@fbc-psr-suspend.html - shard-dg2-set2: [SKIP][283] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@kms_psr@fbc-psr-suspend.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_psr@fbc-psr-suspend.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][285] ([Intel XE#3414]) -> [SKIP][286] ([Intel XE#3414] / [Intel XE#3904]) +7 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-lnl: [SKIP][287] ([Intel XE#3414]) -> [SKIP][288] ([Intel XE#3414] / [Intel XE#3904]) +11 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][289] ([Intel XE#1127]) -> [SKIP][290] ([Intel XE#2423] / [i915#2575]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: [SKIP][291] ([Intel XE#455]) -> [SKIP][292] ([Intel XE#2423] / [i915#2575]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full.html - shard-bmg: [SKIP][293] ([Intel XE#2413]) -> [SKIP][294] ([Intel XE#3007]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][295] ([Intel XE#1729]) -> [SKIP][296] ([Intel XE#362]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][297] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-bmg: [SKIP][299] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][300] ([Intel XE#3007]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_ccs@suspend-resume: - shard-bmg: [INCOMPLETE][301] ([Intel XE#3918]) -> [INCOMPLETE][302] ([Intel XE#2771] / [Intel XE#3918]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-1/igt@xe_ccs@suspend-resume.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@xe_ccs@suspend-resume.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][303] ([Intel XE#1123]) -> [SKIP][304] ([Intel XE#1130]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_eudebug_online@interrupt-other: - shard-bmg: [SKIP][305] ([Intel XE#2905]) -> [SKIP][306] ([Intel XE#1130]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-8/igt@xe_eudebug_online@interrupt-other.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@xe_eudebug_online@interrupt-other.html - shard-dg2-set2: [SKIP][307] ([Intel XE#2905]) -> [SKIP][308] ([Intel XE#1130]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@xe_eudebug_online@interrupt-other.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_eudebug_online@interrupt-other.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [DMESG-FAIL][309] -> [FAIL][310] ([Intel XE#1000]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_exec_fault_mode@once-rebind-prefetch: - shard-dg2-set2: [SKIP][311] ([Intel XE#288]) -> [SKIP][312] ([Intel XE#1130]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind-prefetch.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-prefetch.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][313] ([Intel XE#3765]) -> [SKIP][314] ([Intel XE#1130]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html - shard-dg2-set2: [ABORT][315] ([Intel XE#3421]) -> [SKIP][316] ([Intel XE#1130]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8172/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3765 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#3878]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3878 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8172 -> IGTPW_12367 * Linux: xe-2412-d574310669011e7ef8da6d7e17a2938cae06e077 -> xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 IGTPW_12367: 15e92e1b7ae0b4c0e860ddd36e13f7cf7664105e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8172: 9112581619aa198fa03041d5c7e18e02f42ac00f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2412-d574310669011e7ef8da6d7e17a2938cae06e077: d574310669011e7ef8da6d7e17a2938cae06e077 xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12367/index.html [-- Attachment #2: Type: text/html, Size: 99575 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2025-02-03 14:13 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-30 19:03 [PATCH i-g-t 0/6] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2024-12-30 19:03 ` [PATCH i-g-t 1/6] lib/igt_kms: Add highres() and lowres() func Swati Sharma 2025-01-27 11:32 ` Reddy Guddati, Santhosh 2025-01-28 5:51 ` Reddy Guddati, Santhosh 2025-02-03 13:47 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 2/6] tests/intel/kms_cdclk: Modify highest resolution restriction Swati Sharma 2024-12-30 19:03 ` [PATCH i-g-t 3/6] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma 2025-02-03 14:05 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 4/6] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma 2025-02-03 14:11 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 5/6] tests/intel/kms_cdclk.c: Modify skip condition Swati Sharma 2025-02-03 14:12 ` Nautiyal, Ankit K 2024-12-30 19:03 ` [PATCH i-g-t 6/6] tests/intel/kms_cdclk: Add get_max_cdclk_freq() Swati Sharma 2024-12-30 19:43 ` ✓ i915.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev2) Patchwork 2024-12-30 19:47 ` ✓ Xe.CI.BAT: " Patchwork 2024-12-30 21:56 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-30 22:20 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox