* [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF)
@ 2024-07-23 4:28 Jeevan B
2024-07-23 4:28 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B
` (5 more replies)
0 siblings, 6 replies; 17+ messages in thread
From: Jeevan B @ 2024-07-23 4:28 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B
Add debugfs entry to validate LOBF status and create a new
test to validate.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (2):
lib/igt_kms: Added library functions for LOBF status
tests/kms_vrr: Add new test to validate LOBF
lib/igt_kms.c | 23 ++++++++++++++++++++
lib/igt_kms.h | 1 +
tests/kms_vrr.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++--
3 files changed, 80 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B @ 2024-07-23 4:28 ` Jeevan B 2024-07-23 4:28 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B ` (4 subsequent siblings) 5 siblings, 0 replies; 17+ messages in thread From: Jeevan B @ 2024-07-23 4:28 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B Added helper functions to check LOBF status to check weather it is enabled or disabled. v2: rename function name. Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/igt_kms.c | 23 +++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 24 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 64318ef7f..e030b35a6 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6071,6 +6071,29 @@ void igt_dump_crtcs_fd(int drmfd) drmModeFreeResources(mode_resources); } +/** + * igt_get_i915_edp_lobf_status + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Return: True if its enabled. + */ +bool igt_get_i915_edp_lobf_status(int drmfd, char *connector_name) +{ + char buf[24]; + int fd, res; + + fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY); + igt_assert(fd >= 0); + + res = igt_debugfs_simple_read(fd, "i915_edp_lobf_info", buf, sizeof(buf)); + igt_require(res > 0); + + close(fd); + + return strstr(buf, "LOBF status: enabled"); +} + /** * igt_get_output_max_bpc: * @drmfd: A drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 501d48763..e8582a45b 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1195,6 +1195,7 @@ void igt_require_pipe(igt_display_t *display, void igt_dump_connectors_fd(int drmfd); void igt_dump_crtcs_fd(int drmfd); bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display); +bool igt_get_i915_edp_lobf_status(int drmfd, char *connector_name); unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name); unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe); void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe, -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-07-23 4:28 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B @ 2024-07-23 4:28 ` Jeevan B 2024-07-23 11:47 ` Modem, Bhanuprakash 2024-07-25 9:11 ` [i-g-t,2/2] " Joshi, Kunal1 2024-07-23 6:27 ` ✓ CI.xeBAT: success for New test to validate link-off between active regions (LOBF) (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 17+ messages in thread From: Jeevan B @ 2024-07-23 4:28 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B Validate pseudo static refresh rate changes in the VRR with fixed refresh rate framework for non-psr scenarios. v2: Add PR check. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_vrr.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 7e8885f16..d45d38657 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -31,12 +31,18 @@ */ #include "igt.h" +#include "igt_psr.h" #include "i915/intel_drrs.h" #include "sw_sync.h" #include <fcntl.h> #include <signal.h> /** + * SUBTEST: lobf + * Description: Test to validate link-off between active frames in non-psr + * operation + * Functionality: LOBF + * * SUBTEST: cmrr * Description: Test to validate the content rate to exactly match with the * requested rate without any frame drops. @@ -106,7 +112,8 @@ enum { TEST_FASTSET = 1 << 7, TEST_MAXMIN = 1 << 8, TEST_CMRR = 1 << 9, - TEST_NEGATIVE = 1 << 10, + TEST_LINK_OFF = 1 << 10, + TEST_NEGATIVE = 1 << 11, }; enum { @@ -129,6 +136,7 @@ typedef struct vtest_ns { typedef struct data { igt_display_t display; int drm_fd; + int debugfs_fd; igt_plane_t *primary; igt_fb_t fb[2]; range_t range; @@ -784,6 +792,44 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu } } +static void +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) +{ + bool change_mode = false; + time_t startTime = time(NULL); + time_t secs = 4, change_time = 3; + igt_plane_t *primary; + drmModeModeInfo mode = *igt_output_get_mode(output); + + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); + + igt_require(output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP); + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL)) + psr_disable(data->drm_fd, data->debugfs_fd, NULL); + + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 1, 1, 1, &data->fb[0]); + + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); + + while (time(NULL) - startTime < secs) { + igt_plane_set_fb(primary, &data->fb[0]); + igt_display_commit(&data->display); + if (!change_mode && time(NULL) - startTime >= change_time) { + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); + change_time = true; + } + } + + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), + "LOBF not enabled\n"); +} + static void test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) { @@ -973,6 +1019,7 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) { igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); kmstest_set_vt_graphics_mode(); @@ -1030,13 +1077,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic("seamless-rr-switch-virtual") run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); - igt_describe("Test to validate the the content rate exactly match with the " + igt_describe("Test to validate the content rate exactly match with the " "requested rate without any frame drops."); igt_subtest_with_dynamic("cmrr") { igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); run_vrr_test(&data, test_cmrr, TEST_CMRR); } + igt_describe("Test to validate the link-off between active frames in " + "non-PSR operation."); + igt_subtest_with_dynamic("lobf") { + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); + + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-23 4:28 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B @ 2024-07-23 11:47 ` Modem, Bhanuprakash 2024-07-25 9:11 ` [i-g-t,2/2] " Joshi, Kunal1 1 sibling, 0 replies; 17+ messages in thread From: Modem, Bhanuprakash @ 2024-07-23 11:47 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: kunal1.joshi, animesh.manna Hi Jeevan, On 23-07-2024 09:58 am, Jeevan B wrote: > Validate pseudo static refresh rate changes in the VRR with > fixed refresh rate framework for non-psr scenarios. What is pseudo static refresh rate? please elaborate, so that it would be easy to review. > > v2: Add PR check. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_vrr.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 56 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 7e8885f16..d45d38657 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -31,12 +31,18 @@ > */ > > #include "igt.h" > +#include "igt_psr.h" > #include "i915/intel_drrs.h" > #include "sw_sync.h" > #include <fcntl.h> > #include <signal.h> > > /** > + * SUBTEST: lobf Please sort SUBTESTs in alphabetical order. > + * Description: Test to validate link-off between active frames in non-psr > + * operation > + * Functionality: LOBF > + * > * SUBTEST: cmrr > * Description: Test to validate the content rate to exactly match with the > * requested rate without any frame drops. > @@ -106,7 +112,8 @@ enum { > TEST_FASTSET = 1 << 7, > TEST_MAXMIN = 1 << 8, > TEST_CMRR = 1 << 9, > - TEST_NEGATIVE = 1 << 10, > + TEST_LINK_OFF = 1 << 10, > + TEST_NEGATIVE = 1 << 11, > }; > > enum { > @@ -129,6 +136,7 @@ typedef struct vtest_ns { > typedef struct data { > igt_display_t display; > int drm_fd; > + int debugfs_fd; > igt_plane_t *primary; > igt_fb_t fb[2]; > range_t range; > @@ -784,6 +792,44 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu > } > } > > +static void > +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > +{ > + bool change_mode = false; > + time_t startTime = time(NULL); > + time_t secs = 4, change_time = 3; > + igt_plane_t *primary; > + drmModeModeInfo mode = *igt_output_get_mode(output); > + > + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", > + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); > + > + igt_require(output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP); If this test is an eDP specific, then this is not the right plase to add this check. Please refer output_constraint() in kms_vrr.c > + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); Please check above comments. > + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || > + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL)) > + psr_disable(data->drm_fd, data->debugfs_fd, NULL); > + > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > + 1, 1, 1, &data->fb[0]); > + > + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > + > + while (time(NULL) - startTime < secs) { > + igt_plane_set_fb(primary, &data->fb[0]); No need to call this everytime, as you're using the same framebuffer. > + igt_display_commit(&data->display); This will be an empty commit if there is no change in the mode. > + if (!change_mode && time(NULL) - startTime >= change_time) { > + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); > + change_time = true; Assigning type bool to time_t is not correct. > + } > + } > + > + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), > + "LOBF not enabled\n"); > +} > + > static void > test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > { > @@ -973,6 +1019,7 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > { > igt_fixture { > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); Please make this variable as local to test_lobf(). > > kmstest_set_vt_graphics_mode(); > > @@ -1030,13 +1077,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > igt_subtest_with_dynamic("seamless-rr-switch-virtual") > run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > - igt_describe("Test to validate the the content rate exactly match with the " > + igt_describe("Test to validate the content rate exactly match with the " Not related to this patch. - Bhanu > "requested rate without any frame drops."); > igt_subtest_with_dynamic("cmrr") { > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > > run_vrr_test(&data, test_cmrr, TEST_CMRR); > } > + igt_describe("Test to validate the link-off between active frames in " > + "non-PSR operation."); > + igt_subtest_with_dynamic("lobf") { > + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > + > + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); > + } > } > > igt_fixture { ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [i-g-t,2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-23 4:28 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 2024-07-23 11:47 ` Modem, Bhanuprakash @ 2024-07-25 9:11 ` Joshi, Kunal1 2024-07-29 8:49 ` Manna, Animesh 1 sibling, 1 reply; 17+ messages in thread From: Joshi, Kunal1 @ 2024-07-25 9:11 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: animesh.manna [-- Attachment #1: Type: text/plain, Size: 4743 bytes --] Hello Jeevan, On 7/23/2024 9:58 AM, Jeevan B wrote: > Validate pseudo static refresh rate changes in the VRR with > fixed refresh rate framework for non-psr scenarios. > > v2: Add PR check. > > Signed-off-by: Jeevan B<jeevan.b@intel.com> > --- > tests/kms_vrr.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 56 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 7e8885f16..d45d38657 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -31,12 +31,18 @@ > */ > > #include "igt.h" > +#include "igt_psr.h" > #include "i915/intel_drrs.h" > #include "sw_sync.h" > #include <fcntl.h> > #include <signal.h> > > /** > + * SUBTEST: lobf > + * Description: Test to validate link-off between active frames in non-psr > + * operation > + * Functionality: LOBF > + * > * SUBTEST: cmrr > * Description: Test to validate the content rate to exactly match with the > * requested rate without any frame drops. > @@ -106,7 +112,8 @@ enum { > TEST_FASTSET = 1 << 7, > TEST_MAXMIN = 1 << 8, > TEST_CMRR = 1 << 9, > - TEST_NEGATIVE = 1 << 10, > + TEST_LINK_OFF = 1 << 10, > + TEST_NEGATIVE = 1 << 11, > }; > > enum { > @@ -129,6 +136,7 @@ typedef struct vtest_ns { > typedef struct data { > igt_display_t display; > int drm_fd; > + int debugfs_fd; > igt_plane_t *primary; > igt_fb_t fb[2]; > range_t range; > @@ -784,6 +792,44 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu > } > } > > +static void > +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > +{ > + bool change_mode = false; > + time_t startTime = time(NULL); > + time_t secs = 4, change_time = 3; > + igt_plane_t *primary; > + drmModeModeInfo mode = *igt_output_get_mode(output); > + > + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", > + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); > + > + igt_require(output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP); > + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); > + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || > + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL)) > + psr_disable(data->drm_fd, data->debugfs_fd, NULL); > + > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > + 1, 1, 1, &data->fb[0]); > + > + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > + > + while (time(NULL) - startTime < secs) { > + igt_plane_set_fb(primary, &data->fb[0]); > + igt_display_commit(&data->display); > + if (!change_mode && time(NULL) - startTime >= change_time) { > + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); > + change_time = true; > + } > + } > > Consider we have very less difference between LOW_RR and HIGH_RR, > Will we still get sufficienct extended vblank to always turn the link off? > > @Animesh can you also clarify here if we somehow can know exact time required to do link off? > > + > + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), > + "LOBF not enabled\n"); > +} > + > static void > test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > { > @@ -973,6 +1019,7 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > { > igt_fixture { > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); > > kmstest_set_vt_graphics_mode(); > > @@ -1030,13 +1077,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > igt_subtest_with_dynamic("seamless-rr-switch-virtual") > run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > - igt_describe("Test to validate the the content rate exactly match with the " > + igt_describe("Test to validate the content rate exactly match with the " > "requested rate without any frame drops."); > igt_subtest_with_dynamic("cmrr") { > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > > run_vrr_test(&data, test_cmrr, TEST_CMRR); > } > + igt_describe("Test to validate the link-off between active frames in " > + "non-PSR operation."); > + igt_subtest_with_dynamic("lobf") { > + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > + > + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); > + } > } > > igt_fixture { Thanks and Regards Kunal Joshi [-- Attachment #2: Type: text/html, Size: 5042 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [i-g-t,2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-25 9:11 ` [i-g-t,2/2] " Joshi, Kunal1 @ 2024-07-29 8:49 ` Manna, Animesh 0 siblings, 0 replies; 17+ messages in thread From: Manna, Animesh @ 2024-07-29 8:49 UTC (permalink / raw) To: Joshi, Kunal1, B, Jeevan, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 6000 bytes --] From: Joshi, Kunal1 <kunal1.joshi@intel.com> Sent: Thursday, July 25, 2024 2:42 PM To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org Cc: Manna, Animesh <animesh.manna@intel.com> Subject: Re: [i-g-t,2/2] tests/kms_vrr: Add new test to validate LOBF Hello Jeevan, On 7/23/2024 9:58 AM, Jeevan B wrote: Validate pseudo static refresh rate changes in the VRR with fixed refresh rate framework for non-psr scenarios. v2: Add PR check. Signed-off-by: Jeevan B <jeevan.b@intel.com><mailto:jeevan.b@intel.com> --- tests/kms_vrr.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 7e8885f16..d45d38657 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -31,12 +31,18 @@ */ #include "igt.h" +#include "igt_psr.h" #include "i915/intel_drrs.h" #include "sw_sync.h" #include <fcntl.h> #include <signal.h> /** + * SUBTEST: lobf + * Description: Test to validate link-off between active frames in non-psr + * operation + * Functionality: LOBF + * * SUBTEST: cmrr * Description: Test to validate the content rate to exactly match with the * requested rate without any frame drops. @@ -106,7 +112,8 @@ enum { TEST_FASTSET = 1 << 7, TEST_MAXMIN = 1 << 8, TEST_CMRR = 1 << 9, - TEST_NEGATIVE = 1 << 10, + TEST_LINK_OFF = 1 << 10, + TEST_NEGATIVE = 1 << 11, }; enum { @@ -129,6 +136,7 @@ typedef struct vtest_ns { typedef struct data { igt_display_t display; int drm_fd; + int debugfs_fd; igt_plane_t *primary; igt_fb_t fb[2]; range_t range; @@ -784,6 +792,44 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu } } +static void +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) +{ + bool change_mode = false; + time_t startTime = time(NULL); + time_t secs = 4, change_time = 3; + igt_plane_t *primary; + drmModeModeInfo mode = *igt_output_get_mode(output); + + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); + + igt_require(output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP); + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL)) + psr_disable(data->drm_fd, data->debugfs_fd, NULL); + + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 1, 1, 1, &data->fb[0]); + + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); + + while (time(NULL) - startTime < secs) { + igt_plane_set_fb(primary, &data->fb[0]); + igt_display_commit(&data->display); + if (!change_mode && time(NULL) - startTime >= change_time) { + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); + change_time = true; + } + } Consider we have very less difference between LOW_RR and HIGH_RR, Will we still get sufficienct extended vblank to always turn the link off? @Animesh can you also clarify here if we somehow can know exact time required to do link off? @Kunal/Jeevan Lobf can be enabled when (Set Context Latency + Guardband) > (First SDP Position + Wake Time). I am not sure waketime and sdp position details are used by any other igt tests are not. If needed I can add part of lobf_info debugfs entry from kernel. + + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), + "LOBF not enabled\n"); +} + static void test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) { @@ -973,6 +1019,7 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) { igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); kmstest_set_vt_graphics_mode(); @@ -1030,13 +1077,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic("seamless-rr-switch-virtual") run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); - igt_describe("Test to validate the the content rate exactly match with the " + igt_describe("Test to validate the content rate exactly match with the " "requested rate without any frame drops."); igt_subtest_with_dynamic("cmrr") { igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); run_vrr_test(&data, test_cmrr, TEST_CMRR); } + igt_describe("Test to validate the link-off between active frames in " + "non-PSR operation."); + igt_subtest_with_dynamic("lobf") { + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); + + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); + } } igt_fixture { Thanks and Regards Kunal Joshi [-- Attachment #2: Type: text/html, Size: 15469 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ CI.xeBAT: success for New test to validate link-off between active regions (LOBF) (rev3) 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-07-23 4:28 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B 2024-07-23 4:28 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B @ 2024-07-23 6:27 ` Patchwork 2024-07-23 6:37 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-07-23 6:27 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2833 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) (rev3) URL : https://patchwork.freedesktop.org/series/135446/ State : success == Summary == CI Bug Log - changes from XEIGT_7935_BAT -> XEIGTPW_11444_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11444_BAT: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@xe_module_load@load: - {bat-bmg-1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/bat-bmg-1/igt@xe_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/bat-bmg-1/igt@xe_module_load@load.html Known issues ------------ Here are the changes found in XEIGTPW_11444_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_compute_mode@twice-userptr-invalidate: - bat-lnl-1: [PASS][3] -> [FAIL][4] ([Intel XE#1069]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/bat-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/bat-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-WARN][5] ([Intel XE#324]) -> [DMESG-FAIL][6] ([Intel XE#324]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 Build changes ------------- * IGT: IGT_7935 -> IGTPW_11444 * Linux: xe-1646-ea064de9c72e649eca5659c6ef24019faa7019b0 -> xe-1649-b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b IGTPW_11444: 11444 IGT_7935: a85286b8cdfc8d2c902128946e90f8b17cecaa89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1646-ea064de9c72e649eca5659c6ef24019faa7019b0: ea064de9c72e649eca5659c6ef24019faa7019b0 xe-1649-b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b: b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/index.html [-- Attachment #2: Type: text/html, Size: 3541 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Fi.CI.BAT: success for New test to validate link-off between active regions (LOBF) (rev3) 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B ` (2 preceding siblings ...) 2024-07-23 6:27 ` ✓ CI.xeBAT: success for New test to validate link-off between active regions (LOBF) (rev3) Patchwork @ 2024-07-23 6:37 ` Patchwork 2024-07-23 7:38 ` ✗ CI.xeFULL: failure " Patchwork 2024-07-23 16:30 ` ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-07-23 6:37 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11127 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) (rev3) URL : https://patchwork.freedesktop.org/series/135446/ State : success == Summary == CI Bug Log - changes from CI_DRM_15115 -> IGTPW_11444 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/index.html Participating hosts (37 -> 36) ------------------------------ Additional (4): bat-dg2-14 bat-adlp-9 bat-adlp-6 bat-dg2-13 Missing (5): fi-kbl-7567u fi-snb-2520m fi-cfl-8109u fi-kbl-8809g bat-mtlp-8 Known issues ------------ Here are the changes found in IGTPW_11444 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@debugfs_test@basic-hwmon.html - bat-adlp-6: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@basic: - bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random-engines: - bat-adlp-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@basic: - bat-dg2-14: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-adlp-6: NOTRUN -> [SKIP][8] ([i915#3282]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@gem_tiled_pread_basic.html - bat-adlp-9: NOTRUN -> [SKIP][9] ([i915#3282]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlp-9: NOTRUN -> [SKIP][10] ([i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@i915_pm_rps@basic-api.html - bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@i915_pm_rps@basic-api.html - bat-adlp-6: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-14: NOTRUN -> [SKIP][13] ([i915#5190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg2-14: NOTRUN -> [SKIP][14] ([i915#4212]) +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#4215] / [i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_chamelium_hpd@vga-hpd-fast: - bat-dg2-13: NOTRUN -> [SKIP][16] ([Intel XE#484] / [i915#4550]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-adlp-9: NOTRUN -> [SKIP][17] ([i915#4103]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-14: NOTRUN -> [SKIP][18] ([i915#4103] / [i915#4213]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-adlp-6: NOTRUN -> [SKIP][19] ([i915#4103]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#3840]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_dsc@dsc-basic.html - bat-adlp-6: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#3840]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@kms_dsc@dsc-basic.html - bat-adlp-9: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-14: NOTRUN -> [SKIP][23] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html - bat-adlp-6: NOTRUN -> [SKIP][24] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html - bat-adlp-9: NOTRUN -> [SKIP][25] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#5274]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-14: NOTRUN -> [SKIP][27] ([i915#5354]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html - bat-adlp-9: NOTRUN -> [SKIP][28] ([i915#9812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlp-9: NOTRUN -> [SKIP][29] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@kms_psr@psr-sprite-plane-onoff.html - bat-dg2-14: NOTRUN -> [SKIP][30] ([i915#1072] / [i915#9732]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][31] ([i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg2-14: NOTRUN -> [SKIP][32] ([i915#3555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html - bat-adlp-6: NOTRUN -> [SKIP][33] ([i915#3555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-14: NOTRUN -> [SKIP][34] ([i915#3708]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-14: NOTRUN -> [SKIP][35] ([i915#3708] / [i915#4077]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-adlp-9: NOTRUN -> [SKIP][36] ([i915#3291] / [i915#3708]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-9/igt@prime_vgem@basic-fence-read.html - bat-adlp-6: NOTRUN -> [SKIP][37] ([i915#3291] / [i915#3708]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-adlp-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-dg2-14: NOTRUN -> [SKIP][38] ([i915#3291] / [i915#3708]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/bat-dg2-14/igt@prime_vgem@basic-read.html [Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7935 -> IGTPW_11444 CI-20190529: 20190529 CI_DRM_15115: b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11444: 11444 IGT_7935: a85286b8cdfc8d2c902128946e90f8b17cecaa89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/index.html [-- Attachment #2: Type: text/html, Size: 14161 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ CI.xeFULL: failure for New test to validate link-off between active regions (LOBF) (rev3) 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B ` (3 preceding siblings ...) 2024-07-23 6:37 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-07-23 7:38 ` Patchwork 2024-07-23 16:30 ` ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-07-23 7:38 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 55482 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) (rev3) URL : https://patchwork.freedesktop.org/series/135446/ State : failure == Summary == CI Bug Log - changes from XEIGT_7935_full -> XEIGTPW_11444_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11444_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11444_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_11444_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html * {igt@kms_vrr@lobf} (NEW): - shard-lnl: NOTRUN -> [CRASH][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-3/igt@kms_vrr@lobf.html * {igt@kms_vrr@lobf@pipe-a-edp-1} (NEW): - shard-lnl: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-3/igt@kms_vrr@lobf@pipe-a-edp-1.html * igt@xe_gt_freq@freq_basic_api: - shard-dg2-set2: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@xe_gt_freq@freq_basic_api.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_gt_freq@freq_basic_api.html #### Warnings #### * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][6] ([Intel XE#1201]) -> [SKIP][7] +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html New tests --------- New tests have been introduced between XEIGT_7935_full and XEIGTPW_11444_full: ### New IGT tests (2) ### * igt@kms_vrr@lobf: - Statuses : 1 crash(s) 1 skip(s) - Exec time: [0.0, 2.44] s * igt@kms_vrr@lobf@pipe-a-edp-1: - Statuses : 1 fail(s) - Exec time: [2.29] s Known issues ------------ Here are the changes found in XEIGTPW_11444_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#873]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#873]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2-set2: NOTRUN -> [FAIL][10] ([Intel XE#1426]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#316]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#619]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#607]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#1252]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#306]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@kms_chamelium_color@ctm-green-to-red.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#306]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-4/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#323]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-with-formats: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#599]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#776]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1135] / [Intel XE#1201]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@kms_feature_discovery@psr2.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a6: - shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1195]) +2 other tests incomplete [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-434/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a6.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a6.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1195] / [Intel XE#2049]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#651]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#651]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#656]) +6 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#651]) +18 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#658]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#653]) +17 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#653]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#417]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#1201] / [Intel XE#455]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_hdr@invalid-hdr.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@plane-position-covered: - shard-lnl: [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#324]) +1 other test dmesg-fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-1/igt@kms_plane@plane-position-covered.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-4/igt@kms_plane@plane-position-covered.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#870]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#1430]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1122]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1122] / [Intel XE#1201]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1406]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#929]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#327]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1127] / [Intel XE#1201]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][63] -> [FAIL][64] ([Intel XE#771] / [Intel XE#899]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#899]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * {igt@kms_vrr@lobf} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1201]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#756]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#756]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1123] / [Intel XE#1201]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1126] / [Intel XE#1201]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_evict@evict-beng-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#688]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-5/igt@xe_evict@evict-beng-large-multi-vm.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][73] -> [TIMEOUT][74] ([Intel XE#1473]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][75] ([Intel XE#1473]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [PASS][76] -> [TIMEOUT][77] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@xe_evict@evict-mixed-threads-large.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1392]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@many-execqueues-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#288]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr.html * igt@xe_exec_fault_mode@once-basic: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@xe_exec_fault_mode@once-basic.html * igt@xe_exec_reset@close-fd: - shard-dg2-set2: NOTRUN -> [ABORT][81] ([Intel XE#2271] / [Intel XE#2309]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@xe_exec_reset@close-fd.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#1195] / [Intel XE#2345]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#1620]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_module_load@load: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#378]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-4/igt@xe_module_load@load.html - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#378]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@xe_module_load@load.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#366]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][89] ([Intel XE#1358]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-exec-after: - shard-lnl: [PASS][90] -> [ABORT][91] ([Intel XE#1358] / [Intel XE#1607]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-7/igt@xe_pm@s4-exec-after.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-2/igt@xe_pm@s4-exec-after.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1201] / [Intel XE#944]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][93] -> [PASS][94] +1 other test pass [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [FAIL][95] ([Intel XE#1659]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2-set2: [INCOMPLETE][97] ([Intel XE#1035] / [Intel XE#1195]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@kms_plane@pixel-format-source-clamping.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_plane@pixel-format-source-clamping.html * {igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0}: - shard-dg2-set2: [INCOMPLETE][99] ([Intel XE#1195]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html * {igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1}: - shard-lnl: [DMESG-WARN][101] ([Intel XE#324]) -> [PASS][102] +2 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-1/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][103] ([Intel XE#1430]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [TIMEOUT][105] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@xe_evict@evict-cm-threads-large.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: [DMESG-WARN][107] ([Intel XE#2019]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@xe_pm@s4-exec-after.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_pm@s4-exec-after.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][109] ([Intel XE#1794]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer: - shard-dg2-set2: [ABORT][111] ([Intel XE#2271]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html #### Warnings #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: [SKIP][113] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][114] ([Intel XE#801]) +23 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][115] ([Intel XE#316]) -> [SKIP][116] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][117] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][118] ([Intel XE#316]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][119] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][120] ([Intel XE#1124]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][121] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][122] ([Intel XE#610]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][123] ([Intel XE#1124]) -> [SKIP][124] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][125] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][126] ([Intel XE#367]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][127] ([Intel XE#367]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#367]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][129] ([Intel XE#787]) -> [SKIP][130] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: [SKIP][131] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][132] ([Intel XE#787]) +55 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/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-mtl-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: [SKIP][133] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][136] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][138] ([Intel XE#373]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][139] ([Intel XE#373]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][142] ([Intel XE#307]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][143] ([Intel XE#307]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#307]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][145] ([Intel XE#455]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_cursor_crc@cursor-random-max-size.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][148] ([Intel XE#308]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][149] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][150] ([Intel XE#323]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][151] ([Intel XE#1135]) -> [SKIP][152] ([Intel XE#1135] / [Intel XE#1201]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_feature_discovery@psr1.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@kms_feature_discovery@psr1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [DMESG-WARN][153] ([Intel XE#1551]) -> [INCOMPLETE][154] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][155] ([Intel XE#651]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][158] ([Intel XE#651]) +14 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][159] ([Intel XE#653]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][161] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][162] ([Intel XE#653]) +9 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][163] ([Intel XE#1158]) -> [SKIP][164] ([Intel XE#1158] / [Intel XE#1201]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#605]) -> [SKIP][166] ([Intel XE#605]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][168] ([Intel XE#2318] / [Intel XE#455]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][170] ([Intel XE#455]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][171] ([Intel XE#1489]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][174] ([Intel XE#1489]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg2-set2: [SKIP][175] ([Intel XE#929]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#929]) +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-435/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@psr2-basic: - shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][178] ([Intel XE#929]) +8 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@kms_psr@psr2-basic.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_psr@psr2-basic.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][180] ([Intel XE#327]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][182] ([Intel XE#756]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-435/igt@kms_writeback@writeback-check-output.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@kms_writeback@writeback-check-output.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][183] ([Intel XE#1123]) -> [SKIP][184] ([Intel XE#1123] / [Intel XE#1201]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][185] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][186] ([Intel XE#1126]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][187] ([Intel XE#1126]) -> [SKIP][188] ([Intel XE#1126] / [Intel XE#1201]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][190] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [FAIL][191] ([Intel XE#1000]) -> [TIMEOUT][192] ([Intel XE#1473] / [Intel XE#392]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@xe_evict@evict-threads-large.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@many-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][193] ([Intel XE#288]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#288]) +5 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@once-rebind-prefetch: - shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][196] ([Intel XE#288]) +8 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-prefetch.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-prefetch.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][197] ([Intel XE#255]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#255]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_huc_copy@huc_copy.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-464/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][199] ([Intel XE#1999]) -> [SKIP][200] ([Intel XE#1192] / [Intel XE#1201]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-463/igt@xe_live_ktest@xe_mocs.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][201] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][202] ([Intel XE#560]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@xe_media_fill@media-fill.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_media_fill@media-fill.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][203] ([Intel XE#1337]) -> [SKIP][204] ([Intel XE#1201] / [Intel XE#1337]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][205] ([Intel XE#979]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#979]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][207] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][208] ([Intel XE#366]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [INCOMPLETE][209] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#1551] / [Intel XE#569]) -> [DMESG-WARN][210] ([Intel XE#1551] / [Intel XE#569]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-466/igt@xe_pm@s3-basic-exec.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-436/igt@xe_pm@s3-basic-exec.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][212] ([Intel XE#944]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-433/igt@xe_query@multigpu-query-engines.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-432/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: [SKIP][213] ([Intel XE#944]) -> [SKIP][214] ([Intel XE#1201] / [Intel XE#944]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-433/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [DMESG-WARN][215] ([Intel XE#1760]) -> [DMESG-FAIL][216] ([Intel XE#1760]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7935/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.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#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [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#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [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#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [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#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#2309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2309 [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318 [Intel XE#2345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2345 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [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#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7935 -> IGTPW_11444 * Linux: xe-1646-ea064de9c72e649eca5659c6ef24019faa7019b0 -> xe-1649-b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b IGTPW_11444: 11444 IGT_7935: a85286b8cdfc8d2c902128946e90f8b17cecaa89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1646-ea064de9c72e649eca5659c6ef24019faa7019b0: ea064de9c72e649eca5659c6ef24019faa7019b0 xe-1649-b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b: b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11444/index.html [-- Attachment #2: Type: text/html, Size: 74169 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Fi.CI.IGT: success for New test to validate link-off between active regions (LOBF) (rev3) 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B ` (4 preceding siblings ...) 2024-07-23 7:38 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-07-23 16:30 ` Patchwork 5 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-07-23 16:30 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 95505 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) (rev3) URL : https://patchwork.freedesktop.org/series/135446/ State : success == Summary == CI Bug Log - changes from CI_DRM_15115_full -> IGTPW_11444_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11444_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_vrr@lobf} (NEW): - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@kms_vrr@lobf.html New tests --------- New tests have been introduced between CI_DRM_15115_full and IGTPW_11444_full: ### New IGT tests (1) ### * igt@kms_vrr@lobf: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_11444_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#11078]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +10 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +14 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@gem_ctx_sseu@engines.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][26] -> [FAIL][27] ([i915#5784]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-6/igt@gem_eio@reset-stress.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4771]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4036]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][32] ([i915#6117]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#6344]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][34] ([i915#10386]) +3 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-10/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][35] ([i915#2846]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][40] ([i915#2842]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-8/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: NOTRUN -> [FAIL][41] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][42] ([i915#2842]) +4 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@gem_exec_fence@concurrent.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-range-active: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613] / [i915#7582]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [PASS][56] -> [FAIL][57] ([i915#10378]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][58] ([i915#10378]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][62] ([i915#10378]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_wc@close: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-10/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#8411]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4885]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4885]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-1/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282] / [i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-8/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3281] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@gen9_exec_parse@bb-large.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6227]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][100] -> [WARN][101] ([i915#7356]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#6412]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#7178]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6590]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][106] ([i915#2681]) +3 other tests warn [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][107] -> [FAIL][108] ([i915#3591]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][109] -> [INCOMPLETE][110] ([i915#7790]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-snb6/igt@i915_pm_rps@reset.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#8925]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@i915_pm_rps@thresholds-idle@gt0.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#8925]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3555] / [i915#8925]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4387]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@mock@sanitycheck: - shard-snb: [PASS][116] -> [ABORT][117] ([i915#11703]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-snb7/igt@i915_selftest@mock@sanitycheck.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-snb5/igt@i915_selftest@mock@sanitycheck.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4212]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +11 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][122] ([i915#1769]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: [PASS][124] -> [FAIL][125] ([i915#5956]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#5286]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5286]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +8 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@basic-force-joiner: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#10656]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@kms_big_joiner@basic-force-joiner.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#10656]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +107 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +19 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +158 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +27 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +75 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7213]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +13 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +8 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7116] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#7118]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7118]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6944]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#6944] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#11453]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#11453]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8814]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3555]) +8 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#11453]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3555]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#11453]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][169] +17 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][170] ([i915#2346]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9067]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#9067]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#4103] / [i915#4213]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-tglu: [PASS][175] -> [DMESG-WARN][176] ([i915#10166]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-tglu-7/igt@kms_cursor_legacy@torture-bo@pipe-a.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-8/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#8588]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3804]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#1257]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#8812]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8812]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3840] / [i915#9688]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840] / [i915#9053]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3840] / [i915#9053]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-2/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#1839]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9337]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#658]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-6/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#4881]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#3637]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#8381]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][197] +14 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) +6 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-rkl: [PASS][199] -> [FAIL][200] ([i915#2122]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8381]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#2672]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#2672]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#2587] / [i915#2672]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2672]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#1825]) +34 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1825]) +25 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8708]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8708]) +25 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#5439]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#10055]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +14 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][215] +45 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3023]) +20 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#3458]) +22 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#8708]) +14 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][219] +41 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5354]) +24 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#433]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#4070] / [i915#4816]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#6301]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][227] ([i915#10647]) +5 other tests fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-6/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#11614] / [i915#3582]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8806]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][231] ([i915#8292]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][232] ([i915#8292]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#9423]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9423]) +9 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9728]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#5235] / [i915#9423]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#5235]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#5235]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9423]) +8 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#5235]) +8 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#5235]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][242] +366 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9728]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#9812]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#5354]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#5354]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#9685]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][248] -> [SKIP][249] ([i915#4281]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#9340]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9519]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9519]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][253] -> [SKIP][254] ([i915#9519]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-11/igt@kms_pm_rpm@dpms-non-lpsp.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][255] -> [SKIP][256] ([i915#9519]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#9519]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9519]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pm-caching: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#4077]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#6524] / [i915#6805]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#11520]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#11520]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9808]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf@psr2-pipe-b-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#11520]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#9683]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#9688]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr-dpms: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-11/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#9732]) +12 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-3/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +14 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +28 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +20 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9685]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#9685]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#11131]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#5190]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#5289]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][278] ([i915#5289]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#11131] / [i915#5190]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#4235]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#8623]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][282] ([i915#10959]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#8623]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][284] -> [FAIL][285] ([i915#9196]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8808]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@kms_vrr@flip-dpms.html * {igt@kms_vrr@lobf} (NEW): - shard-snb: NOTRUN -> [SKIP][287] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-snb2/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#9906]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#9906]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8808] / [i915#9906]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2437]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#2437]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2437] / [i915#9412]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2437] / [i915#9412]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#2437] / [i915#9412]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#2435]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#2433]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#8850]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][300] ([i915#6806]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3708]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3708]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3708]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-4/igt@prime_vgem@basic-fence-read.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][304] ([i915#9781]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][305] +24 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#4818]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][307] ([i915#5784]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-17/igt@gem_eio@unwedge-stress.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][309] ([i915#2842]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-rkl: [FAIL][311] ([i915#2842]) -> [PASS][312] +1 other test pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@massive@lmem0: - shard-dg1: [INCOMPLETE][313] ([i915#1982]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-13/igt@gem_lmem_swapping@massive@lmem0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@gem_lmem_swapping@massive@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][315] ([i915#9820]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][317] ([i915#9820]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][319] ([i915#10131] / [i915#10887] / [i915#9697]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][321] ([i915#3591]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0: - shard-dg2: [INCOMPLETE][323] ([i915#11744]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-5/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-mtlp: [INCOMPLETE][325] ([i915#8797]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-mtlp-1/igt@i915_pm_rpm@system-suspend-execbuf.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-1/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [FAIL][327] ([i915#5956]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-snb5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-snb4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4: - shard-dg1: [FAIL][329] ([i915#2122]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][331] ([i915#6880]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * {igt@kms_plane@pixel-format@pipe-a-plane-3}: - shard-mtlp: [ABORT][333] -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-a-plane-3.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-5/igt@kms_plane@pixel-format@pipe-a-plane-3.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf@psr2-pipe-a-edp-1: - shard-mtlp: [INCOMPLETE][335] -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-mtlp-1/igt@kms_psr2_sf@overlay-plane-update-continuous-sf@psr2-pipe-a-edp-1.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf@psr2-pipe-a-edp-1.html * igt@kms_vblank@query-busy-hang@pipe-c-hdmi-a-1: - shard-glk: [INCOMPLETE][337] -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-glk2/igt@kms_vblank@query-busy-hang@pipe-c-hdmi-a-1.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-glk2/igt@kms_vblank@query-busy-hang@pipe-c-hdmi-a-1.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-mtlp: [INCOMPLETE][339] ([i915#9853]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-mtlp-5/igt@perf_pmu@rc6@runtime-pm-gt0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-gt0.html #### Warnings #### * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][341] ([i915#9424]) -> [SKIP][342] ([i915#9433]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg1-15/igt@kms_content_protection@mei-interface.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: [SKIP][343] ([i915#11453] / [i915#3359]) -> [SKIP][344] ([i915#11453]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][345] ([i915#10433] / [i915#3458]) -> [SKIP][346] ([i915#3458]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_psr@fbc-pr-primary-blt: - shard-dg2: [SKIP][347] ([i915#1072] / [i915#9732]) -> [SKIP][348] ([i915#1072] / [i915#9673] / [i915#9732]) +2 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-8/igt@kms_psr@fbc-pr-primary-blt.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-11/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: [SKIP][349] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][350] ([i915#1072] / [i915#9732]) +10 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: [SKIP][351] ([i915#11131] / [i915#4235]) -> [SKIP][352] ([i915#11131]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][353] ([i915#7484]) -> [FAIL][354] ([i915#9100]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15115/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11744]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11744 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7356 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8797 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7935 -> IGTPW_11444 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15115: b27d70e1042bf6a31ba7e5acf58b61c9cd28f95b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11444: 11444 IGT_7935: a85286b8cdfc8d2c902128946e90f8b17cecaa89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11444/index.html [-- Attachment #2: Type: text/html, Size: 118829 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) @ 2024-07-31 12:02 Jeevan B 2024-07-31 12:02 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 0 siblings, 1 reply; 17+ messages in thread From: Jeevan B @ 2024-07-31 12:02 UTC (permalink / raw) To: igt-dev; +Cc: bhanuprakash.modem, kunal1.joshi, animesh.manna, Jeevan B Add debugfs entry to validate LOBF status and create a new test to validate. Signed-off-by: Jeevan B <jeevan.b@intel.com> Jeevan B (2): lib/igt_kms: Added library functions for LOBF status tests/kms_vrr: Add new test to validate LOBF lib/igt_kms.c | 23 ++++++++++++++++++++ lib/igt_kms.h | 1 + tests/kms_vrr.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 79 insertions(+), 2 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-31 12:02 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B @ 2024-07-31 12:02 ` Jeevan B 2024-07-31 12:01 ` Joshi, Kunal1 2024-07-31 13:00 ` Modem, Bhanuprakash 0 siblings, 2 replies; 17+ messages in thread From: Jeevan B @ 2024-07-31 12:02 UTC (permalink / raw) To: igt-dev; +Cc: bhanuprakash.modem, kunal1.joshi, animesh.manna, Jeevan B Validate refresh rate changes that appear to be stable but actually change slightly in the VRR using the fixed refresh rate framework for non-PSR scenarios. v2: add PR check. v3: update commit message and fix code structure. v4: update logic using existing code. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_vrr.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 55 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 7e8885f16..851b8bbee 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -31,6 +31,7 @@ */ #include "igt.h" +#include "igt_psr.h" #include "i915/intel_drrs.h" #include "sw_sync.h" #include <fcntl.h> @@ -76,6 +77,11 @@ * without a full modeset. * Functionality: LRR * + * SUBTEST: lobf + * Description: Test to validate link-off between active frames in non-psr + * operation + * Functionality: LOBF + * * SUBTEST: max-min * Description: Oscillates between highest and lowest refresh each frame for * manual flicker profiling @@ -106,7 +112,8 @@ enum { TEST_FASTSET = 1 << 7, TEST_MAXMIN = 1 << 8, TEST_CMRR = 1 << 9, - TEST_NEGATIVE = 1 << 10, + TEST_LINK_OFF = 1 << 10, + TEST_NEGATIVE = 1 << 11, }; enum { @@ -129,6 +136,7 @@ typedef struct vtest_ns { typedef struct data { igt_display_t display; int drm_fd; + int debugfs_fd; igt_plane_t *primary; igt_fb_t fb[2]; range_t range; @@ -784,6 +792,27 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu } } +static void +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) +{ + uint64_t rate[] = {0}; + + rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); + prepare_test(data, output, pipe); + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); + + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); + + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); + flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); + rate[0] = rate_from_refresh(data->switch_modes[LOW_RR_MODE].vrefresh); + flip_and_measure(data, output, pipe, rate, 1, NSECS_PER_SEC); + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), + "LOBF not enabled\n"); +} + static void test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) { @@ -843,6 +872,8 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output) static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags) { + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); + if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) && output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) return false; @@ -852,6 +883,20 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags igt_info("Selected panel won't support DRRS.\n"); return false; } + if ((flags & TEST_LINK_OFF) && + output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) + return false; + + if ((flags & TEST_LINK_OFF) && + (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL))) + psr_disable(data->drm_fd, data->debugfs_fd, NULL); + + if ((flags & TEST_LINK_OFF) && + igt_get_i915_edp_lobf_status(data->drm_fd, output->name)) { + igt_info("LOBF not supported. \n"); + return false; + } /* Reset output */ igt_display_reset(&data->display); @@ -1030,13 +1075,21 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic("seamless-rr-switch-virtual") run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); - igt_describe("Test to validate the the content rate exactly match with the " + igt_describe("Test to validate the content rate exactly match with the " "requested rate without any frame drops."); igt_subtest_with_dynamic("cmrr") { igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); run_vrr_test(&data, test_cmrr, TEST_CMRR); } + + igt_describe("Test to validate the link-off between active frames in " + "non-PSR operation."); + igt_subtest_with_dynamic("lobf") { + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); + + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-31 12:02 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B @ 2024-07-31 12:01 ` Joshi, Kunal1 2024-07-31 13:00 ` Modem, Bhanuprakash 1 sibling, 0 replies; 17+ messages in thread From: Joshi, Kunal1 @ 2024-07-31 12:01 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org Cc: Modem, Bhanuprakash, Manna, Animesh Hello Jeevan, Regarding one of the changes suggested We got feedback from Animesh, for now you can add a fixme once we have kmd changes available You can add this check. From Animesh "Lobf can be enabled when (Set Context Latency + Guardband) > (First SDP Position + Wake Time). I am not sure waketime and sdp position details are used by any other igt tests are not. If needed I can add part of lobf_info debugfs entry from kernel." LGTM Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> can we have execution before merging with required kmd patches? ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-31 12:02 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 2024-07-31 12:01 ` Joshi, Kunal1 @ 2024-07-31 13:00 ` Modem, Bhanuprakash 1 sibling, 0 replies; 17+ messages in thread From: Modem, Bhanuprakash @ 2024-07-31 13:00 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: kunal1.joshi, animesh.manna Hi Jeevan, On 31-07-2024 05:32 pm, Jeevan B wrote: > Validate refresh rate changes that appear to be stable but actually > change slightly in the VRR using the fixed refresh rate framework > for non-PSR scenarios. > > v2: add PR check. > v3: update commit message and fix code structure. > v4: update logic using existing code. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_vrr.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 55 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 7e8885f16..851b8bbee 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -31,6 +31,7 @@ > */ > > #include "igt.h" > +#include "igt_psr.h" > #include "i915/intel_drrs.h" > #include "sw_sync.h" > #include <fcntl.h> > @@ -76,6 +77,11 @@ > * without a full modeset. > * Functionality: LRR > * > + * SUBTEST: lobf > + * Description: Test to validate link-off between active frames in non-psr > + * operation > + * Functionality: LOBF > + * > * SUBTEST: max-min > * Description: Oscillates between highest and lowest refresh each frame for > * manual flicker profiling > @@ -106,7 +112,8 @@ enum { > TEST_FASTSET = 1 << 7, > TEST_MAXMIN = 1 << 8, > TEST_CMRR = 1 << 9, > - TEST_NEGATIVE = 1 << 10, > + TEST_LINK_OFF = 1 << 10, > + TEST_NEGATIVE = 1 << 11, > }; > > enum { > @@ -129,6 +136,7 @@ typedef struct vtest_ns { > typedef struct data { > igt_display_t display; > int drm_fd; > + int debugfs_fd; > igt_plane_t *primary; > igt_fb_t fb[2]; > range_t range; > @@ -784,6 +792,27 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu > } > } > > +static void > +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > +{ > + uint64_t rate[] = {0}; > + > + rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > + prepare_test(data, output, pipe); > + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); Please drop this redundant initialization as we already initialized in output_constgraint(). > + > + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", > + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); > + > + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > + flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); > + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); > + rate[0] = rate_from_refresh(data->switch_modes[LOW_RR_MODE].vrefresh); > + flip_and_measure(data, output, pipe, rate, 1, NSECS_PER_SEC); > + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), > + "LOBF not enabled\n"); > +} > + > static void > test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > { > @@ -843,6 +872,8 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output) > > static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags) > { > + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); Don't we need to close this fd on cleanup? > + > if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) && As mentioned in previous revisions, please extend this check by oring with TEST_LINK_OFF. > output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) > return false; > @@ -852,6 +883,20 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags > igt_info("Selected panel won't support DRRS.\n"); > return false; > } > + if ((flags & TEST_LINK_OFF) && > + output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) > + return false; Please read above comment. > + > + if ((flags & TEST_LINK_OFF) && > + (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || > + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL))) > + psr_disable(data->drm_fd, data->debugfs_fd, NULL); > + > + if ((flags & TEST_LINK_OFF) && > + igt_get_i915_edp_lobf_status(data->drm_fd, output->name)) { > + igt_info("LOBF not supported. \n"); > + return false; > + } Please combine these two conditions. Ex: if (flags & TEST_LINK_OFF) { if (psr check) psr_disable(); if (lobf status) return false; } > > /* Reset output */ > igt_display_reset(&data->display); > @@ -1030,13 +1075,21 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > igt_subtest_with_dynamic("seamless-rr-switch-virtual") > run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > - igt_describe("Test to validate the the content rate exactly match with the " > + igt_describe("Test to validate the content rate exactly match with the " As mentioned in previous revisions, this change is not related to this patch. Please drop this. - Bhanu > "requested rate without any frame drops."); > igt_subtest_with_dynamic("cmrr") { > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > > run_vrr_test(&data, test_cmrr, TEST_CMRR); > } > + > + igt_describe("Test to validate the link-off between active frames in " > + "non-PSR operation."); > + igt_subtest_with_dynamic("lobf") { > + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > + > + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); > + } > } > > igt_fixture { ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) @ 2024-07-30 8:31 Jeevan B 2024-07-30 8:31 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 0 siblings, 1 reply; 17+ messages in thread From: Jeevan B @ 2024-07-30 8:31 UTC (permalink / raw) To: igt-dev; +Cc: bhanuprakash.modem, kunal1.joshi, animesh.manna, Jeevan B Add debugfs entry to validate LOBF status and create a new test to validate. Signed-off-by: Jeevan B <jeevan.b@intel.com> Jeevan B (2): lib/igt_kms: Added library functions for LOBF status tests/kms_vrr: Add new test to validate LOBF lib/igt_kms.c | 23 +++++++++++++++++ lib/igt_kms.h | 1 + tests/kms_vrr.c | 67 +++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 89 insertions(+), 2 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-30 8:31 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B @ 2024-07-30 8:31 ` Jeevan B 2024-07-30 12:44 ` Modem, Bhanuprakash 0 siblings, 1 reply; 17+ messages in thread From: Jeevan B @ 2024-07-30 8:31 UTC (permalink / raw) To: igt-dev; +Cc: bhanuprakash.modem, kunal1.joshi, animesh.manna, Jeevan B Validate refresh rate changes that appear to be stable but actually change slightly in the VRR using the fixed refresh rate framework for non-PSR scenarios. v2: Add PR check. v3: Update commit message and fix code structure. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_vrr.c | 67 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 65 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 7e8885f16..88855b01d 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -31,6 +31,7 @@ */ #include "igt.h" +#include "igt_psr.h" #include "i915/intel_drrs.h" #include "sw_sync.h" #include <fcntl.h> @@ -76,6 +77,11 @@ * without a full modeset. * Functionality: LRR * + * SUBTEST: lobf + * Description: Test to validate link-off between active frames in non-psr + * operation + * Functionality: LOBF + * * SUBTEST: max-min * Description: Oscillates between highest and lowest refresh each frame for * manual flicker profiling @@ -106,7 +112,8 @@ enum { TEST_FASTSET = 1 << 7, TEST_MAXMIN = 1 << 8, TEST_CMRR = 1 << 9, - TEST_NEGATIVE = 1 << 10, + TEST_LINK_OFF = 1 << 10, + TEST_NEGATIVE = 1 << 11, }; enum { @@ -129,6 +136,7 @@ typedef struct vtest_ns { typedef struct data { igt_display_t display; int drm_fd; + int debugfs_fd; igt_plane_t *primary; igt_fb_t fb[2]; range_t range; @@ -784,6 +792,45 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu } } +static void +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) +{ + bool change_mode = false, flip = true; + time_t startTime = time(NULL); + time_t secs = 4, change_time = 3; + igt_plane_t *primary; + drmModeModeInfo mode = *igt_output_get_mode(output); + + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); + + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); + + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 1, 1, 1, &data->fb[0]); + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 1, 1, 0, &data->fb[1]); + + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); + + while (time(NULL) - startTime < secs) { + flip = !flip; + igt_plane_set_fb(primary, flip ? &data->fb[0] : &data->fb[1]); + igt_display_commit(&data->display); + if (!change_mode && time(NULL) - startTime >= change_time) { + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); + change_mode = true; + } + } + + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), + "LOBF not enabled\n"); +} + static void test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) { @@ -851,6 +898,15 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags !intel_output_has_drrs(data->drm_fd, output)) { igt_info("Selected panel won't support DRRS.\n"); return false; + + if ((flags & TEST_LINK_OFF) && + output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) + return false; + + if ((flags & TEST_LINK_OFF) && + (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL))) + psr_disable(data->drm_fd, data->debugfs_fd, NULL); } /* Reset output */ @@ -1030,13 +1086,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic("seamless-rr-switch-virtual") run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); - igt_describe("Test to validate the the content rate exactly match with the " + igt_describe("Test to validate the content rate exactly match with the " "requested rate without any frame drops."); igt_subtest_with_dynamic("cmrr") { igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); run_vrr_test(&data, test_cmrr, TEST_CMRR); } + igt_describe("Test to validate the link-off between active frames in " + "non-PSR operation."); + igt_subtest_with_dynamic("lobf") { + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); + + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-30 8:31 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B @ 2024-07-30 12:44 ` Modem, Bhanuprakash 2024-07-31 9:22 ` B, Jeevan 0 siblings, 1 reply; 17+ messages in thread From: Modem, Bhanuprakash @ 2024-07-30 12:44 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: kunal1.joshi, animesh.manna Hi Jeevan, On 30-07-2024 02:01 pm, Jeevan B wrote: > Validate refresh rate changes that appear to be stable but actually > change slightly in the VRR using the fixed refresh rate framework > for non-PSR scenarios. > > v2: Add PR check. > v3: Update commit message and fix code structure. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_vrr.c | 67 +++++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 65 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 7e8885f16..88855b01d 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -31,6 +31,7 @@ > */ > > #include "igt.h" > +#include "igt_psr.h" > #include "i915/intel_drrs.h" > #include "sw_sync.h" > #include <fcntl.h> > @@ -76,6 +77,11 @@ > * without a full modeset. > * Functionality: LRR > * > + * SUBTEST: lobf > + * Description: Test to validate link-off between active frames in non-psr > + * operation > + * Functionality: LOBF > + * > * SUBTEST: max-min > * Description: Oscillates between highest and lowest refresh each frame for > * manual flicker profiling > @@ -106,7 +112,8 @@ enum { > TEST_FASTSET = 1 << 7, > TEST_MAXMIN = 1 << 8, > TEST_CMRR = 1 << 9, > - TEST_NEGATIVE = 1 << 10, > + TEST_LINK_OFF = 1 << 10, > + TEST_NEGATIVE = 1 << 11, > }; > > enum { > @@ -129,6 +136,7 @@ typedef struct vtest_ns { > typedef struct data { > igt_display_t display; > int drm_fd; > + int debugfs_fd; > igt_plane_t *primary; > igt_fb_t fb[2]; > range_t range; > @@ -784,6 +792,45 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu > } > } > > +static void > +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > +{ > + bool change_mode = false, flip = true; > + time_t startTime = time(NULL); > + time_t secs = 4, change_time = 3; ----------------------^----------------^ What is the funda behind these magic numbers? > + igt_plane_t *primary; > + drmModeModeInfo mode = *igt_output_get_mode(output); > + > + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); Please move this initialization to output_constraint(). > + > + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", > + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); > + > + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); I would recommend to move this check to output_constraint(); Ex: if ((flags & TEST_LINK_OFF) && igt_get_i915_edp_lobf_status()) { igt_info("Please add your skip message"); return false; } > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > + 1, 1, 1, &data->fb[0]); > + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > + 1, 1, 0, &data->fb[1]); Please re-use prepare_test() to create framebuffers. > + > + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > + > + while (time(NULL) - startTime < secs) { > + flip = !flip; > + igt_plane_set_fb(primary, flip ? &data->fb[0] : &data->fb[1]); Instead of this loop, can't we use flip_and_measure(3 sec)? Ex: prepare_test(); flip_and_measure(3 sec); igt_output_override_mode(low_rr_mode); flip_and_measure(1 sec); igt_assert_f(igt_get_i915_edp_lobf_status("LOBF not enabled")); > + igt_display_commit(&data->display); > + if (!change_mode && time(NULL) - startTime >= change_time) { > + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); What is the expectation if there is no LOW_RR_MODE available? I can see, there is an VRR panel available in CI which is having single mode [2]. Is this test not applicable on this panel? [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1689-7d7c6494ae7dcfb15998b64387ba66b49da16286/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html > + change_mode = true; > + } > + } > + > + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), > + "LOBF not enabled\n"); > +} > + > static void > test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > { > @@ -851,6 +898,15 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags > !intel_output_has_drrs(data->drm_fd, output)) { > igt_info("Selected panel won't support DRRS.\n"); > return false; > + > + if ((flags & TEST_LINK_OFF) && > + output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) Instead of writing a new condition, why can't we extend the existing logic [1]. [1]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/blob/master/tests/kms_vrr.c#L846 > + return false; > + > + if ((flags & TEST_LINK_OFF) && > + (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || > + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL))) data->debugfs is not initialized, hence this check will never pass. > + psr_disable(data->drm_fd, data->debugfs_fd, NULL); > } > > /* Reset output */ > @@ -1030,13 +1086,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > igt_subtest_with_dynamic("seamless-rr-switch-virtual") > run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > - igt_describe("Test to validate the the content rate exactly match with the " > + igt_describe("Test to validate the content rate exactly match with the " This change is not related to this patch. > "requested rate without any frame drops."); > igt_subtest_with_dynamic("cmrr") { > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > > run_vrr_test(&data, test_cmrr, TEST_CMRR); > } Please add one new line here. - Bhanu > + igt_describe("Test to validate the link-off between active frames in " > + "non-PSR operation."); > + igt_subtest_with_dynamic("lobf") { > + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); > + > + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); > + } > } > > igt_fixture { ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-30 12:44 ` Modem, Bhanuprakash @ 2024-07-31 9:22 ` B, Jeevan 0 siblings, 0 replies; 17+ messages in thread From: B, Jeevan @ 2024-07-31 9:22 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org Cc: Joshi, Kunal1, Manna, Animesh > -----Original Message----- > From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> > Sent: Tuesday, July 30, 2024 6:14 PM > To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org > Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>; Manna, Animesh > <animesh.manna@intel.com> > Subject: Re: [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF > > Hi Jeevan, > > On 30-07-2024 02:01 pm, Jeevan B wrote: > > Validate refresh rate changes that appear to be stable but actually > > change slightly in the VRR using the fixed refresh rate framework for > > non-PSR scenarios. > > > > v2: Add PR check. > > v3: Update commit message and fix code structure. > > > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > > --- > > tests/kms_vrr.c | 67 > +++++++++++++++++++++++++++++++++++++++++++++++-- > > 1 file changed, 65 insertions(+), 2 deletions(-) > > > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > 7e8885f16..88855b01d 100644 > > --- a/tests/kms_vrr.c > > +++ b/tests/kms_vrr.c > > @@ -31,6 +31,7 @@ > > */ > > > > #include "igt.h" > > +#include "igt_psr.h" > > #include "i915/intel_drrs.h" > > #include "sw_sync.h" > > #include <fcntl.h> > > @@ -76,6 +77,11 @@ > > * without a full modeset. > > * Functionality: LRR > > * > > + * SUBTEST: lobf > > + * Description: Test to validate link-off between active frames in non-psr > > + * operation > > + * Functionality: LOBF > > + * > > * SUBTEST: max-min > > * Description: Oscillates between highest and lowest refresh each frame for > > * manual flicker profiling > > @@ -106,7 +112,8 @@ enum { > > TEST_FASTSET = 1 << 7, > > TEST_MAXMIN = 1 << 8, > > TEST_CMRR = 1 << 9, > > - TEST_NEGATIVE = 1 << 10, > > + TEST_LINK_OFF = 1 << 10, > > + TEST_NEGATIVE = 1 << 11, > > }; > > > > enum { > > @@ -129,6 +136,7 @@ typedef struct vtest_ns { > > typedef struct data { > > igt_display_t display; > > int drm_fd; > > + int debugfs_fd; > > igt_plane_t *primary; > > igt_fb_t fb[2]; > > range_t range; > > @@ -784,6 +792,45 @@ test_seamless_virtual_rr_basic(data_t *data, enum > pipe pipe, igt_output_t *outpu > > } > > } > > > > +static void > > +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, > > +uint32_t flags) { > > + bool change_mode = false, flip = true; > > + time_t startTime = time(NULL); > > + time_t secs = 4, change_time = 3; > ----------------------^----------------^ > What is the funda behind these magic numbers? Well we want to run the test for 4 secs and change the modeset at 3 so that in remaining half second we can expect the LOBF active status. > > > + igt_plane_t *primary; > > + drmModeModeInfo mode = *igt_output_get_mode(output); > > + > > + data->debugfs_fd = igt_debugfs_dir(data->drm_fd); > > Please move this initialization to output_constraint(). Got it. > > > + > > + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) > Hz\n", > > + output->name, kmstest_pipe_name(pipe), data->range.min, > > +data->range.max); > > + > > + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, > > +output->name)); > > I would recommend to move this check to output_constraint(); > Ex: > if ((flags & TEST_LINK_OFF) && > igt_get_i915_edp_lobf_status()) { > igt_info("Please add your skip message"); > return false; > } > Sure will do this. > > + primary = igt_output_get_plane_type(output, > DRM_PLANE_TYPE_PRIMARY); > > + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, > > + DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > > + 1, 1, 1, &data->fb[0]); > > + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, > > + DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > > + 1, 1, 0, &data->fb[1]); > > Please re-use prepare_test() to create framebuffers. Ok > > > + > > + igt_output_override_mode(output, &data- > >switch_modes[HIGH_RR_MODE]); > > + > > + while (time(NULL) - startTime < secs) { > > + flip = !flip; > > + igt_plane_set_fb(primary, flip ? &data->fb[0] : &data->fb[1]); > > Instead of this loop, can't we use flip_and_measure(3 sec)? > Will see if can adopt that. > Ex: > prepare_test(); > flip_and_measure(3 sec); > igt_output_override_mode(low_rr_mode); > flip_and_measure(1 sec); > igt_assert_f(igt_get_i915_edp_lobf_status("LOBF not enabled")); > > > + igt_display_commit(&data->display); > > + if (!change_mode && time(NULL) - startTime >= change_time) { > > + igt_output_override_mode(output, > > +&data->switch_modes[LOW_RR_MODE]); > > What is the expectation if there is no LOW_RR_MODE available? I can see, there > is an VRR panel available in CI which is having single mode [2]. > Is this test not applicable on this panel? > > [2]: > https://intel-gfx-ci.01.org/tree/intel-xe/xe-1689- > 7d7c6494ae7dcfb15998b64387ba66b49da16286/bat-lnl- > 1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html > > > + change_mode = true; > > + } > > + } > > + > > + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output- > >name), > > + "LOBF not enabled\n"); > > +} > > + > > static void > > test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > > { > > @@ -851,6 +898,15 @@ static bool output_constraint(data_t *data, > igt_output_t *output, uint32_t flags > > !intel_output_has_drrs(data->drm_fd, output)) { > > igt_info("Selected panel won't support DRRS.\n"); > > return false; > > + > > + if ((flags & TEST_LINK_OFF) && > > + output->config.connector->connector_type != > > +DRM_MODE_CONNECTOR_eDP) > > Instead of writing a new condition, why can't we extend the existing logic [1]. > ok > [1]: > https://gitlab.freedesktop.org/drm/igt-gpu-tools/- > /blob/master/tests/kms_vrr.c#L846 > > > + return false; > > + > > + if ((flags & TEST_LINK_OFF) && > > + (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, > NULL) || > > + psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, > > +NULL))) > > data->debugfs is not initialized, hence this check will never pass. > > > + psr_disable(data->drm_fd, data->debugfs_fd, NULL); > > } > > > > /* Reset output */ > > @@ -1030,13 +1086,20 @@ igt_main_args("drs:", long_opts, help_str, > opt_handler, &data) > > igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > run_vrr_test(&data, test_seamless_virtual_rr_basic, > > TEST_SEAMLESS_VIRTUAL_RR); > > > > - igt_describe("Test to validate the the content rate exactly match > with the " > > + igt_describe("Test to validate the content rate exactly match with > the " > > This change is not related to this patch. > > > "requested rate without any frame drops."); > > igt_subtest_with_dynamic("cmrr") { > > > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) > > >= 20); > > > > run_vrr_test(&data, test_cmrr, TEST_CMRR); > > } > > Please add one new line here. > > - Bhanu > > > + igt_describe("Test to validate the link-off between active frames > in " > > + "non-PSR operation."); > > + igt_subtest_with_dynamic("lobf") { > > + > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= > > +20); > > + > > + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); > > + } > > } > > > > igt_fixture { ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) @ 2024-07-22 7:50 Jeevan B 2024-07-22 7:50 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 0 siblings, 1 reply; 17+ messages in thread From: Jeevan B @ 2024-07-22 7:50 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B Add debugfs entry to validate LOBF status and create a new test to validate. Signed-off-by: Jeevan B <jeevan.b@intel.com> Jeevan B (2): lib/igt_kms: Added library functions for LOBF status tests/kms_vrr: Add new test to validate LOBF lib/igt_kms.c | 23 ++++++++++++++++++++ lib/igt_kms.h | 1 + tests/kms_vrr.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 79 insertions(+), 2 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF 2024-07-22 7:50 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B @ 2024-07-22 7:50 ` Jeevan B 0 siblings, 0 replies; 17+ messages in thread From: Jeevan B @ 2024-07-22 7:50 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B Validate pseudo static refresh rate changes in the VRR with fixed refresh rate framework for non-psr scenarios. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_vrr.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 55 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 7e8885f16..a79819303 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -31,12 +31,18 @@ */ #include "igt.h" +#include "igt_psr.h" #include "i915/intel_drrs.h" #include "sw_sync.h" #include <fcntl.h> #include <signal.h> /** + * SUBTEST: lobf + * Description: Test to validate link-off between active frames in non-psr + * operation + * Functionality: LOBF + * * SUBTEST: cmrr * Description: Test to validate the content rate to exactly match with the * requested rate without any frame drops. @@ -106,7 +112,8 @@ enum { TEST_FASTSET = 1 << 7, TEST_MAXMIN = 1 << 8, TEST_CMRR = 1 << 9, - TEST_NEGATIVE = 1 << 10, + TEST_LINK_OFF = 1 << 10, + TEST_NEGATIVE = 1 << 11, }; enum { @@ -129,6 +136,7 @@ typedef struct vtest_ns { typedef struct data { igt_display_t display; int drm_fd; + int debugfs_fd; igt_plane_t *primary; igt_fb_t fb[2]; range_t range; @@ -784,6 +792,43 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu } } +static void +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) +{ + bool change_mode = false; + time_t startTime = time(NULL); + time_t secs = 4, change_time = 3; + igt_plane_t *primary; + drmModeModeInfo mode = *igt_output_get_mode(output); + + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); + + igt_require(output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP); + igt_require(!igt_get_i915_edp_lobf_status(data->drm_fd, output->name)); + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL)) + psr_disable(data->drm_fd, data->debugfs_fd, NULL); + + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 1, 1, 1, &data->fb[0]); + + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); + + while (time(NULL) - startTime < secs) { + igt_plane_set_fb(primary, &data->fb[0]); + igt_display_commit(&data->display); + if (!change_mode && time(NULL) - startTime >= change_time) { + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); + change_time = true; + } + } + + igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name), + "LOBF not enabled\n"); +} + static void test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) { @@ -973,6 +1018,7 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) { igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); kmstest_set_vt_graphics_mode(); @@ -1030,13 +1076,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic("seamless-rr-switch-virtual") run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); - igt_describe("Test to validate the the content rate exactly match with the " + igt_describe("Test to validate the content rate exactly match with the " "requested rate without any frame drops."); igt_subtest_with_dynamic("cmrr") { igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); run_vrr_test(&data, test_cmrr, TEST_CMRR); } + igt_describe("Test to validate the link-off between active frames in " + "non-PSR operation."); + igt_subtest_with_dynamic("lobf") { + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); + + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-07-31 13:01 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-23 4:28 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-07-23 4:28 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B 2024-07-23 4:28 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 2024-07-23 11:47 ` Modem, Bhanuprakash 2024-07-25 9:11 ` [i-g-t,2/2] " Joshi, Kunal1 2024-07-29 8:49 ` Manna, Animesh 2024-07-23 6:27 ` ✓ CI.xeBAT: success for New test to validate link-off between active regions (LOBF) (rev3) Patchwork 2024-07-23 6:37 ` ✓ Fi.CI.BAT: " Patchwork 2024-07-23 7:38 ` ✗ CI.xeFULL: failure " Patchwork 2024-07-23 16:30 ` ✓ Fi.CI.IGT: success " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-07-31 12:02 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-07-31 12:02 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 2024-07-31 12:01 ` Joshi, Kunal1 2024-07-31 13:00 ` Modem, Bhanuprakash 2024-07-30 8:31 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-07-30 8:31 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B 2024-07-30 12:44 ` Modem, Bhanuprakash 2024-07-31 9:22 ` B, Jeevan 2024-07-22 7:50 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-07-22 7:50 ` [PATCH i-g-t 2/2] tests/kms_vrr: Add new test to validate LOBF Jeevan B
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox