* [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues.
@ 2024-07-18 14:05 Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments Naladala Ramanaidu
` (10 more replies)
0 siblings, 11 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-07-18 14:05 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, Naladala Ramanaidu
Find display mode fitting within bandwidth constraints for scaling
operations
Naladala Ramanaidu (5):
tests/kms_plane_scaling: Update the single plane scaling function
arguments
tests/kms_plane_scaling: Update the multi plane scaling function
arguments
tests/kms_plane_scaling: Find display mode fitting in BW
tests/kms_plane_scaling: Find display mode fitting in BW for rotations
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 201 ++++----------
tests/intel-ci/xe-fast-feedback.testlist | 317 ++++-------------------
tests/kms_plane_scaling.c | 278 +++++++++++---------
3 files changed, 256 insertions(+), 540 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
@ 2024-07-18 14:05 ` Naladala Ramanaidu
2024-07-18 14:22 ` Nautiyal, Ankit K
2024-07-18 14:05 ` [PATCH i-g-t v7 2/5] tests/kms_plane_scaling: Update the multi " Naladala Ramanaidu
` (9 subsequent siblings)
10 siblings, 1 reply; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-07-18 14:05 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, Naladala Ramanaidu
Update the helper test_scaler_with_modifier_pipe,
test_scaler_with_rotation_pipe and test_scaler_with_pixel_format_pipe
to use a scaling_factor and is_clip_clamp flag instead of explicit
width and height parameters. This change simplifies the function interfaces
and allows for testing scenarios, where we need to recalculate the width
and height based on the display mode. Adjusted all function calls to match
new argument order.
v2: Update the function arguments (Ankit)
v3: Remove unwanted changes (Ankit)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 81 +++++++++++++++++++++++----------------
1 file changed, 48 insertions(+), 33 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 3f63d3cf4..450381831 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -569,7 +569,8 @@ static void cleanup_crtc(data_t *data)
static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
uint32_t pixel_format,
uint64_t modifier,
- int width, int height,
+ double sf_plane,
+ bool is_clip_clamp,
bool is_upscale,
enum pipe pipe,
igt_output_t *output,
@@ -579,8 +580,16 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
drmModeModeInfo *mode;
int commit_ret;
int w, h;
+ int width, height;
mode = igt_output_get_mode(output);
+ if (is_clip_clamp == true) {
+ width = mode->hdisplay + 100;
+ height = mode->vdisplay + 100;
+ } else {
+ width = get_width(mode, sf_plane);
+ height = get_height(mode, sf_plane);
+ }
if (is_upscale) {
w = width;
@@ -693,7 +702,8 @@ static const uint64_t modifiers[] = {
};
static void test_scaler_with_modifier_pipe(data_t *d,
- int width, int height,
+ double sf_plane,
+ bool is_clip_clamp,
bool is_upscale,
enum pipe pipe,
igt_output_t *output)
@@ -716,7 +726,8 @@ static void test_scaler_with_modifier_pipe(data_t *d,
if (igt_plane_has_format_mod(plane, format, modifier))
check_scaling_pipe_plane_rot(d, plane,
format, modifier,
- width, height,
+ sf_plane,
+ is_clip_clamp,
is_upscale,
pipe, output,
IGT_ROTATION_0);
@@ -725,7 +736,8 @@ static void test_scaler_with_modifier_pipe(data_t *d,
}
static void test_scaler_with_rotation_pipe(data_t *d,
- int width, int height,
+ double sf_plane,
+ bool is_clip_clamp,
bool is_upscale,
enum pipe pipe,
igt_output_t *output)
@@ -749,7 +761,8 @@ static void test_scaler_with_rotation_pipe(data_t *d,
if (igt_plane_has_rotation(plane, rot))
check_scaling_pipe_plane_rot(d, plane,
format, modifier,
- width, height,
+ sf_plane,
+ is_clip_clamp,
is_upscale,
pipe, output,
rot);
@@ -757,8 +770,11 @@ static void test_scaler_with_rotation_pipe(data_t *d,
}
}
-static void test_scaler_with_pixel_format_pipe(data_t *d, int width, int height, bool is_upscale,
- enum pipe pipe, igt_output_t *output)
+static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
+ bool is_clip_clamp,
+ bool is_upscale,
+ enum pipe pipe,
+ igt_output_t *output)
{
igt_display_t *display = &d->display;
uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
@@ -787,9 +803,11 @@ static void test_scaler_with_pixel_format_pipe(data_t *d, int width, int height,
can_scale(d, format))
check_scaling_pipe_plane_rot(d, plane,
format, modifier,
- width, height,
+ sf_plane,
+ is_clip_clamp,
is_upscale,
- pipe, output, IGT_ROTATION_0);
+ pipe, output,
+ IGT_ROTATION_0);
}
igt_vec_fini(&tested_formats);
@@ -1307,13 +1325,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
test_scaler_with_pixel_format_pipe(&data,
- get_width(mode, scaler_with_pixel_format_tests[index].sf),
- get_height(mode, scaler_with_pixel_format_tests[index].sf),
- scaler_with_pixel_format_tests[index].is_upscale,
- pipe, output);
+ scaler_with_pixel_format_tests[index].sf,
+ false,
+ scaler_with_pixel_format_tests[index].is_upscale,
+ pipe, output);
}
break;
}
@@ -1332,13 +1349,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
test_scaler_with_rotation_pipe(&data,
- get_width(mode, scaler_with_rotation_tests[index].sf),
- get_height(mode, scaler_with_rotation_tests[index].sf),
- scaler_with_rotation_tests[index].is_upscale,
- pipe, output);
+ scaler_with_rotation_tests[index].sf,
+ false,
+ scaler_with_rotation_tests[index].is_upscale,
+ pipe, output);
}
break;
}
@@ -1357,13 +1373,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
test_scaler_with_modifier_pipe(&data,
- get_width(mode, scaler_with_modifiers_tests[index].sf),
- get_height(mode, scaler_with_modifiers_tests[index].sf),
- scaler_with_modifiers_tests[index].is_upscale,
- pipe, output);
+ scaler_with_modifiers_tests[index].sf,
+ false,
+ scaler_with_modifiers_tests[index].is_upscale,
+ pipe, output);
}
break;
}
@@ -1381,10 +1396,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
- test_scaler_with_pixel_format_pipe(&data, mode->hdisplay + 100,
- mode->vdisplay + 100, false, pipe, output);
+ test_scaler_with_pixel_format_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
}
break;
}
@@ -1401,10 +1416,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
- test_scaler_with_rotation_pipe(&data, mode->hdisplay + 100,
- mode->vdisplay + 100, false, pipe, output);
+ test_scaler_with_rotation_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
}
break;
}
@@ -1421,9 +1436,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
- test_scaler_with_modifier_pipe(&data, mode->hdisplay + 100,
- mode->vdisplay + 100, false, pipe, output);
+ test_scaler_with_modifier_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
}
break;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v7 2/5] tests/kms_plane_scaling: Update the multi plane scaling function arguments
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments Naladala Ramanaidu
@ 2024-07-18 14:05 ` Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 3/5] tests/kms_plane_scaling: Find display mode fitting in BW Naladala Ramanaidu
` (8 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-07-18 14:05 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, Naladala Ramanaidu
Update the helper test_planes_scaling_combo to use a scaling_factor
for plane1 and plane2 instead of explicit width and height parameters.
This change simplifies the function interfaces and allows for testing
scenarios, where we need to recalculate the width and height based on
the display mode. Adjusted all function calls to match new argument
order.
v2: Update the function arguments (Ankit)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_plane_scaling.c | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 450381831..84812430a 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -911,19 +911,27 @@ static void setup_fb(int fd, int width, int height, struct igt_fb *fb)
}
static void
-test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
- enum pipe pipe, igt_output_t *output,
+test_planes_scaling_combo(data_t *d, double sf_plane1,
+ double sf_plane2,
+ enum pipe pipe,
+ igt_output_t *output,
enum scaler_combo_test_type test_type)
{
igt_display_t *display = &d->display;
drmModeModeInfo *mode;
int n_planes;
+ int w1, h1, w2, h2;
cleanup_crtc(d);
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
+ w1 = get_width(mode, sf_plane1);
+ h1 = get_height(mode, sf_plane1);
+ w2 = get_width(mode, sf_plane2);
+ h2 = get_height(mode, sf_plane2);
+
n_planes = display->pipes[pipe].n_planes;
igt_require(n_planes >= 2);
@@ -1456,14 +1464,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode = igt_output_get_mode(output);
test_planes_scaling_combo(&data,
- get_width(mode, scaler_with_2_planes_tests[index].sf_plane1),
- get_height(mode, scaler_with_2_planes_tests[index].sf_plane1),
- get_width(mode, scaler_with_2_planes_tests[index].sf_plane2),
- get_height(mode, scaler_with_2_planes_tests[index].sf_plane2),
- pipe, output, scaler_with_2_planes_tests[index].test_type);
+ scaler_with_2_planes_tests[index].sf_plane1,
+ scaler_with_2_planes_tests[index].sf_plane2,
+ pipe, output,
+ scaler_with_2_planes_tests[index].test_type);
}
break;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v7 3/5] tests/kms_plane_scaling: Find display mode fitting in BW
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 2/5] tests/kms_plane_scaling: Update the multi " Naladala Ramanaidu
@ 2024-07-18 14:05 ` Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 4/5] tests/kms_plane_scaling: Find display mode fitting in BW for rotations Naladala Ramanaidu
` (7 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-07-18 14:05 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, Naladala Ramanaidu,
Kamil Konieczny
Ensure compatibility with driver scaling restrictions by setting
lower resolution for downscaling. Adjust test_planes_scaling_combo
function to lower resolution when cdclk requirements exceed
platform limits. Address issues caused by cdclk exceeding platform
capabilities.
Example for failure:
[drm:intel_compute_min_cdclk [xe]] required cdclk (1066500 kHz) exceeds max (652800 kHz)
v2: Fix some styling issues in the patch (Ankit)
v3: Split single plane and multi plane scaling
functions arguments in separate patch (Ankit)
v4: Split single plane and multi plane scaling
functions in separate patch (Ankit)
v5: Add return value to function __test_planes_scaling_combo,
update test_planes_scaling_combo function, and add
igt_debug prints
v6: Update commit subject/message and add return value on the
igt_skp and igt_debug print (Kamil)
v7: Update message string to single line (Ankit)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_plane_scaling.c | 104 ++++++++++++++++++++------------------
1 file changed, 56 insertions(+), 48 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 84812430a..af255aa7c 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -855,7 +855,7 @@ find_connected_pipe(igt_display_t *display, bool second, igt_output_t **output)
return pipe;
}
-static void
+static int
__test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
enum pipe pipe, igt_output_t *output,
igt_plane_t *p1, igt_plane_t *p2,
@@ -897,9 +897,10 @@ __test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
igt_plane_set_fb(p1, NULL);
igt_plane_set_fb(p2, NULL);
- igt_skip_on_f(ret == -EINVAL || ret == -ERANGE,
- "Scaling op not supported by driver\n");
- igt_assert_eq(ret, 0);
+ if (ret == -EINVAL || ret == -ERANGE)
+ igt_debug("Scaling op not supported by driver with %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ return ret;
}
static void setup_fb(int fd, int width, int height, struct igt_fb *fb)
@@ -921,59 +922,66 @@ test_planes_scaling_combo(data_t *d, double sf_plane1,
drmModeModeInfo *mode;
int n_planes;
int w1, h1, w2, h2;
+ int ret;
cleanup_crtc(d);
igt_output_set_pipe(output, pipe);
- mode = igt_output_get_mode(output);
-
- w1 = get_width(mode, sf_plane1);
- h1 = get_height(mode, sf_plane1);
- w2 = get_width(mode, sf_plane2);
- h2 = get_height(mode, sf_plane2);
-
- n_planes = display->pipes[pipe].n_planes;
- igt_require(n_planes >= 2);
-
- switch (test_type) {
- case TEST_PLANES_UPSCALE:
- setup_fb(display->drm_fd, w1, h1, &d->fb[1]);
- setup_fb(display->drm_fd, w2, h2, &d->fb[2]);
- break;
- case TEST_PLANES_DOWNSCALE:
- setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[1]);
- setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[2]);
- break;
- case TEST_PLANES_UPSCALE_DOWNSCALE:
- setup_fb(display->drm_fd, w1, h1, &d->fb[1]);
- setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[2]);
- break;
- case TEST_PLANES_DOWNSCALE_UPSCALE:
- setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[1]);
- setup_fb(display->drm_fd, w2, h2, &d->fb[2]);
- break;
- default:
- igt_assert(0);
- }
+ for_each_connector_mode(output) {
+ mode = &output->config.connector->modes[j__];
+ igt_output_override_mode(output, mode);
+ igt_debug("Trying mode %dx%d\n",
+ mode->hdisplay, mode->vdisplay);
+ w1 = get_width(mode, sf_plane1);
+ h1 = get_height(mode, sf_plane1);
+ w2 = get_width(mode, sf_plane2);
+ h2 = get_height(mode, sf_plane2);
+
+ n_planes = display->pipes[pipe].n_planes;
+ igt_require(n_planes >= 2);
+
+ switch (test_type) {
+ case TEST_PLANES_UPSCALE:
+ setup_fb(display->drm_fd, w1, h1, &d->fb[1]);
+ setup_fb(display->drm_fd, w2, h2, &d->fb[2]);
+ break;
+ case TEST_PLANES_DOWNSCALE:
+ setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[1]);
+ setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[2]);
+ break;
+ case TEST_PLANES_UPSCALE_DOWNSCALE:
+ setup_fb(display->drm_fd, w1, h1, &d->fb[1]);
+ setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[2]);
+ break;
+ case TEST_PLANES_DOWNSCALE_UPSCALE:
+ setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, &d->fb[1]);
+ setup_fb(display->drm_fd, w2, h2, &d->fb[2]);
+ break;
+ default:
+ igt_assert(0);
+ }
- for (int k = 0; k < n_planes - 1; k += 2) {
- igt_plane_t *p1, *p2;
+ for (int k = 0; k < n_planes - 1; k += 2) {
+ igt_plane_t *p1, *p2;
- p1 = &display->pipes[pipe].planes[k];
- igt_require(p1);
- p2 = &display->pipes[pipe].planes[k+1];
- igt_require(p2);
+ p1 = &display->pipes[pipe].planes[k];
+ igt_require(p1);
+ p2 = &display->pipes[pipe].planes[k+1];
+ igt_require(p2);
- if (p1->type == DRM_PLANE_TYPE_CURSOR || p2->type == DRM_PLANE_TYPE_CURSOR)
+ if (p1->type == DRM_PLANE_TYPE_CURSOR || p2->type == DRM_PLANE_TYPE_CURSOR)
continue;
-
- __test_planes_scaling_combo(d, w1, h1, w2, h2,
- pipe, output, p1, p2,
- &d->fb[1], &d->fb[2],
- test_type);
+ ret = __test_planes_scaling_combo(d, w1, h1, w2, h2,
+ pipe, output, p1, p2,
+ &d->fb[1], &d->fb[2],
+ test_type);
+ if (ret != 0)
+ break;
+ }
+ cleanup_fbs(d);
}
-
- cleanup_fbs(d);
+ igt_skip_on_f(ret == -EINVAL || ret == -ERANGE, "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
static void
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v7 4/5] tests/kms_plane_scaling: Find display mode fitting in BW for rotations
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (2 preceding siblings ...)
2024-07-18 14:05 ` [PATCH i-g-t v7 3/5] tests/kms_plane_scaling: Find display mode fitting in BW Naladala Ramanaidu
@ 2024-07-18 14:05 ` Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 5/5] HAX patch do not merge Naladala Ramanaidu
` (6 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-07-18 14:05 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, Naladala Ramanaidu,
Kamil Konieczny
Anticipating bandwidth issues, we expect many tests to fail. To
address these failures, we will switch to the next lower display
mode. Some higher display modes will be identified as insufficient
for downscaling operations on plane scaling. As a solution, we
will implement a fix: When bandwidth is inadequate for current
modes, the test will automatically attempt the next lower
display mode.
Example for failure:
[drm:intel_compute_min_cdclk [xe]] required cdclk (1066500 kHz) exceeds max (652800 kHz)
v2: Fix some styling issues in the patch (Ankit)
v3: Split single plane and multi plane scaling
functions arguments in separate patch (Ankit)
v4: Split single plane and multi plane scaling
functions in separate patch (Ankit)
v5: Update check_scaling_pipe_plane_rot to handle
scaling mode failure by trying next lower mode
v6: Update commit subject/message and add driver return value
in igt_debug and igt_skip print (kamil)
v7: Update message string to single line (Ankit)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_plane_scaling.c | 93 +++++++++++++++++++++------------------
1 file changed, 51 insertions(+), 42 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index af255aa7c..90bfb0047 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -582,53 +582,62 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
int w, h;
int width, height;
- mode = igt_output_get_mode(output);
- if (is_clip_clamp == true) {
- width = mode->hdisplay + 100;
- height = mode->vdisplay + 100;
- } else {
- width = get_width(mode, sf_plane);
- height = get_height(mode, sf_plane);
- }
-
- if (is_upscale) {
- w = width;
- h = height;
- } else {
- w = mode->hdisplay;
- h = mode->vdisplay;
- }
-
- /*
- * guarantee even value width/height to avoid fractional
- * uv component in chroma subsampling for yuv 4:2:0 formats
- * */
- w = ALIGN(w, 2);
- h = ALIGN(h, 2);
-
- igt_create_fb(display->drm_fd, w, h, pixel_format, modifier, &d->fb[0]);
-
- igt_plane_set_fb(plane, &d->fb[0]);
- igt_fb_set_position(&d->fb[0], plane, 0, 0);
- igt_fb_set_size(&d->fb[0], plane, w, h);
- igt_plane_set_position(plane, 0, 0);
+ for_each_connector_mode(output) {
+ mode = &output->config.connector->modes[j__];
+ igt_debug("Trying mode %dx%d\n",
+ mode->hdisplay, mode->vdisplay);
- if (is_upscale)
- igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
- else
- igt_plane_set_size(plane, width, height);
+ if (is_clip_clamp == true) {
+ width = mode->hdisplay + 100;
+ height = mode->vdisplay + 100;
+ } else {
+ width = get_width(mode, sf_plane);
+ height = get_height(mode, sf_plane);
+ }
- if (rot != IGT_ROTATION_0)
- igt_plane_set_rotation(plane, rot);
- commit_ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ if (is_upscale) {
+ w = width;
+ h = height;
+ } else {
+ w = mode->hdisplay;
+ h = mode->vdisplay;
+ }
- igt_plane_set_fb(plane, NULL);
- igt_plane_set_position(plane, 0, 0);
- cleanup_fbs(d);
+ /*
+ * guarantee even value width/height to avoid fractional
+ * uv component in chroma subsampling for yuv 4:2:0 formats
+ */
+ w = ALIGN(w, 2);
+ h = ALIGN(h, 2);
+
+ igt_create_fb(display->drm_fd, w, h, pixel_format, modifier, &d->fb[0]);
+
+ igt_plane_set_fb(plane, &d->fb[0]);
+ igt_fb_set_position(&d->fb[0], plane, 0, 0);
+ igt_fb_set_size(&d->fb[0], plane, w, h);
+ igt_plane_set_position(plane, 0, 0);
+
+ if (is_upscale)
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+ else
+ igt_plane_set_size(plane, width, height);
+
+ if (rot != IGT_ROTATION_0)
+ igt_plane_set_rotation(plane, rot);
+ commit_ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ if (commit_ret == -ERANGE || commit_ret == -EINVAL)
+ igt_debug("Unsupported scaling factor with fb size %dx%d with return value %s\n",
+ w, h, (commit_ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_plane_set_fb(plane, NULL);
+ igt_plane_set_position(plane, 0, 0);
+ cleanup_fbs(d);
+ if (commit_ret == 0)
+ break;
+ }
igt_skip_on_f(commit_ret == -ERANGE || commit_ret == -EINVAL,
- "Unsupported scaling factor with fb size %dx%d\n",
- w, h);
+ "Unsupported scaling operation in driver with return value %s\n",
+ (commit_ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
igt_assert_eq(commit_ret, 0);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v7 5/5] HAX patch do not merge
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (3 preceding siblings ...)
2024-07-18 14:05 ` [PATCH i-g-t v7 4/5] tests/kms_plane_scaling: Find display mode fitting in BW for rotations Naladala Ramanaidu
@ 2024-07-18 14:05 ` Naladala Ramanaidu
2024-07-18 14:24 ` [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Nautiyal, Ankit K
` (5 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-07-18 14:05 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, Naladala Ramanaidu
HAX patch do not merge
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 201 ++++----------
tests/intel-ci/xe-fast-feedback.testlist | 317 ++++-------------------
2 files changed, 98 insertions(+), 420 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..e90aeb634 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,158 +1,55 @@
# Try to load the driver if it's not available yet.
igt@i915_module_load@load
-# Keep alphabetically sorted by default
-igt@core_auth@basic-auth
-igt@debugfs_test@read_all_entries
-igt@debugfs_test@basic-hwmon
-igt@debugfs_test@sysfs
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-igt@gem_basic@bad-close
-igt@gem_basic@create-close
-igt@gem_basic@create-fd-close
-igt@gem_busy@busy@all-engines
-igt@gem_close_race@basic-process
-igt@gem_close_race@basic-threads
-igt@gem_ctx_create@basic
-igt@gem_ctx_create@basic-files
-igt@gem_ctx_exec@basic
-igt@gem_exec_basic@basic
-igt@gem_exec_create@basic
-igt@gem_exec_fence@basic-busy
-igt@gem_exec_fence@basic-wait
-igt@gem_exec_fence@basic-await
-igt@gem_exec_fence@nb-await
-igt@gem_exec_gttfill@basic
-igt@gem_exec_parallel@engines
-igt@gem_exec_store@basic
-igt@gem_flink_basic@bad-flink
-igt@gem_flink_basic@bad-open
-igt@gem_flink_basic@basic
-igt@gem_flink_basic@double-flink
-igt@gem_flink_basic@flink-lifetime
-igt@gem_huc_copy@huc-copy
-igt@gem_linear_blits@basic
-igt@gem_mmap@basic
-igt@gem_mmap_gtt@basic
-igt@gem_render_linear_blits@basic
-igt@gem_render_tiled_blits@basic
-igt@gem_ringfill@basic-all
-igt@gem_softpin@allocator-basic
-igt@gem_softpin@allocator-basic-reserve
-igt@gem_softpin@safe-alignment
-igt@gem_sync@basic-all
-igt@gem_sync@basic-each
-igt@gem_tiled_blits@basic
-igt@gem_tiled_fence_blits@basic
-igt@gem_tiled_pread_basic
-igt@gem_wait@busy@all-engines
-igt@gem_wait@wait@all-engines
-igt@i915_getparams_basic@basic-eu-total
-igt@i915_getparams_basic@basic-subslice-total
-igt@i915_hangman@error-state-basic
-igt@i915_pciid
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@basic-y-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@bo-too-small-due-to-tiling
-igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@framebuffer-vs-set-tiling
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@tile-pitch-mismatch
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_busy@basic
-igt@kms_prop_blob@basic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@force-load-detect
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pm_backlight@basic-brightness
-igt@kms_pm_rpm@basic-pci-d3-state
-igt@kms_pm_rpm@basic-rte
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@kms_psr@psr-primary-mmap-gtt
-igt@kms_setmode@basic-clone-single-crtc
-igt@i915_pm_rps@basic-api
-igt@prime_self_import@basic-llseek-bad
-igt@prime_self_import@basic-llseek-size
-igt@prime_self_import@basic-with_fd_dup
-igt@prime_self_import@basic-with_one_bo
-igt@prime_self_import@basic-with_one_bo_two_files
-igt@prime_self_import@basic-with_two_bos
-igt@prime_vgem@basic-fence-flip
-igt@prime_vgem@basic-fence-mmap
-igt@prime_vgem@basic-fence-read
-igt@prime_vgem@basic-gtt
-igt@prime_vgem@basic-read
-igt@prime_vgem@basic-write
-igt@vgem_basic@setversion
-igt@vgem_basic@create
-igt@vgem_basic@debugfs
-igt@vgem_basic@dmabuf-export
-igt@vgem_basic@dmabuf-fence
-igt@vgem_basic@dmabuf-fence-before
-igt@vgem_basic@dmabuf-mmap
-igt@vgem_basic@mmap
-igt@vgem_basic@second-client
-igt@vgem_basic@sysfs
-
+igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-20x20-with-rotation
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation
+igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5
+igt@kms_plane_scaling@planes-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
+igt@kms_plane_scaling@intel-max-src-size
+igt@kms_plane_scaling@invalid-num-scalers
+igt@kms_plane_scaling@invalid-parameters
+igt@kms_plane_scaling@2x-scaler-multi-pipe
# All tests that do module unloading and reloading are executed last.
# They will sometimes reveal issues of earlier tests leaving the
# driver in a broken state that is not otherwise noticed in that test.
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 01b01dcf9..001e73899 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -7,271 +7,52 @@ igt@fbdev@nullptr
igt@fbdev@read
igt@fbdev@write
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_prop_blob@basic
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all
-igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-invalid-mbz
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict_ccs@evict-overcommit-simple
-igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd
-igt@xe_exec_atomic@basic-dec-all
-igt@xe_exec_atomic@basic-inc-all
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_queue_property@invalid-property
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_gpgpu_fill@basic
-igt@xe_gt_freq@freq_basic_api
-igt@xe_gt_freq@freq_fixed_idle
-igt@xe_gt_freq@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@cpu-caching
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gt-list
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@large-split-binds-268435456
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_pat@userptr-coh-none
-igt@xe_pat@prime-self-import-coh
-igt@xe_pat@prime-external-import-coh
-igt@xe_pat@pat-index-all
-igt@xe_pat@pat-index-xelp
-igt@xe_pat@pat-index-xehpc
-igt@xe_pat@pat-index-xelpg
-igt@xe_pat@pat-index-xe2
-igt@xe_waitfence@abstime
-igt@xe_waitfence@engine
-igt@xe_waitfence@reltime
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@xe_bo
-igt@xe_live_ktest@xe_dma_buf
-igt@xe_live_ktest@xe_migrate
-
-# Move fault_mode tests at the end to unblock execution
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
+igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-20x20-with-rotation
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation
+igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5
+igt@kms_plane_scaling@planes-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
+igt@kms_plane_scaling@intel-max-src-size
+igt@kms_plane_scaling@invalid-num-scalers
+igt@kms_plane_scaling@invalid-parameters
+igt@kms_plane_scaling@2x-scaler-multi-pipe
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments
2024-07-18 14:05 ` [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments Naladala Ramanaidu
@ 2024-07-18 14:22 ` Nautiyal, Ankit K
0 siblings, 0 replies; 13+ messages in thread
From: Nautiyal, Ankit K @ 2024-07-18 14:22 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev; +Cc: kunal1.joshi
On 7/18/2024 7:35 PM, Naladala Ramanaidu wrote:
> Update the helper test_scaler_with_modifier_pipe,
> test_scaler_with_rotation_pipe and test_scaler_with_pixel_format_pipe
> to use a scaling_factor and is_clip_clamp flag instead of explicit
> width and height parameters. This change simplifies the function interfaces
> and allows for testing scenarios, where we need to recalculate the width
> and height based on the display mode. Adjusted all function calls to match
> new argument order.
>
> v2: Update the function arguments (Ankit)
> v3: Remove unwanted changes (Ankit)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> tests/kms_plane_scaling.c | 81 +++++++++++++++++++++++----------------
> 1 file changed, 48 insertions(+), 33 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 3f63d3cf4..450381831 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -569,7 +569,8 @@ static void cleanup_crtc(data_t *data)
> static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> uint32_t pixel_format,
> uint64_t modifier,
> - int width, int height,
> + double sf_plane,
> + bool is_clip_clamp,
> bool is_upscale,
> enum pipe pipe,
> igt_output_t *output,
> @@ -579,8 +580,16 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> drmModeModeInfo *mode;
> int commit_ret;
> int w, h;
> + int width, height;
>
> mode = igt_output_get_mode(output);
> + if (is_clip_clamp == true) {
> + width = mode->hdisplay + 100;
> + height = mode->vdisplay + 100;
> + } else {
> + width = get_width(mode, sf_plane);
> + height = get_height(mode, sf_plane);
> + }
>
> if (is_upscale) {
> w = width;
> @@ -693,7 +702,8 @@ static const uint64_t modifiers[] = {
> };
>
> static void test_scaler_with_modifier_pipe(data_t *d,
> - int width, int height,
> + double sf_plane,
> + bool is_clip_clamp,
> bool is_upscale,
> enum pipe pipe,
> igt_output_t *output)
> @@ -716,7 +726,8 @@ static void test_scaler_with_modifier_pipe(data_t *d,
> if (igt_plane_has_format_mod(plane, format, modifier))
> check_scaling_pipe_plane_rot(d, plane,
> format, modifier,
> - width, height,
> + sf_plane,
> + is_clip_clamp,
> is_upscale,
> pipe, output,
> IGT_ROTATION_0);
> @@ -725,7 +736,8 @@ static void test_scaler_with_modifier_pipe(data_t *d,
> }
>
> static void test_scaler_with_rotation_pipe(data_t *d,
> - int width, int height,
> + double sf_plane,
> + bool is_clip_clamp,
> bool is_upscale,
> enum pipe pipe,
> igt_output_t *output)
> @@ -749,7 +761,8 @@ static void test_scaler_with_rotation_pipe(data_t *d,
> if (igt_plane_has_rotation(plane, rot))
> check_scaling_pipe_plane_rot(d, plane,
> format, modifier,
> - width, height,
> + sf_plane,
> + is_clip_clamp,
> is_upscale,
> pipe, output,
> rot);
> @@ -757,8 +770,11 @@ static void test_scaler_with_rotation_pipe(data_t *d,
> }
> }
>
> -static void test_scaler_with_pixel_format_pipe(data_t *d, int width, int height, bool is_upscale,
> - enum pipe pipe, igt_output_t *output)
> +static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
> + bool is_clip_clamp,
> + bool is_upscale,
> + enum pipe pipe,
> + igt_output_t *output)
> {
> igt_display_t *display = &d->display;
> uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
> @@ -787,9 +803,11 @@ static void test_scaler_with_pixel_format_pipe(data_t *d, int width, int height,
> can_scale(d, format))
> check_scaling_pipe_plane_rot(d, plane,
> format, modifier,
> - width, height,
> + sf_plane,
> + is_clip_clamp,
> is_upscale,
> - pipe, output, IGT_ROTATION_0);
> + pipe, output,
> + IGT_ROTATION_0);
> }
>
> igt_vec_fini(&tested_formats);
> @@ -1307,13 +1325,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - drmModeModeInfo *mode = igt_output_get_mode(output);
>
> test_scaler_with_pixel_format_pipe(&data,
> - get_width(mode, scaler_with_pixel_format_tests[index].sf),
> - get_height(mode, scaler_with_pixel_format_tests[index].sf),
> - scaler_with_pixel_format_tests[index].is_upscale,
> - pipe, output);
> + scaler_with_pixel_format_tests[index].sf,
> + false,
> + scaler_with_pixel_format_tests[index].is_upscale,
> + pipe, output);
> }
> break;
> }
> @@ -1332,13 +1349,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - drmModeModeInfo *mode = igt_output_get_mode(output);
>
> test_scaler_with_rotation_pipe(&data,
> - get_width(mode, scaler_with_rotation_tests[index].sf),
> - get_height(mode, scaler_with_rotation_tests[index].sf),
> - scaler_with_rotation_tests[index].is_upscale,
> - pipe, output);
> + scaler_with_rotation_tests[index].sf,
> + false,
> + scaler_with_rotation_tests[index].is_upscale,
> + pipe, output);
> }
> break;
> }
> @@ -1357,13 +1373,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - drmModeModeInfo *mode = igt_output_get_mode(output);
>
> test_scaler_with_modifier_pipe(&data,
> - get_width(mode, scaler_with_modifiers_tests[index].sf),
> - get_height(mode, scaler_with_modifiers_tests[index].sf),
> - scaler_with_modifiers_tests[index].is_upscale,
> - pipe, output);
> + scaler_with_modifiers_tests[index].sf,
> + false,
> + scaler_with_modifiers_tests[index].is_upscale,
> + pipe, output);
> }
> break;
> }
> @@ -1381,10 +1396,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - drmModeModeInfo *mode = igt_output_get_mode(output);
>
> - test_scaler_with_pixel_format_pipe(&data, mode->hdisplay + 100,
> - mode->vdisplay + 100, false, pipe, output);
> + test_scaler_with_pixel_format_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> }
> break;
> }
> @@ -1401,10 +1416,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - drmModeModeInfo *mode = igt_output_get_mode(output);
>
> - test_scaler_with_rotation_pipe(&data, mode->hdisplay + 100,
> - mode->vdisplay + 100, false, pipe, output);
> + test_scaler_with_rotation_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> }
> break;
> }
> @@ -1421,9 +1436,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - drmModeModeInfo *mode = igt_output_get_mode(output);
> - test_scaler_with_modifier_pipe(&data, mode->hdisplay + 100,
> - mode->vdisplay + 100, false, pipe, output);
> + test_scaler_with_modifier_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> }
> break;
> }
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues.
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (4 preceding siblings ...)
2024-07-18 14:05 ` [PATCH i-g-t v7 5/5] HAX patch do not merge Naladala Ramanaidu
@ 2024-07-18 14:24 ` Nautiyal, Ankit K
2024-07-18 14:42 ` ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7) Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Nautiyal, Ankit K @ 2024-07-18 14:24 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev; +Cc: kunal1.joshi
On 7/18/2024 7:35 PM, Naladala Ramanaidu wrote:
> Find display mode fitting within bandwidth constraints for scaling
> operations
LGTM
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>
> Naladala Ramanaidu (5):
> tests/kms_plane_scaling: Update the single plane scaling function
> arguments
> tests/kms_plane_scaling: Update the multi plane scaling function
> arguments
> tests/kms_plane_scaling: Find display mode fitting in BW
> tests/kms_plane_scaling: Find display mode fitting in BW for rotations
> HAX patch do not merge
>
> tests/intel-ci/fast-feedback.testlist | 201 ++++----------
> tests/intel-ci/xe-fast-feedback.testlist | 317 ++++-------------------
> tests/kms_plane_scaling.c | 278 +++++++++++---------
> 3 files changed, 256 insertions(+), 540 deletions(-)
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7)
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (5 preceding siblings ...)
2024-07-18 14:24 ` [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Nautiyal, Ankit K
@ 2024-07-18 14:42 ` Patchwork
2024-07-18 15:04 ` ✗ CI.xeBAT: failure " Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-07-18 14:42 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
== Series Details ==
Series: tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7)
URL : https://patchwork.freedesktop.org/series/135806/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1227306 for the overview.
build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/61213699):
section_start:1721313353:get_sources
Getting source from Git repository
$ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script
Checking if the user of the pipeline is allowed...
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out e5ed90b8 as detached HEAD (ref is intel/IGTPW_11429)...
Skipping Git submodules setup
section_end:1721313390:get_sources
section_start:1721313390:step_script
Executing "step_script" stage of the job script
Using docker image sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian:commit-e5ed90b82bdff6c328c1790b4e8e483b4ab8dc67 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian@sha256:b9fe73c6ff5d68f5692fd18b9076735679c8bfa7ed393e752dd4927a2cdf9874 ...
section_end:1721313396:step_script
section_start:1721313396:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1721313397:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078: image not known (docker.go:652:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1227306
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7)
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (6 preceding siblings ...)
2024-07-18 14:42 ` ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7) Patchwork
@ 2024-07-18 15:04 ` Patchwork
2024-07-18 20:00 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8) Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-07-18 15:04 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7810 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7)
URL : https://patchwork.freedesktop.org/series/135806/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7930_BAT -> XEIGTPW_11429_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11429_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11429_BAT, 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 (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11429_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][1] +41 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b-edp-1:
- bat-lnl-1: NOTRUN -> [SKIP][2] +67 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-3:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] +20 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-dg2-oem2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-3.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- {bat-lnl-2}: NOTRUN -> [SKIP][4] +48 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-hdmi-a-3:
- {bat-bmg-1}: NOTRUN -> [SKIP][5] +67 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- {bat-bmg-1}: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-bmg-1/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
Known issues
------------
Here are the changes found in XEIGTPW_11429_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#309])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-dg2-oem2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#309])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-lnl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#309])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-adlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#599])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#498]) +17 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#1024]) +48 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-pvc-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- bat-dg2-oem2: NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#498]) +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-dp-3:
- bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#498]) +17 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-dp-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][15] ([Intel XE#455] / [Intel XE#498]) +11 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-edp-1:
- bat-lnl-1: NOTRUN -> [SKIP][16] ([Intel XE#498]) +25 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][17] ([Intel XE#1024]) +48 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-dp-3:
- bat-dg2-oem2: NOTRUN -> [SKIP][18] ([Intel XE#455]) +13 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-dg2-oem2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-dp-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][19] ([Intel XE#455]) +27 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/bat-adlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
Build changes
-------------
* IGT: IGT_7930 -> IGTPW_11429
* Linux: xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7 -> xe-1625-d0e3ac45f03af2770c2027a1e9799617e1186e5c
IGTPW_11429: e5ed90b82bdff6c328c1790b4e8e483b4ab8dc67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7930: 7930
xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7: 66d3fbb024886f8fbbc15fe79222f046cccd18c7
xe-1625-d0e3ac45f03af2770c2027a1e9799617e1186e5c: d0e3ac45f03af2770c2027a1e9799617e1186e5c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/index.html
[-- Attachment #2: Type: text/html, Size: 9561 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8)
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (7 preceding siblings ...)
2024-07-18 15:04 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-07-18 20:00 ` Patchwork
2024-07-18 21:06 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7) Patchwork
2024-07-19 2:16 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8) Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-07-18 20:00 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8101 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8)
URL : https://patchwork.freedesktop.org/series/135806/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7930_BAT -> XEIGTPW_11430_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11430_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11430_BAT, 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 (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11430_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][1] +41 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b-edp-1:
- bat-lnl-1: NOTRUN -> [SKIP][2] +67 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-3:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] +20 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-dg2-oem2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-3.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- {bat-lnl-2}: NOTRUN -> [SKIP][4] +48 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-hdmi-a-3:
- {bat-bmg-1}: NOTRUN -> [SKIP][5] +65 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- {bat-bmg-1}: NOTRUN -> [INCOMPLETE][6] +3 other tests incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
Known issues
------------
Here are the changes found in XEIGTPW_11430_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#309])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-dg2-oem2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#309])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-lnl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#309])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-adlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#599])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3:
- bat-dg2-oem2: NOTRUN -> [FAIL][11] ([Intel XE#361]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-dg2-oem2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#498]) +17 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#1024]) +48 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-pvc-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#498]) +11 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-dp-3:
- bat-dg2-oem2: NOTRUN -> [SKIP][15] ([Intel XE#498]) +17 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-dp-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#498]) +11 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-edp-1:
- bat-lnl-1: NOTRUN -> [SKIP][17] ([Intel XE#498]) +25 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][18] ([Intel XE#1024]) +48 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-dp-3:
- bat-dg2-oem2: NOTRUN -> [SKIP][19] ([Intel XE#455]) +13 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-dg2-oem2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-dp-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][20] ([Intel XE#455]) +27 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/bat-adlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
Build changes
-------------
* IGT: IGT_7930 -> IGTPW_11430
* Linux: xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7 -> xe-1626-943ad04000a54cc7fdb5347606d0ce6a93ea286d
IGTPW_11430: 11430
IGT_7930: 7930
xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7: 66d3fbb024886f8fbbc15fe79222f046cccd18c7
xe-1626-943ad04000a54cc7fdb5347606d0ce6a93ea286d: 943ad04000a54cc7fdb5347606d0ce6a93ea286d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/index.html
[-- Attachment #2: Type: text/html, Size: 9875 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7)
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (8 preceding siblings ...)
2024-07-18 20:00 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8) Patchwork
@ 2024-07-18 21:06 ` Patchwork
2024-07-19 2:16 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8) Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-07-18 21:06 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 35075 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7)
URL : https://patchwork.freedesktop.org/series/135806/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7930_full -> XEIGTPW_11429_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11429_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11429_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11429_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_module_load@many-reload:
- shard-dg2-set2: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@xe_module_load@many-reload.html
#### Warnings ####
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1:
- shard-lnl: [SKIP][2] ([Intel XE#305]) -> [SKIP][3] +63 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@plane-position-covered@pipe-a-plane-1}:
- shard-lnl: [PASS][4] -> [DMESG-FAIL][5] +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html
* {igt@kms_plane@plane-position-covered@pipe-b-plane-4}:
- shard-lnl: [PASS][6] -> [DMESG-WARN][7] +1 other test dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
Known issues
------------
Here are the changes found in XEIGTPW_11429_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1125])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#1659])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [FAIL][11] ([Intel XE#1659]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#607])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124] / [Intel XE#1201]) +10 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1399]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#1252])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#307])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#776])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1138] / [Intel XE#1201])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1421])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1195]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@kms_flip@2x-dpms-vs-vblank-race.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
- shard-lnl: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#2052]) +1 other test dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1401] / [Intel XE#1745])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1401])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#651]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#651]) +30 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#653]) +27 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656]) +11 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#599])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#616]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#1471] / [Intel XE#1874])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_plane_cursor@primary.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_plane_cursor@primary.html
* igt@kms_plane_cursor@primary@pipe-a-edp-1-size-256:
- shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#1471])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_plane_cursor@primary@pipe-a-edp-1-size-256.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_plane_cursor@primary@pipe-a-edp-1-size-256.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#870])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1129] / [Intel XE#1201])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#908])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-433/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#929]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1149] / [Intel XE#1201])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1127] / [Intel XE#1201])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1127])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#327])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1435])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#899])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#1523]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@kms_vblank@accuracy-idle.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-2/igt@kms_vblank@accuracy-idle.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#2019]) +2 other tests dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-436/igt@kms_vblank@ts-continuation-suspend.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#688])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-3/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][68] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#1000])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@xe_evict@evict-threads-large.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#288]) +27 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_gt_freq@freq_fixed_exec:
- shard-dg2-set2: [PASS][72] -> [ABORT][73] ([Intel XE#2271])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@xe_gt_freq@freq_fixed_exec.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@xe_gt_freq@freq_fixed_exec.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1416])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#979])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1420])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#366])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#584])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-6/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][79] ([Intel XE#1551] / [Intel XE#569])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#2019] / [Intel XE#2280])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#2280])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@xe_pm@s4-vm-bind-userptr.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#944])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][86] ([Intel XE#1760])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
- shard-lnl: NOTRUN -> [DMESG-WARN][87] ([Intel XE#1760])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-6/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-lnl: [FAIL][88] -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-top-edge.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: [DMESG-WARN][90] -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [DMESG-WARN][92] ([Intel XE#2052]) -> [PASS][93] +3 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-1/igt@kms_flip@flip-vs-suspend.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][94] ([Intel XE#1551]) -> [PASS][95] +1 other test pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [FAIL][96] ([Intel XE#886]) -> [PASS][97] +3 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][98] ([Intel XE#1162]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
* {igt@kms_plane@plane-position-covered@pipe-a-plane-4}:
- shard-lnl: [DMESG-FAIL][100] -> [PASS][101] +2 other tests pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
* {igt@kms_plane@plane-position-covered@pipe-b-plane-3}:
- shard-lnl: [DMESG-WARN][102] -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html
* igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][104] ([Intel XE#1195]) -> [PASS][105] +4 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-435/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-6.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][106] ([Intel XE#361]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][108] ([Intel XE#718]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_vrr@flip-dpms:
- shard-lnl: [FAIL][110] ([Intel XE#1522]) -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_vrr@flip-dpms.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-4/igt@kms_vrr@flip-dpms.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [TIMEOUT][112] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][113] +1 other test pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-433/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][114] ([Intel XE#1794]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-2/igt@xe_pm@s4-mocs.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-lnl-3/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [DMESG-WARN][116] ([Intel XE#2019]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-436/igt@xe_pm@s4-multiple-execs.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html
#### Warnings ####
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#455]) +9 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][121] ([Intel XE#1201]) +17 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@xe_exec_reset@virtual-close-fd:
- shard-dg2-set2: [ABORT][122] ([Intel XE#2271]) -> [ABORT][123] ([Intel XE#2273])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-436/igt@xe_exec_reset@virtual-close-fd.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-466/igt@xe_exec_reset@virtual-close-fd.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [FAIL][124] ([Intel XE#1999]) -> [SKIP][125] ([Intel XE#1192] / [Intel XE#1201])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1471
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2052]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2052
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207
[Intel XE#2271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2271
[Intel XE#2273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2273
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7930 -> IGTPW_11429
* Linux: xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7 -> xe-1625-d0e3ac45f03af2770c2027a1e9799617e1186e5c
IGTPW_11429: e5ed90b82bdff6c328c1790b4e8e483b4ab8dc67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7930: 7930
xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7: 66d3fbb024886f8fbbc15fe79222f046cccd18c7
xe-1625-d0e3ac45f03af2770c2027a1e9799617e1186e5c: d0e3ac45f03af2770c2027a1e9799617e1186e5c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11429/index.html
[-- Attachment #2: Type: text/html, Size: 41640 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8)
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
` (9 preceding siblings ...)
2024-07-18 21:06 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7) Patchwork
@ 2024-07-19 2:16 ` Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-07-19 2:16 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 42279 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8)
URL : https://patchwork.freedesktop.org/series/135806/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7930_full -> XEIGTPW_11430_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11430_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11430_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11430_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@kms_async_flips@test-cursor@pipe-b-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][4] -> [FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-lnl: [PASS][7] -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms.html
#### Warnings ####
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1:
- shard-lnl: [SKIP][9] ([Intel XE#305]) -> [SKIP][10] +59 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3}:
- shard-lnl: [PASS][11] -> [DMESG-WARN][12] +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
Known issues
------------
Here are the changes found in XEIGTPW_11430_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1125])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#1426]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#1426])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [FAIL][18] ([Intel XE#1659])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#607])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1399]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#1252])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#787]) +69 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#373])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#307])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-lnl: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#877]) +1 other test dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_cursor_legacy@torture-move@pipe-a.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-3/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#776])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1421])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@flip-vs-suspend@c-edp1:
- shard-lnl: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#2049])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-1/igt@kms_flip@flip-vs-suspend@c-edp1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-5/igt@kms_flip@flip-vs-suspend@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1401] / [Intel XE#1745])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1401])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#651]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#651]) +31 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#658])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#653]) +26 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#656]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#599])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-2/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#616]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#870])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#718])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1129] / [Intel XE#1201])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#908])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-lnl: NOTRUN -> [DMESG-WARN][57] ([Intel XE#1620])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1406])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-no-drrs@edp-1:
- shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#1649]) +1 other test fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1127] / [Intel XE#1201])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1127])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#327])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1435])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [PASS][67] -> [DMESG-WARN][68] ([Intel XE#2019]) +2 other tests dmesg-warn
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-436/igt@kms_vblank@ts-continuation-suspend.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-434/igt@kms_vrr@flip-dpms.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1091] / [Intel XE#1201])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [PASS][71] -> [TIMEOUT][72] ([Intel XE#1473] / [Intel XE#392])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-434/igt@xe_evict@evict-beng-cm-threads-large.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#688])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-3/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][74] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-466/igt@xe_evict@evict-cm-threads-large.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][77] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][78] -> [TIMEOUT][79] ([Intel XE#1473]) +1 other test timeout
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-small.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#288]) +25 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
- shard-dg2-set2: [PASS][81] -> [ABORT][82] ([Intel XE#2271])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
* igt@xe_gt_freq@freq_range_exec:
- shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#2203])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-434/igt@xe_gt_freq@freq_range_exec.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-434/igt@xe_gt_freq@freq_range_exec.html
* igt@xe_gt_freq@freq_range_idle:
- shard-lnl: [PASS][85] -> [SKIP][86] ([Intel XE#1462])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@xe_gt_freq@freq_range_idle.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@xe_gt_freq@freq_range_idle.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][87] -> [SKIP][88] ([Intel XE#1192])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@xe_live_ktest@xe_bo.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@xe_live_ktest@xe_bo.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1201] / [Intel XE#979])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1420])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1201] / [Intel XE#366])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#584])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][93] ([Intel XE#1551] / [Intel XE#569]) +1 other test dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][94] -> [ABORT][95] ([Intel XE#1794])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#944])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_waitfence@exec_queue-reset-wait:
- shard-lnl: [PASS][98] -> [ABORT][99] ([Intel XE#2271])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@xe_waitfence@exec_queue-reset-wait.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-6/igt@xe_waitfence@exec_queue-reset-wait.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][100] ([Intel XE#1760])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html
- shard-lnl: NOTRUN -> [DMESG-WARN][101] ([Intel XE#1760])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][102] ([Intel XE#911]) -> [PASS][103] +3 other tests pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: [SKIP][104] ([Intel XE#664]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_async_flips@test-cursor.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][106] ([Intel XE#1426]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-lnl: [DMESG-WARN][108] ([Intel XE#2052]) -> [PASS][109] +2 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-lnl: [FAIL][110] -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-top-edge.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: [DMESG-WARN][112] -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [FAIL][114] ([Intel XE#886]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][116] ([Intel XE#1162]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
* {igt@kms_plane@plane-position-hole@pipe-a-plane-3}:
- shard-lnl: [DMESG-FAIL][118] -> [PASS][119] +1 other test pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html
* igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][120] ([Intel XE#1195]) -> [PASS][121] +2 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-435/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-6.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][122] ([Intel XE#361]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][124] ([Intel XE#718]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr@psr2-suspend:
- shard-lnl: [INCOMPLETE][126] -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-6/igt@kms_psr@psr2-suspend.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-5/igt@kms_psr@psr2-suspend.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [FAIL][128] ([Intel XE#771] / [Intel XE#899]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
- shard-dg2-set2: [FAIL][130] ([Intel XE#899]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
* igt@kms_vrr@flip-dpms:
- shard-lnl: [FAIL][132] ([Intel XE#1522]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-3/igt@kms_vrr@flip-dpms.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@kms_vrr@flip-dpms.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [TIMEOUT][134] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [ABORT][136] ([Intel XE#2271] / [Intel XE#2309]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* {igt@xe_oa@mmio-triggered-reports@rcs-0}:
- shard-lnl: [FAIL][138] ([Intel XE#2249]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-8/igt@xe_oa@mmio-triggered-reports@rcs-0.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-8/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][140] ([Intel XE#569]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][142] ([Intel XE#1794]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-2/igt@xe_pm@s4-mocs.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-1/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][145] ([Intel XE#1201])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@kms_content_protection@mei-interface.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_content_protection@mei-interface.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [DMESG-WARN][146] ([Intel XE#2052]) -> [INCOMPLETE][147] ([Intel XE#2049])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-lnl-1/igt@kms_flip@flip-vs-suspend.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][150] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][151] ([Intel XE#1201]) +20 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][152] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#1500])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_reset@parallel-close-fd:
- shard-dg2-set2: [ABORT][154] ([Intel XE#2271] / [Intel XE#2309]) -> [ABORT][155] ([Intel XE#2273] / [Intel XE#2309])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-464/igt@xe_exec_reset@parallel-close-fd.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-466/igt@xe_exec_reset@parallel-close-fd.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [FAIL][156] ([Intel XE#1999]) -> [SKIP][157] ([Intel XE#1192] / [Intel XE#1201])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7930/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/shard-dg2-464/igt@xe_live_ktest@xe_mocs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1462
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2052]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2052
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2203]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2203
[Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2271
[Intel XE#2273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2273
[Intel XE#2309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2309
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[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#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7930 -> IGTPW_11430
* Linux: xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7 -> xe-1626-943ad04000a54cc7fdb5347606d0ce6a93ea286d
IGTPW_11430: 11430
IGT_7930: 7930
xe-1623-66d3fbb024886f8fbbc15fe79222f046cccd18c7: 66d3fbb024886f8fbbc15fe79222f046cccd18c7
xe-1626-943ad04000a54cc7fdb5347606d0ce6a93ea286d: 943ad04000a54cc7fdb5347606d0ce6a93ea286d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11430/index.html
[-- Attachment #2: Type: text/html, Size: 50460 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-07-19 2:16 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-18 14:05 [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 1/5] tests/kms_plane_scaling: Update the single plane scaling function arguments Naladala Ramanaidu
2024-07-18 14:22 ` Nautiyal, Ankit K
2024-07-18 14:05 ` [PATCH i-g-t v7 2/5] tests/kms_plane_scaling: Update the multi " Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 3/5] tests/kms_plane_scaling: Find display mode fitting in BW Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 4/5] tests/kms_plane_scaling: Find display mode fitting in BW for rotations Naladala Ramanaidu
2024-07-18 14:05 ` [PATCH i-g-t v7 5/5] HAX patch do not merge Naladala Ramanaidu
2024-07-18 14:24 ` [PATCH i-g-t v7 0/5] tests/kms_plane_scaling: Improvise the scaling BW issues Nautiyal, Ankit K
2024-07-18 14:42 ` ✗ GitLab.Pipeline: warning for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7) Patchwork
2024-07-18 15:04 ` ✗ CI.xeBAT: failure " Patchwork
2024-07-18 20:00 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8) Patchwork
2024-07-18 21:06 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev7) Patchwork
2024-07-19 2:16 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Improvise the scaling BW issues. (rev8) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox