* [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode
@ 2024-04-24 20:13 Manasi Navare
2024-04-24 20:13 ` [PATCH v3 2/2] HAX: run kms_vrr tests in BAT Manasi Navare
` (14 more replies)
0 siblings, 15 replies; 44+ messages in thread
From: Manasi Navare @ 2024-04-24 20:13 UTC (permalink / raw)
To: igt-dev
Cc: Manasi Navare, Drew Davenport, Bhanuprakash Modem,
Ville Syrjälä, Sean Paul
This subtest validates LRR fastset functionality by testing seamless switching
without full modeset to any of the virtual LRR mode within VRR range.
Here we start from highest refresh rate mode and then switch to virtual LRR
modes in the steps of 10Hz within the VRR range.
This is used to test the LRR fastset functionality of the driver.
v5:
- Pass a reference to flip_and_measure (bhanu)
- Add a new line between between declaration and code logic
v4:
- Change the test name to align with drrs/vrr tests (Bhanu)
- Fix some build warnings due to rebase
- Use a local virtual_mode variable
v3:
- Fix build error due to rebase (Manasi)
Cc: Drew Davenport <ddavenport@chromium.org>
Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Sean Paul <seanpaul@chromium.org>
Signed-off-by: Manasi Navare <navaremanasi@chromium.org>
---
tests/kms_vrr.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 69 insertions(+), 4 deletions(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 15c62b34b..7f64d6806 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -66,6 +66,11 @@
* Description: Test to switch RR seamlessly without modeset.
* Functionality: adaptive_sync, drrs
*
+ * SUBTEST: seamless-rr-switch-virtual
+ * Description: Test to create a Virtual Mode in VRR range and switch to it
+ * without a full modeset.
+ * Functionality: LRR
+ *
* SUBTEST: max-min
* Description: Oscillates between highest and lowest refresh each frame for
* manual flicker profiling
@@ -89,9 +94,10 @@ enum {
TEST_FLIPLINE = 1 << 3,
TEST_SEAMLESS_VRR = 1 << 4,
TEST_SEAMLESS_DRRS = 1 << 5,
- TEST_FASTSET = 1 << 6,
- TEST_MAXMIN = 1 << 7,
- TEST_NEGATIVE = 1 << 8,
+ TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
+ TEST_FASTSET = 1 << 7,
+ TEST_MAXMIN = 1 << 8,
+ TEST_NEGATIVE = 1 << 9,
};
enum {
@@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t *output, unsigned int vrr_min)
return mode;
}
+static drmModeModeInfo
+virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int virtual_refresh_rate)
+{
+ drmModeModeInfo mode = *igt_output_get_mode(output);
+ uint64_t clock_hz = mode.clock * 1000;
+
+ mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate);
+ mode.vrefresh = virtual_refresh_rate;
+
+ return mode;
+}
+
/* Read min and max vrr range from the connector debugfs. */
static range_t
get_vrr_range(data_t *data, igt_output_t *output)
@@ -641,6 +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint3
vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result);
}
+static void
+test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
+{
+ uint32_t result;
+ unsigned int vrefresh;
+ uint64_t rate[] = {0};
+
+ igt_info("Use HIGH_RR Mode as default\n");
+ kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]);
+
+ prepare_test(data, output, pipe);
+ rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh);
+
+ /*
+ * Sink with DRR and VRR can be in downclock mode so
+ * switch to highest refresh rate mode.
+ */
+ igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]);
+ igt_assert(igt_display_try_commit_atomic(&data->display, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0);
+
+ result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS);
+ igt_assert_f(result > 75,
+ "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n",
+ data->switch_modes[HIGH_RR_MODE].vrefresh, rate[0], result);
+
+ /* Switch to Virtual RR */
+ for (vrefresh = data->range.min + 10; vrefresh < data->range.max; vrefresh += 10) {
+ drmModeModeInfo virtual_mode = virtual_rr_vrr_range_mode(output, vrefresh);
+
+ igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", vrefresh);
+ kmstest_dump_mode(&virtual_mode);
+
+ igt_output_override_mode(output, &virtual_mode);
+ igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0);
+
+ rate[0] = rate_from_refresh(vrefresh);
+ result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS);
+ igt_assert_f(result > 75,
+ "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n",
+ vrefresh, rate[0], result);
+ }
+}
+
static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
{
if (vrr_capable(output))
@@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags
igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]);
/* Search for a low refresh rate mode. */
- if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)))
+ if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_SEAMLESS_VIRTUAL_RR)))
return true;
data->switch_modes[LOW_RR_MODE] = low_rr_mode_with_same_res(output, data->range.min);
@@ -841,6 +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
"between flip timestamps converges to the requested rate");
igt_subtest_with_dynamic("flip-basic-fastset")
run_vrr_test(&data, test_basic, TEST_FASTSET);
+
+ igt_describe("Test to switch to any custom virtual mode in VRR range without modeset.");
+ igt_subtest_with_dynamic("seamless-rr-switch-virtual")
+ run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
}
igt_fixture {
--
2.44.0.769.g3c40516874-goog
^ permalink raw reply related [flat|nested] 44+ messages in thread* [PATCH v3 2/2] HAX: run kms_vrr tests in BAT 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare @ 2024-04-24 20:13 ` Manasi Navare 2024-04-24 21:14 ` ✓ CI.xeBAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Patchwork ` (13 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Manasi Navare @ 2024-04-24 20:13 UTC (permalink / raw) To: igt-dev; +Cc: Manasi Navare Signed-off-by: Manasi Navare <navaremanasi@chromium.org> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..53a364ae6 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -129,6 +129,7 @@ igt@kms_psr@psr-cursor-plane-move igt@kms_psr@psr-sprite-plane-onoff igt@kms_psr@psr-primary-mmap-gtt igt@kms_setmode@basic-clone-single-crtc +igt@kms_vrr igt@i915_pm_rps@basic-api igt@prime_self_import@basic-llseek-bad igt@prime_self_import@basic-llseek-size -- 2.44.0.769.g3c40516874-goog ^ permalink raw reply related [flat|nested] 44+ messages in thread
* ✓ CI.xeBAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare 2024-04-24 20:13 ` [PATCH v3 2/2] HAX: run kms_vrr tests in BAT Manasi Navare @ 2024-04-24 21:14 ` Patchwork 2024-04-24 21:20 ` ✗ Fi.CI.BAT: failure " Patchwork ` (12 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-04-24 21:14 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1125 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode URL : https://patchwork.freedesktop.org/series/132866/ State : success == Summary == CI Bug Log - changes from XEIGT_7823_BAT -> XEIGTPW_11065_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7823 -> IGTPW_11065 * Linux: xe-1170-7ec59c2fcb5419f0d48b7918200be26e360388e7 -> xe-1171-ad654139fd5a7773f0310b5f745c105cdba520e8 IGTPW_11065: 11065 IGT_7823: 61121a2eac4d191ad9f3077948c8ba19686fbb16 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1170-7ec59c2fcb5419f0d48b7918200be26e360388e7: 7ec59c2fcb5419f0d48b7918200be26e360388e7 xe-1171-ad654139fd5a7773f0310b5f745c105cdba520e8: ad654139fd5a7773f0310b5f745c105cdba520e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/index.html [-- Attachment #2: Type: text/html, Size: 1684 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare 2024-04-24 20:13 ` [PATCH v3 2/2] HAX: run kms_vrr tests in BAT Manasi Navare 2024-04-24 21:14 ` ✓ CI.xeBAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Patchwork @ 2024-04-24 21:20 ` Patchwork 2024-04-25 7:39 ` [PATCH v3 1/2] " Modem, Bhanuprakash ` (11 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-04-24 21:20 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 29837 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from IGT_7823 -> IGTPW_11065 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11065 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11065, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/index.html Participating hosts (36 -> 37) ------------------------------ Additional (4): fi-cfl-8109u bat-jsl-1 fi-apl-guc bat-arls-3 Missing (3): fi-glk-j4005 bat-kbl-2 fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11065: ### IGT changes ### #### Possible regressions #### * igt@debugfs_test@read_all_entries: - bat-arls-2: [PASS][1] -> [FAIL][2] +18 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@debugfs_test@read_all_entries.html * igt@gem_exec_fence@nb-await: - bat-arls-2: NOTRUN -> [INCOMPLETE][3] +7 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_exec_fence@nb-await.html * igt@kms_addfb_basic@addfb25-modifier-no-flag: - bat-arls-2: [PASS][4] -> [INCOMPLETE][5] +37 other tests incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_addfb_basic@addfb25-modifier-no-flag.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_addfb_basic@addfb25-modifier-no-flag.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - {bat-arls-4}: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-mtlp-8: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adls-6: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-1: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-1: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-6: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-9: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-rpls-4}: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adln-1: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-14: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-rplp-1: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-tgl-1115g4: NOTRUN -> [SKIP][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-3: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-mtlp-9}: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-mtlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-3: NOTRUN -> [SKIP][20] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html #### Warnings #### * igt@debugfs_test@basic-hwmon: - bat-arls-2: [SKIP][21] ([i915#9318]) -> [FAIL][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@debugfs_test@basic-hwmon.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@debugfs_test@basic-hwmon.html * igt@gem_mmap@basic: - bat-arls-2: [SKIP][23] ([i915#4083]) -> [INCOMPLETE][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@gem_mmap@basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-arls-2: [SKIP][25] ([i915#10196] / [i915#4077]) -> [INCOMPLETE][26] +2 other tests incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@gem_mmap_gtt@basic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-2: [SKIP][27] ([i915#10197] / [i915#10211] / [i915#4079]) -> [INCOMPLETE][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@gem_render_tiled_blits@basic.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-2: [SKIP][29] ([i915#10206] / [i915#4079]) -> [INCOMPLETE][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@gem_tiled_pread_basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_tiled_pread_basic.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arls-2: [SKIP][31] ([i915#10200]) -> [INCOMPLETE][32] +3 other tests incomplete [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-arls-2: [SKIP][33] ([i915#10200]) -> [FAIL][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_addfb_basic@tile-pitch-mismatch.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_addfb_basic@tile-pitch-mismatch.html New tests --------- New tests have been introduced between IGT_7823 and IGTPW_11065: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 35 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_11065 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][35] ([i915#9318]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@debugfs_test@basic-hwmon.html - bat-arls-3: NOTRUN -> [SKIP][36] ([i915#9318]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@debugfs_test@basic-hwmon.html * igt@gem_close_race@basic-threads: - bat-arls-2: [PASS][37] -> [INCOMPLETE][38] ([i915#10922]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@gem_close_race@basic-threads.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_close_race@basic-threads.html * igt@gem_exec_gttfill@basic: - bat-arls-2: [PASS][39] -> [INCOMPLETE][40] ([i915#10929]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@gem_exec_gttfill@basic.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@gem_exec_gttfill@basic.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][41] ([i915#2190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html - bat-jsl-1: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-apl-guc: NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-apl-guc/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arls-3: NOTRUN -> [SKIP][44] ([i915#10213]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html - bat-jsl-1: NOTRUN -> [SKIP][46] ([i915#4613]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-arls-3: NOTRUN -> [SKIP][47] ([i915#4083]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][48] ([i915#10197] / [i915#10211] / [i915#4079]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][49] ([i915#10196] / [i915#4077]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-3: NOTRUN -> [SKIP][50] ([i915#10206] / [i915#4079]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@gem_tiled_pread_basic.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][51] -> [DMESG-WARN][52] ([i915#9427]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-arls-3: NOTRUN -> [SKIP][53] ([i915#10209]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-arls-3: NOTRUN -> [SKIP][54] ([i915#10200]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@unused-modifier: - bat-arls-2: [PASS][55] -> [INCOMPLETE][56] ([i915#10377]) +13 other tests incomplete [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_addfb_basic@unused-modifier.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_addfb_basic@unused-modifier.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-arls-3: NOTRUN -> [SKIP][57] ([i915#10202]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][58] ([i915#4103]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-arls-3: NOTRUN -> [SKIP][59] ([i915#9886]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_dsc@dsc-basic.html - bat-jsl-1: NOTRUN -> [SKIP][60] ([i915#3555] / [i915#9886]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-3: NOTRUN -> [SKIP][61] ([i915#10207]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-1: NOTRUN -> [SKIP][62] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - fi-apl-guc: NOTRUN -> [SKIP][63] +27 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-apl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc: - bat-arls-2: NOTRUN -> [INCOMPLETE][64] ([i915#10377]) +19 other tests incomplete [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-3: NOTRUN -> [SKIP][65] ([i915#9812]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-arls-2: NOTRUN -> [INCOMPLETE][66] ([i915#10377] / [i915#10553]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-3: NOTRUN -> [SKIP][67] ([i915#9732]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - bat-arls-2: NOTRUN -> [SKIP][68] ([i915#10196] / [i915#4077] / [i915#9688]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arls-2: NOTRUN -> [SKIP][69] ([i915#10208] / [i915#8809]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-3: NOTRUN -> [SKIP][70] ([i915#10208] / [i915#8809]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@flip-basic: - fi-rkl-11600: NOTRUN -> [SKIP][71] ([i915#10843] / [i915#10846]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-rkl-11600/igt@kms_vrr@flip-basic.html - bat-atsm-1: NOTRUN -> [SKIP][72] ([i915#6078]) +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-atsm-1/igt@kms_vrr@flip-basic.html - fi-cfl-guc: NOTRUN -> [SKIP][73] +9 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-cfl-guc/igt@kms_vrr@flip-basic.html - bat-jsl-3: NOTRUN -> [SKIP][74] ([i915#3555]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-3/igt@kms_vrr@flip-basic.html - bat-adlp-11: NOTRUN -> [SKIP][75] ([i915#10470] / [i915#10501]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-11/igt@kms_vrr@flip-basic.html - bat-adln-1: NOTRUN -> [SKIP][76] ([i915#3555]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adln-1/igt@kms_vrr@flip-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][77] ([i915#3555] / [i915#8808]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-mtlp-8/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][78] ([i915#3555]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@kms_vrr@flip-basic.html - fi-tgl-1115g4: NOTRUN -> [SKIP][79] ([i915#3555]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-tgl-1115g4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - fi-pnv-d510: NOTRUN -> [SKIP][80] +9 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html - bat-jsl-3: NOTRUN -> [SKIP][81] ([i915#9906]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-3/igt@kms_vrr@flip-basic-fastset.html - bat-adln-1: NOTRUN -> [SKIP][82] ([i915#9906]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html - fi-elk-e7500: NOTRUN -> [SKIP][83] +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-elk-e7500/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - fi-kbl-7567u: NOTRUN -> [SKIP][84] +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-kbl-7567u/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - bat-dg2-14: NOTRUN -> [SKIP][85] ([i915#3555]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-dg2-14/igt@kms_vrr@flipline.html - bat-rplp-1: NOTRUN -> [SKIP][86] ([i915#3555]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-rplp-1/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - bat-adlm-1: NOTRUN -> [SKIP][87] ([i915#9900]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlm-1/igt@kms_vrr@max-min.html - bat-rplp-1: NOTRUN -> [SKIP][88] ([i915#9906]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-rplp-1/igt@kms_vrr@max-min.html - fi-ilk-650: NOTRUN -> [SKIP][89] +9 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-ilk-650/igt@kms_vrr@max-min.html - fi-tgl-1115g4: NOTRUN -> [SKIP][90] ([i915#9906]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-tgl-1115g4/igt@kms_vrr@max-min.html - bat-arls-1: NOTRUN -> [SKIP][91] ([i915#8808]) +8 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-1/igt@kms_vrr@max-min.html - bat-arls-3: NOTRUN -> [SKIP][92] ([i915#8808]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@kms_vrr@max-min.html - bat-mtlp-6: NOTRUN -> [SKIP][93] ([i915#9792]) +9 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-mtlp-6/igt@kms_vrr@max-min.html - bat-mtlp-8: NOTRUN -> [SKIP][94] ([i915#8808] / [i915#9906]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - bat-adlp-9: NOTRUN -> [SKIP][95] ([i915#3555]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-9/igt@kms_vrr@negative-basic.html - bat-adls-6: NOTRUN -> [SKIP][96] ([i915#3555]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adls-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - fi-cfl-8700k: NOTRUN -> [SKIP][97] +9 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-blb-e6850: NOTRUN -> [SKIP][98] +9 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-dg2-14: NOTRUN -> [SKIP][99] ([i915#9906]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-bsw-nick: NOTRUN -> [SKIP][100] +9 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-dg2-9: NOTRUN -> [SKIP][101] ([i915#9197]) +9 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-x1275: NOTRUN -> [SKIP][102] +9 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-11: NOTRUN -> [SKIP][103] ([i915#10470]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-cfl-8109u: NOTRUN -> [SKIP][104] +21 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-ivb-3770: NOTRUN -> [SKIP][105] +9 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-ivb-3770/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-8: NOTRUN -> [SKIP][106] ([i915#9197]) +9 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-dg2-8/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-guc: NOTRUN -> [SKIP][107] +9 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-kbl-guc/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - bat-adlp-9: NOTRUN -> [SKIP][108] ([i915#9906]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adls-6: NOTRUN -> [SKIP][109] ([i915#9906]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-jsl-1: NOTRUN -> [SKIP][110] ([i915#9906]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adlp-6: NOTRUN -> [SKIP][111] ([i915#9906]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@prime_vgem@basic-fence-mmap: - bat-arls-3: NOTRUN -> [SKIP][112] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-arls-3: NOTRUN -> [SKIP][113] ([i915#10212] / [i915#3708]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arls-3: NOTRUN -> [SKIP][114] ([i915#10214] / [i915#3708]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-3: NOTRUN -> [SKIP][115] ([i915#10216] / [i915#3708]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-3/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_fence@basic-wait@vecs0: - {bat-rpls-4}: [DMESG-WARN][116] -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-rpls-4/igt@gem_exec_fence@basic-wait@vecs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-rpls-4/igt@gem_exec_fence@basic-wait@vecs0.html * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-9: [FAIL][118] ([i915#10378]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [ABORT][120] ([i915#10594]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/fi-bsw-nick/igt@i915_selftest@live@execlists.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/fi-bsw-nick/igt@i915_selftest@live@execlists.html #### Warnings #### * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-arls-2: [SKIP][122] ([i915#10200]) -> [INCOMPLETE][123] ([i915#10377]) +4 other tests incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-arls-2: [SKIP][124] ([i915#10202]) -> [INCOMPLETE][125] ([i915#10377]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-arls-2: [SKIP][126] ([i915#9886]) -> [INCOMPLETE][127] ([i915#10377]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7823/bat-arls-2/igt@kms_dsc@dsc-basic.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-arls-2/igt@kms_dsc@dsc-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10377]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10377 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594 [i915#10843]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10843 [i915#10846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10846 [i915#10922]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10922 [i915#10929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10929 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7823 -> IGTPW_11065 CI-20190529: 20190529 CI_DRM_14645: ad654139fd5a7773f0310b5f745c105cdba520e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11065: 11065 IGT_7823: 61121a2eac4d191ad9f3077948c8ba19686fbb16 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/index.html [-- Attachment #2: Type: text/html, Size: 36336 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (2 preceding siblings ...) 2024-04-24 21:20 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-04-25 7:39 ` Modem, Bhanuprakash 2024-04-25 7:42 ` Saarinen, Jani 2024-04-25 15:20 ` Manasi Navare 2024-04-25 13:55 ` ✗ CI.xeFULL: failure for series starting with [v3,1/2] " Patchwork ` (10 subsequent siblings) 14 siblings, 2 replies; 44+ messages in thread From: Modem, Bhanuprakash @ 2024-04-25 7:39 UTC (permalink / raw) To: Manasi Navare, igt-dev; +Cc: Drew Davenport, Ville Syrjälä, Sean Paul Hi Manasi, On 25-04-2024 01:43 am, Manasi Navare wrote: > This subtest validates LRR fastset functionality by testing seamless switching > without full modeset to any of the virtual LRR mode within VRR range. > Here we start from highest refresh rate mode and then switch to virtual LRR > modes in the steps of 10Hz within the VRR range. > > This is used to test the LRR fastset functionality of the driver. > > v5: > - Pass a reference to flip_and_measure (bhanu) > - Add a new line between between declaration and code logic > > v4: > - Change the test name to align with drrs/vrr tests (Bhanu) > - Fix some build warnings due to rebase > - Use a local virtual_mode variable > > v3: > - Fix build error due to rebase (Manasi) > > Cc: Drew Davenport <ddavenport@chromium.org> > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Cc: Sean Paul <seanpaul@chromium.org> > Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > --- > tests/kms_vrr.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++--- > 1 file changed, 69 insertions(+), 4 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 15c62b34b..7f64d6806 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -66,6 +66,11 @@ > * Description: Test to switch RR seamlessly without modeset. > * Functionality: adaptive_sync, drrs > * > + * SUBTEST: seamless-rr-switch-virtual > + * Description: Test to create a Virtual Mode in VRR range and switch to it > + * without a full modeset. > + * Functionality: LRR > + * > * SUBTEST: max-min > * Description: Oscillates between highest and lowest refresh each frame for > * manual flicker profiling > @@ -89,9 +94,10 @@ enum { > TEST_FLIPLINE = 1 << 3, > TEST_SEAMLESS_VRR = 1 << 4, > TEST_SEAMLESS_DRRS = 1 << 5, > - TEST_FASTSET = 1 << 6, > - TEST_MAXMIN = 1 << 7, > - TEST_NEGATIVE = 1 << 8, > + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > + TEST_FASTSET = 1 << 7, > + TEST_MAXMIN = 1 << 8, > + TEST_NEGATIVE = 1 << 9, > }; > > enum { > @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t *output, unsigned int vrr_min) > return mode; > } > > +static drmModeModeInfo > +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int virtual_refresh_rate) > +{ > + drmModeModeInfo mode = *igt_output_get_mode(output); > + uint64_t clock_hz = mode.clock * 1000; > + > + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > + mode.vrefresh = virtual_refresh_rate; > + > + return mode; > +} > + > /* Read min and max vrr range from the connector debugfs. */ > static range_t > get_vrr_range(data_t *data, igt_output_t *output) > @@ -641,6 +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint3 > vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > } > > +static void > +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > +{ > + uint32_t result; > + unsigned int vrefresh; > + uint64_t rate[] = {0}; > + > + igt_info("Use HIGH_RR Mode as default\n"); > + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > + > + prepare_test(data, output, pipe); > + rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > + > + /* > + * Sink with DRR and VRR can be in downclock mode so > + * switch to highest refresh rate mode. > + */ > + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > + igt_assert(igt_display_try_commit_atomic(&data->display, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > + > + result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); > + igt_assert_f(result > 75, > + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n", > + data->switch_modes[HIGH_RR_MODE].vrefresh, rate[0], result); > + > + /* Switch to Virtual RR */ > + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; vrefresh += 10) { > + drmModeModeInfo virtual_mode = virtual_rr_vrr_range_mode(output, vrefresh); > + > + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", vrefresh); > + kmstest_dump_mode(&virtual_mode); > + > + igt_output_override_mode(output, &virtual_mode); > + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0); > + > + rate[0] = rate_from_refresh(vrefresh); > + result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); > + igt_assert_f(result > 75, > + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n", > + vrefresh, rate[0], result); > + } > +} > + > static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output) > { > if (vrr_capable(output)) > @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags > igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > > /* Search for a low refresh rate mode. */ > - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_SEAMLESS_VIRTUAL_RR))) Does this virtual RR applicable to eDP only or supports other connector types too? If it is eDP specific [*], then we must add a check for that. [*]: https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n660 With above comment addressed, this patch is Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> - Bhanu > return true; > > data->switch_modes[LOW_RR_MODE] = low_rr_mode_with_same_res(output, data->range.min); > @@ -841,6 +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > "between flip timestamps converges to the requested rate"); > igt_subtest_with_dynamic("flip-basic-fastset") > run_vrr_test(&data, test_basic, TEST_FASTSET); > + > + igt_describe("Test to switch to any custom virtual mode in VRR range without modeset."); > + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > + run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > } > > igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-25 7:39 ` [PATCH v3 1/2] " Modem, Bhanuprakash @ 2024-04-25 7:42 ` Saarinen, Jani 2024-04-25 15:20 ` Manasi Navare 1 sibling, 0 replies; 44+ messages in thread From: Saarinen, Jani @ 2024-04-25 7:42 UTC (permalink / raw) To: Modem, Bhanuprakash, Manasi Navare, igt-dev@lists.freedesktop.org Cc: Drew Davenport, Ville Syrjälä, Sean Paul Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Modem, > Bhanuprakash > Sent: Thursday, 25 April 2024 10.39 > To: Manasi Navare <navaremanasi@chromium.org>; igt- > dev@lists.freedesktop.org > Cc: Drew Davenport <ddavenport@chromium.org>; Ville Syrjälä > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Hi Manasi, > > On 25-04-2024 01:43 am, Manasi Navare wrote: > > This subtest validates LRR fastset functionality by testing seamless > > switching without full modeset to any of the virtual LRR mode within VRR > range. > > Here we start from highest refresh rate mode and then switch to > > virtual LRR modes in the steps of 10Hz within the VRR range. > > > > This is used to test the LRR fastset functionality of the driver. > > > > v5: > > - Pass a reference to flip_and_measure (bhanu) > > - Add a new line between between declaration and code logic > > > > v4: > > - Change the test name to align with drrs/vrr tests (Bhanu) > > - Fix some build warnings due to rebase > > - Use a local virtual_mode variable > > > > v3: > > - Fix build error due to rebase (Manasi) > > > > Cc: Drew Davenport <ddavenport@chromium.org> > > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Cc: Sean Paul <seanpaul@chromium.org> > > Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > --- > > tests/kms_vrr.c | 73 > ++++++++++++++++++++++++++++++++++++++++++++++--- > > 1 file changed, 69 insertions(+), 4 deletions(-) > > > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > 15c62b34b..7f64d6806 100644 > > --- a/tests/kms_vrr.c > > +++ b/tests/kms_vrr.c > > @@ -66,6 +66,11 @@ > > * Description: Test to switch RR seamlessly without modeset. > > * Functionality: adaptive_sync, drrs > > * > > + * SUBTEST: seamless-rr-switch-virtual > > + * Description: Test to create a Virtual Mode in VRR range and switch to it > > + * without a full modeset. > > + * Functionality: LRR > > + * > > * SUBTEST: max-min > > * Description: Oscillates between highest and lowest refresh each frame > for > > * manual flicker profiling > > @@ -89,9 +94,10 @@ enum { > > TEST_FLIPLINE = 1 << 3, > > TEST_SEAMLESS_VRR = 1 << 4, > > TEST_SEAMLESS_DRRS = 1 << 5, > > - TEST_FASTSET = 1 << 6, > > - TEST_MAXMIN = 1 << 7, > > - TEST_NEGATIVE = 1 << 8, > > + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > + TEST_FASTSET = 1 << 7, > > + TEST_MAXMIN = 1 << 8, > > + TEST_NEGATIVE = 1 << 9, > > }; > > > > enum { > > @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t > *output, unsigned int vrr_min) > > return mode; > > } > > > > +static drmModeModeInfo > > +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > > +virtual_refresh_rate) { > > + drmModeModeInfo mode = *igt_output_get_mode(output); > > + uint64_t clock_hz = mode.clock * 1000; > > + > > + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > + mode.vrefresh = virtual_refresh_rate; > > + > > + return mode; > > +} > > + > > /* Read min and max vrr range from the connector debugfs. */ > > static range_t > > get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 +659,49 > > @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, igt_output_t > *output, uint3 > > vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > } > > > > +static void > > +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > > +igt_output_t *output, uint32_t flags) { > > + uint32_t result; > > + unsigned int vrefresh; > > + uint64_t rate[] = {0}; > > + > > + igt_info("Use HIGH_RR Mode as default\n"); > > + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > > + > > + prepare_test(data, output, pipe); > > + rate[0] = > > +rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > > + > > + /* > > + * Sink with DRR and VRR can be in downclock mode so > > + * switch to highest refresh rate mode. > > + */ > > + igt_output_override_mode(output, &data- > >switch_modes[HIGH_RR_MODE]); > > + igt_assert(igt_display_try_commit_atomic(&data->display, > > +DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > + > > + result = flip_and_measure(data, output, pipe, rate, 1, > TEST_DURATION_NS); > > + igt_assert_f(result > 75, > > + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > reached, result was %u%%\n", > > + data->switch_modes[HIGH_RR_MODE].vrefresh, rate[0], > result); > > + > > + /* Switch to Virtual RR */ > > + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; > vrefresh += 10) { > > + drmModeModeInfo virtual_mode = > virtual_rr_vrr_range_mode(output, > > +vrefresh); > > + > > + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): > \n", vrefresh); > > + kmstest_dump_mode(&virtual_mode); > > + > > + igt_output_override_mode(output, &virtual_mode); > > + igt_assert(igt_display_try_commit_atomic(&data->display, 0, > NULL) > > +== 0); > > + > > + rate[0] = rate_from_refresh(vrefresh); > > + result = flip_and_measure(data, output, pipe, rate, 1, > TEST_DURATION_NS); > > + igt_assert_f(result > 75, > > + "Refresh rate (%u Hz) %"PRIu64"ns: Target > threshold not reached, result was %u%%\n", > > + vrefresh, rate[0], result); > > + } > > +} > > + > > static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t > *output) > > { > > if (vrr_capable(output)) > > @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, > igt_output_t *output, uint32_t flags > > igt_output_override_mode(output, > > &data->switch_modes[HIGH_RR_MODE]); > > > > /* Search for a low refresh rate mode. */ > > - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > > +TEST_SEAMLESS_VIRTUAL_RR))) > > Does this virtual RR applicable to eDP only or supports other connector types > too? If it is eDP specific [*], then we must add a check for that. > > [*]: > https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n660 > > With above comment addressed, this patch is > Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > - Bhanu Are those BAT results acceptable too? Br, Jani > > > return true; > > > > data->switch_modes[LOW_RR_MODE] = > low_rr_mode_with_same_res(output, > > data->range.min); @@ -841,6 +902,10 @@ igt_main_args("drs:", long_opts, > help_str, opt_handler, &data) > > "between flip timestamps converges to the > requested rate"); > > igt_subtest_with_dynamic("flip-basic-fastset") > > run_vrr_test(&data, test_basic, TEST_FASTSET); > > + > > + igt_describe("Test to switch to any custom virtual mode in > VRR range without modeset."); > > + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > + run_vrr_test(&data, test_seamless_virtual_rr_basic, > > +TEST_SEAMLESS_VIRTUAL_RR); > > } > > > > igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-25 7:39 ` [PATCH v3 1/2] " Modem, Bhanuprakash 2024-04-25 7:42 ` Saarinen, Jani @ 2024-04-25 15:20 ` Manasi Navare 2024-04-26 3:44 ` Modem, Bhanuprakash 1 sibling, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-04-25 15:20 UTC (permalink / raw) To: Modem, Bhanuprakash Cc: igt-dev, Drew Davenport, Ville Syrjälä, Sean Paul Hi Bhanu, Thanks for the review. This is not specific to edp, it applies to all connectors. If the BAT results look okay and I have your r-b, could we get this merged? Regards Manasi On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash <bhanuprakash.modem@intel.com> wrote: > > Hi Manasi, > > On 25-04-2024 01:43 am, Manasi Navare wrote: > > This subtest validates LRR fastset functionality by testing seamless switching > > without full modeset to any of the virtual LRR mode within VRR range. > > Here we start from highest refresh rate mode and then switch to virtual LRR > > modes in the steps of 10Hz within the VRR range. > > > > This is used to test the LRR fastset functionality of the driver. > > > > v5: > > - Pass a reference to flip_and_measure (bhanu) > > - Add a new line between between declaration and code logic > > > > v4: > > - Change the test name to align with drrs/vrr tests (Bhanu) > > - Fix some build warnings due to rebase > > - Use a local virtual_mode variable > > > > v3: > > - Fix build error due to rebase (Manasi) > > > > Cc: Drew Davenport <ddavenport@chromium.org> > > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Cc: Sean Paul <seanpaul@chromium.org> > > Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > --- > > tests/kms_vrr.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++--- > > 1 file changed, 69 insertions(+), 4 deletions(-) > > > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > > index 15c62b34b..7f64d6806 100644 > > --- a/tests/kms_vrr.c > > +++ b/tests/kms_vrr.c > > @@ -66,6 +66,11 @@ > > * Description: Test to switch RR seamlessly without modeset. > > * Functionality: adaptive_sync, drrs > > * > > + * SUBTEST: seamless-rr-switch-virtual > > + * Description: Test to create a Virtual Mode in VRR range and switch to it > > + * without a full modeset. > > + * Functionality: LRR > > + * > > * SUBTEST: max-min > > * Description: Oscillates between highest and lowest refresh each frame for > > * manual flicker profiling > > @@ -89,9 +94,10 @@ enum { > > TEST_FLIPLINE = 1 << 3, > > TEST_SEAMLESS_VRR = 1 << 4, > > TEST_SEAMLESS_DRRS = 1 << 5, > > - TEST_FASTSET = 1 << 6, > > - TEST_MAXMIN = 1 << 7, > > - TEST_NEGATIVE = 1 << 8, > > + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > + TEST_FASTSET = 1 << 7, > > + TEST_MAXMIN = 1 << 8, > > + TEST_NEGATIVE = 1 << 9, > > }; > > > > enum { > > @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t *output, unsigned int vrr_min) > > return mode; > > } > > > > +static drmModeModeInfo > > +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int virtual_refresh_rate) > > +{ > > + drmModeModeInfo mode = *igt_output_get_mode(output); > > + uint64_t clock_hz = mode.clock * 1000; > > + > > + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > + mode.vrefresh = virtual_refresh_rate; > > + > > + return mode; > > +} > > + > > /* Read min and max vrr range from the connector debugfs. */ > > static range_t > > get_vrr_range(data_t *data, igt_output_t *output) > > @@ -641,6 +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint3 > > vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > } > > > > +static void > > +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > > +{ > > + uint32_t result; > > + unsigned int vrefresh; > > + uint64_t rate[] = {0}; > > + > > + igt_info("Use HIGH_RR Mode as default\n"); > > + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > > + > > + prepare_test(data, output, pipe); > > + rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > > + > > + /* > > + * Sink with DRR and VRR can be in downclock mode so > > + * switch to highest refresh rate mode. > > + */ > > + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > > + igt_assert(igt_display_try_commit_atomic(&data->display, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > + > > + result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); > > + igt_assert_f(result > 75, > > + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n", > > + data->switch_modes[HIGH_RR_MODE].vrefresh, rate[0], result); > > + > > + /* Switch to Virtual RR */ > > + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; vrefresh += 10) { > > + drmModeModeInfo virtual_mode = virtual_rr_vrr_range_mode(output, vrefresh); > > + > > + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", vrefresh); > > + kmstest_dump_mode(&virtual_mode); > > + > > + igt_output_override_mode(output, &virtual_mode); > > + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0); > > + > > + rate[0] = rate_from_refresh(vrefresh); > > + result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); > > + igt_assert_f(result > 75, > > + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n", > > + vrefresh, rate[0], result); > > + } > > +} > > + > > static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output) > > { > > if (vrr_capable(output)) > > @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags > > igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); > > > > /* Search for a low refresh rate mode. */ > > - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_SEAMLESS_VIRTUAL_RR))) > > Does this virtual RR applicable to eDP only or supports other connector > types too? If it is eDP specific [*], then we must add a check for that. > > [*]: > https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n660 > > With above comment addressed, this patch is > Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > - Bhanu > > > return true; > > > > data->switch_modes[LOW_RR_MODE] = low_rr_mode_with_same_res(output, data->range.min); > > @@ -841,6 +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > > "between flip timestamps converges to the requested rate"); > > igt_subtest_with_dynamic("flip-basic-fastset") > > run_vrr_test(&data, test_basic, TEST_FASTSET); > > + > > + igt_describe("Test to switch to any custom virtual mode in VRR range without modeset."); > > + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > + run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > } > > > > igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-25 15:20 ` Manasi Navare @ 2024-04-26 3:44 ` Modem, Bhanuprakash 2024-04-26 7:48 ` Saarinen, Jani 0 siblings, 1 reply; 44+ messages in thread From: Modem, Bhanuprakash @ 2024-04-26 3:44 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev, Drew Davenport, Ville Syrjälä, Sean Paul Hi Manasi, On 25-04-2024 08:50 pm, Manasi Navare wrote: > Hi Bhanu, > > Thanks for the review. > This is not specific to edp, it applies to all connectors. > > If the BAT results look okay and I have your r-b, could we get this merged? Looks, BAT results are not OK to me. The newly added test is getting skip on VRR configs: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat-all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls-4%7Cbat-adls-6 - Bhanu > > Regards > Manasi > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > <bhanuprakash.modem@intel.com> wrote: >> >> Hi Manasi, >> >> On 25-04-2024 01:43 am, Manasi Navare wrote: >>> This subtest validates LRR fastset functionality by testing seamless switching >>> without full modeset to any of the virtual LRR mode within VRR range. >>> Here we start from highest refresh rate mode and then switch to virtual LRR >>> modes in the steps of 10Hz within the VRR range. >>> >>> This is used to test the LRR fastset functionality of the driver. >>> >>> v5: >>> - Pass a reference to flip_and_measure (bhanu) >>> - Add a new line between between declaration and code logic >>> >>> v4: >>> - Change the test name to align with drrs/vrr tests (Bhanu) >>> - Fix some build warnings due to rebase >>> - Use a local virtual_mode variable >>> >>> v3: >>> - Fix build error due to rebase (Manasi) >>> >>> Cc: Drew Davenport <ddavenport@chromium.org> >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >>> Cc: Sean Paul <seanpaul@chromium.org> >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> >>> --- >>> tests/kms_vrr.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++--- >>> 1 file changed, 69 insertions(+), 4 deletions(-) >>> >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c >>> index 15c62b34b..7f64d6806 100644 >>> --- a/tests/kms_vrr.c >>> +++ b/tests/kms_vrr.c >>> @@ -66,6 +66,11 @@ >>> * Description: Test to switch RR seamlessly without modeset. >>> * Functionality: adaptive_sync, drrs >>> * >>> + * SUBTEST: seamless-rr-switch-virtual >>> + * Description: Test to create a Virtual Mode in VRR range and switch to it >>> + * without a full modeset. >>> + * Functionality: LRR >>> + * >>> * SUBTEST: max-min >>> * Description: Oscillates between highest and lowest refresh each frame for >>> * manual flicker profiling >>> @@ -89,9 +94,10 @@ enum { >>> TEST_FLIPLINE = 1 << 3, >>> TEST_SEAMLESS_VRR = 1 << 4, >>> TEST_SEAMLESS_DRRS = 1 << 5, >>> - TEST_FASTSET = 1 << 6, >>> - TEST_MAXMIN = 1 << 7, >>> - TEST_NEGATIVE = 1 << 8, >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, >>> + TEST_FASTSET = 1 << 7, >>> + TEST_MAXMIN = 1 << 8, >>> + TEST_NEGATIVE = 1 << 9, >>> }; >>> >>> enum { >>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t *output, unsigned int vrr_min) >>> return mode; >>> } >>> >>> +static drmModeModeInfo >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int virtual_refresh_rate) >>> +{ >>> + drmModeModeInfo mode = *igt_output_get_mode(output); >>> + uint64_t clock_hz = mode.clock * 1000; >>> + >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); >>> + mode.vrefresh = virtual_refresh_rate; >>> + >>> + return mode; >>> +} >>> + >>> /* Read min and max vrr range from the connector debugfs. */ >>> static range_t >>> get_vrr_range(data_t *data, igt_output_t *output) >>> @@ -641,6 +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint3 >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); >>> } >>> >>> +static void >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) >>> +{ >>> + uint32_t result; >>> + unsigned int vrefresh; >>> + uint64_t rate[] = {0}; >>> + >>> + igt_info("Use HIGH_RR Mode as default\n"); >>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); >>> + >>> + prepare_test(data, output, pipe); >>> + rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); >>> + >>> + /* >>> + * Sink with DRR and VRR can be in downclock mode so >>> + * switch to highest refresh rate mode. >>> + */ >>> + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); >>> + igt_assert(igt_display_try_commit_atomic(&data->display, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); >>> + >>> + result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); >>> + igt_assert_f(result > 75, >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n", >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, rate[0], result); >>> + >>> + /* Switch to Virtual RR */ >>> + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; vrefresh += 10) { >>> + drmModeModeInfo virtual_mode = virtual_rr_vrr_range_mode(output, vrefresh); >>> + >>> + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", vrefresh); >>> + kmstest_dump_mode(&virtual_mode); >>> + >>> + igt_output_override_mode(output, &virtual_mode); >>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0); >>> + >>> + rate[0] = rate_from_refresh(vrefresh); >>> + result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS); >>> + igt_assert_f(result > 75, >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n", >>> + vrefresh, rate[0], result); >>> + } >>> +} >>> + >>> static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output) >>> { >>> if (vrr_capable(output)) >>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags >>> igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); >>> >>> /* Search for a low refresh rate mode. */ >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_SEAMLESS_VIRTUAL_RR))) >> >> Does this virtual RR applicable to eDP only or supports other connector >> types too? If it is eDP specific [*], then we must add a check for that. >> >> [*]: >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n660 >> >> With above comment addressed, this patch is >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> >> - Bhanu >> >>> return true; >>> >>> data->switch_modes[LOW_RR_MODE] = low_rr_mode_with_same_res(output, data->range.min); >>> @@ -841,6 +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) >>> "between flip timestamps converges to the requested rate"); >>> igt_subtest_with_dynamic("flip-basic-fastset") >>> run_vrr_test(&data, test_basic, TEST_FASTSET); >>> + >>> + igt_describe("Test to switch to any custom virtual mode in VRR range without modeset."); >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") >>> + run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); >>> } >>> >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 3:44 ` Modem, Bhanuprakash @ 2024-04-26 7:48 ` Saarinen, Jani 2024-04-26 19:24 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-04-26 7:48 UTC (permalink / raw) To: Modem, Bhanuprakash, Manasi Navare Cc: igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Modem, > Bhanuprakash > Sent: Friday, 26 April 2024 6.44 > To: Manasi Navare <navaremanasi@chromium.org> > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > <ddavenport@chromium.org>; Ville Syrjälä <ville.syrjala@linux.intel.com>; > Sean Paul <seanpaul@chromium.org> > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Hi Manasi, > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > Hi Bhanu, > > > > Thanks for the review. > > This is not specific to edp, it applies to all connectors. > > > > If the BAT results look okay and I have your r-b, could we get this merged? Did you look those. > > Looks, BAT results are not OK to me. Right. To me looks so too. > > The newly added test is getting skip on VRR configs: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls- > 4%7Cbat-adls-6 > > - Bhanu > > > > > Regards > > Manasi > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > <bhanuprakash.modem@intel.com> wrote: > >> > >> Hi Manasi, > >> > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > >>> This subtest validates LRR fastset functionality by testing seamless > >>> switching without full modeset to any of the virtual LRR mode within VRR > range. > >>> Here we start from highest refresh rate mode and then switch to > >>> virtual LRR modes in the steps of 10Hz within the VRR range. > >>> > >>> This is used to test the LRR fastset functionality of the driver. > >>> > >>> v5: > >>> - Pass a reference to flip_and_measure (bhanu) > >>> - Add a new line between between declaration and code logic > >>> > >>> v4: > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > >>> - Fix some build warnings due to rebase > >>> - Use a local virtual_mode variable > >>> > >>> v3: > >>> - Fix build error due to rebase (Manasi) > >>> > >>> Cc: Drew Davenport <ddavenport@chromium.org> > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > >>> Cc: Sean Paul <seanpaul@chromium.org> > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > >>> --- > >>> tests/kms_vrr.c | 73 > ++++++++++++++++++++++++++++++++++++++++++++++--- > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > >>> > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > >>> 15c62b34b..7f64d6806 100644 > >>> --- a/tests/kms_vrr.c > >>> +++ b/tests/kms_vrr.c > >>> @@ -66,6 +66,11 @@ > >>> * Description: Test to switch RR seamlessly without modeset. > >>> * Functionality: adaptive_sync, drrs > >>> * > >>> + * SUBTEST: seamless-rr-switch-virtual > >>> + * Description: Test to create a Virtual Mode in VRR range and switch to > it > >>> + * without a full modeset. > >>> + * Functionality: LRR > >>> + * > >>> * SUBTEST: max-min > >>> * Description: Oscillates between highest and lowest refresh each > frame for > >>> * manual flicker profiling > >>> @@ -89,9 +94,10 @@ enum { > >>> TEST_FLIPLINE = 1 << 3, > >>> TEST_SEAMLESS_VRR = 1 << 4, > >>> TEST_SEAMLESS_DRRS = 1 << 5, > >>> - TEST_FASTSET = 1 << 6, > >>> - TEST_MAXMIN = 1 << 7, > >>> - TEST_NEGATIVE = 1 << 8, > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > >>> + TEST_FASTSET = 1 << 7, > >>> + TEST_MAXMIN = 1 << 8, > >>> + TEST_NEGATIVE = 1 << 9, > >>> }; > >>> > >>> enum { > >>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t > *output, unsigned int vrr_min) > >>> return mode; > >>> } > >>> > >>> +static drmModeModeInfo > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > >>> +virtual_refresh_rate) { > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > >>> + uint64_t clock_hz = mode.clock * 1000; > >>> + > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > >>> + mode.vrefresh = virtual_refresh_rate; > >>> + > >>> + return mode; > >>> +} > >>> + > >>> /* Read min and max vrr range from the connector debugfs. */ > >>> static range_t > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, > igt_output_t *output, uint3 > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > >>> } > >>> > >>> +static void > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > >>> +igt_output_t *output, uint32_t flags) { > >>> + uint32_t result; > >>> + unsigned int vrefresh; > >>> + uint64_t rate[] = {0}; > >>> + > >>> + igt_info("Use HIGH_RR Mode as default\n"); > >>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > >>> + > >>> + prepare_test(data, output, pipe); > >>> + rate[0] = > >>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > >>> + > >>> + /* > >>> + * Sink with DRR and VRR can be in downclock mode so > >>> + * switch to highest refresh rate mode. > >>> + */ > >>> + igt_output_override_mode(output, &data- > >switch_modes[HIGH_RR_MODE]); > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > >>> + > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > TEST_DURATION_NS); > >>> + igt_assert_f(result > 75, > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > reached, result was %u%%\n", > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > >>> + rate[0], result); > >>> + > >>> + /* Switch to Virtual RR */ > >>> + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; > vrefresh += 10) { > >>> + drmModeModeInfo virtual_mode = > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > >>> + > >>> + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", > vrefresh); > >>> + kmstest_dump_mode(&virtual_mode); > >>> + > >>> + igt_output_override_mode(output, &virtual_mode); > >>> + > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) > >>> + == 0); > >>> + > >>> + rate[0] = rate_from_refresh(vrefresh); > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > TEST_DURATION_NS); > >>> + igt_assert_f(result > 75, > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > reached, result was %u%%\n", > >>> + vrefresh, rate[0], result); > >>> + } > >>> +} > >>> + > >>> static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t > *output) > >>> { > >>> if (vrr_capable(output)) > >>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, > igt_output_t *output, uint32_t flags > >>> igt_output_override_mode(output, > >>> &data->switch_modes[HIGH_RR_MODE]); > >>> > >>> /* Search for a low refresh rate mode. */ > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > >> > >> Does this virtual RR applicable to eDP only or supports other > >> connector types too? If it is eDP specific [*], then we must add a check for > that. > >> > >> [*]: > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n > >> 660 > >> > >> With above comment addressed, this patch is > >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >> > >> - Bhanu > >> > >>> return true; > >>> > >>> data->switch_modes[LOW_RR_MODE] = > >>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 > +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > >>> "between flip timestamps converges to the requested > rate"); > >>> igt_subtest_with_dynamic("flip-basic-fastset") > >>> run_vrr_test(&data, test_basic, > >>> TEST_FASTSET); > >>> + > >>> + igt_describe("Test to switch to any custom virtual mode in VRR > range without modeset."); > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > >>> + run_vrr_test(&data, > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > >>> } > >>> > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 7:48 ` Saarinen, Jani @ 2024-04-26 19:24 ` Manasi Navare 2024-04-26 19:42 ` Saarinen, Jani 2024-05-20 7:54 ` Modem, Bhanuprakash 0 siblings, 2 replies; 44+ messages in thread From: Manasi Navare @ 2024-04-26 19:24 UTC (permalink / raw) To: Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi Bhanu, Jani, I do see that even the other vrr tests : seamless-rr-switch-vrr /drrs/ basic-fastset are getting skipped on BAT, so its not related to this test. I am able to run it here locally and test. Could you please take a look and see why all of these would be skipped? Seems unrelated to this change. Regards Manasi On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi, > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Modem, > > Bhanuprakash > > Sent: Friday, 26 April 2024 6.44 > > To: Manasi Navare <navaremanasi@chromium.org> > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > <ddavenport@chromium.org>; Ville Syrjälä <ville.syrjala@linux.intel.com>; > > Sean Paul <seanpaul@chromium.org> > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > Hi Manasi, > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > Hi Bhanu, > > > > > > Thanks for the review. > > > This is not specific to edp, it applies to all connectors. > > > > > > If the BAT results look okay and I have your r-b, could we get this merged? > Did you look those. > > > > > Looks, BAT results are not OK to me. > Right. To me looks so too. > > > > > The newly added test is getting skip on VRR configs: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls- > > 4%7Cbat-adls-6 > > > > - Bhanu > > > > > > > > Regards > > > Manasi > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > <bhanuprakash.modem@intel.com> wrote: > > >> > > >> Hi Manasi, > > >> > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > >>> This subtest validates LRR fastset functionality by testing seamless > > >>> switching without full modeset to any of the virtual LRR mode within VRR > > range. > > >>> Here we start from highest refresh rate mode and then switch to > > >>> virtual LRR modes in the steps of 10Hz within the VRR range. > > >>> > > >>> This is used to test the LRR fastset functionality of the driver. > > >>> > > >>> v5: > > >>> - Pass a reference to flip_and_measure (bhanu) > > >>> - Add a new line between between declaration and code logic > > >>> > > >>> v4: > > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > > >>> - Fix some build warnings due to rebase > > >>> - Use a local virtual_mode variable > > >>> > > >>> v3: > > >>> - Fix build error due to rebase (Manasi) > > >>> > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > >>> --- > > >>> tests/kms_vrr.c | 73 > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > >>> > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > >>> 15c62b34b..7f64d6806 100644 > > >>> --- a/tests/kms_vrr.c > > >>> +++ b/tests/kms_vrr.c > > >>> @@ -66,6 +66,11 @@ > > >>> * Description: Test to switch RR seamlessly without modeset. > > >>> * Functionality: adaptive_sync, drrs > > >>> * > > >>> + * SUBTEST: seamless-rr-switch-virtual > > >>> + * Description: Test to create a Virtual Mode in VRR range and switch to > > it > > >>> + * without a full modeset. > > >>> + * Functionality: LRR > > >>> + * > > >>> * SUBTEST: max-min > > >>> * Description: Oscillates between highest and lowest refresh each > > frame for > > >>> * manual flicker profiling > > >>> @@ -89,9 +94,10 @@ enum { > > >>> TEST_FLIPLINE = 1 << 3, > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > >>> - TEST_FASTSET = 1 << 6, > > >>> - TEST_MAXMIN = 1 << 7, > > >>> - TEST_NEGATIVE = 1 << 8, > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > >>> + TEST_FASTSET = 1 << 7, > > >>> + TEST_MAXMIN = 1 << 8, > > >>> + TEST_NEGATIVE = 1 << 9, > > >>> }; > > >>> > > >>> enum { > > >>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t > > *output, unsigned int vrr_min) > > >>> return mode; > > >>> } > > >>> > > >>> +static drmModeModeInfo > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > > >>> +virtual_refresh_rate) { > > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > >>> + uint64_t clock_hz = mode.clock * 1000; > > >>> + > > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > >>> + mode.vrefresh = virtual_refresh_rate; > > >>> + > > >>> + return mode; > > >>> +} > > >>> + > > >>> /* Read min and max vrr range from the connector debugfs. */ > > >>> static range_t > > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, > > igt_output_t *output, uint3 > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > >>> } > > >>> > > >>> +static void > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > > >>> +igt_output_t *output, uint32_t flags) { > > >>> + uint32_t result; > > >>> + unsigned int vrefresh; > > >>> + uint64_t rate[] = {0}; > > >>> + > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > >>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > > >>> + > > >>> + prepare_test(data, output, pipe); > > >>> + rate[0] = > > >>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > > >>> + > > >>> + /* > > >>> + * Sink with DRR and VRR can be in downclock mode so > > >>> + * switch to highest refresh rate mode. > > >>> + */ > > >>> + igt_output_override_mode(output, &data- > > >switch_modes[HIGH_RR_MODE]); > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > >>> + > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > TEST_DURATION_NS); > > >>> + igt_assert_f(result > 75, > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > > reached, result was %u%%\n", > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > >>> + rate[0], result); > > >>> + > > >>> + /* Switch to Virtual RR */ > > >>> + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; > > vrefresh += 10) { > > >>> + drmModeModeInfo virtual_mode = > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > >>> + > > >>> + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", > > vrefresh); > > >>> + kmstest_dump_mode(&virtual_mode); > > >>> + > > >>> + igt_output_override_mode(output, &virtual_mode); > > >>> + > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) > > >>> + == 0); > > >>> + > > >>> + rate[0] = rate_from_refresh(vrefresh); > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > TEST_DURATION_NS); > > >>> + igt_assert_f(result > 75, > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > > reached, result was %u%%\n", > > >>> + vrefresh, rate[0], result); > > >>> + } > > >>> +} > > >>> + > > >>> static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t > > *output) > > >>> { > > >>> if (vrr_capable(output)) > > >>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, > > igt_output_t *output, uint32_t flags > > >>> igt_output_override_mode(output, > > >>> &data->switch_modes[HIGH_RR_MODE]); > > >>> > > >>> /* Search for a low refresh rate mode. */ > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > >> > > >> Does this virtual RR applicable to eDP only or supports other > > >> connector types too? If it is eDP specific [*], then we must add a check for > > that. > > >> > > >> [*]: > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n > > >> 660 > > >> > > >> With above comment addressed, this patch is > > >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > >> > > >> - Bhanu > > >> > > >>> return true; > > >>> > > >>> data->switch_modes[LOW_RR_MODE] = > > >>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > > >>> "between flip timestamps converges to the requested > > rate"); > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > >>> run_vrr_test(&data, test_basic, > > >>> TEST_FASTSET); > > >>> + > > >>> + igt_describe("Test to switch to any custom virtual mode in VRR > > range without modeset."); > > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > >>> + run_vrr_test(&data, > > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > >>> } > > >>> > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 19:24 ` Manasi Navare @ 2024-04-26 19:42 ` Saarinen, Jani 2024-04-26 19:46 ` Manasi Navare 2024-05-20 7:54 ` Modem, Bhanuprakash 1 sibling, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-04-26 19:42 UTC (permalink / raw) To: Manasi Navare Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi, > -----Original Message----- > From: Manasi Navare <navaremanasi@chromium.org> > Sent: Friday, 26 April 2024 22.25 > To: Saarinen, Jani <jani.saarinen@intel.com> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > <seanpaul@chromium.org> > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Hi Bhanu, Jani, > > I do see that even the other vrr tests : seamless-rr-switch-vrr /drrs/ basic- > fastset are getting skipped on BAT, so its not related to this test. I am able to > run it here locally and test. I was mainly looking at https://patchwork.freedesktop.org/series/132866/ Possible regressions igt@debugfs_test@read_all_entries: bat-arls-2: PASS -> FAIL +18 other tests fail igt@gem_exec_fence@nb-await: bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete igt@kms_addfb_basic@addfb25-modifier-no-flag: bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete igt@kms_vrr@seamless-rr-switch-virtual (NEW): but there was some hw maintenance done today to this setup (bar-arls-2) so maybe safest would be re-run to see latest > Could you please take a look and see why all of these would be skipped? > Seems unrelated to this change. > > Regards > Manasi > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani <jani.saarinen@intel.com> > wrote: > > > > Hi, > > > -----Original Message----- > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > > Modem, Bhanuprakash > > > Sent: Friday, 26 April 2024 6.44 > > > To: Manasi Navare <navaremanasi@chromium.org> > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > <ddavenport@chromium.org>; Ville Syrjälä > > > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > seamless modeset to a virtual LRR mode > > > > > > Hi Manasi, > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > Hi Bhanu, > > > > > > > > Thanks for the review. > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > If the BAT results look okay and I have your r-b, could we get this > merged? > > Did you look those. > > > > > > > > Looks, BAT results are not OK to me. > > Right. To me looks so too. > > > > > > > > The newly added test is getting skip on VRR configs: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls > > > - > > > 4%7Cbat-adls-6 > > > > > > - Bhanu > > > > > > > > > > > Regards > > > > Manasi > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > <bhanuprakash.modem@intel.com> wrote: > > > >> > > > >> Hi Manasi, > > > >> > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > >>> This subtest validates LRR fastset functionality by testing > > > >>> seamless switching without full modeset to any of the virtual > > > >>> LRR mode within VRR > > > range. > > > >>> Here we start from highest refresh rate mode and then switch to > > > >>> virtual LRR modes in the steps of 10Hz within the VRR range. > > > >>> > > > >>> This is used to test the LRR fastset functionality of the driver. > > > >>> > > > >>> v5: > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > >>> - Add a new line between between declaration and code logic > > > >>> > > > >>> v4: > > > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > > > >>> - Fix some build warnings due to rebase > > > >>> - Use a local virtual_mode variable > > > >>> > > > >>> v3: > > > >>> - Fix build error due to rebase (Manasi) > > > >>> > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > > >>> --- > > > >>> tests/kms_vrr.c | 73 > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > >>> > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > >>> 15c62b34b..7f64d6806 100644 > > > >>> --- a/tests/kms_vrr.c > > > >>> +++ b/tests/kms_vrr.c > > > >>> @@ -66,6 +66,11 @@ > > > >>> * Description: Test to switch RR seamlessly without modeset. > > > >>> * Functionality: adaptive_sync, drrs > > > >>> * > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > >>> + * Description: Test to create a Virtual Mode in VRR range and > > > >>> + switch to > > > it > > > >>> + * without a full modeset. > > > >>> + * Functionality: LRR > > > >>> + * > > > >>> * SUBTEST: max-min > > > >>> * Description: Oscillates between highest and lowest refresh > > > >>> each > > > frame for > > > >>> * manual flicker profiling > > > >>> @@ -89,9 +94,10 @@ enum { > > > >>> TEST_FLIPLINE = 1 << 3, > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > >>> - TEST_FASTSET = 1 << 6, > > > >>> - TEST_MAXMIN = 1 << 7, > > > >>> - TEST_NEGATIVE = 1 << 8, > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > >>> + TEST_FASTSET = 1 << 7, > > > >>> + TEST_MAXMIN = 1 << 8, > > > >>> + TEST_NEGATIVE = 1 << 9, > > > >>> }; > > > >>> > > > >>> enum { > > > >>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t > > > *output, unsigned int vrr_min) > > > >>> return mode; > > > >>> } > > > >>> > > > >>> +static drmModeModeInfo > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > > > >>> +virtual_refresh_rate) { > > > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > >>> + > > > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > >>> + > > > >>> + return mode; > > > >>> +} > > > >>> + > > > >>> /* Read min and max vrr range from the connector debugfs. */ > > > >>> static range_t > > > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, > > > igt_output_t *output, uint3 > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > > >>> } > > > >>> > > > >>> +static void > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > > > >>> +igt_output_t *output, uint32_t flags) { > > > >>> + uint32_t result; > > > >>> + unsigned int vrefresh; > > > >>> + uint64_t rate[] = {0}; > > > >>> + > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > >>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > > > >>> + > > > >>> + prepare_test(data, output, pipe); > > > >>> + rate[0] = > > > >>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > > > >>> + > > > >>> + /* > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > >>> + * switch to highest refresh rate mode. > > > >>> + */ > > > >>> + igt_output_override_mode(output, &data- > > > >switch_modes[HIGH_RR_MODE]); > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > >>> + > > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > > TEST_DURATION_NS); > > > >>> + igt_assert_f(result > 75, > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > > > >>> + threshold not > > > reached, result was %u%%\n", > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > >>> + rate[0], result); > > > >>> + > > > >>> + /* Switch to Virtual RR */ > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > >>> + data->range.max; > > > vrefresh += 10) { > > > >>> + drmModeModeInfo virtual_mode = > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > >>> + > > > >>> + igt_info("Requesting Virtual Mode with Refresh > > > >>> + Rate (%u Hz): \n", > > > vrefresh); > > > >>> + kmstest_dump_mode(&virtual_mode); > > > >>> + > > > >>> + igt_output_override_mode(output, &virtual_mode); > > > >>> + > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, > > > >>> + NULL) == 0); > > > >>> + > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > >>> + result = flip_and_measure(data, output, pipe, > > > >>> + rate, 1, > > > TEST_DURATION_NS); > > > >>> + igt_assert_f(result > 75, > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > >>> + Target threshold not > > > reached, result was %u%%\n", > > > >>> + vrefresh, rate[0], result); > > > >>> + } > > > >>> +} > > > >>> + > > > >>> static void test_cleanup(data_t *data, enum pipe pipe, > > > >>> igt_output_t > > > *output) > > > >>> { > > > >>> if (vrr_capable(output)) > > > >>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, > > > igt_output_t *output, uint32_t flags > > > >>> igt_output_override_mode(output, > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > >>> > > > >>> /* Search for a low refresh rate mode. */ > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > >> > > > >> Does this virtual RR applicable to eDP only or supports other > > > >> connector types too? If it is eDP specific [*], then we must add > > > >> a check for > > > that. > > > >> > > > >> [*]: > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr > > > >> .c#n > > > >> 660 > > > >> > > > >> With above comment addressed, this patch is > > > >> Reviewed-by: Bhanuprakash Modem > <bhanuprakash.modem@intel.com> > > > >> > > > >> - Bhanu > > > >> > > > >>> return true; > > > >>> > > > >>> data->switch_modes[LOW_RR_MODE] = > > > >>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, > > > +&data) > > > >>> "between flip timestamps converges > > > >>> to the requested > > > rate"); > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > >>> run_vrr_test(&data, test_basic, > > > >>> TEST_FASTSET); > > > >>> + > > > >>> + igt_describe("Test to switch to any custom virtual > > > >>> + mode in VRR > > > range without modeset."); > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > > >>> + run_vrr_test(&data, > > > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > > >>> } > > > >>> > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 19:42 ` Saarinen, Jani @ 2024-04-26 19:46 ` Manasi Navare 2024-04-26 20:03 ` Saarinen, Jani 0 siblings, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-04-26 19:46 UTC (permalink / raw) To: Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Great thanks Jani, Could you please kick in a re run on your end? Regards Manasi On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi, > > > -----Original Message----- > > From: Manasi Navare <navaremanasi@chromium.org> > > Sent: Friday, 26 April 2024 22.25 > > To: Saarinen, Jani <jani.saarinen@intel.com> > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > <seanpaul@chromium.org> > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > Hi Bhanu, Jani, > > > > I do see that even the other vrr tests : seamless-rr-switch-vrr /drrs/ basic- > > fastset are getting skipped on BAT, so its not related to this test. I am able to > > run it here locally and test. > I was mainly looking at https://patchwork.freedesktop.org/series/132866/ > Possible regressions > igt@debugfs_test@read_all_entries: > > bat-arls-2: PASS -> FAIL +18 other tests fail > igt@gem_exec_fence@nb-await: > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > but there was some hw maintenance done today to this setup (bar-arls-2) so maybe safest would be re-run to see latest > > > Could you please take a look and see why all of these would be skipped? > > Seems unrelated to this change. > > > > Regards > > Manasi > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani <jani.saarinen@intel.com> > > wrote: > > > > > > Hi, > > > > -----Original Message----- > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > > > Modem, Bhanuprakash > > > > Sent: Friday, 26 April 2024 6.44 > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > seamless modeset to a virtual LRR mode > > > > > > > > Hi Manasi, > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > Hi Bhanu, > > > > > > > > > > Thanks for the review. > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > If the BAT results look okay and I have your r-b, could we get this > > merged? > > > Did you look those. > > > > > > > > > > > Looks, BAT results are not OK to me. > > > Right. To me looks so too. > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls > > > > - > > > > 4%7Cbat-adls-6 > > > > > > > > - Bhanu > > > > > > > > > > > > > > Regards > > > > > Manasi > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > >> > > > > >> Hi Manasi, > > > > >> > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > >>> This subtest validates LRR fastset functionality by testing > > > > >>> seamless switching without full modeset to any of the virtual > > > > >>> LRR mode within VRR > > > > range. > > > > >>> Here we start from highest refresh rate mode and then switch to > > > > >>> virtual LRR modes in the steps of 10Hz within the VRR range. > > > > >>> > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > >>> > > > > >>> v5: > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > >>> - Add a new line between between declaration and code logic > > > > >>> > > > > >>> v4: > > > > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > > > > >>> - Fix some build warnings due to rebase > > > > >>> - Use a local virtual_mode variable > > > > >>> > > > > >>> v3: > > > > >>> - Fix build error due to rebase (Manasi) > > > > >>> > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > > > >>> --- > > > > >>> tests/kms_vrr.c | 73 > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > > >>> > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > > >>> 15c62b34b..7f64d6806 100644 > > > > >>> --- a/tests/kms_vrr.c > > > > >>> +++ b/tests/kms_vrr.c > > > > >>> @@ -66,6 +66,11 @@ > > > > >>> * Description: Test to switch RR seamlessly without modeset. > > > > >>> * Functionality: adaptive_sync, drrs > > > > >>> * > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > >>> + * Description: Test to create a Virtual Mode in VRR range and > > > > >>> + switch to > > > > it > > > > >>> + * without a full modeset. > > > > >>> + * Functionality: LRR > > > > >>> + * > > > > >>> * SUBTEST: max-min > > > > >>> * Description: Oscillates between highest and lowest refresh > > > > >>> each > > > > frame for > > > > >>> * manual flicker profiling > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > >>> - TEST_FASTSET = 1 << 6, > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > >>> + TEST_FASTSET = 1 << 7, > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > >>> }; > > > > >>> > > > > >>> enum { > > > > >>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t > > > > *output, unsigned int vrr_min) > > > > >>> return mode; > > > > >>> } > > > > >>> > > > > >>> +static drmModeModeInfo > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > > > > >>> +virtual_refresh_rate) { > > > > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > >>> + > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > >>> + > > > > >>> + return mode; > > > > >>> +} > > > > >>> + > > > > >>> /* Read min and max vrr range from the connector debugfs. */ > > > > >>> static range_t > > > > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, > > > > igt_output_t *output, uint3 > > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > > > >>> } > > > > >>> > > > > >>> +static void > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > > > > >>> +igt_output_t *output, uint32_t flags) { > > > > >>> + uint32_t result; > > > > >>> + unsigned int vrefresh; > > > > >>> + uint64_t rate[] = {0}; > > > > >>> + > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > >>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > > > > >>> + > > > > >>> + prepare_test(data, output, pipe); > > > > >>> + rate[0] = > > > > >>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > > > > >>> + > > > > >>> + /* > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > >>> + * switch to highest refresh rate mode. > > > > >>> + */ > > > > >>> + igt_output_override_mode(output, &data- > > > > >switch_modes[HIGH_RR_MODE]); > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > >>> + > > > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > > > TEST_DURATION_NS); > > > > >>> + igt_assert_f(result > 75, > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > > > > >>> + threshold not > > > > reached, result was %u%%\n", > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > >>> + rate[0], result); > > > > >>> + > > > > >>> + /* Switch to Virtual RR */ > > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > > >>> + data->range.max; > > > > vrefresh += 10) { > > > > >>> + drmModeModeInfo virtual_mode = > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > >>> + > > > > >>> + igt_info("Requesting Virtual Mode with Refresh > > > > >>> + Rate (%u Hz): \n", > > > > vrefresh); > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > >>> + > > > > >>> + igt_output_override_mode(output, &virtual_mode); > > > > >>> + > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, > > > > >>> + NULL) == 0); > > > > >>> + > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > >>> + result = flip_and_measure(data, output, pipe, > > > > >>> + rate, 1, > > > > TEST_DURATION_NS); > > > > >>> + igt_assert_f(result > 75, > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > >>> + Target threshold not > > > > reached, result was %u%%\n", > > > > >>> + vrefresh, rate[0], result); > > > > >>> + } > > > > >>> +} > > > > >>> + > > > > >>> static void test_cleanup(data_t *data, enum pipe pipe, > > > > >>> igt_output_t > > > > *output) > > > > >>> { > > > > >>> if (vrr_capable(output)) > > > > >>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, > > > > igt_output_t *output, uint32_t flags > > > > >>> igt_output_override_mode(output, > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > >>> > > > > >>> /* Search for a low refresh rate mode. */ > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > >> > > > > >> Does this virtual RR applicable to eDP only or supports other > > > > >> connector types too? If it is eDP specific [*], then we must add > > > > >> a check for > > > > that. > > > > >> > > > > >> [*]: > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr > > > > >> .c#n > > > > >> 660 > > > > >> > > > > >> With above comment addressed, this patch is > > > > >> Reviewed-by: Bhanuprakash Modem > > <bhanuprakash.modem@intel.com> > > > > >> > > > > >> - Bhanu > > > > >> > > > > >>> return true; > > > > >>> > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > >>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, > > > > +&data) > > > > >>> "between flip timestamps converges > > > > >>> to the requested > > > > rate"); > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > >>> run_vrr_test(&data, test_basic, > > > > >>> TEST_FASTSET); > > > > >>> + > > > > >>> + igt_describe("Test to switch to any custom virtual > > > > >>> + mode in VRR > > > > range without modeset."); > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > > > >>> + run_vrr_test(&data, > > > > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > > > >>> } > > > > >>> > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 19:46 ` Manasi Navare @ 2024-04-26 20:03 ` Saarinen, Jani 2024-04-30 17:03 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-04-26 20:03 UTC (permalink / raw) To: Manasi Navare Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi, > -----Original Message----- > From: Manasi Navare <navaremanasi@chromium.org> > Sent: Friday, 26 April 2024 22.46 > To: Saarinen, Jani <jani.saarinen@intel.com> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > <seanpaul@chromium.org> > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Great thanks Jani, > > Could you please kick in a re run on your end? Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > Regards > Manasi > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani <jani.saarinen@intel.com> > wrote: > > > > Hi, > > > > > -----Original Message----- > > > From: Manasi Navare <navaremanasi@chromium.org> > > > Sent: Friday, 26 April 2024 22.25 > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > dev@lists.freedesktop.org; Drew Davenport > <ddavenport@chromium.org>; > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > <seanpaul@chromium.org> > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > seamless modeset to a virtual LRR mode > > > > > > Hi Bhanu, Jani, > > > > > > I do see that even the other vrr tests : seamless-rr-switch-vrr > > > /drrs/ basic- fastset are getting skipped on BAT, so its not related > > > to this test. I am able to run it here locally and test. > > I was mainly looking at https://patchwork.freedesktop.org/series/132866/ > > Possible regressions > > igt@debugfs_test@read_all_entries: > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > igt@gem_exec_fence@nb-await: > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > but there was some hw maintenance done today to this setup > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > Could you please take a look and see why all of these would be skipped? > > > Seems unrelated to this change. > > > > > > Regards > > > Manasi > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > <jani.saarinen@intel.com> > > > wrote: > > > > > > > > Hi, > > > > > -----Original Message----- > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf > > > > > Of Modem, Bhanuprakash > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > <seanpaul@chromium.org> > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > Hi Manasi, > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > Hi Bhanu, > > > > > > > > > > > > Thanks for the review. > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > If the BAT results look okay and I have your r-b, could we get > > > > > > this > > > merged? > > > > Did you look those. > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > Right. To me looks so too. > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat- > > > > > rpls > > > > > - > > > > > 4%7Cbat-adls-6 > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > Regards > > > > > > Manasi > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > >> > > > > > >> Hi Manasi, > > > > > >> > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > >>> This subtest validates LRR fastset functionality by testing > > > > > >>> seamless switching without full modeset to any of the > > > > > >>> virtual LRR mode within VRR > > > > > range. > > > > > >>> Here we start from highest refresh rate mode and then switch > > > > > >>> to virtual LRR modes in the steps of 10Hz within the VRR range. > > > > > >>> > > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > > >>> > > > > > >>> v5: > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > >>> - Add a new line between between declaration and code logic > > > > > >>> > > > > > >>> v4: > > > > > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > > > > > >>> - Fix some build warnings due to rebase > > > > > >>> - Use a local virtual_mode variable > > > > > >>> > > > > > >>> v3: > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > >>> > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > > > > >>> --- > > > > > >>> tests/kms_vrr.c | 73 > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > > > >>> > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > >>> --- a/tests/kms_vrr.c > > > > > >>> +++ b/tests/kms_vrr.c > > > > > >>> @@ -66,6 +66,11 @@ > > > > > >>> * Description: Test to switch RR seamlessly without modeset. > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > >>> * > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > >>> + * Description: Test to create a Virtual Mode in VRR range > > > > > >>> + and switch to > > > > > it > > > > > >>> + * without a full modeset. > > > > > >>> + * Functionality: LRR > > > > > >>> + * > > > > > >>> * SUBTEST: max-min > > > > > >>> * Description: Oscillates between highest and lowest > > > > > >>> refresh each > > > > > frame for > > > > > >>> * manual flicker profiling > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > >>> }; > > > > > >>> > > > > > >>> enum { > > > > > >>> @@ -214,6 +220,18 @@ > low_rr_mode_with_same_res(igt_output_t > > > > > *output, unsigned int vrr_min) > > > > > >>> return mode; > > > > > >>> } > > > > > >>> > > > > > >>> +static drmModeModeInfo > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned > > > > > >>> +int > > > > > >>> +virtual_refresh_rate) { > > > > > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > >>> + > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > >>> + > > > > > >>> + return mode; > > > > > >>> +} > > > > > >>> + > > > > > >>> /* Read min and max vrr range from the connector debugfs. */ > > > > > >>> static range_t > > > > > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ > > > > > >>> -641,6 > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe > > > > > >>> +pipe, > > > > > igt_output_t *output, uint3 > > > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > > > > >>> } > > > > > >>> > > > > > >>> +static void > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe > > > > > >>> +pipe, igt_output_t *output, uint32_t flags) { > > > > > >>> + uint32_t result; > > > > > >>> + unsigned int vrefresh; > > > > > >>> + uint64_t rate[] = {0}; > > > > > >>> + > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > >>> + kmstest_dump_mode(&data- > >switch_modes[HIGH_RR_MODE]); > > > > > >>> + > > > > > >>> + prepare_test(data, output, pipe); > > > > > >>> + rate[0] = > > > > > >>> + rate_from_refresh(data- > >switch_modes[HIGH_RR_MODE].vrefres > > > > > >>> + h); > > > > > >>> + > > > > > >>> + /* > > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > > >>> + * switch to highest refresh rate mode. > > > > > >>> + */ > > > > > >>> + igt_output_override_mode(output, &data- > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > >>> + > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > >>> + > > > > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > > > > TEST_DURATION_NS); > > > > > >>> + igt_assert_f(result > 75, > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > > > > > >>> + threshold not > > > > > reached, result was %u%%\n", > > > > > >>> + > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > >>> + rate[0], result); > > > > > >>> + > > > > > >>> + /* Switch to Virtual RR */ > > > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > > > >>> + data->range.max; > > > > > vrefresh += 10) { > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > >>> + > > > > > >>> + igt_info("Requesting Virtual Mode with Refresh > > > > > >>> + Rate (%u Hz): \n", > > > > > vrefresh); > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > >>> + > > > > > >>> + igt_output_override_mode(output, > > > > > >>> + &virtual_mode); > > > > > >>> + > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > > >>> + 0, > > > > > >>> + NULL) == 0); > > > > > >>> + > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > >>> + result = flip_and_measure(data, output, pipe, > > > > > >>> + rate, 1, > > > > > TEST_DURATION_NS); > > > > > >>> + igt_assert_f(result > 75, > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > >>> + Target threshold not > > > > > reached, result was %u%%\n", > > > > > >>> + vrefresh, rate[0], result); > > > > > >>> + } > > > > > >>> +} > > > > > >>> + > > > > > >>> static void test_cleanup(data_t *data, enum pipe pipe, > > > > > >>> igt_output_t > > > > > *output) > > > > > >>> { > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ static > > > > > >>> bool output_constraint(data_t *data, > > > > > igt_output_t *output, uint32_t flags > > > > > >>> igt_output_override_mode(output, > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > >>> > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS > > > > > >>> + | > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > >> > > > > > >> Does this virtual RR applicable to eDP only or supports other > > > > > >> connector types too? If it is eDP specific [*], then we must > > > > > >> add a check for > > > > > that. > > > > > >> > > > > > >> [*]: > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms > > > > > >> _vrr > > > > > >> .c#n > > > > > >> 660 > > > > > >> > > > > > >> With above comment addressed, this patch is > > > > > >> Reviewed-by: Bhanuprakash Modem > > > <bhanuprakash.modem@intel.com> > > > > > >> > > > > > >> - Bhanu > > > > > >> > > > > > >>> return true; > > > > > >>> > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > >>> low_rr_mode_with_same_res(output, data->range.min); @@ > > > > > >>> -841,6 > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > +opt_handler, > > > > > +&data) > > > > > >>> "between flip timestamps > > > > > >>> converges to the requested > > > > > rate"); > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > >>> run_vrr_test(&data, test_basic, > > > > > >>> TEST_FASTSET); > > > > > >>> + > > > > > >>> + igt_describe("Test to switch to any custom > > > > > >>> + virtual mode in VRR > > > > > range without modeset."); > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > > > > >>> + run_vrr_test(&data, > > > > > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > > > > >>> } > > > > > >>> > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 20:03 ` Saarinen, Jani @ 2024-04-30 17:03 ` Manasi Navare 2024-05-01 7:32 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-04-30 17:03 UTC (permalink / raw) To: Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi Bhanu, Could you please get this landed? Regards Manasi On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi, > > -----Original Message----- > > From: Manasi Navare <navaremanasi@chromium.org> > > Sent: Friday, 26 April 2024 22.46 > > To: Saarinen, Jani <jani.saarinen@intel.com> > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > <seanpaul@chromium.org> > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > Great thanks Jani, > > > > Could you please kick in a re run on your end? > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > Regards > > Manasi > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani <jani.saarinen@intel.com> > > wrote: > > > > > > Hi, > > > > > > > -----Original Message----- > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > Sent: Friday, 26 April 2024 22.25 > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > dev@lists.freedesktop.org; Drew Davenport > > <ddavenport@chromium.org>; > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > <seanpaul@chromium.org> > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > seamless modeset to a virtual LRR mode > > > > > > > > Hi Bhanu, Jani, > > > > > > > > I do see that even the other vrr tests : seamless-rr-switch-vrr > > > > /drrs/ basic- fastset are getting skipped on BAT, so its not related > > > > to this test. I am able to run it here locally and test. > > > I was mainly looking at https://patchwork.freedesktop.org/series/132866/ > > > Possible regressions > > > igt@debugfs_test@read_all_entries: > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > igt@gem_exec_fence@nb-await: > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > but there was some hw maintenance done today to this setup > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > Could you please take a look and see why all of these would be skipped? > > > > Seems unrelated to this change. > > > > > > > > Regards > > > > Manasi > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > <jani.saarinen@intel.com> > > > > wrote: > > > > > > > > > > Hi, > > > > > > -----Original Message----- > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf > > > > > > Of Modem, Bhanuprakash > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > <seanpaul@chromium.org> > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > Thanks for the review. > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, could we get > > > > > > > this > > > > merged? > > > > > Did you look those. > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat- > > > > > > rpls > > > > > > - > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > Manasi > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > >> > > > > > > >> Hi Manasi, > > > > > > >> > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > >>> This subtest validates LRR fastset functionality by testing > > > > > > >>> seamless switching without full modeset to any of the > > > > > > >>> virtual LRR mode within VRR > > > > > > range. > > > > > > >>> Here we start from highest refresh rate mode and then switch > > > > > > >>> to virtual LRR modes in the steps of 10Hz within the VRR range. > > > > > > >>> > > > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > > > >>> > > > > > > >>> v5: > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > >>> - Add a new line between between declaration and code logic > > > > > > >>> > > > > > > >>> v4: > > > > > > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > > > > > > >>> - Fix some build warnings due to rebase > > > > > > >>> - Use a local virtual_mode variable > > > > > > >>> > > > > > > >>> v3: > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > >>> > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > > > > > >>> --- > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > > > > >>> > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > >>> * Description: Test to switch RR seamlessly without modeset. > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > >>> * > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > >>> + * Description: Test to create a Virtual Mode in VRR range > > > > > > >>> + and switch to > > > > > > it > > > > > > >>> + * without a full modeset. > > > > > > >>> + * Functionality: LRR > > > > > > >>> + * > > > > > > >>> * SUBTEST: max-min > > > > > > >>> * Description: Oscillates between highest and lowest > > > > > > >>> refresh each > > > > > > frame for > > > > > > >>> * manual flicker profiling > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > >>> }; > > > > > > >>> > > > > > > >>> enum { > > > > > > >>> @@ -214,6 +220,18 @@ > > low_rr_mode_with_same_res(igt_output_t > > > > > > *output, unsigned int vrr_min) > > > > > > >>> return mode; > > > > > > >>> } > > > > > > >>> > > > > > > >>> +static drmModeModeInfo > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned > > > > > > >>> +int > > > > > > >>> +virtual_refresh_rate) { > > > > > > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > >>> + > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > >>> + > > > > > > >>> + return mode; > > > > > > >>> +} > > > > > > >>> + > > > > > > >>> /* Read min and max vrr range from the connector debugfs. */ > > > > > > >>> static range_t > > > > > > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ > > > > > > >>> -641,6 > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe > > > > > > >>> +pipe, > > > > > > igt_output_t *output, uint3 > > > > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > > > > > >>> } > > > > > > >>> > > > > > > >>> +static void > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe > > > > > > >>> +pipe, igt_output_t *output, uint32_t flags) { > > > > > > >>> + uint32_t result; > > > > > > >>> + unsigned int vrefresh; > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > >>> + > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > >>> + kmstest_dump_mode(&data- > > >switch_modes[HIGH_RR_MODE]); > > > > > > >>> + > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > >>> + rate[0] = > > > > > > >>> + rate_from_refresh(data- > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > >>> + h); > > > > > > >>> + > > > > > > >>> + /* > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > >>> + */ > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > >>> + > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > > > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > >>> + > > > > > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > > > > > TEST_DURATION_NS); > > > > > > >>> + igt_assert_f(result > 75, > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > > > > > > >>> + threshold not > > > > > > reached, result was %u%%\n", > > > > > > >>> + > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > >>> + rate[0], result); > > > > > > >>> + > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > > > > >>> + data->range.max; > > > > > > vrefresh += 10) { > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > >>> + > > > > > > >>> + igt_info("Requesting Virtual Mode with Refresh > > > > > > >>> + Rate (%u Hz): \n", > > > > > > vrefresh); > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > >>> + > > > > > > >>> + igt_output_override_mode(output, > > > > > > >>> + &virtual_mode); > > > > > > >>> + > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > > > >>> + 0, > > > > > > >>> + NULL) == 0); > > > > > > >>> + > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > >>> + result = flip_and_measure(data, output, pipe, > > > > > > >>> + rate, 1, > > > > > > TEST_DURATION_NS); > > > > > > >>> + igt_assert_f(result > 75, > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > >>> + Target threshold not > > > > > > reached, result was %u%%\n", > > > > > > >>> + vrefresh, rate[0], result); > > > > > > >>> + } > > > > > > >>> +} > > > > > > >>> + > > > > > > >>> static void test_cleanup(data_t *data, enum pipe pipe, > > > > > > >>> igt_output_t > > > > > > *output) > > > > > > >>> { > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ static > > > > > > >>> bool output_constraint(data_t *data, > > > > > > igt_output_t *output, uint32_t flags > > > > > > >>> igt_output_override_mode(output, > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > >>> > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS > > > > > > >>> + | > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > >> > > > > > > >> Does this virtual RR applicable to eDP only or supports other > > > > > > >> connector types too? If it is eDP specific [*], then we must > > > > > > >> add a check for > > > > > > that. > > > > > > >> > > > > > > >> [*]: > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms > > > > > > >> _vrr > > > > > > >> .c#n > > > > > > >> 660 > > > > > > >> > > > > > > >> With above comment addressed, this patch is > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > <bhanuprakash.modem@intel.com> > > > > > > >> > > > > > > >> - Bhanu > > > > > > >> > > > > > > >>> return true; > > > > > > >>> > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > >>> low_rr_mode_with_same_res(output, data->range.min); @@ > > > > > > >>> -841,6 > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > +opt_handler, > > > > > > +&data) > > > > > > >>> "between flip timestamps > > > > > > >>> converges to the requested > > > > > > rate"); > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > >>> run_vrr_test(&data, test_basic, > > > > > > >>> TEST_FASTSET); > > > > > > >>> + > > > > > > >>> + igt_describe("Test to switch to any custom > > > > > > >>> + virtual mode in VRR > > > > > > range without modeset."); > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > > > > > >>> + run_vrr_test(&data, > > > > > > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > > > > > >>> } > > > > > > >>> > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-30 17:03 ` Manasi Navare @ 2024-05-01 7:32 ` Manasi Navare 2024-05-01 9:27 ` Saarinen, Jani 0 siblings, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-05-01 7:32 UTC (permalink / raw) To: Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi Jani, Bhanu, Even with the rerun there are some skips that are not related to the changes in this test. Could you please take a look and merge this since Bhanu already reviewed this. Regards Manasi On Tue, Apr 30, 2024 at 10:03 AM Manasi Navare <navaremanasi@chromium.org> wrote: > > Hi Bhanu, > > Could you please get this landed? > > Regards > Manasi > > On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > > > Hi, > > > -----Original Message----- > > > From: Manasi Navare <navaremanasi@chromium.org> > > > Sent: Friday, 26 April 2024 22.46 > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > <seanpaul@chromium.org> > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > > modeset to a virtual LRR mode > > > > > > Great thanks Jani, > > > > > > Could you please kick in a re run on your end? > > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > > > > Regards > > > Manasi > > > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani <jani.saarinen@intel.com> > > > wrote: > > > > > > > > Hi, > > > > > > > > > -----Original Message----- > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > Sent: Friday, 26 April 2024 22.25 > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > dev@lists.freedesktop.org; Drew Davenport > > > <ddavenport@chromium.org>; > > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > > <seanpaul@chromium.org> > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > Hi Bhanu, Jani, > > > > > > > > > > I do see that even the other vrr tests : seamless-rr-switch-vrr > > > > > /drrs/ basic- fastset are getting skipped on BAT, so its not related > > > > > to this test. I am able to run it here locally and test. > > > > I was mainly looking at https://patchwork.freedesktop.org/series/132866/ > > > > Possible regressions > > > > igt@debugfs_test@read_all_entries: > > > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > > igt@gem_exec_fence@nb-await: > > > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > > > but there was some hw maintenance done today to this setup > > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > > > Could you please take a look and see why all of these would be skipped? > > > > > Seems unrelated to this change. > > > > > > > > > > Regards > > > > > Manasi > > > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > > <jani.saarinen@intel.com> > > > > > wrote: > > > > > > > > > > > > Hi, > > > > > > > -----Original Message----- > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf > > > > > > > Of Modem, Bhanuprakash > > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > <seanpaul@chromium.org> > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > > > Thanks for the review. > > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, could we get > > > > > > > > this > > > > > merged? > > > > > > Did you look those. > > > > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat- > > > > > > > rpls > > > > > > > - > > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > Manasi > > > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > > >> > > > > > > > >> Hi Manasi, > > > > > > > >> > > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > > >>> This subtest validates LRR fastset functionality by testing > > > > > > > >>> seamless switching without full modeset to any of the > > > > > > > >>> virtual LRR mode within VRR > > > > > > > range. > > > > > > > >>> Here we start from highest refresh rate mode and then switch > > > > > > > >>> to virtual LRR modes in the steps of 10Hz within the VRR range. > > > > > > > >>> > > > > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > > > > >>> > > > > > > > >>> v5: > > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > > >>> - Add a new line between between declaration and code logic > > > > > > > >>> > > > > > > > >>> v4: > > > > > > > >>> - Change the test name to align with drrs/vrr tests (Bhanu) > > > > > > > >>> - Fix some build warnings due to rebase > > > > > > > >>> - Use a local virtual_mode variable > > > > > > > >>> > > > > > > > >>> v3: > > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > > >>> > > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > > >>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > > >>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > > > > > > >>> --- > > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > > > > > >>> > > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > > >>> * Description: Test to switch RR seamlessly without modeset. > > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > > >>> * > > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > > >>> + * Description: Test to create a Virtual Mode in VRR range > > > > > > > >>> + and switch to > > > > > > > it > > > > > > > >>> + * without a full modeset. > > > > > > > >>> + * Functionality: LRR > > > > > > > >>> + * > > > > > > > >>> * SUBTEST: max-min > > > > > > > >>> * Description: Oscillates between highest and lowest > > > > > > > >>> refresh each > > > > > > > frame for > > > > > > > >>> * manual flicker profiling > > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > > >>> }; > > > > > > > >>> > > > > > > > >>> enum { > > > > > > > >>> @@ -214,6 +220,18 @@ > > > low_rr_mode_with_same_res(igt_output_t > > > > > > > *output, unsigned int vrr_min) > > > > > > > >>> return mode; > > > > > > > >>> } > > > > > > > >>> > > > > > > > >>> +static drmModeModeInfo > > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned > > > > > > > >>> +int > > > > > > > >>> +virtual_refresh_rate) { > > > > > > > >>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > > >>> + > > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > > >>> + > > > > > > > >>> + return mode; > > > > > > > >>> +} > > > > > > > >>> + > > > > > > > >>> /* Read min and max vrr range from the connector debugfs. */ > > > > > > > >>> static range_t > > > > > > > >>> get_vrr_range(data_t *data, igt_output_t *output) @@ > > > > > > > >>> -641,6 > > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe > > > > > > > >>> +pipe, > > > > > > > igt_output_t *output, uint3 > > > > > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > > > > > > > >>> } > > > > > > > >>> > > > > > > > >>> +static void > > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe > > > > > > > >>> +pipe, igt_output_t *output, uint32_t flags) { > > > > > > > >>> + uint32_t result; > > > > > > > >>> + unsigned int vrefresh; > > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > > >>> + > > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > > >>> + kmstest_dump_mode(&data- > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > >>> + > > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > > >>> + rate[0] = > > > > > > > >>> + rate_from_refresh(data- > > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > > >>> + h); > > > > > > > >>> + > > > > > > > >>> + /* > > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > > >>> + */ > > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > >>> + > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > > > > >>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > > >>> + > > > > > > > >>> + result = flip_and_measure(data, output, pipe, rate, 1, > > > > > > > TEST_DURATION_NS); > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > > > > > > > >>> + threshold not > > > > > > > reached, result was %u%%\n", > > > > > > > >>> + > > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > > >>> + rate[0], result); > > > > > > > >>> + > > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > > > > > >>> + data->range.max; > > > > > > > vrefresh += 10) { > > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > > >>> + > > > > > > > >>> + igt_info("Requesting Virtual Mode with Refresh > > > > > > > >>> + Rate (%u Hz): \n", > > > > > > > vrefresh); > > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > > >>> + > > > > > > > >>> + igt_output_override_mode(output, > > > > > > > >>> + &virtual_mode); > > > > > > > >>> + > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > > > > > > >>> + 0, > > > > > > > >>> + NULL) == 0); > > > > > > > >>> + > > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > > >>> + result = flip_and_measure(data, output, pipe, > > > > > > > >>> + rate, 1, > > > > > > > TEST_DURATION_NS); > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > >>> + Target threshold not > > > > > > > reached, result was %u%%\n", > > > > > > > >>> + vrefresh, rate[0], result); > > > > > > > >>> + } > > > > > > > >>> +} > > > > > > > >>> + > > > > > > > >>> static void test_cleanup(data_t *data, enum pipe pipe, > > > > > > > >>> igt_output_t > > > > > > > *output) > > > > > > > >>> { > > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ static > > > > > > > >>> bool output_constraint(data_t *data, > > > > > > > igt_output_t *output, uint32_t flags > > > > > > > >>> igt_output_override_mode(output, > > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > > >>> > > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS > > > > > > > >>> + | > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > > >> > > > > > > > >> Does this virtual RR applicable to eDP only or supports other > > > > > > > >> connector types too? If it is eDP specific [*], then we must > > > > > > > >> add a check for > > > > > > > that. > > > > > > > >> > > > > > > > >> [*]: > > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms > > > > > > > >> _vrr > > > > > > > >> .c#n > > > > > > > >> 660 > > > > > > > >> > > > > > > > >> With above comment addressed, this patch is > > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > > <bhanuprakash.modem@intel.com> > > > > > > > >> > > > > > > > >> - Bhanu > > > > > > > >> > > > > > > > >>> return true; > > > > > > > >>> > > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > > >>> low_rr_mode_with_same_res(output, data->range.min); @@ > > > > > > > >>> -841,6 > > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > > +opt_handler, > > > > > > > +&data) > > > > > > > >>> "between flip timestamps > > > > > > > >>> converges to the requested > > > > > > > rate"); > > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > > >>> run_vrr_test(&data, test_basic, > > > > > > > >>> TEST_FASTSET); > > > > > > > >>> + > > > > > > > >>> + igt_describe("Test to switch to any custom > > > > > > > >>> + virtual mode in VRR > > > > > > > range without modeset."); > > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > > > > > > >>> + run_vrr_test(&data, > > > > > > > >>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > > > > > > >>> } > > > > > > > >>> > > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-01 7:32 ` Manasi Navare @ 2024-05-01 9:27 ` Saarinen, Jani 2024-05-06 19:00 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-05-01 9:27 UTC (permalink / raw) To: Manasi Navare Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi, > -----Original Message----- > From: Manasi Navare <navaremanasi@chromium.org> > Sent: Wednesday, 1 May 2024 10.33 > To: Saarinen, Jani <jani.saarinen@intel.com> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > <seanpaul@chromium.org> > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Hi Jani, Bhanu, > > Even with the rerun there are some skips that are not related to the changes > in this test. Could you please take a look and merge this since Bhanu already > reviewed this. You know how this goes. If BAT is not passed there are instructions sent to patch owner what are actions to take. You _must_ get Full CI results. You have got BAT results where it says " FAILURE Serious unknown changes coming with IGTPW_11079 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11079, 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." > > Regards > Manasi Br, Jani > > On Tue, Apr 30, 2024 at 10:03 AM Manasi Navare > <navaremanasi@chromium.org> wrote: > > > > Hi Bhanu, > > > > Could you please get this landed? > > > > Regards > > Manasi > > > > On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani <jani.saarinen@intel.com> > wrote: > > > > > > Hi, > > > > -----Original Message----- > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > Sent: Friday, 26 April 2024 22.46 > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > dev@lists.freedesktop.org; Drew Davenport > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > seamless modeset to a virtual LRR mode > > > > > > > > Great thanks Jani, > > > > > > > > Could you please kick in a re run on your end? > > > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > > > > > > > Regards > > > > Manasi > > > > > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani > > > > <jani.saarinen@intel.com> > > > > wrote: > > > > > > > > > > Hi, > > > > > > > > > > > -----Original Message----- > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > Sent: Friday, 26 April 2024 22.25 > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > > dev@lists.freedesktop.org; Drew Davenport > > > > <ddavenport@chromium.org>; > > > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > <seanpaul@chromium.org> > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > > > Hi Bhanu, Jani, > > > > > > > > > > > > I do see that even the other vrr tests : > > > > > > seamless-rr-switch-vrr /drrs/ basic- fastset are getting > > > > > > skipped on BAT, so its not related to this test. I am able to run it here > locally and test. > > > > > I was mainly looking at > https://patchwork.freedesktop.org/series/132866/ > > > > > Possible regressions > > > > > igt@debugfs_test@read_all_entries: > > > > > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > > > igt@gem_exec_fence@nb-await: > > > > > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > > > > > but there was some hw maintenance done today to this setup > > > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > > > > > Could you please take a look and see why all of these would be > skipped? > > > > > > Seems unrelated to this change. > > > > > > > > > > > > Regards > > > > > > Manasi > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > > > <jani.saarinen@intel.com> > > > > > > wrote: > > > > > > > > > > > > > > Hi, > > > > > > > > -----Original Message----- > > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On > > > > > > > > Behalf Of Modem, Bhanuprakash > > > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > <seanpaul@chromium.org> > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest > > > > > > > > for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > > > > > Thanks for the review. > > > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, could > > > > > > > > > we get this > > > > > > merged? > > > > > > > Did you look those. > > > > > > > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9% > > > > > > > > 7Cbat- > > > > > > > > rpls > > > > > > > > - > > > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > Manasi > > > > > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > > > >> > > > > > > > > >> Hi Manasi, > > > > > > > > >> > > > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > > > >>> This subtest validates LRR fastset functionality by > > > > > > > > >>> testing seamless switching without full modeset to any > > > > > > > > >>> of the virtual LRR mode within VRR > > > > > > > > range. > > > > > > > > >>> Here we start from highest refresh rate mode and then > > > > > > > > >>> switch to virtual LRR modes in the steps of 10Hz within the > VRR range. > > > > > > > > >>> > > > > > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > > > > > >>> > > > > > > > > >>> v5: > > > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > > > >>> - Add a new line between between declaration and code > > > > > > > > >>> logic > > > > > > > > >>> > > > > > > > > >>> v4: > > > > > > > > >>> - Change the test name to align with drrs/vrr tests > > > > > > > > >>> (Bhanu) > > > > > > > > >>> - Fix some build warnings due to rebase > > > > > > > > >>> - Use a local virtual_mode variable > > > > > > > > >>> > > > > > > > > >>> v3: > > > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > > > >>> > > > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > > > >>> Cc: Bhanuprakash Modem > <bhanuprakash.modem@intel.com> > > > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > > > >>> Signed-off-by: Manasi Navare > > > > > > > > >>> <navaremanasi@chromium.org> > > > > > > > > >>> --- > > > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > > > > > > >>> > > > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > > > >>> * Description: Test to switch RR seamlessly without > modeset. > > > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > > > >>> * > > > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > > > >>> + * Description: Test to create a Virtual Mode in VRR > > > > > > > > >>> + range and switch to > > > > > > > > it > > > > > > > > >>> + * without a full modeset. > > > > > > > > >>> + * Functionality: LRR > > > > > > > > >>> + * > > > > > > > > >>> * SUBTEST: max-min > > > > > > > > >>> * Description: Oscillates between highest and > > > > > > > > >>> lowest refresh each > > > > > > > > frame for > > > > > > > > >>> * manual flicker profiling > > > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > > > >>> }; > > > > > > > > >>> > > > > > > > > >>> enum { > > > > > > > > >>> @@ -214,6 +220,18 @@ > > > > low_rr_mode_with_same_res(igt_output_t > > > > > > > > *output, unsigned int vrr_min) > > > > > > > > >>> return mode; > > > > > > > > >>> } > > > > > > > > >>> > > > > > > > > >>> +static drmModeModeInfo > > > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, > > > > > > > > >>> +unsigned int > > > > > > > > >>> +virtual_refresh_rate) { > > > > > > > > >>> + drmModeModeInfo mode = > *igt_output_get_mode(output); > > > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > > > >>> + > > > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * > virtual_refresh_rate); > > > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > > > >>> + > > > > > > > > >>> + return mode; > > > > > > > > >>> +} > > > > > > > > >>> + > > > > > > > > >>> /* Read min and max vrr range from the connector debugfs. > */ > > > > > > > > >>> static range_t > > > > > > > > >>> get_vrr_range(data_t *data, igt_output_t *output) > > > > > > > > >>> @@ > > > > > > > > >>> -641,6 > > > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum > > > > > > > > >>> +pipe pipe, > > > > > > > > igt_output_t *output, uint3 > > > > > > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", > result); > > > > > > > > >>> } > > > > > > > > >>> > > > > > > > > >>> +static void > > > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum > > > > > > > > >>> +pipe pipe, igt_output_t *output, uint32_t flags) { > > > > > > > > >>> + uint32_t result; > > > > > > > > >>> + unsigned int vrefresh; > > > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > > > >>> + > > > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > > > >>> + kmstest_dump_mode(&data- > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > >>> + > > > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > > > >>> + rate[0] = > > > > > > > > >>> + rate_from_refresh(data- > > > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > > > >>> + h); > > > > > > > > >>> + > > > > > > > > >>> + /* > > > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > > > >>> + */ > > > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > >>> + > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->disp > > > > > > > > >>> + lay, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > > > >>> + > > > > > > > > >>> + result = flip_and_measure(data, output, pipe, > > > > > > > > >>> + rate, 1, > > > > > > > > TEST_DURATION_NS); > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > >>> + Target threshold not > > > > > > > > reached, result was %u%%\n", > > > > > > > > >>> + > > > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > > > >>> + rate[0], result); > > > > > > > > >>> + > > > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > > > > > > >>> + data->range.max; > > > > > > > > vrefresh += 10) { > > > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > > > >>> + > > > > > > > > >>> + igt_info("Requesting Virtual Mode with > > > > > > > > >>> + Refresh Rate (%u Hz): \n", > > > > > > > > vrefresh); > > > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > > > >>> + > > > > > > > > >>> + igt_output_override_mode(output, > > > > > > > > >>> + &virtual_mode); > > > > > > > > >>> + > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->disp > > > > > > > > >>> + lay, > > > > > > > > >>> + 0, > > > > > > > > >>> + NULL) == 0); > > > > > > > > >>> + > > > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > > > >>> + result = flip_and_measure(data, output, > > > > > > > > >>> + pipe, rate, 1, > > > > > > > > TEST_DURATION_NS); > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > >>> + Target threshold not > > > > > > > > reached, result was %u%%\n", > > > > > > > > >>> + vrefresh, rate[0], result); > > > > > > > > >>> + } > > > > > > > > >>> +} > > > > > > > > >>> + > > > > > > > > >>> static void test_cleanup(data_t *data, enum pipe > > > > > > > > >>> pipe, igt_output_t > > > > > > > > *output) > > > > > > > > >>> { > > > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ > > > > > > > > >>> static bool output_constraint(data_t *data, > > > > > > > > igt_output_t *output, uint32_t flags > > > > > > > > >>> igt_output_override_mode(output, > > > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > > > >>> > > > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | > TEST_SEAMLESS_DRRS))) > > > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | > > > > > > > > >>> + TEST_SEAMLESS_DRRS > > > > > > > > >>> + | > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > > > >> > > > > > > > > >> Does this virtual RR applicable to eDP only or supports > > > > > > > > >> other connector types too? If it is eDP specific [*], > > > > > > > > >> then we must add a check for > > > > > > > > that. > > > > > > > > >> > > > > > > > > >> [*]: > > > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tes > > > > > > > > >> ts/kms > > > > > > > > >> _vrr > > > > > > > > >> .c#n > > > > > > > > >> 660 > > > > > > > > >> > > > > > > > > >> With above comment addressed, this patch is > > > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > > > <bhanuprakash.modem@intel.com> > > > > > > > > >> > > > > > > > > >> - Bhanu > > > > > > > > >> > > > > > > > > >>> return true; > > > > > > > > >>> > > > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > > > >>> low_rr_mode_with_same_res(output, data->range.min); > @@ > > > > > > > > >>> -841,6 > > > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > > > +opt_handler, > > > > > > > > +&data) > > > > > > > > >>> "between flip timestamps > > > > > > > > >>> converges to the requested > > > > > > > > rate"); > > > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > > > >>> run_vrr_test(&data, test_basic, > > > > > > > > >>> TEST_FASTSET); > > > > > > > > >>> + > > > > > > > > >>> + igt_describe("Test to switch to any > > > > > > > > >>> + custom virtual mode in VRR > > > > > > > > range without modeset."); > > > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch- > virtual") > > > > > > > > >>> + run_vrr_test(&data, > > > > > > > > >>> + test_seamless_virtual_rr_basic, > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR); > > > > > > > > >>> } > > > > > > > > >>> > > > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-01 9:27 ` Saarinen, Jani @ 2024-05-06 19:00 ` Manasi Navare 2024-05-07 13:10 ` Illipilli, TejasreeX 0 siblings, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-05-06 19:00 UTC (permalink / raw) To: Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul, I915-ci-infra Hi, The reported changes have nothing to do with the changes introduced in IGTPW_11079 and need to be documented as new failure mode. Regards Manasi On Wed, May 1, 2024 at 2:27 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi, > > > -----Original Message----- > > From: Manasi Navare <navaremanasi@chromium.org> > > Sent: Wednesday, 1 May 2024 10.33 > > To: Saarinen, Jani <jani.saarinen@intel.com> > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > <seanpaul@chromium.org> > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > Hi Jani, Bhanu, > > > > Even with the rerun there are some skips that are not related to the changes > > in this test. Could you please take a look and merge this since Bhanu already > > reviewed this. > You know how this goes. > If BAT is not passed there are instructions sent to patch owner what are actions to take. You _must_ get Full CI results. > You have got BAT results where it says > " FAILURE > Serious unknown changes coming with IGTPW_11079 absolutely need to be verified manually. > If you think the reported changes have nothing to do with the changes introduced in IGTPW_11079, 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." > > > > > Regards > > Manasi > > Br, > Jani > > > > > On Tue, Apr 30, 2024 at 10:03 AM Manasi Navare > > <navaremanasi@chromium.org> wrote: > > > > > > Hi Bhanu, > > > > > > Could you please get this landed? > > > > > > Regards > > > Manasi > > > > > > On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani <jani.saarinen@intel.com> > > wrote: > > > > > > > > Hi, > > > > > -----Original Message----- > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > Sent: Friday, 26 April 2024 22.46 > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > dev@lists.freedesktop.org; Drew Davenport > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > Great thanks Jani, > > > > > > > > > > Could you please kick in a re run on your end? > > > > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > > > > > > > > > > Regards > > > > > Manasi > > > > > > > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani > > > > > <jani.saarinen@intel.com> > > > > > wrote: > > > > > > > > > > > > Hi, > > > > > > > > > > > > > -----Original Message----- > > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > > Sent: Friday, 26 April 2024 22.25 > > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > > > dev@lists.freedesktop.org; Drew Davenport > > > > > <ddavenport@chromium.org>; > > > > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > <seanpaul@chromium.org> > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > Hi Bhanu, Jani, > > > > > > > > > > > > > > I do see that even the other vrr tests : > > > > > > > seamless-rr-switch-vrr /drrs/ basic- fastset are getting > > > > > > > skipped on BAT, so its not related to this test. I am able to run it here > > locally and test. > > > > > > I was mainly looking at > > https://patchwork.freedesktop.org/series/132866/ > > > > > > Possible regressions > > > > > > igt@debugfs_test@read_all_entries: > > > > > > > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > > > > igt@gem_exec_fence@nb-await: > > > > > > > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > > > > > > > but there was some hw maintenance done today to this setup > > > > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > > > > > > > Could you please take a look and see why all of these would be > > skipped? > > > > > > > Seems unrelated to this change. > > > > > > > > > > > > > > Regards > > > > > > > Manasi > > > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > > > > <jani.saarinen@intel.com> > > > > > > > wrote: > > > > > > > > > > > > > > > > Hi, > > > > > > > > > -----Original Message----- > > > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On > > > > > > > > > Behalf Of Modem, Bhanuprakash > > > > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > > <seanpaul@chromium.org> > > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest > > > > > > > > > for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > > > > > > > Thanks for the review. > > > > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, could > > > > > > > > > > we get this > > > > > > > merged? > > > > > > > > Did you look those. > > > > > > > > > > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > > > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9% > > > > > > > > > 7Cbat- > > > > > > > > > rpls > > > > > > > > > - > > > > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > Manasi > > > > > > > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > > > > >> > > > > > > > > > >> Hi Manasi, > > > > > > > > > >> > > > > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > > > > >>> This subtest validates LRR fastset functionality by > > > > > > > > > >>> testing seamless switching without full modeset to any > > > > > > > > > >>> of the virtual LRR mode within VRR > > > > > > > > > range. > > > > > > > > > >>> Here we start from highest refresh rate mode and then > > > > > > > > > >>> switch to virtual LRR modes in the steps of 10Hz within the > > VRR range. > > > > > > > > > >>> > > > > > > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > > > > > > >>> > > > > > > > > > >>> v5: > > > > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > > > > >>> - Add a new line between between declaration and code > > > > > > > > > >>> logic > > > > > > > > > >>> > > > > > > > > > >>> v4: > > > > > > > > > >>> - Change the test name to align with drrs/vrr tests > > > > > > > > > >>> (Bhanu) > > > > > > > > > >>> - Fix some build warnings due to rebase > > > > > > > > > >>> - Use a local virtual_mode variable > > > > > > > > > >>> > > > > > > > > > >>> v3: > > > > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > > > > >>> > > > > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > > > > >>> Cc: Bhanuprakash Modem > > <bhanuprakash.modem@intel.com> > > > > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > > > > >>> Signed-off-by: Manasi Navare > > > > > > > > > >>> <navaremanasi@chromium.org> > > > > > > > > > >>> --- > > > > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > > > > >>> 1 file changed, 69 insertions(+), 4 deletions(-) > > > > > > > > > >>> > > > > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > > > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > > > > >>> * Description: Test to switch RR seamlessly without > > modeset. > > > > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > > > > >>> * > > > > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > > > > >>> + * Description: Test to create a Virtual Mode in VRR > > > > > > > > > >>> + range and switch to > > > > > > > > > it > > > > > > > > > >>> + * without a full modeset. > > > > > > > > > >>> + * Functionality: LRR > > > > > > > > > >>> + * > > > > > > > > > >>> * SUBTEST: max-min > > > > > > > > > >>> * Description: Oscillates between highest and > > > > > > > > > >>> lowest refresh each > > > > > > > > > frame for > > > > > > > > > >>> * manual flicker profiling > > > > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > > > > >>> }; > > > > > > > > > >>> > > > > > > > > > >>> enum { > > > > > > > > > >>> @@ -214,6 +220,18 @@ > > > > > low_rr_mode_with_same_res(igt_output_t > > > > > > > > > *output, unsigned int vrr_min) > > > > > > > > > >>> return mode; > > > > > > > > > >>> } > > > > > > > > > >>> > > > > > > > > > >>> +static drmModeModeInfo > > > > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, > > > > > > > > > >>> +unsigned int > > > > > > > > > >>> +virtual_refresh_rate) { > > > > > > > > > >>> + drmModeModeInfo mode = > > *igt_output_get_mode(output); > > > > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > > > > >>> + > > > > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * > > virtual_refresh_rate); > > > > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > > > > >>> + > > > > > > > > > >>> + return mode; > > > > > > > > > >>> +} > > > > > > > > > >>> + > > > > > > > > > >>> /* Read min and max vrr range from the connector debugfs. > > */ > > > > > > > > > >>> static range_t > > > > > > > > > >>> get_vrr_range(data_t *data, igt_output_t *output) > > > > > > > > > >>> @@ > > > > > > > > > >>> -641,6 > > > > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum > > > > > > > > > >>> +pipe pipe, > > > > > > > > > igt_output_t *output, uint3 > > > > > > > > > >>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", > > result); > > > > > > > > > >>> } > > > > > > > > > >>> > > > > > > > > > >>> +static void > > > > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum > > > > > > > > > >>> +pipe pipe, igt_output_t *output, uint32_t flags) { > > > > > > > > > >>> + uint32_t result; > > > > > > > > > >>> + unsigned int vrefresh; > > > > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > > > > >>> + > > > > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > > > > >>> + kmstest_dump_mode(&data- > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > >>> + > > > > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > > > > >>> + rate[0] = > > > > > > > > > >>> + rate_from_refresh(data- > > > > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > > > > >>> + h); > > > > > > > > > >>> + > > > > > > > > > >>> + /* > > > > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > > > > >>> + */ > > > > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->disp > > > > > > > > > >>> + lay, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > > > > >>> + > > > > > > > > > >>> + result = flip_and_measure(data, output, pipe, > > > > > > > > > >>> + rate, 1, > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > >>> + Target threshold not > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > >>> + > > > > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > > > > >>> + rate[0], result); > > > > > > > > > >>> + > > > > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > > > > >>> + for (vrefresh = data->range.min + 10; vrefresh < > > > > > > > > > >>> + data->range.max; > > > > > > > > > vrefresh += 10) { > > > > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_info("Requesting Virtual Mode with > > > > > > > > > >>> + Refresh Rate (%u Hz): \n", > > > > > > > > > vrefresh); > > > > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_output_override_mode(output, > > > > > > > > > >>> + &virtual_mode); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data->disp > > > > > > > > > >>> + lay, > > > > > > > > > >>> + 0, > > > > > > > > > >>> + NULL) == 0); > > > > > > > > > >>> + > > > > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > > > > >>> + result = flip_and_measure(data, output, > > > > > > > > > >>> + pipe, rate, 1, > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > >>> + Target threshold not > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > >>> + vrefresh, rate[0], result); > > > > > > > > > >>> + } > > > > > > > > > >>> +} > > > > > > > > > >>> + > > > > > > > > > >>> static void test_cleanup(data_t *data, enum pipe > > > > > > > > > >>> pipe, igt_output_t > > > > > > > > > *output) > > > > > > > > > >>> { > > > > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ > > > > > > > > > >>> static bool output_constraint(data_t *data, > > > > > > > > > igt_output_t *output, uint32_t flags > > > > > > > > > >>> igt_output_override_mode(output, > > > > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > > > > >>> > > > > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | > > TEST_SEAMLESS_DRRS))) > > > > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | > > > > > > > > > >>> + TEST_SEAMLESS_DRRS > > > > > > > > > >>> + | > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > > > > >> > > > > > > > > > >> Does this virtual RR applicable to eDP only or supports > > > > > > > > > >> other connector types too? If it is eDP specific [*], > > > > > > > > > >> then we must add a check for > > > > > > > > > that. > > > > > > > > > >> > > > > > > > > > >> [*]: > > > > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tes > > > > > > > > > >> ts/kms > > > > > > > > > >> _vrr > > > > > > > > > >> .c#n > > > > > > > > > >> 660 > > > > > > > > > >> > > > > > > > > > >> With above comment addressed, this patch is > > > > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > > > > <bhanuprakash.modem@intel.com> > > > > > > > > > >> > > > > > > > > > >> - Bhanu > > > > > > > > > >> > > > > > > > > > >>> return true; > > > > > > > > > >>> > > > > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > > > > >>> low_rr_mode_with_same_res(output, data->range.min); > > @@ > > > > > > > > > >>> -841,6 > > > > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > > > > +opt_handler, > > > > > > > > > +&data) > > > > > > > > > >>> "between flip timestamps > > > > > > > > > >>> converges to the requested > > > > > > > > > rate"); > > > > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > > > > >>> run_vrr_test(&data, test_basic, > > > > > > > > > >>> TEST_FASTSET); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_describe("Test to switch to any > > > > > > > > > >>> + custom virtual mode in VRR > > > > > > > > > range without modeset."); > > > > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch- > > virtual") > > > > > > > > > >>> + run_vrr_test(&data, > > > > > > > > > >>> + test_seamless_virtual_rr_basic, > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR); > > > > > > > > > >>> } > > > > > > > > > >>> > > > > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-06 19:00 ` Manasi Navare @ 2024-05-07 13:10 ` Illipilli, TejasreeX 2024-05-07 13:12 ` Saarinen, Jani 0 siblings, 1 reply; 44+ messages in thread From: Illipilli, TejasreeX @ 2024-05-07 13:10 UTC (permalink / raw) To: Manasi Navare, Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul, I915-ci-infra@lists.freedesktop.org Hi Manasi, This PW cannot be re-reported, results were already dropped from the server. Results are kept for a week only. Please try re-test. Thanks, Tejasree -----Original Message----- From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Manasi Navare Sent: Tuesday, May 7, 2024 12:30 AM To: Saarinen, Jani <jani.saarinen@intel.com> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt-dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org>; I915-ci-infra@lists.freedesktop.org Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Hi, The reported changes have nothing to do with the changes introduced in IGTPW_11079 and need to be documented as new failure mode. Regards Manasi On Wed, May 1, 2024 at 2:27 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi, > > > -----Original Message----- > > From: Manasi Navare <navaremanasi@chromium.org> > > Sent: Wednesday, 1 May 2024 10.33 > > To: Saarinen, Jani <jani.saarinen@intel.com> > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > <seanpaul@chromium.org> > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > seamless modeset to a virtual LRR mode > > > > Hi Jani, Bhanu, > > > > Even with the rerun there are some skips that are not related to the > > changes in this test. Could you please take a look and merge this > > since Bhanu already reviewed this. > You know how this goes. > If BAT is not passed there are instructions sent to patch owner what are actions to take. You _must_ get Full CI results. > You have got BAT results where it says " FAILURE Serious unknown > changes coming with IGTPW_11079 absolutely need to be verified manually. > If you think the reported changes have nothing to do with the changes introduced in IGTPW_11079, 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." > > > > > Regards > > Manasi > > Br, > Jani > > > > > On Tue, Apr 30, 2024 at 10:03 AM Manasi Navare > > <navaremanasi@chromium.org> wrote: > > > > > > Hi Bhanu, > > > > > > Could you please get this landed? > > > > > > Regards > > > Manasi > > > > > > On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani > > > <jani.saarinen@intel.com> > > wrote: > > > > > > > > Hi, > > > > > -----Original Message----- > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > Sent: Friday, 26 April 2024 22.46 > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > dev@lists.freedesktop.org; Drew Davenport > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > <seanpaul@chromium.org> > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > Great thanks Jani, > > > > > > > > > > Could you please kick in a re run on your end? > > > > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > > > > > > > > > > Regards > > > > > Manasi > > > > > > > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani > > > > > <jani.saarinen@intel.com> > > > > > wrote: > > > > > > > > > > > > Hi, > > > > > > > > > > > > > -----Original Message----- > > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > > Sent: Friday, 26 April 2024 22.25 > > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; > > > > > > > igt- dev@lists.freedesktop.org; Drew Davenport > > > > > <ddavenport@chromium.org>; > > > > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > <seanpaul@chromium.org> > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest > > > > > > > for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > Hi Bhanu, Jani, > > > > > > > > > > > > > > I do see that even the other vrr tests : > > > > > > > seamless-rr-switch-vrr /drrs/ basic- fastset are getting > > > > > > > skipped on BAT, so its not related to this test. I am able > > > > > > > to run it here > > locally and test. > > > > > > I was mainly looking at > > https://patchwork.freedesktop.org/series/132866/ > > > > > > Possible regressions > > > > > > igt@debugfs_test@read_all_entries: > > > > > > > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > > > > igt@gem_exec_fence@nb-await: > > > > > > > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > > > > > > > but there was some hw maintenance done today to this setup > > > > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > > > > > > > Could you please take a look and see why all of these > > > > > > > would be > > skipped? > > > > > > > Seems unrelated to this change. > > > > > > > > > > > > > > Regards > > > > > > > Manasi > > > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > > > > <jani.saarinen@intel.com> > > > > > > > wrote: > > > > > > > > > > > > > > > > Hi, > > > > > > > > > -----Original Message----- > > > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> > > > > > > > > > On Behalf Of Modem, Bhanuprakash > > > > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > > <seanpaul@chromium.org> > > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a > > > > > > > > > subtest for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > > > > > > > Thanks for the review. > > > > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, > > > > > > > > > > could we get this > > > > > > > merged? > > > > > > > > Did you look those. > > > > > > > > > > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/b > > > > > > > > > at- > > > > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adl > > > > > > > > > p-9% > > > > > > > > > 7Cbat- > > > > > > > > > rpls > > > > > > > > > - > > > > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > Manasi > > > > > > > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > > > > >> > > > > > > > > > >> Hi Manasi, > > > > > > > > > >> > > > > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > > > > >>> This subtest validates LRR fastset functionality > > > > > > > > > >>> by testing seamless switching without full modeset > > > > > > > > > >>> to any of the virtual LRR mode within VRR > > > > > > > > > range. > > > > > > > > > >>> Here we start from highest refresh rate mode and > > > > > > > > > >>> then switch to virtual LRR modes in the steps of > > > > > > > > > >>> 10Hz within the > > VRR range. > > > > > > > > > >>> > > > > > > > > > >>> This is used to test the LRR fastset functionality of the driver. > > > > > > > > > >>> > > > > > > > > > >>> v5: > > > > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > > > > >>> - Add a new line between between declaration and > > > > > > > > > >>> code logic > > > > > > > > > >>> > > > > > > > > > >>> v4: > > > > > > > > > >>> - Change the test name to align with drrs/vrr > > > > > > > > > >>> tests > > > > > > > > > >>> (Bhanu) > > > > > > > > > >>> - Fix some build warnings due to rebase > > > > > > > > > >>> - Use a local virtual_mode variable > > > > > > > > > >>> > > > > > > > > > >>> v3: > > > > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > > > > >>> > > > > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > > > > >>> Cc: Bhanuprakash Modem > > <bhanuprakash.modem@intel.com> > > > > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > > > > >>> Signed-off-by: Manasi Navare > > > > > > > > > >>> <navaremanasi@chromium.org> > > > > > > > > > >>> --- > > > > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > > > > >>> 1 file changed, 69 insertions(+), 4 > > > > > > > > > >>> deletions(-) > > > > > > > > > >>> > > > > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > > > > > > > > > >>> index > > > > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > > > > >>> * Description: Test to switch RR seamlessly > > > > > > > > > >>> without > > modeset. > > > > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > > > > >>> * > > > > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > > > > >>> + * Description: Test to create a Virtual Mode in > > > > > > > > > >>> + VRR range and switch to > > > > > > > > > it > > > > > > > > > >>> + * without a full modeset. > > > > > > > > > >>> + * Functionality: LRR > > > > > > > > > >>> + * > > > > > > > > > >>> * SUBTEST: max-min > > > > > > > > > >>> * Description: Oscillates between highest and > > > > > > > > > >>> lowest refresh each > > > > > > > > > frame for > > > > > > > > > >>> * manual flicker profiling > > > > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > > > > >>> }; > > > > > > > > > >>> > > > > > > > > > >>> enum { > > > > > > > > > >>> @@ -214,6 +220,18 @@ > > > > > low_rr_mode_with_same_res(igt_output_t > > > > > > > > > *output, unsigned int vrr_min) > > > > > > > > > >>> return mode; > > > > > > > > > >>> } > > > > > > > > > >>> > > > > > > > > > >>> +static drmModeModeInfo > > > > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, > > > > > > > > > >>> +unsigned int > > > > > > > > > >>> +virtual_refresh_rate) { > > > > > > > > > >>> + drmModeModeInfo mode = > > *igt_output_get_mode(output); > > > > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > > > > >>> + > > > > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * > > virtual_refresh_rate); > > > > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > > > > >>> + > > > > > > > > > >>> + return mode; } > > > > > > > > > >>> + > > > > > > > > > >>> /* Read min and max vrr range from the connector debugfs. > > */ > > > > > > > > > >>> static range_t > > > > > > > > > >>> get_vrr_range(data_t *data, igt_output_t > > > > > > > > > >>> *output) @@ > > > > > > > > > >>> -641,6 > > > > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, > > > > > > > > > >>> +enum pipe pipe, > > > > > > > > > igt_output_t *output, uint3 > > > > > > > > > >>> vrr ? "on" : "off", vrr ? "not > > > > > > > > > >>> reached" : "exceeded", > > result); > > > > > > > > > >>> } > > > > > > > > > >>> > > > > > > > > > >>> +static void > > > > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum > > > > > > > > > >>> +pipe pipe, igt_output_t *output, uint32_t flags) { > > > > > > > > > >>> + uint32_t result; > > > > > > > > > >>> + unsigned int vrefresh; > > > > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > > > > >>> + > > > > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > > > > >>> + kmstest_dump_mode(&data- > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > >>> + > > > > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > > > > >>> + rate[0] = > > > > > > > > > >>> + rate_from_refresh(data- > > > > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > > > > >>> + h); > > > > > > > > > >>> + > > > > > > > > > >>> + /* > > > > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode so > > > > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > > > > >>> + */ > > > > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data-> > > > > > > > > > >>> + disp lay, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > > > > >>> + > > > > > > > > > >>> + result = flip_and_measure(data, output, > > > > > > > > > >>> + pipe, rate, 1, > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > >>> + Target threshold not > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > >>> + > > > > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > > > > >>> + rate[0], result); > > > > > > > > > >>> + > > > > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > > > > >>> + for (vrefresh = data->range.min + 10; > > > > > > > > > >>> + vrefresh < > > > > > > > > > >>> + data->range.max; > > > > > > > > > vrefresh += 10) { > > > > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_info("Requesting Virtual Mode > > > > > > > > > >>> + with Refresh Rate (%u Hz): \n", > > > > > > > > > vrefresh); > > > > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_output_override_mode(output, > > > > > > > > > >>> + &virtual_mode); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data-> > > > > > > > > > >>> + disp > > > > > > > > > >>> + lay, > > > > > > > > > >>> + 0, > > > > > > > > > >>> + NULL) == 0); > > > > > > > > > >>> + > > > > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > > > > >>> + result = flip_and_measure(data, > > > > > > > > > >>> + output, pipe, rate, 1, > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > >>> + Target threshold not > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > >>> + vrefresh, rate[0], result); > > > > > > > > > >>> + } > > > > > > > > > >>> +} > > > > > > > > > >>> + > > > > > > > > > >>> static void test_cleanup(data_t *data, enum > > > > > > > > > >>> pipe pipe, igt_output_t > > > > > > > > > *output) > > > > > > > > > >>> { > > > > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 > > > > > > > > > >>> @@ static bool output_constraint(data_t *data, > > > > > > > > > igt_output_t *output, uint32_t flags > > > > > > > > > >>> igt_output_override_mode(output, > > > > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > > > > >>> > > > > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | > > TEST_SEAMLESS_DRRS))) > > > > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | > > > > > > > > > >>> + TEST_SEAMLESS_DRRS > > > > > > > > > >>> + | > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > > > > >> > > > > > > > > > >> Does this virtual RR applicable to eDP only or > > > > > > > > > >> supports other connector types too? If it is eDP > > > > > > > > > >> specific [*], then we must add a check for > > > > > > > > > that. > > > > > > > > > >> > > > > > > > > > >> [*]: > > > > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree > > > > > > > > > >> /tes > > > > > > > > > >> ts/kms > > > > > > > > > >> _vrr > > > > > > > > > >> .c#n > > > > > > > > > >> 660 > > > > > > > > > >> > > > > > > > > > >> With above comment addressed, this patch is > > > > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > > > > <bhanuprakash.modem@intel.com> > > > > > > > > > >> > > > > > > > > > >> - Bhanu > > > > > > > > > >> > > > > > > > > > >>> return true; > > > > > > > > > >>> > > > > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > > > > >>> low_rr_mode_with_same_res(output, > > > > > > > > > >>> data->range.min); > > @@ > > > > > > > > > >>> -841,6 > > > > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > > > > +opt_handler, > > > > > > > > > +&data) > > > > > > > > > >>> "between flip > > > > > > > > > >>> timestamps converges to the requested > > > > > > > > > rate"); > > > > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > > > > >>> run_vrr_test(&data, > > > > > > > > > >>> test_basic, TEST_FASTSET); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_describe("Test to switch to any > > > > > > > > > >>> + custom virtual mode in VRR > > > > > > > > > range without modeset."); > > > > > > > > > >>> + > > > > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch- > > virtual") > > > > > > > > > >>> + run_vrr_test(&data, > > > > > > > > > >>> + test_seamless_virtual_rr_basic, > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR); > > > > > > > > > >>> } > > > > > > > > > >>> > > > > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-07 13:10 ` Illipilli, TejasreeX @ 2024-05-07 13:12 ` Saarinen, Jani 2024-05-07 16:51 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-05-07 13:12 UTC (permalink / raw) To: Illipilli, TejasreeX, Manasi Navare Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul, I915-ci-infra@lists.freedesktop.org Hi. > -----Original Message----- > From: Illipilli, TejasreeX <tejasreex.illipilli@intel.com> > Sent: Tuesday, 7 May 2024 16.10 > To: Manasi Navare <navaremanasi@chromium.org>; Saarinen, Jani > <jani.saarinen@intel.com> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > <seanpaul@chromium.org>; I915-ci-infra@lists.freedesktop.org > Subject: RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Hi Manasi, > > This PW cannot be re-reported, results were already dropped from the server. ;( > Results are kept for a week only. Please try re-test. OK, pushed re-test now. Hopefully Manasi you are luckier now... > > Thanks, > Tejasree > > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Manasi > Navare > Sent: Tuesday, May 7, 2024 12:30 AM > To: Saarinen, Jani <jani.saarinen@intel.com> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > <seanpaul@chromium.org>; I915-ci-infra@lists.freedesktop.org > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > Hi, > > The reported changes have nothing to do with the changes introduced in > IGTPW_11079 and need to be documented as new failure mode. > > Regards > Manasi > > On Wed, May 1, 2024 at 2:27 AM Saarinen, Jani <jani.saarinen@intel.com> > wrote: > > > > Hi, > > > > > -----Original Message----- > > > From: Manasi Navare <navaremanasi@chromium.org> > > > Sent: Wednesday, 1 May 2024 10.33 > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > dev@lists.freedesktop.org; Drew Davenport > <ddavenport@chromium.org>; > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > <seanpaul@chromium.org> > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > seamless modeset to a virtual LRR mode > > > > > > Hi Jani, Bhanu, > > > > > > Even with the rerun there are some skips that are not related to the > > > changes in this test. Could you please take a look and merge this > > > since Bhanu already reviewed this. > > You know how this goes. > > If BAT is not passed there are instructions sent to patch owner what are > actions to take. You _must_ get Full CI results. > > You have got BAT results where it says " FAILURE Serious unknown > > changes coming with IGTPW_11079 absolutely need to be verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11079, 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." > > > > > > > > Regards > > > Manasi > > > > Br, > > Jani > > > > > > > > On Tue, Apr 30, 2024 at 10:03 AM Manasi Navare > > > <navaremanasi@chromium.org> wrote: > > > > > > > > Hi Bhanu, > > > > > > > > Could you please get this landed? > > > > > > > > Regards > > > > Manasi > > > > > > > > On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani > > > > <jani.saarinen@intel.com> > > > wrote: > > > > > > > > > > Hi, > > > > > > -----Original Message----- > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > Sent: Friday, 26 April 2024 22.46 > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > > dev@lists.freedesktop.org; Drew Davenport > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > <seanpaul@chromium.org> > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > > > Great thanks Jani, > > > > > > > > > > > > Could you please kick in a re run on your end? > > > > > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > > > > > > > > > > > > > Regards > > > > > > Manasi > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani > > > > > > <jani.saarinen@intel.com> > > > > > > wrote: > > > > > > > > > > > > > > Hi, > > > > > > > > > > > > > > > -----Original Message----- > > > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > Sent: Friday, 26 April 2024 22.25 > > > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; > > > > > > > > igt- dev@lists.freedesktop.org; Drew Davenport > > > > > > <ddavenport@chromium.org>; > > > > > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > <seanpaul@chromium.org> > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest > > > > > > > > for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > Hi Bhanu, Jani, > > > > > > > > > > > > > > > > I do see that even the other vrr tests : > > > > > > > > seamless-rr-switch-vrr /drrs/ basic- fastset are getting > > > > > > > > skipped on BAT, so its not related to this test. I am able > > > > > > > > to run it here > > > locally and test. > > > > > > > I was mainly looking at > > > https://patchwork.freedesktop.org/series/132866/ > > > > > > > Possible regressions > > > > > > > igt@debugfs_test@read_all_entries: > > > > > > > > > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > > > > > igt@gem_exec_fence@nb-await: > > > > > > > > > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > > > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > > > > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > > > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > > > > > > > > > but there was some hw maintenance done today to this setup > > > > > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > > > > > > > > > Could you please take a look and see why all of these > > > > > > > > would be > > > skipped? > > > > > > > > Seems unrelated to this change. > > > > > > > > > > > > > > > > Regards > > > > > > > > Manasi > > > > > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > > > > > <jani.saarinen@intel.com> > > > > > > > > wrote: > > > > > > > > > > > > > > > > > > Hi, > > > > > > > > > > -----Original Message----- > > > > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> > > > > > > > > > > On Behalf Of Modem, Bhanuprakash > > > > > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > > > <seanpaul@chromium.org> > > > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a > > > > > > > > > > subtest for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > > > > > > > > > Thanks for the review. > > > > > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, > > > > > > > > > > > could we get this > > > > > > > > merged? > > > > > > > > > Did you look those. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/b > > > > > > > > > > at- > > > > > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adl > > > > > > > > > > p-9% > > > > > > > > > > 7Cbat- > > > > > > > > > > rpls > > > > > > > > > > - > > > > > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > Manasi > > > > > > > > > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > > > > > >> > > > > > > > > > > >> Hi Manasi, > > > > > > > > > > >> > > > > > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > > > > > >>> This subtest validates LRR fastset functionality > > > > > > > > > > >>> by testing seamless switching without full modeset > > > > > > > > > > >>> to any of the virtual LRR mode within VRR > > > > > > > > > > range. > > > > > > > > > > >>> Here we start from highest refresh rate mode and > > > > > > > > > > >>> then switch to virtual LRR modes in the steps of > > > > > > > > > > >>> 10Hz within the > > > VRR range. > > > > > > > > > > >>> > > > > > > > > > > >>> This is used to test the LRR fastset functionality of the > driver. > > > > > > > > > > >>> > > > > > > > > > > >>> v5: > > > > > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > > > > > >>> - Add a new line between between declaration and > > > > > > > > > > >>> code logic > > > > > > > > > > >>> > > > > > > > > > > >>> v4: > > > > > > > > > > >>> - Change the test name to align with drrs/vrr > > > > > > > > > > >>> tests > > > > > > > > > > >>> (Bhanu) > > > > > > > > > > >>> - Fix some build warnings due to rebase > > > > > > > > > > >>> - Use a local virtual_mode variable > > > > > > > > > > >>> > > > > > > > > > > >>> v3: > > > > > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > > > > > >>> > > > > > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > > > > > >>> Cc: Bhanuprakash Modem > > > <bhanuprakash.modem@intel.com> > > > > > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > > > > > >>> Signed-off-by: Manasi Navare > > > > > > > > > > >>> <navaremanasi@chromium.org> > > > > > > > > > > >>> --- > > > > > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > > > > > >>> 1 file changed, 69 insertions(+), 4 > > > > > > > > > > >>> deletions(-) > > > > > > > > > > >>> > > > > > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > > > > > > > > > > >>> index > > > > > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > > > > > >>> * Description: Test to switch RR seamlessly > > > > > > > > > > >>> without > > > modeset. > > > > > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > > > > > >>> * > > > > > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > > > > > >>> + * Description: Test to create a Virtual Mode in > > > > > > > > > > >>> + VRR range and switch to > > > > > > > > > > it > > > > > > > > > > >>> + * without a full modeset. > > > > > > > > > > >>> + * Functionality: LRR > > > > > > > > > > >>> + * > > > > > > > > > > >>> * SUBTEST: max-min > > > > > > > > > > >>> * Description: Oscillates between highest and > > > > > > > > > > >>> lowest refresh each > > > > > > > > > > frame for > > > > > > > > > > >>> * manual flicker profiling > > > > > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > > > > > >>> }; > > > > > > > > > > >>> > > > > > > > > > > >>> enum { > > > > > > > > > > >>> @@ -214,6 +220,18 @@ > > > > > > low_rr_mode_with_same_res(igt_output_t > > > > > > > > > > *output, unsigned int vrr_min) > > > > > > > > > > >>> return mode; > > > > > > > > > > >>> } > > > > > > > > > > >>> > > > > > > > > > > >>> +static drmModeModeInfo > > > > > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, > > > > > > > > > > >>> +unsigned int > > > > > > > > > > >>> +virtual_refresh_rate) { > > > > > > > > > > >>> + drmModeModeInfo mode = > > > *igt_output_get_mode(output); > > > > > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > > > > > >>> + > > > > > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * > > > virtual_refresh_rate); > > > > > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > > > > > >>> + > > > > > > > > > > >>> + return mode; } > > > > > > > > > > >>> + > > > > > > > > > > >>> /* Read min and max vrr range from the connector > debugfs. > > > */ > > > > > > > > > > >>> static range_t > > > > > > > > > > >>> get_vrr_range(data_t *data, igt_output_t > > > > > > > > > > >>> *output) @@ > > > > > > > > > > >>> -641,6 > > > > > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, > > > > > > > > > > >>> +enum pipe pipe, > > > > > > > > > > igt_output_t *output, uint3 > > > > > > > > > > >>> vrr ? "on" : "off", vrr ? "not > > > > > > > > > > >>> reached" : "exceeded", > > > result); > > > > > > > > > > >>> } > > > > > > > > > > >>> > > > > > > > > > > >>> +static void > > > > > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum > > > > > > > > > > >>> +pipe pipe, igt_output_t *output, uint32_t flags) { > > > > > > > > > > >>> + uint32_t result; > > > > > > > > > > >>> + unsigned int vrefresh; > > > > > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > > > > > >>> + kmstest_dump_mode(&data- > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > > >>> + > > > > > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > > > > > >>> + rate[0] = > > > > > > > > > > >>> + rate_from_refresh(data- > > > > > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > > > > > >>> + h); > > > > > > > > > > >>> + > > > > > > > > > > >>> + /* > > > > > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode > so > > > > > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > > > > > >>> + */ > > > > > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data-> > > > > > > > > > > >>> + disp lay, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > > > > > >>> + > > > > > > > > > > >>> + result = flip_and_measure(data, output, > > > > > > > > > > >>> + pipe, rate, 1, > > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > > >>> + Target threshold not > > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > > >>> + > > > > > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > > > > > >>> + rate[0], result); > > > > > > > > > > >>> + > > > > > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > > > > > >>> + for (vrefresh = data->range.min + 10; > > > > > > > > > > >>> + vrefresh < > > > > > > > > > > >>> + data->range.max; > > > > > > > > > > vrefresh += 10) { > > > > > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_info("Requesting Virtual Mode > > > > > > > > > > >>> + with Refresh Rate (%u Hz): \n", > > > > > > > > > > vrefresh); > > > > > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_output_override_mode(output, > > > > > > > > > > >>> + &virtual_mode); > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data-> > > > > > > > > > > >>> + disp > > > > > > > > > > >>> + lay, > > > > > > > > > > >>> + 0, > > > > > > > > > > >>> + NULL) == 0); > > > > > > > > > > >>> + > > > > > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > > > > > >>> + result = flip_and_measure(data, > > > > > > > > > > >>> + output, pipe, rate, 1, > > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > > >>> + Target threshold not > > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > > >>> + vrefresh, rate[0], result); > > > > > > > > > > >>> + } > > > > > > > > > > >>> +} > > > > > > > > > > >>> + > > > > > > > > > > >>> static void test_cleanup(data_t *data, enum > > > > > > > > > > >>> pipe pipe, igt_output_t > > > > > > > > > > *output) > > > > > > > > > > >>> { > > > > > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 > > > > > > > > > > >>> @@ static bool output_constraint(data_t *data, > > > > > > > > > > igt_output_t *output, uint32_t flags > > > > > > > > > > >>> igt_output_override_mode(output, > > > > > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > > > > > >>> > > > > > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | > > > TEST_SEAMLESS_DRRS))) > > > > > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | > > > > > > > > > > >>> + TEST_SEAMLESS_DRRS > > > > > > > > > > >>> + | > > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > > > > > >> > > > > > > > > > > >> Does this virtual RR applicable to eDP only or > > > > > > > > > > >> supports other connector types too? If it is eDP > > > > > > > > > > >> specific [*], then we must add a check for > > > > > > > > > > that. > > > > > > > > > > >> > > > > > > > > > > >> [*]: > > > > > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree > > > > > > > > > > >> /tes > > > > > > > > > > >> ts/kms > > > > > > > > > > >> _vrr > > > > > > > > > > >> .c#n > > > > > > > > > > >> 660 > > > > > > > > > > >> > > > > > > > > > > >> With above comment addressed, this patch is > > > > > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > > > > > <bhanuprakash.modem@intel.com> > > > > > > > > > > >> > > > > > > > > > > >> - Bhanu > > > > > > > > > > >> > > > > > > > > > > >>> return true; > > > > > > > > > > >>> > > > > > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > > > > > >>> low_rr_mode_with_same_res(output, > > > > > > > > > > >>> data->range.min); > > > @@ > > > > > > > > > > >>> -841,6 > > > > > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > > > > > +opt_handler, > > > > > > > > > > +&data) > > > > > > > > > > >>> "between flip > > > > > > > > > > >>> timestamps converges to the requested > > > > > > > > > > rate"); > > > > > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > > > > > >>> run_vrr_test(&data, > > > > > > > > > > >>> test_basic, TEST_FASTSET); > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_describe("Test to switch to any > > > > > > > > > > >>> + custom virtual mode in VRR > > > > > > > > > > range without modeset."); > > > > > > > > > > >>> + > > > > > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch- > > > virtual") > > > > > > > > > > >>> + run_vrr_test(&data, > > > > > > > > > > >>> + test_seamless_virtual_rr_basic, > > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR); > > > > > > > > > > >>> } > > > > > > > > > > >>> > > > > > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-07 13:12 ` Saarinen, Jani @ 2024-05-07 16:51 ` Manasi Navare 0 siblings, 0 replies; 44+ messages in thread From: Manasi Navare @ 2024-05-07 16:51 UTC (permalink / raw) To: Saarinen, Jani Cc: Illipilli, TejasreeX, Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul, I915-ci-infra@lists.freedesktop.org Thanks Jani, lets hope for clean results. Regards Manasi On Tue, May 7, 2024 at 6:12 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi. > > > -----Original Message----- > > From: Illipilli, TejasreeX <tejasreex.illipilli@intel.com> > > Sent: Tuesday, 7 May 2024 16.10 > > To: Manasi Navare <navaremanasi@chromium.org>; Saarinen, Jani > > <jani.saarinen@intel.com> > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > <seanpaul@chromium.org>; I915-ci-infra@lists.freedesktop.org > > Subject: RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > Hi Manasi, > > > > This PW cannot be re-reported, results were already dropped from the server. > ;( > > Results are kept for a week only. Please try re-test. > > OK, pushed re-test now. Hopefully Manasi you are luckier now... > > > > Thanks, > > Tejasree > > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Manasi > > Navare > > Sent: Tuesday, May 7, 2024 12:30 AM > > To: Saarinen, Jani <jani.saarinen@intel.com> > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > dev@lists.freedesktop.org; Drew Davenport <ddavenport@chromium.org>; > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > <seanpaul@chromium.org>; I915-ci-infra@lists.freedesktop.org > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > Hi, > > > > The reported changes have nothing to do with the changes introduced in > > IGTPW_11079 and need to be documented as new failure mode. > > > > Regards > > Manasi > > > > On Wed, May 1, 2024 at 2:27 AM Saarinen, Jani <jani.saarinen@intel.com> > > wrote: > > > > > > Hi, > > > > > > > -----Original Message----- > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > Sent: Wednesday, 1 May 2024 10.33 > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > dev@lists.freedesktop.org; Drew Davenport > > <ddavenport@chromium.org>; > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > <seanpaul@chromium.org> > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > seamless modeset to a virtual LRR mode > > > > > > > > Hi Jani, Bhanu, > > > > > > > > Even with the rerun there are some skips that are not related to the > > > > changes in this test. Could you please take a look and merge this > > > > since Bhanu already reviewed this. > > > You know how this goes. > > > If BAT is not passed there are instructions sent to patch owner what are > > actions to take. You _must_ get Full CI results. > > > You have got BAT results where it says " FAILURE Serious unknown > > > changes coming with IGTPW_11079 absolutely need to be verified manually. > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_11079, 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." > > > > > > > > > > > Regards > > > > Manasi > > > > > > Br, > > > Jani > > > > > > > > > > > On Tue, Apr 30, 2024 at 10:03 AM Manasi Navare > > > > <navaremanasi@chromium.org> wrote: > > > > > > > > > > Hi Bhanu, > > > > > > > > > > Could you please get this landed? > > > > > > > > > > Regards > > > > > Manasi > > > > > > > > > > On Fri, Apr 26, 2024 at 1:03 PM Saarinen, Jani > > > > > <jani.saarinen@intel.com> > > > > wrote: > > > > > > > > > > > > Hi, > > > > > > > -----Original Message----- > > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > > Sent: Friday, 26 April 2024 22.46 > > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt- > > > > > > > dev@lists.freedesktop.org; Drew Davenport > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > <seanpaul@chromium.org> > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > > > > > > seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > Great thanks Jani, > > > > > > > > > > > > > > Could you please kick in a re run on your end? > > > > > > Done: https://patchwork.freedesktop.org/series/132866/#rev2 > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > Manasi > > > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:42 PM Saarinen, Jani > > > > > > > <jani.saarinen@intel.com> > > > > > > > wrote: > > > > > > > > > > > > > > > > Hi, > > > > > > > > > > > > > > > > > -----Original Message----- > > > > > > > > > From: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > > Sent: Friday, 26 April 2024 22.25 > > > > > > > > > To: Saarinen, Jani <jani.saarinen@intel.com> > > > > > > > > > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; > > > > > > > > > igt- dev@lists.freedesktop.org; Drew Davenport > > > > > > > <ddavenport@chromium.org>; > > > > > > > > > Ville Syrjälä <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > > <seanpaul@chromium.org> > > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest > > > > > > > > > for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > > > Hi Bhanu, Jani, > > > > > > > > > > > > > > > > > > I do see that even the other vrr tests : > > > > > > > > > seamless-rr-switch-vrr /drrs/ basic- fastset are getting > > > > > > > > > skipped on BAT, so its not related to this test. I am able > > > > > > > > > to run it here > > > > locally and test. > > > > > > > > I was mainly looking at > > > > https://patchwork.freedesktop.org/series/132866/ > > > > > > > > Possible regressions > > > > > > > > igt@debugfs_test@read_all_entries: > > > > > > > > > > > > > > > > bat-arls-2: PASS -> FAIL +18 other tests fail > > > > > > > > igt@gem_exec_fence@nb-await: > > > > > > > > > > > > > > > > bat-arls-2: NOTRUN -> INCOMPLETE +7 other tests incomplete > > > > > > > > igt@kms_addfb_basic@addfb25-modifier-no-flag: > > > > > > > > > > > > > > > > bat-arls-2: PASS -> INCOMPLETE +37 other tests incomplete > > > > > > > > igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > > > > > > > > > > > > > but there was some hw maintenance done today to this setup > > > > > > > > (bar-arls-2) so maybe safest would be re-run to see latest > > > > > > > > > > > > > > > > > Could you please take a look and see why all of these > > > > > > > > > would be > > > > skipped? > > > > > > > > > Seems unrelated to this change. > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > Manasi > > > > > > > > > > > > > > > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > > > > > > > > <jani.saarinen@intel.com> > > > > > > > > > wrote: > > > > > > > > > > > > > > > > > > > > Hi, > > > > > > > > > > > -----Original Message----- > > > > > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> > > > > > > > > > > > On Behalf Of Modem, Bhanuprakash > > > > > > > > > > > Sent: Friday, 26 April 2024 6.44 > > > > > > > > > > > To: Manasi Navare <navaremanasi@chromium.org> > > > > > > > > > > > Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > > > > > > > > > > <ddavenport@chromium.org>; Ville Syrjälä > > > > > > > > > > > <ville.syrjala@linux.intel.com>; Sean Paul > > > > > > > > > > > <seanpaul@chromium.org> > > > > > > > > > > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a > > > > > > > > > > > subtest for seamless modeset to a virtual LRR mode > > > > > > > > > > > > > > > > > > > > > > Hi Manasi, > > > > > > > > > > > > > > > > > > > > > > On 25-04-2024 08:50 pm, Manasi Navare wrote: > > > > > > > > > > > > Hi Bhanu, > > > > > > > > > > > > > > > > > > > > > > > > Thanks for the review. > > > > > > > > > > > > This is not specific to edp, it applies to all connectors. > > > > > > > > > > > > > > > > > > > > > > > > If the BAT results look okay and I have your r-b, > > > > > > > > > > > > could we get this > > > > > > > > > merged? > > > > > > > > > > Did you look those. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Looks, BAT results are not OK to me. > > > > > > > > > > Right. To me looks so too. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The newly added test is getting skip on VRR configs: > > > > > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/b > > > > > > > > > > > at- > > > > > > > > > > > all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adl > > > > > > > > > > > p-9% > > > > > > > > > > > 7Cbat- > > > > > > > > > > > rpls > > > > > > > > > > > - > > > > > > > > > > > 4%7Cbat-adls-6 > > > > > > > > > > > > > > > > > > > > > > - Bhanu > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > Manasi > > > > > > > > > > > > > > > > > > > > > > > > On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > > > > > > > > > > > <bhanuprakash.modem@intel.com> wrote: > > > > > > > > > > > >> > > > > > > > > > > > >> Hi Manasi, > > > > > > > > > > > >> > > > > > > > > > > > >> On 25-04-2024 01:43 am, Manasi Navare wrote: > > > > > > > > > > > >>> This subtest validates LRR fastset functionality > > > > > > > > > > > >>> by testing seamless switching without full modeset > > > > > > > > > > > >>> to any of the virtual LRR mode within VRR > > > > > > > > > > > range. > > > > > > > > > > > >>> Here we start from highest refresh rate mode and > > > > > > > > > > > >>> then switch to virtual LRR modes in the steps of > > > > > > > > > > > >>> 10Hz within the > > > > VRR range. > > > > > > > > > > > >>> > > > > > > > > > > > >>> This is used to test the LRR fastset functionality of the > > driver. > > > > > > > > > > > >>> > > > > > > > > > > > >>> v5: > > > > > > > > > > > >>> - Pass a reference to flip_and_measure (bhanu) > > > > > > > > > > > >>> - Add a new line between between declaration and > > > > > > > > > > > >>> code logic > > > > > > > > > > > >>> > > > > > > > > > > > >>> v4: > > > > > > > > > > > >>> - Change the test name to align with drrs/vrr > > > > > > > > > > > >>> tests > > > > > > > > > > > >>> (Bhanu) > > > > > > > > > > > >>> - Fix some build warnings due to rebase > > > > > > > > > > > >>> - Use a local virtual_mode variable > > > > > > > > > > > >>> > > > > > > > > > > > >>> v3: > > > > > > > > > > > >>> - Fix build error due to rebase (Manasi) > > > > > > > > > > > >>> > > > > > > > > > > > >>> Cc: Drew Davenport <ddavenport@chromium.org> > > > > > > > > > > > >>> Cc: Bhanuprakash Modem > > > > <bhanuprakash.modem@intel.com> > > > > > > > > > > > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > > > > >>> Cc: Sean Paul <seanpaul@chromium.org> > > > > > > > > > > > >>> Signed-off-by: Manasi Navare > > > > > > > > > > > >>> <navaremanasi@chromium.org> > > > > > > > > > > > >>> --- > > > > > > > > > > > >>> tests/kms_vrr.c | 73 > > > > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++--- > > > > > > > > > > > >>> 1 file changed, 69 insertions(+), 4 > > > > > > > > > > > >>> deletions(-) > > > > > > > > > > > >>> > > > > > > > > > > > >>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > > > > > > > > > > > >>> index > > > > > > > > > > > >>> 15c62b34b..7f64d6806 100644 > > > > > > > > > > > >>> --- a/tests/kms_vrr.c > > > > > > > > > > > >>> +++ b/tests/kms_vrr.c > > > > > > > > > > > >>> @@ -66,6 +66,11 @@ > > > > > > > > > > > >>> * Description: Test to switch RR seamlessly > > > > > > > > > > > >>> without > > > > modeset. > > > > > > > > > > > >>> * Functionality: adaptive_sync, drrs > > > > > > > > > > > >>> * > > > > > > > > > > > >>> + * SUBTEST: seamless-rr-switch-virtual > > > > > > > > > > > >>> + * Description: Test to create a Virtual Mode in > > > > > > > > > > > >>> + VRR range and switch to > > > > > > > > > > > it > > > > > > > > > > > >>> + * without a full modeset. > > > > > > > > > > > >>> + * Functionality: LRR > > > > > > > > > > > >>> + * > > > > > > > > > > > >>> * SUBTEST: max-min > > > > > > > > > > > >>> * Description: Oscillates between highest and > > > > > > > > > > > >>> lowest refresh each > > > > > > > > > > > frame for > > > > > > > > > > > >>> * manual flicker profiling > > > > > > > > > > > >>> @@ -89,9 +94,10 @@ enum { > > > > > > > > > > > >>> TEST_FLIPLINE = 1 << 3, > > > > > > > > > > > >>> TEST_SEAMLESS_VRR = 1 << 4, > > > > > > > > > > > >>> TEST_SEAMLESS_DRRS = 1 << 5, > > > > > > > > > > > >>> - TEST_FASTSET = 1 << 6, > > > > > > > > > > > >>> - TEST_MAXMIN = 1 << 7, > > > > > > > > > > > >>> - TEST_NEGATIVE = 1 << 8, > > > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > > > > > > > > > > >>> + TEST_FASTSET = 1 << 7, > > > > > > > > > > > >>> + TEST_MAXMIN = 1 << 8, > > > > > > > > > > > >>> + TEST_NEGATIVE = 1 << 9, > > > > > > > > > > > >>> }; > > > > > > > > > > > >>> > > > > > > > > > > > >>> enum { > > > > > > > > > > > >>> @@ -214,6 +220,18 @@ > > > > > > > low_rr_mode_with_same_res(igt_output_t > > > > > > > > > > > *output, unsigned int vrr_min) > > > > > > > > > > > >>> return mode; > > > > > > > > > > > >>> } > > > > > > > > > > > >>> > > > > > > > > > > > >>> +static drmModeModeInfo > > > > > > > > > > > >>> +virtual_rr_vrr_range_mode(igt_output_t *output, > > > > > > > > > > > >>> +unsigned int > > > > > > > > > > > >>> +virtual_refresh_rate) { > > > > > > > > > > > >>> + drmModeModeInfo mode = > > > > *igt_output_get_mode(output); > > > > > > > > > > > >>> + uint64_t clock_hz = mode.clock * 1000; > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + mode.vtotal = clock_hz / (mode.htotal * > > > > virtual_refresh_rate); > > > > > > > > > > > >>> + mode.vrefresh = virtual_refresh_rate; > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + return mode; } > > > > > > > > > > > >>> + > > > > > > > > > > > >>> /* Read min and max vrr range from the connector > > debugfs. > > > > */ > > > > > > > > > > > >>> static range_t > > > > > > > > > > > >>> get_vrr_range(data_t *data, igt_output_t > > > > > > > > > > > >>> *output) @@ > > > > > > > > > > > >>> -641,6 > > > > > > > > > > > >>> +659,49 @@ test_seamless_rr_basic(data_t *data, > > > > > > > > > > > >>> +enum pipe pipe, > > > > > > > > > > > igt_output_t *output, uint3 > > > > > > > > > > > >>> vrr ? "on" : "off", vrr ? "not > > > > > > > > > > > >>> reached" : "exceeded", > > > > result); > > > > > > > > > > > >>> } > > > > > > > > > > > >>> > > > > > > > > > > > >>> +static void > > > > > > > > > > > >>> +test_seamless_virtual_rr_basic(data_t *data, enum > > > > > > > > > > > >>> +pipe pipe, igt_output_t *output, uint32_t flags) { > > > > > > > > > > > >>> + uint32_t result; > > > > > > > > > > > >>> + unsigned int vrefresh; > > > > > > > > > > > >>> + uint64_t rate[] = {0}; > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_info("Use HIGH_RR Mode as default\n"); > > > > > > > > > > > >>> + kmstest_dump_mode(&data- > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + prepare_test(data, output, pipe); > > > > > > > > > > > >>> + rate[0] = > > > > > > > > > > > >>> + rate_from_refresh(data- > > > > > > > >switch_modes[HIGH_RR_MODE].vrefres > > > > > > > > > > > >>> + h); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + /* > > > > > > > > > > > >>> + * Sink with DRR and VRR can be in downclock mode > > so > > > > > > > > > > > >>> + * switch to highest refresh rate mode. > > > > > > > > > > > >>> + */ > > > > > > > > > > > >>> + igt_output_override_mode(output, &data- > > > > > > > > > > > >switch_modes[HIGH_RR_MODE]); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data-> > > > > > > > > > > > >>> + disp lay, DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + result = flip_and_measure(data, output, > > > > > > > > > > > >>> + pipe, rate, 1, > > > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > > > >>> + Target threshold not > > > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > > > > > > > > > > >>> + rate[0], result); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + /* Switch to Virtual RR */ > > > > > > > > > > > >>> + for (vrefresh = data->range.min + 10; > > > > > > > > > > > >>> + vrefresh < > > > > > > > > > > > >>> + data->range.max; > > > > > > > > > > > vrefresh += 10) { > > > > > > > > > > > >>> + drmModeModeInfo virtual_mode = > > > > > > > > > > > >>> + virtual_rr_vrr_range_mode(output, vrefresh); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_info("Requesting Virtual Mode > > > > > > > > > > > >>> + with Refresh Rate (%u Hz): \n", > > > > > > > > > > > vrefresh); > > > > > > > > > > > >>> + kmstest_dump_mode(&virtual_mode); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_output_override_mode(output, > > > > > > > > > > > >>> + &virtual_mode); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_assert(igt_display_try_commit_atomic(&data-> > > > > > > > > > > > >>> + disp > > > > > > > > > > > >>> + lay, > > > > > > > > > > > >>> + 0, > > > > > > > > > > > >>> + NULL) == 0); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + rate[0] = rate_from_refresh(vrefresh); > > > > > > > > > > > >>> + result = flip_and_measure(data, > > > > > > > > > > > >>> + output, pipe, rate, 1, > > > > > > > > > > > TEST_DURATION_NS); > > > > > > > > > > > >>> + igt_assert_f(result > 75, > > > > > > > > > > > >>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > > > > > > > > > > >>> + Target threshold not > > > > > > > > > > > reached, result was %u%%\n", > > > > > > > > > > > >>> + vrefresh, rate[0], result); > > > > > > > > > > > >>> + } > > > > > > > > > > > >>> +} > > > > > > > > > > > >>> + > > > > > > > > > > > >>> static void test_cleanup(data_t *data, enum > > > > > > > > > > > >>> pipe pipe, igt_output_t > > > > > > > > > > > *output) > > > > > > > > > > > >>> { > > > > > > > > > > > >>> if (vrr_capable(output)) @@ -686,7 +747,7 > > > > > > > > > > > >>> @@ static bool output_constraint(data_t *data, > > > > > > > > > > > igt_output_t *output, uint32_t flags > > > > > > > > > > > >>> igt_output_override_mode(output, > > > > > > > > > > > >>> &data->switch_modes[HIGH_RR_MODE]); > > > > > > > > > > > >>> > > > > > > > > > > > >>> /* Search for a low refresh rate mode. */ > > > > > > > > > > > >>> - if (!(flags & (TEST_SEAMLESS_VRR | > > > > TEST_SEAMLESS_DRRS))) > > > > > > > > > > > >>> + if (!(flags & (TEST_SEAMLESS_VRR | > > > > > > > > > > > >>> + TEST_SEAMLESS_DRRS > > > > > > > > > > > >>> + | > > > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR))) > > > > > > > > > > > >> > > > > > > > > > > > >> Does this virtual RR applicable to eDP only or > > > > > > > > > > > >> supports other connector types too? If it is eDP > > > > > > > > > > > >> specific [*], then we must add a check for > > > > > > > > > > > that. > > > > > > > > > > > >> > > > > > > > > > > > >> [*]: > > > > > > > > > > > >> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree > > > > > > > > > > > >> /tes > > > > > > > > > > > >> ts/kms > > > > > > > > > > > >> _vrr > > > > > > > > > > > >> .c#n > > > > > > > > > > > >> 660 > > > > > > > > > > > >> > > > > > > > > > > > >> With above comment addressed, this patch is > > > > > > > > > > > >> Reviewed-by: Bhanuprakash Modem > > > > > > > > > <bhanuprakash.modem@intel.com> > > > > > > > > > > > >> > > > > > > > > > > > >> - Bhanu > > > > > > > > > > > >> > > > > > > > > > > > >>> return true; > > > > > > > > > > > >>> > > > > > > > > > > > >>> data->switch_modes[LOW_RR_MODE] = > > > > > > > > > > > >>> low_rr_mode_with_same_res(output, > > > > > > > > > > > >>> data->range.min); > > > > @@ > > > > > > > > > > > >>> -841,6 > > > > > > > > > > > +902,10 @@ igt_main_args("drs:", long_opts, help_str, > > > > > > > > > > > +opt_handler, > > > > > > > > > > > +&data) > > > > > > > > > > > >>> "between flip > > > > > > > > > > > >>> timestamps converges to the requested > > > > > > > > > > > rate"); > > > > > > > > > > > >>> igt_subtest_with_dynamic("flip-basic-fastset") > > > > > > > > > > > >>> run_vrr_test(&data, > > > > > > > > > > > >>> test_basic, TEST_FASTSET); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_describe("Test to switch to any > > > > > > > > > > > >>> + custom virtual mode in VRR > > > > > > > > > > > range without modeset."); > > > > > > > > > > > >>> + > > > > > > > > > > > >>> + igt_subtest_with_dynamic("seamless-rr-switch- > > > > virtual") > > > > > > > > > > > >>> + run_vrr_test(&data, > > > > > > > > > > > >>> + test_seamless_virtual_rr_basic, > > > > > > > > > > > >>> + TEST_SEAMLESS_VIRTUAL_RR); > > > > > > > > > > > >>> } > > > > > > > > > > > >>> > > > > > > > > > > > >>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-26 19:24 ` Manasi Navare 2024-04-26 19:42 ` Saarinen, Jani @ 2024-05-20 7:54 ` Modem, Bhanuprakash 2024-05-21 4:46 ` Manasi Navare 1 sibling, 1 reply; 44+ messages in thread From: Modem, Bhanuprakash @ 2024-05-20 7:54 UTC (permalink / raw) To: Manasi Navare, Saarinen, Jani Cc: igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi Manasi, Sorry for replying late, I was in vacation. On 27-04-2024 12:54 am, Manasi Navare wrote: > Hi Bhanu, Jani, > > I do see that even the other vrr tests : seamless-rr-switch-vrr /drrs/ > basic-fastset are getting skipped on BAT, so its not related to this > test. I am able to run it here locally and test. > Could you please take a look and see why all of these would be > skipped? Seems unrelated to this change. In case of seamless-rr-switch-(vrr|drrs), these skips are expected, as we don't have any valid config. These tests are eDP specific & panel should have the modes with different refresh rates & clocks with same resolution. In case of seamless-rr-switch-virtual, it is a connector agnostic test, it should run on one of the BAT machines. Can you please review the helper low_rr_mode_with_same_res() once, as you are using this one to pick the low RR mode? > > Regards > Manasi > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: >> >> Hi, >>> -----Original Message----- >>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Modem, >>> Bhanuprakash >>> Sent: Friday, 26 April 2024 6.44 >>> To: Manasi Navare <navaremanasi@chromium.org> >>> Cc: igt-dev@lists.freedesktop.org; Drew Davenport >>> <ddavenport@chromium.org>; Ville Syrjälä <ville.syrjala@linux.intel.com>; >>> Sean Paul <seanpaul@chromium.org> >>> Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless >>> modeset to a virtual LRR mode >>> >>> Hi Manasi, >>> >>> On 25-04-2024 08:50 pm, Manasi Navare wrote: >>>> Hi Bhanu, >>>> >>>> Thanks for the review. >>>> This is not specific to edp, it applies to all connectors. >>>> >>>> If the BAT results look okay and I have your r-b, could we get this merged? >> Did you look those. >> >>> >>> Looks, BAT results are not OK to me. >> Right. To me looks so too. >> >>> >>> The newly added test is getting skip on VRR configs: >>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- >>> all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls- >>> 4%7Cbat-adls-6 >>> >>> - Bhanu >>> >>>> >>>> Regards >>>> Manasi >>>> >>>> On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash >>>> <bhanuprakash.modem@intel.com> wrote: >>>>> >>>>> Hi Manasi, >>>>> >>>>> On 25-04-2024 01:43 am, Manasi Navare wrote: >>>>>> This subtest validates LRR fastset functionality by testing seamless >>>>>> switching without full modeset to any of the virtual LRR mode within VRR >>> range. >>>>>> Here we start from highest refresh rate mode and then switch to >>>>>> virtual LRR modes in the steps of 10Hz within the VRR range. >>>>>> >>>>>> This is used to test the LRR fastset functionality of the driver. >>>>>> >>>>>> v5: >>>>>> - Pass a reference to flip_and_measure (bhanu) >>>>>> - Add a new line between between declaration and code logic >>>>>> >>>>>> v4: >>>>>> - Change the test name to align with drrs/vrr tests (Bhanu) >>>>>> - Fix some build warnings due to rebase >>>>>> - Use a local virtual_mode variable >>>>>> >>>>>> v3: >>>>>> - Fix build error due to rebase (Manasi) >>>>>> >>>>>> Cc: Drew Davenport <ddavenport@chromium.org> >>>>>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >>>>>> Cc: Sean Paul <seanpaul@chromium.org> >>>>>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> >>>>>> --- >>>>>> tests/kms_vrr.c | 73 >>> ++++++++++++++++++++++++++++++++++++++++++++++--- >>>>>> 1 file changed, 69 insertions(+), 4 deletions(-) >>>>>> >>>>>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index >>>>>> 15c62b34b..7f64d6806 100644 >>>>>> --- a/tests/kms_vrr.c >>>>>> +++ b/tests/kms_vrr.c >>>>>> @@ -66,6 +66,11 @@ >>>>>> * Description: Test to switch RR seamlessly without modeset. >>>>>> * Functionality: adaptive_sync, drrs >>>>>> * >>>>>> + * SUBTEST: seamless-rr-switch-virtual >>>>>> + * Description: Test to create a Virtual Mode in VRR range and switch to >>> it >>>>>> + * without a full modeset. >>>>>> + * Functionality: LRR >>>>>> + * >>>>>> * SUBTEST: max-min >>>>>> * Description: Oscillates between highest and lowest refresh each >>> frame for >>>>>> * manual flicker profiling >>>>>> @@ -89,9 +94,10 @@ enum { >>>>>> TEST_FLIPLINE = 1 << 3, >>>>>> TEST_SEAMLESS_VRR = 1 << 4, >>>>>> TEST_SEAMLESS_DRRS = 1 << 5, >>>>>> - TEST_FASTSET = 1 << 6, >>>>>> - TEST_MAXMIN = 1 << 7, >>>>>> - TEST_NEGATIVE = 1 << 8, >>>>>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, >>>>>> + TEST_FASTSET = 1 << 7, >>>>>> + TEST_MAXMIN = 1 << 8, >>>>>> + TEST_NEGATIVE = 1 << 9, >>>>>> }; >>>>>> >>>>>> enum { >>>>>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t >>> *output, unsigned int vrr_min) >>>>>> return mode; >>>>>> } >>>>>> >>>>>> +static drmModeModeInfo >>>>>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int >>>>>> +virtual_refresh_rate) { >>>>>> + drmModeModeInfo mode = *igt_output_get_mode(output); >>>>>> + uint64_t clock_hz = mode.clock * 1000; >>>>>> + >>>>>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); >>>>>> + mode.vrefresh = virtual_refresh_rate; >>>>>> + >>>>>> + return mode; >>>>>> +} >>>>>> + >>>>>> /* Read min and max vrr range from the connector debugfs. */ >>>>>> static range_t >>>>>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 >>>>>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, >>> igt_output_t *output, uint3 >>>>>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); >>>>>> } >>>>>> >>>>>> +static void >>>>>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, >>>>>> +igt_output_t *output, uint32_t flags) { >>>>>> + uint32_t result; >>>>>> + unsigned int vrefresh; >>>>>> + uint64_t rate[] = {0}; >>>>>> + >>>>>> + igt_info("Use HIGH_RR Mode as default\n"); >>>>>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); >>>>>> + >>>>>> + prepare_test(data, output, pipe); >>>>>> + rate[0] = >>>>>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); >>>>>> + >>>>>> + /* >>>>>> + * Sink with DRR and VRR can be in downclock mode so >>>>>> + * switch to highest refresh rate mode. >>>>>> + */ >>>>>> + igt_output_override_mode(output, &data- >>>> switch_modes[HIGH_RR_MODE]); >>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, >>>>>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); >>>>>> + >>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, >>> TEST_DURATION_NS); >>>>>> + igt_assert_f(result > 75, >>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not >>> reached, result was %u%%\n", >>>>>> + data->switch_modes[HIGH_RR_MODE].vrefresh, >>>>>> + rate[0], result); >>>>>> + >>>>>> + /* Switch to Virtual RR */ >>>>>> + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; >>> vrefresh += 10) { >>>>>> + drmModeModeInfo virtual_mode = >>>>>> + virtual_rr_vrr_range_mode(output, vrefresh); >>>>>> + >>>>>> + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", >>> vrefresh); >>>>>> + kmstest_dump_mode(&virtual_mode); >>>>>> + >>>>>> + igt_output_override_mode(output, &virtual_mode); >>>>>> + >>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) >>>>>> + == 0); >>>>>> + >>>>>> + rate[0] = rate_from_refresh(vrefresh); >>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, >>> TEST_DURATION_NS); >>>>>> + igt_assert_f(result > 75, >>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not >>> reached, result was %u%%\n", >>>>>> + vrefresh, rate[0], result); >>>>>> + } >>>>>> +} >>>>>> + >>>>>> static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t >>> *output) >>>>>> { >>>>>> if (vrr_capable(output)) >>>>>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, >>> igt_output_t *output, uint32_t flags >>>>>> igt_output_override_mode(output, >>>>>> &data->switch_modes[HIGH_RR_MODE]); >>>>>> >>>>>> /* Search for a low refresh rate mode. */ >>>>>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) >>>>>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | >>>>>> + TEST_SEAMLESS_VIRTUAL_RR))) >>>>> >>>>> Does this virtual RR applicable to eDP only or supports other >>>>> connector types too? If it is eDP specific [*], then we must add a check for >>> that. >>>>> >>>>> [*]: >>>>> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n >>>>> 660 >>>>> >>>>> With above comment addressed, this patch is >>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>>> >>>>> - Bhanu >>>>> >>>>>> return true; >>>>>> >>>>>> data->switch_modes[LOW_RR_MODE] = >>>>>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 >>> +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) >>>>>> "between flip timestamps converges to the requested >>> rate"); >>>>>> igt_subtest_with_dynamic("flip-basic-fastset") >>>>>> run_vrr_test(&data, test_basic, >>>>>> TEST_FASTSET); >>>>>> + >>>>>> + igt_describe("Test to switch to any custom virtual mode in VRR >>> range without modeset."); >>>>>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") >>>>>> + run_vrr_test(&data, >>>>>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); >>>>>> } >>>>>> >>>>>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-20 7:54 ` Modem, Bhanuprakash @ 2024-05-21 4:46 ` Manasi Navare 2024-05-21 5:22 ` Modem, Bhanuprakash 0 siblings, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-05-21 4:46 UTC (permalink / raw) To: Modem, Bhanuprakash Cc: Saarinen, Jani, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi Bhanu, Yes I have verified that, it looks good and I have also been running this on my Chromebook with VRR panel and it works fine. Could you please review and help get this landed? Manasi On Mon, May 20, 2024 at 12:54 AM Modem, Bhanuprakash <bhanuprakash.modem@intel.com> wrote: > > Hi Manasi, > > Sorry for replying late, I was in vacation. > > On 27-04-2024 12:54 am, Manasi Navare wrote: > > Hi Bhanu, Jani, > > > > I do see that even the other vrr tests : seamless-rr-switch-vrr /drrs/ > > basic-fastset are getting skipped on BAT, so its not related to this > > test. I am able to run it here locally and test. > > Could you please take a look and see why all of these would be > > skipped? Seems unrelated to this change. > > In case of seamless-rr-switch-(vrr|drrs), these skips are expected, as > we don't have any valid config. These tests are eDP specific & panel > should have the modes with different refresh rates & clocks with same > resolution. > > In case of seamless-rr-switch-virtual, it is a connector agnostic test, > it should run on one of the BAT machines. > > Can you please review the helper low_rr_mode_with_same_res() once, as > you are using this one to pick the low RR mode? > > > > > Regards > > Manasi > > > > On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: > >> > >> Hi, > >>> -----Original Message----- > >>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Modem, > >>> Bhanuprakash > >>> Sent: Friday, 26 April 2024 6.44 > >>> To: Manasi Navare <navaremanasi@chromium.org> > >>> Cc: igt-dev@lists.freedesktop.org; Drew Davenport > >>> <ddavenport@chromium.org>; Ville Syrjälä <ville.syrjala@linux.intel.com>; > >>> Sean Paul <seanpaul@chromium.org> > >>> Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > >>> modeset to a virtual LRR mode > >>> > >>> Hi Manasi, > >>> > >>> On 25-04-2024 08:50 pm, Manasi Navare wrote: > >>>> Hi Bhanu, > >>>> > >>>> Thanks for the review. > >>>> This is not specific to edp, it applies to all connectors. > >>>> > >>>> If the BAT results look okay and I have your r-b, could we get this merged? > >> Did you look those. > >> > >>> > >>> Looks, BAT results are not OK to me. > >> Right. To me looks so too. > >> > >>> > >>> The newly added test is getting skip on VRR configs: > >>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > >>> all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls- > >>> 4%7Cbat-adls-6 > >>> > >>> - Bhanu > >>> > >>>> > >>>> Regards > >>>> Manasi > >>>> > >>>> On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > >>>> <bhanuprakash.modem@intel.com> wrote: > >>>>> > >>>>> Hi Manasi, > >>>>> > >>>>> On 25-04-2024 01:43 am, Manasi Navare wrote: > >>>>>> This subtest validates LRR fastset functionality by testing seamless > >>>>>> switching without full modeset to any of the virtual LRR mode within VRR > >>> range. > >>>>>> Here we start from highest refresh rate mode and then switch to > >>>>>> virtual LRR modes in the steps of 10Hz within the VRR range. > >>>>>> > >>>>>> This is used to test the LRR fastset functionality of the driver. > >>>>>> > >>>>>> v5: > >>>>>> - Pass a reference to flip_and_measure (bhanu) > >>>>>> - Add a new line between between declaration and code logic > >>>>>> > >>>>>> v4: > >>>>>> - Change the test name to align with drrs/vrr tests (Bhanu) > >>>>>> - Fix some build warnings due to rebase > >>>>>> - Use a local virtual_mode variable > >>>>>> > >>>>>> v3: > >>>>>> - Fix build error due to rebase (Manasi) > >>>>>> > >>>>>> Cc: Drew Davenport <ddavenport@chromium.org> > >>>>>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >>>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > >>>>>> Cc: Sean Paul <seanpaul@chromium.org> > >>>>>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > >>>>>> --- > >>>>>> tests/kms_vrr.c | 73 > >>> ++++++++++++++++++++++++++++++++++++++++++++++--- > >>>>>> 1 file changed, 69 insertions(+), 4 deletions(-) > >>>>>> > >>>>>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > >>>>>> 15c62b34b..7f64d6806 100644 > >>>>>> --- a/tests/kms_vrr.c > >>>>>> +++ b/tests/kms_vrr.c > >>>>>> @@ -66,6 +66,11 @@ > >>>>>> * Description: Test to switch RR seamlessly without modeset. > >>>>>> * Functionality: adaptive_sync, drrs > >>>>>> * > >>>>>> + * SUBTEST: seamless-rr-switch-virtual > >>>>>> + * Description: Test to create a Virtual Mode in VRR range and switch to > >>> it > >>>>>> + * without a full modeset. > >>>>>> + * Functionality: LRR > >>>>>> + * > >>>>>> * SUBTEST: max-min > >>>>>> * Description: Oscillates between highest and lowest refresh each > >>> frame for > >>>>>> * manual flicker profiling > >>>>>> @@ -89,9 +94,10 @@ enum { > >>>>>> TEST_FLIPLINE = 1 << 3, > >>>>>> TEST_SEAMLESS_VRR = 1 << 4, > >>>>>> TEST_SEAMLESS_DRRS = 1 << 5, > >>>>>> - TEST_FASTSET = 1 << 6, > >>>>>> - TEST_MAXMIN = 1 << 7, > >>>>>> - TEST_NEGATIVE = 1 << 8, > >>>>>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > >>>>>> + TEST_FASTSET = 1 << 7, > >>>>>> + TEST_MAXMIN = 1 << 8, > >>>>>> + TEST_NEGATIVE = 1 << 9, > >>>>>> }; > >>>>>> > >>>>>> enum { > >>>>>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t > >>> *output, unsigned int vrr_min) > >>>>>> return mode; > >>>>>> } > >>>>>> > >>>>>> +static drmModeModeInfo > >>>>>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > >>>>>> +virtual_refresh_rate) { > >>>>>> + drmModeModeInfo mode = *igt_output_get_mode(output); > >>>>>> + uint64_t clock_hz = mode.clock * 1000; > >>>>>> + > >>>>>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > >>>>>> + mode.vrefresh = virtual_refresh_rate; > >>>>>> + > >>>>>> + return mode; > >>>>>> +} > >>>>>> + > >>>>>> /* Read min and max vrr range from the connector debugfs. */ > >>>>>> static range_t > >>>>>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 > >>>>>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, > >>> igt_output_t *output, uint3 > >>>>>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); > >>>>>> } > >>>>>> > >>>>>> +static void > >>>>>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > >>>>>> +igt_output_t *output, uint32_t flags) { > >>>>>> + uint32_t result; > >>>>>> + unsigned int vrefresh; > >>>>>> + uint64_t rate[] = {0}; > >>>>>> + > >>>>>> + igt_info("Use HIGH_RR Mode as default\n"); > >>>>>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > >>>>>> + > >>>>>> + prepare_test(data, output, pipe); > >>>>>> + rate[0] = > >>>>>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); > >>>>>> + > >>>>>> + /* > >>>>>> + * Sink with DRR and VRR can be in downclock mode so > >>>>>> + * switch to highest refresh rate mode. > >>>>>> + */ > >>>>>> + igt_output_override_mode(output, &data- > >>>> switch_modes[HIGH_RR_MODE]); > >>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, > >>>>>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > >>>>>> + > >>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, > >>> TEST_DURATION_NS); > >>>>>> + igt_assert_f(result > 75, > >>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > >>> reached, result was %u%%\n", > >>>>>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > >>>>>> + rate[0], result); > >>>>>> + > >>>>>> + /* Switch to Virtual RR */ > >>>>>> + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; > >>> vrefresh += 10) { > >>>>>> + drmModeModeInfo virtual_mode = > >>>>>> + virtual_rr_vrr_range_mode(output, vrefresh); > >>>>>> + > >>>>>> + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", > >>> vrefresh); > >>>>>> + kmstest_dump_mode(&virtual_mode); > >>>>>> + > >>>>>> + igt_output_override_mode(output, &virtual_mode); > >>>>>> + > >>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) > >>>>>> + == 0); > >>>>>> + > >>>>>> + rate[0] = rate_from_refresh(vrefresh); > >>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, > >>> TEST_DURATION_NS); > >>>>>> + igt_assert_f(result > 75, > >>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not > >>> reached, result was %u%%\n", > >>>>>> + vrefresh, rate[0], result); > >>>>>> + } > >>>>>> +} > >>>>>> + > >>>>>> static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t > >>> *output) > >>>>>> { > >>>>>> if (vrr_capable(output)) > >>>>>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, > >>> igt_output_t *output, uint32_t flags > >>>>>> igt_output_override_mode(output, > >>>>>> &data->switch_modes[HIGH_RR_MODE]); > >>>>>> > >>>>>> /* Search for a low refresh rate mode. */ > >>>>>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > >>>>>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > >>>>>> + TEST_SEAMLESS_VIRTUAL_RR))) > >>>>> > >>>>> Does this virtual RR applicable to eDP only or supports other > >>>>> connector types too? If it is eDP specific [*], then we must add a check for > >>> that. > >>>>> > >>>>> [*]: > >>>>> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n > >>>>> 660 > >>>>> > >>>>> With above comment addressed, this patch is > >>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >>>>> > >>>>> - Bhanu > >>>>> > >>>>>> return true; > >>>>>> > >>>>>> data->switch_modes[LOW_RR_MODE] = > >>>>>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 > >>> +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > >>>>>> "between flip timestamps converges to the requested > >>> rate"); > >>>>>> igt_subtest_with_dynamic("flip-basic-fastset") > >>>>>> run_vrr_test(&data, test_basic, > >>>>>> TEST_FASTSET); > >>>>>> + > >>>>>> + igt_describe("Test to switch to any custom virtual mode in VRR > >>> range without modeset."); > >>>>>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > >>>>>> + run_vrr_test(&data, > >>>>>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > >>>>>> } > >>>>>> > >>>>>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-21 4:46 ` Manasi Navare @ 2024-05-21 5:22 ` Modem, Bhanuprakash 2024-05-21 6:50 ` Saarinen, Jani 0 siblings, 1 reply; 44+ messages in thread From: Modem, Bhanuprakash @ 2024-05-21 5:22 UTC (permalink / raw) To: Manasi Navare Cc: Saarinen, Jani, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul On 21-05-2024 10:16 am, Manasi Navare wrote: > Hi Bhanu, > > Yes I have verified that, it looks good and I have also been running > this on my Chromebook with VRR panel and it works fine. > Could you please review and help get this landed? Thanks for the confirmation, this patch is already merged by JP. https://cgit.freedesktop.org/drm/igt-gpu-tools/commit/?id=927fecf906d25e88f19bc245982c022465276528 - Bhanu > > Manasi > > On Mon, May 20, 2024 at 12:54 AM Modem, Bhanuprakash > <bhanuprakash.modem@intel.com> wrote: >> >> Hi Manasi, >> >> Sorry for replying late, I was in vacation. >> >> On 27-04-2024 12:54 am, Manasi Navare wrote: >>> Hi Bhanu, Jani, >>> >>> I do see that even the other vrr tests : seamless-rr-switch-vrr /drrs/ >>> basic-fastset are getting skipped on BAT, so its not related to this >>> test. I am able to run it here locally and test. >>> Could you please take a look and see why all of these would be >>> skipped? Seems unrelated to this change. >> >> In case of seamless-rr-switch-(vrr|drrs), these skips are expected, as >> we don't have any valid config. These tests are eDP specific & panel >> should have the modes with different refresh rates & clocks with same >> resolution. >> >> In case of seamless-rr-switch-virtual, it is a connector agnostic test, >> it should run on one of the BAT machines. >> >> Can you please review the helper low_rr_mode_with_same_res() once, as >> you are using this one to pick the low RR mode? >> >>> >>> Regards >>> Manasi >>> >>> On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: >>>> >>>> Hi, >>>>> -----Original Message----- >>>>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Modem, >>>>> Bhanuprakash >>>>> Sent: Friday, 26 April 2024 6.44 >>>>> To: Manasi Navare <navaremanasi@chromium.org> >>>>> Cc: igt-dev@lists.freedesktop.org; Drew Davenport >>>>> <ddavenport@chromium.org>; Ville Syrjälä <ville.syrjala@linux.intel.com>; >>>>> Sean Paul <seanpaul@chromium.org> >>>>> Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless >>>>> modeset to a virtual LRR mode >>>>> >>>>> Hi Manasi, >>>>> >>>>> On 25-04-2024 08:50 pm, Manasi Navare wrote: >>>>>> Hi Bhanu, >>>>>> >>>>>> Thanks for the review. >>>>>> This is not specific to edp, it applies to all connectors. >>>>>> >>>>>> If the BAT results look okay and I have your r-b, could we get this merged? >>>> Did you look those. >>>> >>>>> >>>>> Looks, BAT results are not OK to me. >>>> Right. To me looks so too. >>>> >>>>> >>>>> The newly added test is getting skip on VRR configs: >>>>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- >>>>> all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rpls- >>>>> 4%7Cbat-adls-6 >>>>> >>>>> - Bhanu >>>>> >>>>>> >>>>>> Regards >>>>>> Manasi >>>>>> >>>>>> On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash >>>>>> <bhanuprakash.modem@intel.com> wrote: >>>>>>> >>>>>>> Hi Manasi, >>>>>>> >>>>>>> On 25-04-2024 01:43 am, Manasi Navare wrote: >>>>>>>> This subtest validates LRR fastset functionality by testing seamless >>>>>>>> switching without full modeset to any of the virtual LRR mode within VRR >>>>> range. >>>>>>>> Here we start from highest refresh rate mode and then switch to >>>>>>>> virtual LRR modes in the steps of 10Hz within the VRR range. >>>>>>>> >>>>>>>> This is used to test the LRR fastset functionality of the driver. >>>>>>>> >>>>>>>> v5: >>>>>>>> - Pass a reference to flip_and_measure (bhanu) >>>>>>>> - Add a new line between between declaration and code logic >>>>>>>> >>>>>>>> v4: >>>>>>>> - Change the test name to align with drrs/vrr tests (Bhanu) >>>>>>>> - Fix some build warnings due to rebase >>>>>>>> - Use a local virtual_mode variable >>>>>>>> >>>>>>>> v3: >>>>>>>> - Fix build error due to rebase (Manasi) >>>>>>>> >>>>>>>> Cc: Drew Davenport <ddavenport@chromium.org> >>>>>>>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>>>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >>>>>>>> Cc: Sean Paul <seanpaul@chromium.org> >>>>>>>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> >>>>>>>> --- >>>>>>>> tests/kms_vrr.c | 73 >>>>> ++++++++++++++++++++++++++++++++++++++++++++++--- >>>>>>>> 1 file changed, 69 insertions(+), 4 deletions(-) >>>>>>>> >>>>>>>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index >>>>>>>> 15c62b34b..7f64d6806 100644 >>>>>>>> --- a/tests/kms_vrr.c >>>>>>>> +++ b/tests/kms_vrr.c >>>>>>>> @@ -66,6 +66,11 @@ >>>>>>>> * Description: Test to switch RR seamlessly without modeset. >>>>>>>> * Functionality: adaptive_sync, drrs >>>>>>>> * >>>>>>>> + * SUBTEST: seamless-rr-switch-virtual >>>>>>>> + * Description: Test to create a Virtual Mode in VRR range and switch to >>>>> it >>>>>>>> + * without a full modeset. >>>>>>>> + * Functionality: LRR >>>>>>>> + * >>>>>>>> * SUBTEST: max-min >>>>>>>> * Description: Oscillates between highest and lowest refresh each >>>>> frame for >>>>>>>> * manual flicker profiling >>>>>>>> @@ -89,9 +94,10 @@ enum { >>>>>>>> TEST_FLIPLINE = 1 << 3, >>>>>>>> TEST_SEAMLESS_VRR = 1 << 4, >>>>>>>> TEST_SEAMLESS_DRRS = 1 << 5, >>>>>>>> - TEST_FASTSET = 1 << 6, >>>>>>>> - TEST_MAXMIN = 1 << 7, >>>>>>>> - TEST_NEGATIVE = 1 << 8, >>>>>>>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, >>>>>>>> + TEST_FASTSET = 1 << 7, >>>>>>>> + TEST_MAXMIN = 1 << 8, >>>>>>>> + TEST_NEGATIVE = 1 << 9, >>>>>>>> }; >>>>>>>> >>>>>>>> enum { >>>>>>>> @@ -214,6 +220,18 @@ low_rr_mode_with_same_res(igt_output_t >>>>> *output, unsigned int vrr_min) >>>>>>>> return mode; >>>>>>>> } >>>>>>>> >>>>>>>> +static drmModeModeInfo >>>>>>>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int >>>>>>>> +virtual_refresh_rate) { >>>>>>>> + drmModeModeInfo mode = *igt_output_get_mode(output); >>>>>>>> + uint64_t clock_hz = mode.clock * 1000; >>>>>>>> + >>>>>>>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); >>>>>>>> + mode.vrefresh = virtual_refresh_rate; >>>>>>>> + >>>>>>>> + return mode; >>>>>>>> +} >>>>>>>> + >>>>>>>> /* Read min and max vrr range from the connector debugfs. */ >>>>>>>> static range_t >>>>>>>> get_vrr_range(data_t *data, igt_output_t *output) @@ -641,6 >>>>>>>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe pipe, >>>>> igt_output_t *output, uint3 >>>>>>>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result); >>>>>>>> } >>>>>>>> >>>>>>>> +static void >>>>>>>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, >>>>>>>> +igt_output_t *output, uint32_t flags) { >>>>>>>> + uint32_t result; >>>>>>>> + unsigned int vrefresh; >>>>>>>> + uint64_t rate[] = {0}; >>>>>>>> + >>>>>>>> + igt_info("Use HIGH_RR Mode as default\n"); >>>>>>>> + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); >>>>>>>> + >>>>>>>> + prepare_test(data, output, pipe); >>>>>>>> + rate[0] = >>>>>>>> + rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh); >>>>>>>> + >>>>>>>> + /* >>>>>>>> + * Sink with DRR and VRR can be in downclock mode so >>>>>>>> + * switch to highest refresh rate mode. >>>>>>>> + */ >>>>>>>> + igt_output_override_mode(output, &data- >>>>>> switch_modes[HIGH_RR_MODE]); >>>>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, >>>>>>>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); >>>>>>>> + >>>>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, >>>>> TEST_DURATION_NS); >>>>>>>> + igt_assert_f(result > 75, >>>>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not >>>>> reached, result was %u%%\n", >>>>>>>> + data->switch_modes[HIGH_RR_MODE].vrefresh, >>>>>>>> + rate[0], result); >>>>>>>> + >>>>>>>> + /* Switch to Virtual RR */ >>>>>>>> + for (vrefresh = data->range.min + 10; vrefresh < data->range.max; >>>>> vrefresh += 10) { >>>>>>>> + drmModeModeInfo virtual_mode = >>>>>>>> + virtual_rr_vrr_range_mode(output, vrefresh); >>>>>>>> + >>>>>>>> + igt_info("Requesting Virtual Mode with Refresh Rate (%u Hz): \n", >>>>> vrefresh); >>>>>>>> + kmstest_dump_mode(&virtual_mode); >>>>>>>> + >>>>>>>> + igt_output_override_mode(output, &virtual_mode); >>>>>>>> + >>>>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) >>>>>>>> + == 0); >>>>>>>> + >>>>>>>> + rate[0] = rate_from_refresh(vrefresh); >>>>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, >>>>> TEST_DURATION_NS); >>>>>>>> + igt_assert_f(result > 75, >>>>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not >>>>> reached, result was %u%%\n", >>>>>>>> + vrefresh, rate[0], result); >>>>>>>> + } >>>>>>>> +} >>>>>>>> + >>>>>>>> static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t >>>>> *output) >>>>>>>> { >>>>>>>> if (vrr_capable(output)) >>>>>>>> @@ -686,7 +747,7 @@ static bool output_constraint(data_t *data, >>>>> igt_output_t *output, uint32_t flags >>>>>>>> igt_output_override_mode(output, >>>>>>>> &data->switch_modes[HIGH_RR_MODE]); >>>>>>>> >>>>>>>> /* Search for a low refresh rate mode. */ >>>>>>>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) >>>>>>>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | >>>>>>>> + TEST_SEAMLESS_VIRTUAL_RR))) >>>>>>> >>>>>>> Does this virtual RR applicable to eDP only or supports other >>>>>>> connector types too? If it is eDP specific [*], then we must add a check for >>>>> that. >>>>>>> >>>>>>> [*]: >>>>>>> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vrr.c#n >>>>>>> 660 >>>>>>> >>>>>>> With above comment addressed, this patch is >>>>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>>>>> >>>>>>> - Bhanu >>>>>>> >>>>>>>> return true; >>>>>>>> >>>>>>>> data->switch_modes[LOW_RR_MODE] = >>>>>>>> low_rr_mode_with_same_res(output, data->range.min); @@ -841,6 >>>>> +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) >>>>>>>> "between flip timestamps converges to the requested >>>>> rate"); >>>>>>>> igt_subtest_with_dynamic("flip-basic-fastset") >>>>>>>> run_vrr_test(&data, test_basic, >>>>>>>> TEST_FASTSET); >>>>>>>> + >>>>>>>> + igt_describe("Test to switch to any custom virtual mode in VRR >>>>> range without modeset."); >>>>>>>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") >>>>>>>> + run_vrr_test(&data, >>>>>>>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); >>>>>>>> } >>>>>>>> >>>>>>>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-21 5:22 ` Modem, Bhanuprakash @ 2024-05-21 6:50 ` Saarinen, Jani 2024-05-21 16:04 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-05-21 6:50 UTC (permalink / raw) To: Modem, Bhanuprakash, Manasi Navare Cc: igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Hi, > -----Original Message----- > From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> > Sent: Tuesday, 21 May 2024 8.23 > To: Manasi Navare <navaremanasi@chromium.org> > Cc: Saarinen, Jani <jani.saarinen@intel.com>; igt-dev@lists.freedesktop.org; > Drew Davenport <ddavenport@chromium.org>; Ville Syrjälä > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode > > > On 21-05-2024 10:16 am, Manasi Navare wrote: > > Hi Bhanu, > > > > Yes I have verified that, it looks good and I have also been running > > this on my Chromebook with VRR panel and it works fine. > > Could you please review and help get this landed? > > Thanks for the confirmation, this patch is already merged by JP. > https://cgit.freedesktop.org/drm/igt-gpu- > tools/commit/?id=927fecf906d25e88f19bc245982c022465276528 Yes, as you Manasi see from " Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3)" " Hi Manasi, I merged your patch. /Juha-Pekka" > > - Bhanu > > > > > Manasi > > > > On Mon, May 20, 2024 at 12:54 AM Modem, Bhanuprakash > > <bhanuprakash.modem@intel.com> wrote: > >> > >> Hi Manasi, > >> > >> Sorry for replying late, I was in vacation. > >> > >> On 27-04-2024 12:54 am, Manasi Navare wrote: > >>> Hi Bhanu, Jani, > >>> > >>> I do see that even the other vrr tests : seamless-rr-switch-vrr > >>> /drrs/ basic-fastset are getting skipped on BAT, so its not related > >>> to this test. I am able to run it here locally and test. > >>> Could you please take a look and see why all of these would be > >>> skipped? Seems unrelated to this change. > >> > >> In case of seamless-rr-switch-(vrr|drrs), these skips are expected, > >> as we don't have any valid config. These tests are eDP specific & > >> panel should have the modes with different refresh rates & clocks > >> with same resolution. > >> > >> In case of seamless-rr-switch-virtual, it is a connector agnostic > >> test, it should run on one of the BAT machines. > >> > >> Can you please review the helper low_rr_mode_with_same_res() once, as > >> you are using this one to pick the low RR mode? > >> > >>> > >>> Regards > >>> Manasi > >>> > >>> On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > <jani.saarinen@intel.com> wrote: > >>>> > >>>> Hi, > >>>>> -----Original Message----- > >>>>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > >>>>> Modem, Bhanuprakash > >>>>> Sent: Friday, 26 April 2024 6.44 > >>>>> To: Manasi Navare <navaremanasi@chromium.org> > >>>>> Cc: igt-dev@lists.freedesktop.org; Drew Davenport > >>>>> <ddavenport@chromium.org>; Ville Syrjälä > >>>>> <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > >>>>> Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > >>>>> seamless modeset to a virtual LRR mode > >>>>> > >>>>> Hi Manasi, > >>>>> > >>>>> On 25-04-2024 08:50 pm, Manasi Navare wrote: > >>>>>> Hi Bhanu, > >>>>>> > >>>>>> Thanks for the review. > >>>>>> This is not specific to edp, it applies to all connectors. > >>>>>> > >>>>>> If the BAT results look okay and I have your r-b, could we get this > merged? > >>>> Did you look those. > >>>> > >>>>> > >>>>> Looks, BAT results are not OK to me. > >>>> Right. To me looks so too. > >>>> > >>>>> > >>>>> The newly added test is getting skip on VRR configs: > >>>>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > >>>>> all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rp > >>>>> ls- > >>>>> 4%7Cbat-adls-6 > >>>>> > >>>>> - Bhanu > >>>>> > >>>>>> > >>>>>> Regards > >>>>>> Manasi > >>>>>> > >>>>>> On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > >>>>>> <bhanuprakash.modem@intel.com> wrote: > >>>>>>> > >>>>>>> Hi Manasi, > >>>>>>> > >>>>>>> On 25-04-2024 01:43 am, Manasi Navare wrote: > >>>>>>>> This subtest validates LRR fastset functionality by testing > >>>>>>>> seamless switching without full modeset to any of the virtual > >>>>>>>> LRR mode within VRR > >>>>> range. > >>>>>>>> Here we start from highest refresh rate mode and then switch to > >>>>>>>> virtual LRR modes in the steps of 10Hz within the VRR range. > >>>>>>>> > >>>>>>>> This is used to test the LRR fastset functionality of the driver. > >>>>>>>> > >>>>>>>> v5: > >>>>>>>> - Pass a reference to flip_and_measure (bhanu) > >>>>>>>> - Add a new line between between declaration and code logic > >>>>>>>> > >>>>>>>> v4: > >>>>>>>> - Change the test name to align with drrs/vrr tests (Bhanu) > >>>>>>>> - Fix some build warnings due to rebase > >>>>>>>> - Use a local virtual_mode variable > >>>>>>>> > >>>>>>>> v3: > >>>>>>>> - Fix build error due to rebase (Manasi) > >>>>>>>> > >>>>>>>> Cc: Drew Davenport <ddavenport@chromium.org> > >>>>>>>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >>>>>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > >>>>>>>> Cc: Sean Paul <seanpaul@chromium.org> > >>>>>>>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > >>>>>>>> --- > >>>>>>>> tests/kms_vrr.c | 73 > >>>>> ++++++++++++++++++++++++++++++++++++++++++++++--- > >>>>>>>> 1 file changed, 69 insertions(+), 4 deletions(-) > >>>>>>>> > >>>>>>>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > >>>>>>>> 15c62b34b..7f64d6806 100644 > >>>>>>>> --- a/tests/kms_vrr.c > >>>>>>>> +++ b/tests/kms_vrr.c > >>>>>>>> @@ -66,6 +66,11 @@ > >>>>>>>> * Description: Test to switch RR seamlessly without modeset. > >>>>>>>> * Functionality: adaptive_sync, drrs > >>>>>>>> * > >>>>>>>> + * SUBTEST: seamless-rr-switch-virtual > >>>>>>>> + * Description: Test to create a Virtual Mode in VRR range and > >>>>>>>> + switch to > >>>>> it > >>>>>>>> + * without a full modeset. > >>>>>>>> + * Functionality: LRR > >>>>>>>> + * > >>>>>>>> * SUBTEST: max-min > >>>>>>>> * Description: Oscillates between highest and lowest > >>>>>>>> refresh each > >>>>> frame for > >>>>>>>> * manual flicker profiling > >>>>>>>> @@ -89,9 +94,10 @@ enum { > >>>>>>>> TEST_FLIPLINE = 1 << 3, > >>>>>>>> TEST_SEAMLESS_VRR = 1 << 4, > >>>>>>>> TEST_SEAMLESS_DRRS = 1 << 5, > >>>>>>>> - TEST_FASTSET = 1 << 6, > >>>>>>>> - TEST_MAXMIN = 1 << 7, > >>>>>>>> - TEST_NEGATIVE = 1 << 8, > >>>>>>>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > >>>>>>>> + TEST_FASTSET = 1 << 7, > >>>>>>>> + TEST_MAXMIN = 1 << 8, > >>>>>>>> + TEST_NEGATIVE = 1 << 9, > >>>>>>>> }; > >>>>>>>> > >>>>>>>> enum { > >>>>>>>> @@ -214,6 +220,18 @@ > low_rr_mode_with_same_res(igt_output_t > >>>>> *output, unsigned int vrr_min) > >>>>>>>> return mode; > >>>>>>>> } > >>>>>>>> > >>>>>>>> +static drmModeModeInfo > >>>>>>>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > >>>>>>>> +virtual_refresh_rate) { > >>>>>>>> + drmModeModeInfo mode = *igt_output_get_mode(output); > >>>>>>>> + uint64_t clock_hz = mode.clock * 1000; > >>>>>>>> + > >>>>>>>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > >>>>>>>> + mode.vrefresh = virtual_refresh_rate; > >>>>>>>> + > >>>>>>>> + return mode; > >>>>>>>> +} > >>>>>>>> + > >>>>>>>> /* Read min and max vrr range from the connector debugfs. */ > >>>>>>>> static range_t > >>>>>>>> get_vrr_range(data_t *data, igt_output_t *output) @@ > >>>>>>>> -641,6 > >>>>>>>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe > pipe, > >>>>> igt_output_t *output, uint3 > >>>>>>>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", > result); > >>>>>>>> } > >>>>>>>> > >>>>>>>> +static void > >>>>>>>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > >>>>>>>> +igt_output_t *output, uint32_t flags) { > >>>>>>>> + uint32_t result; > >>>>>>>> + unsigned int vrefresh; > >>>>>>>> + uint64_t rate[] = {0}; > >>>>>>>> + > >>>>>>>> + igt_info("Use HIGH_RR Mode as default\n"); > >>>>>>>> + kmstest_dump_mode(&data- > >switch_modes[HIGH_RR_MODE]); > >>>>>>>> + > >>>>>>>> + prepare_test(data, output, pipe); > >>>>>>>> + rate[0] = > >>>>>>>> + rate_from_refresh(data- > >switch_modes[HIGH_RR_MODE].vrefresh); > >>>>>>>> + > >>>>>>>> + /* > >>>>>>>> + * Sink with DRR and VRR can be in downclock mode so > >>>>>>>> + * switch to highest refresh rate mode. > >>>>>>>> + */ > >>>>>>>> + igt_output_override_mode(output, &data- > >>>>>> switch_modes[HIGH_RR_MODE]); > >>>>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, > >>>>>>>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > >>>>>>>> + > >>>>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, > >>>>> TEST_DURATION_NS); > >>>>>>>> + igt_assert_f(result > 75, > >>>>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > >>>>>>>> + threshold not > >>>>> reached, result was %u%%\n", > >>>>>>>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > >>>>>>>> + rate[0], result); > >>>>>>>> + > >>>>>>>> + /* Switch to Virtual RR */ > >>>>>>>> + for (vrefresh = data->range.min + 10; vrefresh < > >>>>>>>> + data->range.max; > >>>>> vrefresh += 10) { > >>>>>>>> + drmModeModeInfo virtual_mode = > >>>>>>>> + virtual_rr_vrr_range_mode(output, vrefresh); > >>>>>>>> + > >>>>>>>> + igt_info("Requesting Virtual Mode with Refresh > >>>>>>>> + Rate (%u Hz): \n", > >>>>> vrefresh); > >>>>>>>> + kmstest_dump_mode(&virtual_mode); > >>>>>>>> + > >>>>>>>> + igt_output_override_mode(output, &virtual_mode); > >>>>>>>> + > >>>>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, > >>>>>>>> + NULL) == 0); > >>>>>>>> + > >>>>>>>> + rate[0] = rate_from_refresh(vrefresh); > >>>>>>>> + result = flip_and_measure(data, output, pipe, > >>>>>>>> + rate, 1, > >>>>> TEST_DURATION_NS); > >>>>>>>> + igt_assert_f(result > 75, > >>>>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: > >>>>>>>> + Target threshold not > >>>>> reached, result was %u%%\n", > >>>>>>>> + vrefresh, rate[0], result); > >>>>>>>> + } > >>>>>>>> +} > >>>>>>>> + > >>>>>>>> static void test_cleanup(data_t *data, enum pipe pipe, > >>>>>>>> igt_output_t > >>>>> *output) > >>>>>>>> { > >>>>>>>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ static > >>>>>>>> bool output_constraint(data_t *data, > >>>>> igt_output_t *output, uint32_t flags > >>>>>>>> igt_output_override_mode(output, > >>>>>>>> &data->switch_modes[HIGH_RR_MODE]); > >>>>>>>> > >>>>>>>> /* Search for a low refresh rate mode. */ > >>>>>>>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > >>>>>>>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > >>>>>>>> + TEST_SEAMLESS_VIRTUAL_RR))) > >>>>>>> > >>>>>>> Does this virtual RR applicable to eDP only or supports other > >>>>>>> connector types too? If it is eDP specific [*], then we must add > >>>>>>> a check for > >>>>> that. > >>>>>>> > >>>>>>> [*]: > >>>>>>> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vr > >>>>>>> r.c#n > >>>>>>> 660 > >>>>>>> > >>>>>>> With above comment addressed, this patch is > >>>>>>> Reviewed-by: Bhanuprakash Modem > <bhanuprakash.modem@intel.com> > >>>>>>> > >>>>>>> - Bhanu > >>>>>>> > >>>>>>>> return true; > >>>>>>>> > >>>>>>>> data->switch_modes[LOW_RR_MODE] = > >>>>>>>> low_rr_mode_with_same_res(output, data->range.min); @@ - > 841,6 > >>>>> +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, > >>>>> +&data) > >>>>>>>> "between flip timestamps > >>>>>>>> converges to the requested > >>>>> rate"); > >>>>>>>> igt_subtest_with_dynamic("flip-basic-fastset") > >>>>>>>> run_vrr_test(&data, test_basic, > >>>>>>>> TEST_FASTSET); > >>>>>>>> + > >>>>>>>> + igt_describe("Test to switch to any custom > >>>>>>>> + virtual mode in VRR > >>>>> range without modeset."); > >>>>>>>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > >>>>>>>> + run_vrr_test(&data, > >>>>>>>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > >>>>>>>> } > >>>>>>>> > >>>>>>>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-05-21 6:50 ` Saarinen, Jani @ 2024-05-21 16:04 ` Manasi Navare 0 siblings, 0 replies; 44+ messages in thread From: Manasi Navare @ 2024-05-21 16:04 UTC (permalink / raw) To: Saarinen, Jani Cc: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org, Drew Davenport, Ville Syrjälä, Sean Paul Great thank you so much for all the reviews and validation. And thanks Juha for merging the patch. Regards Manasi On Mon, May 20, 2024 at 11:50 PM Saarinen, Jani <jani.saarinen@intel.com> wrote: > > Hi, > > -----Original Message----- > > From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> > > Sent: Tuesday, 21 May 2024 8.23 > > To: Manasi Navare <navaremanasi@chromium.org> > > Cc: Saarinen, Jani <jani.saarinen@intel.com>; igt-dev@lists.freedesktop.org; > > Drew Davenport <ddavenport@chromium.org>; Ville Syrjälä > > <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > > Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless > > modeset to a virtual LRR mode > > > > > > On 21-05-2024 10:16 am, Manasi Navare wrote: > > > Hi Bhanu, > > > > > > Yes I have verified that, it looks good and I have also been running > > > this on my Chromebook with VRR panel and it works fine. > > > Could you please review and help get this landed? > > > > Thanks for the confirmation, this patch is already merged by JP. > > https://cgit.freedesktop.org/drm/igt-gpu- > > tools/commit/?id=927fecf906d25e88f19bc245982c022465276528 > Yes, as you Manasi see from " Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3)" > " Hi Manasi, > > I merged your patch. > > /Juha-Pekka" > > > > > > - Bhanu > > > > > > > > Manasi > > > > > > On Mon, May 20, 2024 at 12:54 AM Modem, Bhanuprakash > > > <bhanuprakash.modem@intel.com> wrote: > > >> > > >> Hi Manasi, > > >> > > >> Sorry for replying late, I was in vacation. > > >> > > >> On 27-04-2024 12:54 am, Manasi Navare wrote: > > >>> Hi Bhanu, Jani, > > >>> > > >>> I do see that even the other vrr tests : seamless-rr-switch-vrr > > >>> /drrs/ basic-fastset are getting skipped on BAT, so its not related > > >>> to this test. I am able to run it here locally and test. > > >>> Could you please take a look and see why all of these would be > > >>> skipped? Seems unrelated to this change. > > >> > > >> In case of seamless-rr-switch-(vrr|drrs), these skips are expected, > > >> as we don't have any valid config. These tests are eDP specific & > > >> panel should have the modes with different refresh rates & clocks > > >> with same resolution. > > >> > > >> In case of seamless-rr-switch-virtual, it is a connector agnostic > > >> test, it should run on one of the BAT machines. > > >> > > >> Can you please review the helper low_rr_mode_with_same_res() once, as > > >> you are using this one to pick the low RR mode? > > >> > > >>> > > >>> Regards > > >>> Manasi > > >>> > > >>> On Fri, Apr 26, 2024 at 12:48 AM Saarinen, Jani > > <jani.saarinen@intel.com> wrote: > > >>>> > > >>>> Hi, > > >>>>> -----Original Message----- > > >>>>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > >>>>> Modem, Bhanuprakash > > >>>>> Sent: Friday, 26 April 2024 6.44 > > >>>>> To: Manasi Navare <navaremanasi@chromium.org> > > >>>>> Cc: igt-dev@lists.freedesktop.org; Drew Davenport > > >>>>> <ddavenport@chromium.org>; Ville Syrjälä > > >>>>> <ville.syrjala@linux.intel.com>; Sean Paul <seanpaul@chromium.org> > > >>>>> Subject: Re: [PATCH v3 1/2] tests/kms_vrr: Add a subtest for > > >>>>> seamless modeset to a virtual LRR mode > > >>>>> > > >>>>> Hi Manasi, > > >>>>> > > >>>>> On 25-04-2024 08:50 pm, Manasi Navare wrote: > > >>>>>> Hi Bhanu, > > >>>>>> > > >>>>>> Thanks for the review. > > >>>>>> This is not specific to edp, it applies to all connectors. > > >>>>>> > > >>>>>> If the BAT results look okay and I have your r-b, could we get this > > merged? > > >>>> Did you look those. > > >>>> > > >>>>> > > >>>>> Looks, BAT results are not OK to me. > > >>>> Right. To me looks so too. > > >>>> > > >>>>> > > >>>>> The newly added test is getting skip on VRR configs: > > >>>>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11065/bat- > > >>>>> all.html?testfilter=kms_vrr&hosts=bat-adlp-6%7Cbat-adlp-9%7Cbat-rp > > >>>>> ls- > > >>>>> 4%7Cbat-adls-6 > > >>>>> > > >>>>> - Bhanu > > >>>>> > > >>>>>> > > >>>>>> Regards > > >>>>>> Manasi > > >>>>>> > > >>>>>> On Thu, Apr 25, 2024 at 12:39 AM Modem, Bhanuprakash > > >>>>>> <bhanuprakash.modem@intel.com> wrote: > > >>>>>>> > > >>>>>>> Hi Manasi, > > >>>>>>> > > >>>>>>> On 25-04-2024 01:43 am, Manasi Navare wrote: > > >>>>>>>> This subtest validates LRR fastset functionality by testing > > >>>>>>>> seamless switching without full modeset to any of the virtual > > >>>>>>>> LRR mode within VRR > > >>>>> range. > > >>>>>>>> Here we start from highest refresh rate mode and then switch to > > >>>>>>>> virtual LRR modes in the steps of 10Hz within the VRR range. > > >>>>>>>> > > >>>>>>>> This is used to test the LRR fastset functionality of the driver. > > >>>>>>>> > > >>>>>>>> v5: > > >>>>>>>> - Pass a reference to flip_and_measure (bhanu) > > >>>>>>>> - Add a new line between between declaration and code logic > > >>>>>>>> > > >>>>>>>> v4: > > >>>>>>>> - Change the test name to align with drrs/vrr tests (Bhanu) > > >>>>>>>> - Fix some build warnings due to rebase > > >>>>>>>> - Use a local virtual_mode variable > > >>>>>>>> > > >>>>>>>> v3: > > >>>>>>>> - Fix build error due to rebase (Manasi) > > >>>>>>>> > > >>>>>>>> Cc: Drew Davenport <ddavenport@chromium.org> > > >>>>>>>> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > >>>>>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > > >>>>>>>> Cc: Sean Paul <seanpaul@chromium.org> > > >>>>>>>> Signed-off-by: Manasi Navare <navaremanasi@chromium.org> > > >>>>>>>> --- > > >>>>>>>> tests/kms_vrr.c | 73 > > >>>>> ++++++++++++++++++++++++++++++++++++++++++++++--- > > >>>>>>>> 1 file changed, 69 insertions(+), 4 deletions(-) > > >>>>>>>> > > >>>>>>>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > >>>>>>>> 15c62b34b..7f64d6806 100644 > > >>>>>>>> --- a/tests/kms_vrr.c > > >>>>>>>> +++ b/tests/kms_vrr.c > > >>>>>>>> @@ -66,6 +66,11 @@ > > >>>>>>>> * Description: Test to switch RR seamlessly without modeset. > > >>>>>>>> * Functionality: adaptive_sync, drrs > > >>>>>>>> * > > >>>>>>>> + * SUBTEST: seamless-rr-switch-virtual > > >>>>>>>> + * Description: Test to create a Virtual Mode in VRR range and > > >>>>>>>> + switch to > > >>>>> it > > >>>>>>>> + * without a full modeset. > > >>>>>>>> + * Functionality: LRR > > >>>>>>>> + * > > >>>>>>>> * SUBTEST: max-min > > >>>>>>>> * Description: Oscillates between highest and lowest > > >>>>>>>> refresh each > > >>>>> frame for > > >>>>>>>> * manual flicker profiling > > >>>>>>>> @@ -89,9 +94,10 @@ enum { > > >>>>>>>> TEST_FLIPLINE = 1 << 3, > > >>>>>>>> TEST_SEAMLESS_VRR = 1 << 4, > > >>>>>>>> TEST_SEAMLESS_DRRS = 1 << 5, > > >>>>>>>> - TEST_FASTSET = 1 << 6, > > >>>>>>>> - TEST_MAXMIN = 1 << 7, > > >>>>>>>> - TEST_NEGATIVE = 1 << 8, > > >>>>>>>> + TEST_SEAMLESS_VIRTUAL_RR = 1 << 6, > > >>>>>>>> + TEST_FASTSET = 1 << 7, > > >>>>>>>> + TEST_MAXMIN = 1 << 8, > > >>>>>>>> + TEST_NEGATIVE = 1 << 9, > > >>>>>>>> }; > > >>>>>>>> > > >>>>>>>> enum { > > >>>>>>>> @@ -214,6 +220,18 @@ > > low_rr_mode_with_same_res(igt_output_t > > >>>>> *output, unsigned int vrr_min) > > >>>>>>>> return mode; > > >>>>>>>> } > > >>>>>>>> > > >>>>>>>> +static drmModeModeInfo > > >>>>>>>> +virtual_rr_vrr_range_mode(igt_output_t *output, unsigned int > > >>>>>>>> +virtual_refresh_rate) { > > >>>>>>>> + drmModeModeInfo mode = *igt_output_get_mode(output); > > >>>>>>>> + uint64_t clock_hz = mode.clock * 1000; > > >>>>>>>> + > > >>>>>>>> + mode.vtotal = clock_hz / (mode.htotal * virtual_refresh_rate); > > >>>>>>>> + mode.vrefresh = virtual_refresh_rate; > > >>>>>>>> + > > >>>>>>>> + return mode; > > >>>>>>>> +} > > >>>>>>>> + > > >>>>>>>> /* Read min and max vrr range from the connector debugfs. */ > > >>>>>>>> static range_t > > >>>>>>>> get_vrr_range(data_t *data, igt_output_t *output) @@ > > >>>>>>>> -641,6 > > >>>>>>>> +659,49 @@ test_seamless_rr_basic(data_t *data, enum pipe > > pipe, > > >>>>> igt_output_t *output, uint3 > > >>>>>>>> vrr ? "on" : "off", vrr ? "not reached" : "exceeded", > > result); > > >>>>>>>> } > > >>>>>>>> > > >>>>>>>> +static void > > >>>>>>>> +test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, > > >>>>>>>> +igt_output_t *output, uint32_t flags) { > > >>>>>>>> + uint32_t result; > > >>>>>>>> + unsigned int vrefresh; > > >>>>>>>> + uint64_t rate[] = {0}; > > >>>>>>>> + > > >>>>>>>> + igt_info("Use HIGH_RR Mode as default\n"); > > >>>>>>>> + kmstest_dump_mode(&data- > > >switch_modes[HIGH_RR_MODE]); > > >>>>>>>> + > > >>>>>>>> + prepare_test(data, output, pipe); > > >>>>>>>> + rate[0] = > > >>>>>>>> + rate_from_refresh(data- > > >switch_modes[HIGH_RR_MODE].vrefresh); > > >>>>>>>> + > > >>>>>>>> + /* > > >>>>>>>> + * Sink with DRR and VRR can be in downclock mode so > > >>>>>>>> + * switch to highest refresh rate mode. > > >>>>>>>> + */ > > >>>>>>>> + igt_output_override_mode(output, &data- > > >>>>>> switch_modes[HIGH_RR_MODE]); > > >>>>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, > > >>>>>>>> + DRM_MODE_PAGE_FLIP_EVENT, NULL) == 0); > > >>>>>>>> + > > >>>>>>>> + result = flip_and_measure(data, output, pipe, rate, 1, > > >>>>> TEST_DURATION_NS); > > >>>>>>>> + igt_assert_f(result > 75, > > >>>>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: Target > > >>>>>>>> + threshold not > > >>>>> reached, result was %u%%\n", > > >>>>>>>> + data->switch_modes[HIGH_RR_MODE].vrefresh, > > >>>>>>>> + rate[0], result); > > >>>>>>>> + > > >>>>>>>> + /* Switch to Virtual RR */ > > >>>>>>>> + for (vrefresh = data->range.min + 10; vrefresh < > > >>>>>>>> + data->range.max; > > >>>>> vrefresh += 10) { > > >>>>>>>> + drmModeModeInfo virtual_mode = > > >>>>>>>> + virtual_rr_vrr_range_mode(output, vrefresh); > > >>>>>>>> + > > >>>>>>>> + igt_info("Requesting Virtual Mode with Refresh > > >>>>>>>> + Rate (%u Hz): \n", > > >>>>> vrefresh); > > >>>>>>>> + kmstest_dump_mode(&virtual_mode); > > >>>>>>>> + > > >>>>>>>> + igt_output_override_mode(output, &virtual_mode); > > >>>>>>>> + > > >>>>>>>> + igt_assert(igt_display_try_commit_atomic(&data->display, 0, > > >>>>>>>> + NULL) == 0); > > >>>>>>>> + > > >>>>>>>> + rate[0] = rate_from_refresh(vrefresh); > > >>>>>>>> + result = flip_and_measure(data, output, pipe, > > >>>>>>>> + rate, 1, > > >>>>> TEST_DURATION_NS); > > >>>>>>>> + igt_assert_f(result > 75, > > >>>>>>>> + "Refresh rate (%u Hz) %"PRIu64"ns: > > >>>>>>>> + Target threshold not > > >>>>> reached, result was %u%%\n", > > >>>>>>>> + vrefresh, rate[0], result); > > >>>>>>>> + } > > >>>>>>>> +} > > >>>>>>>> + > > >>>>>>>> static void test_cleanup(data_t *data, enum pipe pipe, > > >>>>>>>> igt_output_t > > >>>>> *output) > > >>>>>>>> { > > >>>>>>>> if (vrr_capable(output)) @@ -686,7 +747,7 @@ static > > >>>>>>>> bool output_constraint(data_t *data, > > >>>>> igt_output_t *output, uint32_t flags > > >>>>>>>> igt_output_override_mode(output, > > >>>>>>>> &data->switch_modes[HIGH_RR_MODE]); > > >>>>>>>> > > >>>>>>>> /* Search for a low refresh rate mode. */ > > >>>>>>>> - if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS))) > > >>>>>>>> + if (!(flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | > > >>>>>>>> + TEST_SEAMLESS_VIRTUAL_RR))) > > >>>>>>> > > >>>>>>> Does this virtual RR applicable to eDP only or supports other > > >>>>>>> connector types too? If it is eDP specific [*], then we must add > > >>>>>>> a check for > > >>>>> that. > > >>>>>>> > > >>>>>>> [*]: > > >>>>>>> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_vr > > >>>>>>> r.c#n > > >>>>>>> 660 > > >>>>>>> > > >>>>>>> With above comment addressed, this patch is > > >>>>>>> Reviewed-by: Bhanuprakash Modem > > <bhanuprakash.modem@intel.com> > > >>>>>>> > > >>>>>>> - Bhanu > > >>>>>>> > > >>>>>>>> return true; > > >>>>>>>> > > >>>>>>>> data->switch_modes[LOW_RR_MODE] = > > >>>>>>>> low_rr_mode_with_same_res(output, data->range.min); @@ - > > 841,6 > > >>>>> +902,10 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, > > >>>>> +&data) > > >>>>>>>> "between flip timestamps > > >>>>>>>> converges to the requested > > >>>>> rate"); > > >>>>>>>> igt_subtest_with_dynamic("flip-basic-fastset") > > >>>>>>>> run_vrr_test(&data, test_basic, > > >>>>>>>> TEST_FASTSET); > > >>>>>>>> + > > >>>>>>>> + igt_describe("Test to switch to any custom > > >>>>>>>> + virtual mode in VRR > > >>>>> range without modeset."); > > >>>>>>>> + igt_subtest_with_dynamic("seamless-rr-switch-virtual") > > >>>>>>>> + run_vrr_test(&data, > > >>>>>>>> + test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); > > >>>>>>>> } > > >>>>>>>> > > >>>>>>>> igt_fixture { ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (3 preceding siblings ...) 2024-04-25 7:39 ` [PATCH v3 1/2] " Modem, Bhanuprakash @ 2024-04-25 13:55 ` Patchwork 2024-04-26 20:57 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) Patchwork ` (9 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-04-25 13:55 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 40750 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from XEIGT_7823_full -> XEIGTPW_11065_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11065_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11065_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 -> 1) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_11065_full prevented too many machines from booting. Missing (2): shard-adlp shard-lnl Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11065_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_pm_rpm@i2c.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_pm_rpm@i2c.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html New tests --------- New tests have been introduced between XEIGT_7823_full and XEIGTPW_11065_full: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11065_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@unused-pitches: - shard-dg2-set2: [PASS][4] -> [SKIP][5] ([Intel XE#1201] / [i915#6077]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_addfb_basic@unused-pitches.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_addfb_basic@unused-pitches.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#1201]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#610]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#367]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-7: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +23 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-7.html * igt@kms_cdclk@mode-transition: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#1201] / [Intel XE#1235]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_cdclk@mode-transition.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#307]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#455]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][19] ([Intel XE#1178]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2-set2: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][24] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo: - shard-dg2-set2: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_cursor_legacy@torture-bo.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-dg2-set2: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#1214] / [Intel XE#877]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_cursor_legacy@torture-bo@pipe-a.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_flip@absolute-wf_vblank: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a7: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][30] ([Intel XE#1162] / [Intel XE#1214]) +2 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a7.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2-set2: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#1214]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#651]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#658]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#653]) +17 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#1201] / [Intel XE#455]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-463/igt@kms_hdr@invalid-hdr.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_multiple@tiling-4: - shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#1201] / [Intel XE#829]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-435/igt@kms_plane_multiple@tiling-4.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#870]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1129] / [Intel XE#1201]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#1211]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#1201] / [Intel XE#1211]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prop_blob@basic: - shard-dg2-set2: [PASS][47] -> [SKIP][48] ([Intel XE#1201] / [Intel XE#780]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@kms_prop_blob@basic.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_prop_blob@basic.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1122] / [Intel XE#1201]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_rmfb@close-fd@pipe-b-hdmi-a-7: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#294]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-7.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#327]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][53] -> [FAIL][54] ([Intel XE#899]) +2 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#756]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-dg2-set2: [PASS][56] -> [FAIL][57] ([Intel XE#1050]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@xe_compute@ccs-mode-compute-kernel.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1126] / [Intel XE#1201]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][59] ([Intel XE#1473]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [PASS][60] -> [TIMEOUT][61] ([Intel XE#1473] / [Intel XE#392]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-463/igt@xe_evict@evict-threads-large.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#288]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr: - shard-dg2-set2: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-fd-userptr.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-fd-userptr.html * igt@xe_module_load@load: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#378]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@xe_module_load@load.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#1337]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#1173]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@xe_peer2peer@read.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#1162] / [Intel XE#1214]) +4 other tests dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@xe_pm@s3-basic-exec.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@xe_pm@s3-basic-exec.html #### Possible fixes #### * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: [DMESG-WARN][70] ([Intel XE#1214]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@core_hotunplug@unplug-rescan.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@core_hotunplug@unplug-rescan.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][72] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][73] +2 other tests pass [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-dg2-set2: [SKIP][74] ([Intel XE#1201] / [Intel XE#1234]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_cdclk@plane-scaling.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_cdclk@plane-scaling.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][76] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][77] +1 other test pass [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-dg2-set2: [DMESG-WARN][78] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][79] +8 other tests pass [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_cursor_legacy@forked-bo@all-pipes.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_cursor_legacy@forked-bo@all-pipes.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2-set2: [SKIP][80] ([Intel XE#1201] / [Intel XE#455]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: [SKIP][82] ([Intel XE#1201]) -> [PASS][83] +4 other tests pass [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_plane_multiple@tiling-none: - shard-dg2-set2: [INCOMPLETE][84] ([Intel XE#1195]) -> [PASS][85] +1 other test pass [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-433/igt@kms_plane_multiple@tiling-none.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_plane_multiple@tiling-none.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: [SKIP][86] ([Intel XE#1201] / [Intel XE#1211]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: [FAIL][88] ([Intel XE#899]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * igt@xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-dg2-set2: [INCOMPLETE][90] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][91] +1 other test pass [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][92] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate: - shard-dg2-set2: [ABORT][94] ([Intel XE#1304]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [SKIP][96] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-433/igt@xe_live_ktest@xe_dma_buf.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [INCOMPLETE][98] ([Intel XE#1044] / [Intel XE#1195]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@xe_module_load@many-reload.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@xe_module_load@many-reload.html * igt@xe_pm@s3-multiple-execs: - shard-dg2-set2: [DMESG-WARN][100] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html #### Warnings #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [DMESG-FAIL][102] ([Intel XE#1162] / [Intel XE#1548]) -> [DMESG-FAIL][103] ([Intel XE#1548]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@core_hotunplug@hotreplug-lateclose.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][104] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#607]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2-set2: [SKIP][106] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][107] ([Intel XE#1201]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_chamelium_frames@dp-crc-fast.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [FAIL][108] ([Intel XE#1178]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#455]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_content_protection@legacy.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#455]) -> [FAIL][111] ([Intel XE#1178]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_content_protection@srm.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2-set2: [SKIP][112] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][113] ([Intel XE#1201]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@single-move: - shard-dg2-set2: [DMESG-WARN][114] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][115] ([Intel XE#1201]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_cursor_legacy@single-move.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_cursor_legacy@single-move.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][116] ([Intel XE#1201] / [Intel XE#455] / [i915#3804]) -> [SKIP][117] ([Intel XE#1201] / [i915#3804]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][118] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#1234]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt: - shard-dg2-set2: [SKIP][120] ([Intel XE#1201]) -> [SKIP][121] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][122] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][123] ([Intel XE#1201]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][124] ([Intel XE#1201]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#653]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][127] ([Intel XE#1201]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: [DMESG-FAIL][128] ([Intel XE#1162]) -> [FAIL][129] ([Intel XE#616]) +3 other tests fail [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2-set2: [INCOMPLETE][130] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][131] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][132] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][133] ([Intel XE#904] / [Intel XE#909]) +1 other test timeout [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2-set2: [TIMEOUT][134] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][135] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6: - shard-dg2-set2: [TIMEOUT][136] ([Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][137] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-463/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [INCOMPLETE][138] ([Intel XE#1195] / [Intel XE#909]) -> [TIMEOUT][139] ([Intel XE#295] / [Intel XE#380] / [Intel XE#909]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: [SKIP][140] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][141] ([Intel XE#1201]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@kms_psr@fbc-pr-cursor-plane-move.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][142] ([Intel XE#1201]) -> [SKIP][143] ([Intel XE#1201] / [Intel XE#929]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-434/igt@kms_psr@psr2-primary-blt.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-435/igt@kms_psr@psr2-primary-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][144] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-dg2-set2: [INCOMPLETE][146] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][147] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][148] ([Intel XE#1473] / [Intel XE#392] / [Intel XE#931]) -> [TIMEOUT][149] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [DMESG-WARN][150] ([Intel XE#1162] / [Intel XE#1214]) -> [INCOMPLETE][151] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358] / [Intel XE#569]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-466/igt@xe_pm@s3-d3hot-basic-exec.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-436/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [FAIL][152] ([Intel XE#1043] / [Intel XE#845]) -> [DMESG-FAIL][153] ([Intel XE#1162] / [Intel XE#1551]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7823/shard-dg2-436/igt@xe_pm@s4-basic.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11065/shard-dg2-466/igt@xe_pm@s4-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#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1043 [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044 [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234 [Intel XE#1235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1235 [Intel XE#1304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1304 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1548 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294 [Intel XE#295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/295 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [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#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#845]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/845 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904 [Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/931 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_7823 -> IGTPW_11065 * Linux: xe-1170-7ec59c2fcb5419f0d48b7918200be26e360388e7 -> xe-1171-ad654139fd5a7773f0310b5f745c105cdba520e8 IGTPW_11065: 11065 IGT_7823: 61121a2eac4d191ad9f3077948c8ba19686fbb16 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1170-7ec59c2fcb5419f0d48b7918200be26e360388e7: 7ec59c2fcb5419f0d48b7918200be26e360388e7 xe-1171-ad654139fd5a7773f0310b5f745c105cdba520e8: ad654139fd5a7773f0310b5f745c105cdba520e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-132866v1/index.html [-- Attachment #2: Type: text/html, Size: 54733 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (4 preceding siblings ...) 2024-04-25 13:55 ` ✗ CI.xeFULL: failure for series starting with [v3,1/2] " Patchwork @ 2024-04-26 20:57 ` Patchwork 2024-04-26 20:59 ` ✓ CI.xeBAT: success " Patchwork ` (8 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-04-26 20:57 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27935 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14668 -> IGTPW_11079 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11079 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11079, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/index.html Participating hosts (36 -> 37) ------------------------------ Additional (5): fi-kbl-7567u fi-glk-j4005 fi-kbl-8809g bat-mtlp-8 bat-mtlp-6 Missing (4): bat-dg2-14 bat-kbl-2 fi-snb-2520m fi-elk-e7500 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11079: ### IGT changes ### #### Possible regressions #### * igt@kms_vrr@max-min@pipe-a-dp-1: - bat-adls-6: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - {bat-arls-4}: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-mtlp-8: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adls-6: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-1: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-6: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-9: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-11: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-rpls-4}: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adln-1: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-rplp-1: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-rkl-11600: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-tgl-1115g4: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-3: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-mtlp-9}: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-3: NOTRUN -> [SKIP][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html New tests --------- New tests have been introduced between CI_DRM_14668 and IGTPW_11079: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 36 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_11079 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#9318]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html - bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#9318]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-mtlp-6: NOTRUN -> [SKIP][20] ([i915#1849] / [i915#2582]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@fbdev@info.html * igt@fbdev@write: - bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#2582]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@fbdev@write.html * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][22] ([i915#2190]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html - fi-kbl-8809g: NOTRUN -> [SKIP][23] ([i915#2190]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][24] ([i915#2190]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][25] ([i915#4613]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-glk-j4005/igt@gem_lmem_swapping@basic.html - fi-kbl-7567u: NOTRUN -> [SKIP][26] ([i915#4613]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-7567u/igt@gem_lmem_swapping@basic.html - fi-kbl-8809g: NOTRUN -> [SKIP][27] ([i915#4613]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-6: NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html - bat-mtlp-8: NOTRUN -> [SKIP][29] ([i915#4613]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][30] ([i915#4083]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@gem_mmap@basic.html - bat-mtlp-6: NOTRUN -> [SKIP][31] ([i915#4083]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][32] ([i915#4077]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][33] ([i915#4079]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-mtlp-6: NOTRUN -> [SKIP][34] ([i915#4077]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-mtlp-6: NOTRUN -> [SKIP][35] ([i915#4079]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@gem_tiled_pread_basic.html * igt@i915_module_load@reload: - bat-adlp-6: [PASS][36] -> [DMESG-WARN][37] ([i915#9427]) +19 other tests dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14668/bat-adlp-6/igt@i915_module_load@reload.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-6/igt@i915_module_load@reload.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][38] ([i915#6621]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@i915_pm_rps@basic-api.html - bat-mtlp-6: NOTRUN -> [SKIP][39] ([i915#6621]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@guc_multi_lrc: - bat-adlp-6: NOTRUN -> [DMESG-WARN][40] ([i915#9427]) +4 other tests dmesg-warn [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-6/igt@i915_selftest@live@guc_multi_lrc.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][41] ([i915#4212] / [i915#9792]) +8 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][42] ([i915#5190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-mtlp-6: NOTRUN -> [SKIP][43] ([i915#5190] / [i915#9792]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][44] ([i915#4212]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][45] +20 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][46] ([i915#4213]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][47] ([i915#9792]) +27 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-mtlp-8: NOTRUN -> [SKIP][48] ([i915#3555] / [i915#3840] / [i915#9159]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-mtlp-6: NOTRUN -> [SKIP][49] ([i915#3637] / [i915#9792]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-7567u: NOTRUN -> [SKIP][50] +21 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-7567u/igt@kms_force_connector_basic@force-load-detect.html - fi-kbl-8809g: NOTRUN -> [SKIP][51] +40 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html - bat-mtlp-8: NOTRUN -> [SKIP][52] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][53] ([i915#5274]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html - bat-mtlp-6: NOTRUN -> [SKIP][54] ([i915#5274] / [i915#9792]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-mtlp-6: NOTRUN -> [SKIP][55] ([i915#4342] / [i915#5354] / [i915#9792]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-mtlp-6: NOTRUN -> [SKIP][56] ([i915#5354] / [i915#9792]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-cursor-plane-move: - bat-mtlp-6: NOTRUN -> [SKIP][57] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][58] ([i915#4077] / [i915#9688]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-8: NOTRUN -> [SKIP][59] ([i915#3555] / [i915#8809]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-6: NOTRUN -> [SKIP][60] ([i915#3555] / [i915#8809] / [i915#9792]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@flip-basic: - fi-rkl-11600: NOTRUN -> [SKIP][61] ([i915#3555]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-rkl-11600/igt@kms_vrr@flip-basic.html - bat-atsm-1: NOTRUN -> [SKIP][62] ([i915#6078]) +9 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-atsm-1/igt@kms_vrr@flip-basic.html - fi-cfl-guc: NOTRUN -> [SKIP][63] +9 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-cfl-guc/igt@kms_vrr@flip-basic.html - bat-jsl-3: NOTRUN -> [SKIP][64] ([i915#3555]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-jsl-3/igt@kms_vrr@flip-basic.html - bat-adlp-11: NOTRUN -> [SKIP][65] ([i915#10470] / [i915#10501]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-11/igt@kms_vrr@flip-basic.html - bat-adln-1: NOTRUN -> [SKIP][66] ([i915#3555]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adln-1/igt@kms_vrr@flip-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][67] ([i915#3555] / [i915#8808]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][68] ([i915#3555]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-jsl-1/igt@kms_vrr@flip-basic.html - fi-tgl-1115g4: NOTRUN -> [SKIP][69] ([i915#3555]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-tgl-1115g4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - fi-pnv-d510: NOTRUN -> [SKIP][70] +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html - bat-jsl-3: NOTRUN -> [SKIP][71] ([i915#9906]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-jsl-3/igt@kms_vrr@flip-basic-fastset.html - bat-dg2-11: NOTRUN -> [SKIP][72] ([i915#9906]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-dg2-11/igt@kms_vrr@flip-basic-fastset.html - bat-adln-1: NOTRUN -> [SKIP][73] ([i915#9906]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - bat-dg2-11: NOTRUN -> [SKIP][74] ([i915#3555]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-dg2-11/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - bat-rplp-1: NOTRUN -> [SKIP][75] ([i915#3555]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-rplp-1/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - bat-adlm-1: NOTRUN -> [SKIP][76] ([i915#9900]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlm-1/igt@kms_vrr@max-min.html - bat-rplp-1: NOTRUN -> [SKIP][77] ([i915#9906]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-rplp-1/igt@kms_vrr@max-min.html - fi-ilk-650: NOTRUN -> [SKIP][78] +9 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-ilk-650/igt@kms_vrr@max-min.html - fi-tgl-1115g4: NOTRUN -> [SKIP][79] ([i915#9906]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-tgl-1115g4/igt@kms_vrr@max-min.html - bat-arls-1: NOTRUN -> [SKIP][80] ([i915#8808]) +8 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-arls-1/igt@kms_vrr@max-min.html - fi-bsw-n3050: NOTRUN -> [SKIP][81] +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-bsw-n3050/igt@kms_vrr@max-min.html - bat-arls-3: NOTRUN -> [SKIP][82] ([i915#8808]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-arls-3/igt@kms_vrr@max-min.html - bat-mtlp-8: NOTRUN -> [SKIP][83] ([i915#8808] / [i915#9906]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - bat-adlp-9: NOTRUN -> [SKIP][84] ([i915#3555]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-9/igt@kms_vrr@negative-basic.html - bat-adls-6: NOTRUN -> [SKIP][85] ([i915#3555]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adls-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - fi-cfl-8700k: NOTRUN -> [SKIP][86] +9 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-blb-e6850: NOTRUN -> [SKIP][87] +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-bsw-nick: NOTRUN -> [SKIP][88] +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-rkl-11600: NOTRUN -> [SKIP][89] ([i915#9906]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-dg2-9: NOTRUN -> [SKIP][90] ([i915#9197]) +9 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-x1275: NOTRUN -> [SKIP][91] +9 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-11: NOTRUN -> [SKIP][92] ([i915#10470]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-cfl-8109u: NOTRUN -> [SKIP][93] +9 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-ivb-3770: NOTRUN -> [SKIP][94] +9 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-ivb-3770/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-8: NOTRUN -> [SKIP][95] ([i915#9197]) +9 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-dg2-8/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-guc: NOTRUN -> [SKIP][96] +9 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/fi-kbl-guc/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - bat-adlp-9: NOTRUN -> [SKIP][97] ([i915#9906]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adls-6: NOTRUN -> [SKIP][98] ([i915#9906]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-jsl-1: NOTRUN -> [SKIP][99] ([i915#9906]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adlp-6: NOTRUN -> [SKIP][100] ([i915#9906]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@prime_vgem@basic-fence-flip: - bat-mtlp-6: NOTRUN -> [SKIP][101] ([i915#3708] / [i915#9792]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-6: NOTRUN -> [SKIP][102] ([i915#3708] / [i915#4077]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html - bat-mtlp-8: NOTRUN -> [SKIP][103] ([i915#3708] / [i915#4077]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][104] ([i915#3708]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-mtlp-6: NOTRUN -> [SKIP][105] ([i915#3708]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-mtlp-8: NOTRUN -> [SKIP][106] ([i915#10216] / [i915#3708]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-8/igt@prime_vgem@basic-write.html - bat-mtlp-6: NOTRUN -> [SKIP][107] ([i915#10216] / [i915#3708]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-6/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - bat-adls-6: [TIMEOUT][108] ([i915#10795]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14668/bat-adls-6/igt@i915_selftest@live@execlists.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adls-6/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_heartbeat: - {bat-mtlp-9}: [INCOMPLETE][110] -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14668/bat-mtlp-9/igt@i915_selftest@live@gt_heartbeat.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-9/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - {bat-mtlp-9}: [DMESG-WARN][112] ([i915#10435]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14668/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html #### Warnings #### * igt@i915_selftest@live@hangcheck: - bat-adlp-6: [ABORT][114] ([i915#10021]) -> [DMESG-WARN][115] ([i915#9427]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14668/bat-adlp-6/igt@i915_selftest@live@hangcheck.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/bat-adlp-6/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10021 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10435 [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10795]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10795 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [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#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7825 -> IGTPW_11079 CI-20190529: 20190529 CI_DRM_14668: cd4e45440e6710d7a1d097cd2fbac455bdecb68a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11079: 821256d8ba2309cec26f798cf99bd1fd2fb337e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7825: 28b2a1b0be86e33a2fc04a022e04f07bd25b66d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11079/index.html [-- Attachment #2: Type: text/html, Size: 34903 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✓ CI.xeBAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (5 preceding siblings ...) 2024-04-26 20:57 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) Patchwork @ 2024-04-26 20:59 ` Patchwork 2024-04-27 0:23 ` ✗ CI.xeFULL: failure " Patchwork ` (7 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-04-26 20:59 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2439 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) URL : https://patchwork.freedesktop.org/series/132866/ State : success == Summary == CI Bug Log - changes from XEIGT_7825_BAT -> XEIGTPW_11079_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11079_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate: - bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#288]) +32 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html * igt@xe_live_ktest@xe_bo: - bat-dg2-oem2: NOTRUN -> [FAIL][2] ([Intel XE#1534]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/bat-dg2-oem2/igt@xe_live_ktest@xe_bo.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-dg2-oem2: [INCOMPLETE][3] ([Intel XE#1451]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html [Intel XE#1451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1451 [Intel XE#1534]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1534 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 Build changes ------------- * IGT: IGT_7825 -> IGTPW_11079 * Linux: xe-1188-f39ba481e5873b7617afc2e8cf618ac9dc85123f -> xe-1192-098a032be5e189eb306b909c73ae79ca6645844f IGTPW_11079: 821256d8ba2309cec26f798cf99bd1fd2fb337e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7825: 28b2a1b0be86e33a2fc04a022e04f07bd25b66d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1188-f39ba481e5873b7617afc2e8cf618ac9dc85123f: f39ba481e5873b7617afc2e8cf618ac9dc85123f xe-1192-098a032be5e189eb306b909c73ae79ca6645844f: 098a032be5e189eb306b909c73ae79ca6645844f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/index.html [-- Attachment #2: Type: text/html, Size: 3070 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (6 preceding siblings ...) 2024-04-26 20:59 ` ✓ CI.xeBAT: success " Patchwork @ 2024-04-27 0:23 ` Patchwork 2024-05-07 19:51 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patchwork ` (6 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-04-27 0:23 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 34541 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from XEIGT_7825_full -> XEIGTPW_11079_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11079_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11079_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 -> 1) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_11079_full prevented too many machines from booting. Missing (2): shard-adlp shard-lnl New tests --------- New tests have been introduced between XEIGT_7825_full and XEIGTPW_11079_full: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11079_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#1162] / [Intel XE#1214]) +7 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@core_setmaster@master-drop-set-shared-fd.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-435/igt@core_setmaster@master-drop-set-shared-fd.html * igt@kms_addfb_basic@bad-pitch-256: - shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#1201] / [i915#6077]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@kms_addfb_basic@bad-pitch-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-256.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#787]) +50 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][6] ([Intel XE#650]) +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#1201] / [Intel XE#829]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-7: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +16 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-7.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2-set2: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@single-move@pipe-b: - shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1214] / [Intel XE#877]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@kms_cursor_legacy@single-move@pipe-b.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_cursor_legacy@single-move@pipe-b.html * igt@kms_cursor_legacy@torture-bo@pipe-b: - shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) +1 other test dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@pipe-b.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@kms_cursor_legacy@torture-bo@pipe-b.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a7: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][16] ([Intel XE#1162] / [Intel XE#1214]) +4 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a7.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#1201]) +17 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#1201] / [Intel XE#1234]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][21] -> [FAIL][22] ([Intel XE#581]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@kms_plane_cursor@viewport.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_plane_cursor@viewport.html * igt@kms_pm_rpm@legacy-planes: - shard-dg2-set2: [PASS][23] -> [SKIP][24] ([Intel XE#1201] / [Intel XE#1211]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_pm_rpm@legacy-planes.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@kms_pm_rpm@legacy-planes.html * igt@kms_prop_blob@blob-prop-core: - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#1201] / [Intel XE#780]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_prop_blob@blob-prop-core.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_prop_blob@blob-prop-core.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][27] -> [FAIL][28] ([Intel XE#771] / [Intel XE#899]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][29] -> [FAIL][30] ([Intel XE#899]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#455]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-436/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_exec_threads@threads-cm-fd-userptr-rebind: - shard-dg2-set2: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#1214]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@xe_exec_threads@threads-cm-fd-userptr-rebind.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-435/igt@xe_exec_threads@threads-cm-fd-userptr-rebind.html * igt@xe_exec_threads@threads-hang-rebind-err: - shard-dg2-set2: [PASS][34] -> [FAIL][35] ([Intel XE#1256]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind-err.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@xe_exec_threads@threads-hang-rebind-err.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#1192] / [Intel XE#1201]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@xe_live_ktest@xe_bo.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@xe_live_ktest@xe_bo.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1044] / [Intel XE#1195]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@xe_module_load@many-reload.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@xe_module_load@many-reload.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [DMESG-WARN][40] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@core_setmaster@master-drop-set-root.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [SKIP][42] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][43] +2 other tests pass [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][44] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][45] +1 other test pass [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [DMESG-WARN][46] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][47] +2 other tests pass [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2-set2: [DMESG-WARN][48] ([Intel XE#1214] / [Intel XE#1602]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_feature_discovery@display: - shard-dg2-set2: [SKIP][50] ([Intel XE#1201]) -> [PASS][51] +5 other tests pass [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_feature_discovery@display.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-433/igt@kms_feature_discovery@display.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][52] ([Intel XE#1201] / [Intel XE#1211]) -> [PASS][53] +1 other test pass [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@kms_pm_rpm@modeset-stress-extra-wait.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_sysfs_edid_timing: - shard-dg2-set2: [FAIL][54] ([Intel XE#1174]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@kms_sysfs_edid_timing.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_sysfs_edid_timing.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [INCOMPLETE][56] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@xe_evict@evict-beng-mixed-threads-large.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [TIMEOUT][58] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][60] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_threads@threads-bal-mixed-fd-basic: - shard-dg2-set2: [DMESG-FAIL][62] ([Intel XE#1069] / [Intel XE#1088]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-433/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html * igt@xe_gt_freq@freq_suspend: - shard-dg2-set2: [DMESG-WARN][64] ([Intel XE#1214]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@xe_gt_freq@freq_suspend.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [SKIP][66] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@xe_live_ktest@xe_dma_buf.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [DMESG-FAIL][68] ([Intel XE#1548]) -> [DMESG-FAIL][69] ([Intel XE#1162] / [Intel XE#1548]) +1 other test dmesg-fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][70] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][71] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][72] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][73] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2-set2: [SKIP][74] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][75] ([Intel XE#1201]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_big_joiner@invalid-modeset.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][76] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][77] ([Intel XE#1201] / [Intel XE#829]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][78] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][79] ([Intel XE#1201] / [Intel XE#1234]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg2-set2: [SKIP][80] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][81] ([Intel XE#1201]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-fast.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2-set2: [SKIP][82] ([Intel XE#1201]) -> [SKIP][83] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@mei-interface: - shard-dg2-set2: [SKIP][84] ([Intel XE#1201]) -> [SKIP][85] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_content_protection@mei-interface.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [SKIP][86] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][87] ([Intel XE#1201] / [Intel XE#1234]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@kms_content_protection@uevent.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][88] ([Intel XE#1201]) -> [SKIP][89] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x512.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2-set2: [SKIP][90] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][91] ([Intel XE#1201]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x32.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][92] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][93] ([Intel XE#1201]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: [DMESG-FAIL][94] ([Intel XE#1162]) -> [FAIL][95] ([Intel XE#616]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][96] ([Intel XE#1201]) -> [DMESG-WARN][97] ([Intel XE#1214] / [Intel XE#282]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2-set2: [DMESG-WARN][98] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][99] ([Intel XE#1201]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move: - shard-dg2-set2: [DMESG-WARN][100] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][101] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-435/igt@kms_cursor_legacy@single-move.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_cursor_legacy@single-move.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][102] ([Intel XE#1201]) -> [SKIP][103] ([Intel XE#1201] / [Intel XE#651]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][104] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][105] ([Intel XE#1201]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][106] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][107] ([Intel XE#1201] / [Intel XE#1234]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][108] ([Intel XE#1201]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#653]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][111] ([Intel XE#1201]) +6 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-rte.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2-set2: [FAIL][112] ([Intel XE#650]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#829]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_plane@pixel-format-source-clamping.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: [FAIL][114] ([Intel XE#616]) -> [DMESG-FAIL][115] ([Intel XE#1162]) +1 other test dmesg-fail [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-464/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2-set2: [INCOMPLETE][116] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][117] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][118] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][119] ([Intel XE#904] / [Intel XE#909]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [TIMEOUT][120] ([Intel XE#295] / [Intel XE#380] / [Intel XE#909]) -> [INCOMPLETE][121] ([Intel XE#1195] / [Intel XE#909]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6: - shard-dg2-set2: [TIMEOUT][122] ([Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][123] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2-set2: [SKIP][124] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][125] ([Intel XE#1201]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][127] ([Intel XE#1201]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@psr2-primary-render: - shard-dg2-set2: [SKIP][128] ([Intel XE#1201]) -> [SKIP][129] ([Intel XE#1201] / [Intel XE#929]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-463/igt@kms_psr@psr2-primary-render.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-464/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][130] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#1234]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_psr@psr2-sprite-plane-move.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][132] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][133] ([Intel XE#1201]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][134] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][135] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7825/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11079/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1043 [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044 [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069 [Intel XE#1088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1088 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234 [Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1548 [Intel XE#1602]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1602 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/295 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650 [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#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904 [Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_7825 -> IGTPW_11079 * Linux: xe-1188-f39ba481e5873b7617afc2e8cf618ac9dc85123f -> xe-1192-098a032be5e189eb306b909c73ae79ca6645844f IGTPW_11079: 821256d8ba2309cec26f798cf99bd1fd2fb337e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7825: 28b2a1b0be86e33a2fc04a022e04f07bd25b66d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1188-f39ba481e5873b7617afc2e8cf618ac9dc85123f: f39ba481e5873b7617afc2e8cf618ac9dc85123f xe-1192-098a032be5e189eb306b909c73ae79ca6645844f: 098a032be5e189eb306b909c73ae79ca6645844f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-132866v2/index.html [-- Attachment #2: Type: text/html, Size: 46754 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (7 preceding siblings ...) 2024-04-27 0:23 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-05-07 19:51 ` Patchwork 2024-05-08 6:33 ` Saarinen, Jani 2024-05-07 20:31 ` ✓ CI.xeBAT: success " Patchwork ` (5 subsequent siblings) 14 siblings, 1 reply; 44+ messages in thread From: Patchwork @ 2024-05-07 19:51 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 18763 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11108 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) ------------------------------ Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11108: ### IGT changes ### #### Possible regressions #### * igt@kms_vrr@max-min@pipe-a-dp-1: - bat-adls-6: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-arls-2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-arls-4}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-6: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-14: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-3: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-3: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-mtlp-8: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adls-6: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-1: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-1: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg1-7: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-9: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-rpls-4}: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adln-1: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-twl-1}: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-rplp-1: NOTRUN -> [SKIP][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-rkl-11600: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-tgl-1115g4: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: - {bat-apl-1}: [PASS][20] -> [ABORT][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html * igt@kms_vrr@seamless-rr-switch-vrr: - {bat-twl-1}: NOTRUN -> [SKIP][22] +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html New tests --------- New tests have been introduced between CI_DRM_14723 and IGTPW_11108: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 38 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_11108 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][23] ([i915#9318]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][24] ([i915#1849]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][25] ([i915#2190]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][26] ([i915#2190]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][27] +49 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-jsl-1: NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-glk-j4005: NOTRUN -> [SKIP][29] ([i915#4613]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][30] -> [DMESG-WARN][31] ([i915#9427]) +2 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][32] ([i915#4103]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][33] ([i915#3555] / [i915#9886]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][34] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][35] +20 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html * igt@kms_vrr@flip-basic: - bat-atsm-1: NOTRUN -> [SKIP][36] ([i915#6078]) +9 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html - bat-jsl-3: NOTRUN -> [SKIP][37] ([i915#3555]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html - fi-ivb-3770: NOTRUN -> [SKIP][38] +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][39] ([i915#3555] / [i915#8808]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html - fi-elk-e7500: NOTRUN -> [SKIP][40] +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html - bat-dg2-8: NOTRUN -> [SKIP][41] ([i915#9197]) +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html - fi-kbl-guc: NOTRUN -> [SKIP][42] +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][43] ([i915#3555]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - fi-pnv-d510: NOTRUN -> [SKIP][44] +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html - bat-dg1-7: NOTRUN -> [SKIP][45] ([i915#9906]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html - fi-kbl-7567u: NOTRUN -> [SKIP][46] +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html - bat-adln-1: NOTRUN -> [SKIP][47] ([i915#9906]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html - bat-rplp-1: NOTRUN -> [SKIP][48] ([i915#9906]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html - fi-tgl-1115g4: NOTRUN -> [SKIP][49] ([i915#9906]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html - fi-cfl-guc: NOTRUN -> [SKIP][50] +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html - bat-mtlp-6: NOTRUN -> [SKIP][51] ([i915#9792]) +9 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html - bat-adlp-6: NOTRUN -> [SKIP][52] ([i915#9906]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - bat-rplp-1: NOTRUN -> [SKIP][53] ([i915#3555]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][54] ([i915#3555]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][55] ([i915#3555]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][56] ([i915#10470] / [i915#10501]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html - bat-adln-1: NOTRUN -> [SKIP][57] ([i915#3555]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][58] ([i915#3555]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - bat-dg2-14: NOTRUN -> [SKIP][59] ([i915#3555]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - bat-adlm-1: NOTRUN -> [SKIP][60] ([i915#9900]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html - bat-arls-1: NOTRUN -> [SKIP][61] ([i915#8808]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html - bat-arls-3: NOTRUN -> [SKIP][62] ([i915#8808]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html - bat-mtlp-8: NOTRUN -> [SKIP][63] ([i915#8808] / [i915#9906]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - bat-adlp-9: NOTRUN -> [SKIP][64] ([i915#3555]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html - bat-adls-6: NOTRUN -> [SKIP][65] ([i915#3555]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - fi-cfl-8700k: NOTRUN -> [SKIP][66] +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-blb-e6850: NOTRUN -> [SKIP][67] +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-dg2-14: NOTRUN -> [SKIP][68] ([i915#9906]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-bsw-nick: NOTRUN -> [SKIP][69] +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-jsl-3: NOTRUN -> [SKIP][70] ([i915#9906]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-dg2-9: NOTRUN -> [SKIP][71] ([i915#9197]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-x1275: NOTRUN -> [SKIP][72] +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-11: NOTRUN -> [SKIP][73] ([i915#10470]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-cfl-8109u: NOTRUN -> [SKIP][74] +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-ilk-650: NOTRUN -> [SKIP][75] +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - bat-adlp-9: NOTRUN -> [SKIP][76] ([i915#9906]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adls-6: NOTRUN -> [SKIP][77] ([i915#9906]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-jsl-1: NOTRUN -> [SKIP][78] ([i915#9906]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - fi-rkl-11600: NOTRUN -> [SKIP][79] ([i915#9906]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-arls-2: NOTRUN -> [SKIP][80] ([i915#8808]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html [-- Attachment #2: Type: text/html, Size: 22329 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-07 19:51 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patchwork @ 2024-05-08 6:33 ` Saarinen, Jani 2024-05-09 16:23 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-05-08 6:33 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Manasi Navare [-- Attachment #1: Type: text/plain, Size: 19058 bytes --] Hi Manasi Are those new results expected skips and thus issue can be reported ? From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Patchwork Sent: Tuesday, 7 May 2024 22.52 To: Manasi Navare <navaremanasi@chromium.org> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patch Details Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL: https://patchwork.freedesktop.org/series/132866/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 Summary FAILURE Serious unknown changes coming with IGTPW_11108 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_11108: IGT changes Possible regressions * igt@kms_vrr@max-min@pipe-a-dp-1: * bat-adls-6: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html> * igt@kms_vrr@seamless-rr-switch-virtual (NEW): * bat-arls-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-arls-4}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-arls-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-arls-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-rpls-4}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-twl-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html> * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: * {bat-apl-1}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html> * igt@kms_vrr@seamless-rr-switch-vrr: * {bat-twl-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> +2 other tests skip New tests New tests have been introduced between CI_DRM_14723 and IGTPW_11108: New IGT tests (1) * igt@kms_vrr@seamless-rr-switch-virtual: * Statuses : 38 skip(s) * Exec time: [0.0, 0.00] s Known issues Here are the changes found in IGTPW_11108 that come from known issues: IGT changes Issues hit * igt@debugfs_test@basic-hwmon: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html> (i915#9318<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) * igt@fbdev@info: * bat-kbl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> (i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) * igt@gem_huc_copy@huc-copy: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * igt@gem_lmem_swapping@parallel-random-engines: * bat-kbl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> +49 other tests skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * igt@i915_pm_rpm@module-reload: * bat-adlp-6: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> (i915#9427<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427>) +2 other tests dmesg-warn * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip * igt@kms_dsc@dsc-basic: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9886<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886>) * igt@kms_force_connector_basic@force-load-detect: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html> * igt@kms_psr@psr-primary-page-flip: * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html> +20 other tests skip * igt@kms_vrr@flip-basic: * bat-atsm-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html> (i915#6078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078>) +9 other tests skip * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-ivb-3770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +3 other tests skip * fi-elk-e7500: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-dg2-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip * fi-kbl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@flip-basic-fastset: * fi-pnv-d510: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-kbl-7567u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-cfl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-mtlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9792<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792>) +9 other tests skip * bat-adlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * igt@kms_vrr@flip-suspend: * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * bat-adlp-11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html> (i915#10470<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / i915#10501<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501>) +6 other tests skip * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@flipline: * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@max-min: * bat-adlm-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html> (i915#9900<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900>) +9 other tests skip * bat-arls-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +8 other tests skip * bat-arls-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +7 other tests skip * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * igt@kms_vrr@negative-basic: * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_vrr@seamless-rr-switch-drrs: * fi-cfl-8700k: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * fi-blb-e6850: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * igt@kms_vrr@seamless-rr-switch-virtual (NEW): * bat-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip * fi-kbl-x1275: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * bat-adlp-11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#10470<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470>) +2 other tests skip * fi-cfl-8109u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * fi-ilk-650: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * igt@kms_vrr@seamless-rr-switch-vrr: * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * bat-arls-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +2 other tests skip {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 49430 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-08 6:33 ` Saarinen, Jani @ 2024-05-09 16:23 ` Manasi Navare 2024-05-10 7:35 ` Saarinen, Jani 2024-05-10 10:59 ` Golani, Mitulkumar Ajitkumar 0 siblings, 2 replies; 44+ messages in thread From: Manasi Navare @ 2024-05-09 16:23 UTC (permalink / raw) To: Saarinen, Jani, Bhanuprakash Modem, Sean Paul, Drew Davenport, I915-ci-infra Cc: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 22025 bytes --] Hi Jani, Looks like all the VRR basic legacy tests are skipping as well, do none of these devices have a VRR sink connected? It is expected to skip in that case. I will do some local testing on my device here and confirm. @Bhanuprakash Modem <bhanuprakash.modem@intel.com> , are these vrr basic skips expected? Regards Manasi On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani <jani.saarinen@intel.com> wrote: > Hi Manasi > > Are those new results expected skips and thus issue can be reported ? > > > > *From:* igt-dev <igt-dev-bounces@lists.freedesktop.org> *On Behalf Of * > Patchwork > *Sent:* Tuesday, 7 May 2024 22.52 > *To:* Manasi Navare <navaremanasi@chromium.org> > *Cc:* igt-dev@lists.freedesktop.org > *Subject:* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode > (rev3) > > > > *Patch Details* > > *Series:* > > series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode (rev3) > > *URL:* > > https://patchwork.freedesktop.org/series/132866/ > > *State:* > > failure > > *Details:* > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_11108 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11108, please notify your bug team (' > I915-ci-infra@lists.freedesktop.org') to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > Participating hosts (41 -> 40) > > Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 > Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_11108: > IGT changes Possible regressions > > - igt@kms_vrr@max-min@pipe-a-dp-1: > > > - bat-adls-6: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html> > > > - igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > - bat-arls-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html> > - {bat-arls-4}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-arls-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-arls-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html> > - {bat-rpls-4}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - {bat-twl-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html> > - fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html> > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > - igt@i915_module_load@load: > > > - {bat-apl-1}: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html> > > > - igt@kms_vrr@seamless-rr-switch-vrr: > > > - {bat-twl-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> > +2 other tests skip > > New tests > > New tests have been introduced between CI_DRM_14723 and IGTPW_11108: > New IGT tests (1) > > - igt@kms_vrr@seamless-rr-switch-virtual: > > > - Statuses : 38 skip(s) > - Exec time: [0.0, 0.00] s > > Known issues > > Here are the changes found in IGTPW_11108 that come from known issues: > IGT changes Issues hit > > - igt@debugfs_test@basic-hwmon: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html> > (i915#9318 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) > > > - igt@fbdev@info: > > > - bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> > (i915#1849 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) > > > - igt@gem_huc_copy@huc-copy: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) > - fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) > > > - igt@gem_lmem_swapping@parallel-random-engines: > > > - bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> > +49 other tests skip > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 > other tests skip > - fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 > other tests skip > > > - igt@i915_pm_rpm@module-reload: > > > - bat-adlp-6: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> > (i915#9427 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427>) +2 > other tests dmesg-warn > > > - igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 > other test skip > > > - igt@kms_dsc@dsc-basic: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#9886 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886>) > > > - igt@kms_force_connector_basic@force-load-detect: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html> > > > - igt@kms_psr@psr-primary-page-flip: > > > - fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html> > +20 other tests skip > > > - igt@kms_vrr@flip-basic: > > > - bat-atsm-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html> > (i915#6078 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078>) +9 > other tests skip > - bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 > other tests skip > - fi-ivb-3770: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html> > +9 other tests skip > - bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +3 > other tests skip > - fi-elk-e7500: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html> > +9 other tests skip > - bat-dg2-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html> > (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 > other tests skip > - fi-kbl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html> > +9 other tests skip > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > > > - igt@kms_vrr@flip-basic-fastset: > > > - fi-pnv-d510: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html> > +9 other tests skip > - bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-kbl-7567u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html> > +9 other tests skip > - bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 > other tests skip > - bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 > other tests skip > - fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-cfl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html> > +9 other tests skip > - bat-mtlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html> > (i915#9792 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792>) +9 > other tests skip > - bat-adlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 > other test skip > > > - igt@kms_vrr@flip-suspend: > > > - bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 > other tests skip > - fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > - bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > - bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html> > (i915#10470 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / > i915#10501 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501>) +6 > other tests skip > - bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 > other tests skip > - fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > > > - igt@kms_vrr@flipline: > > > - bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > > > - igt@kms_vrr@max-min: > > > - bat-adlm-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html> > (i915#9900 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900>) +9 > other tests skip > - bat-arls-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +8 > other tests skip > - bat-arls-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +7 > other tests skip > - bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / > i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > > > - igt@kms_vrr@negative-basic: > > > - bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > - bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > > > - igt@kms_vrr@seamless-rr-switch-drrs: > > > - fi-cfl-8700k: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html> > +9 other tests skip > - fi-blb-e6850: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html> > +9 other tests skip > - bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-bsw-nick: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html> > +9 other tests skip > - bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > > > - igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > - bat-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 > other tests skip > - fi-kbl-x1275: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html> > +9 other tests skip > - bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#10470 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470>) +2 > other tests skip > - fi-cfl-8109u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html> > +9 other tests skip > - fi-ilk-650: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html> > +9 other tests skip > > > - igt@kms_vrr@seamless-rr-switch-vrr: > > > - bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 > other test skip > - bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 > other test skip > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - bat-arls-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +2 > other tests skip > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > Build changes > > - CI: CI-20190529 -> None > - IGT: IGT_7838 -> IGTPW_11108 > > CI-20190529: 20190529 > CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > [-- Attachment #2: Type: text/html, Size: 31828 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-09 16:23 ` Manasi Navare @ 2024-05-10 7:35 ` Saarinen, Jani 2024-05-10 9:11 ` Saarinen, Jani 2024-05-10 10:59 ` Golani, Mitulkumar Ajitkumar 1 sibling, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-05-10 7:35 UTC (permalink / raw) To: Manasi Navare, Modem, Bhanuprakash, Sean Paul, Drew Davenport, I915-ci-infra@lists.freedesktop.org Cc: igt-dev@lists.freedesktop.org Hi, > -----Original Message----- > From: Manasi Navare <navaremanasi@chromium.org> > Sent: Thursday, 9 May 2024 19.24 > To: Saarinen, Jani <jani.saarinen@intel.com>; Modem, Bhanuprakash > <bhanuprakash.modem@intel.com>; Sean Paul <seanpaul@chromium.org>; > Drew Davenport <ddavenport@chromium.org>; I915-ci- > infra@lists.freedesktop.org > Cc: igt-dev@lists.freedesktop.org > Subject: Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: > Add a subtest for seamless modeset to a virtual LRR mode (rev3) > > Hi Jani, > > Looks like all the VRR basic legacy tests are skipping as well, do none of these devices have a VRR sink connected? I will try to get this confirmed internally. > It is expected to skip in that case. I will do some local testing on my device here and confirm. Ok. > @Bhanuprakash Modem <mailto:bhanuprakash.modem@intel.com> , are these vrr basic skips expected? > > > Regards > Manasi > > On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani <jani.saarinen@intel.com > <mailto:jani.saarinen@intel.com> > wrote: > > > Hi Manasi > > Are those new results expected skips and thus issue can be reported ? > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org <mailto:igt- > dev-bounces@lists.freedesktop.org> > On Behalf Of Patchwork > Sent: Tuesday, 7 May 2024 22.52 > To: Manasi Navare <navaremanasi@chromium.org > <mailto:navaremanasi@chromium.org> > > Cc: igt-dev@lists.freedesktop.org <mailto:igt- > dev@lists.freedesktop.org> > Subject: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode > (rev3) > > > > Patch Details > > Series: > > series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode (rev3) > > URL: > > https://patchwork.freedesktop.org/series/132866/ > > State: > > failure > > Details: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > > > CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 > > > Summary > > > FAILURE > > Serious unknown changes coming with IGTPW_11108 absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11108, please notify your bug team ('I915-ci- > infra@lists.freedesktop.org <mailto:I915-ci-infra@lists.freedesktop.org> ') to > allow them > to document this new failure mode, which will reduce false positives > in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm- > tip/IGTPW_11108/index.html <https://intel-gfx-ci.01.org/tree/drm- > tip/IGTPW_11108/index.html> > > > Participating hosts (41 -> 40) > > > Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 > Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 > > > Possible new issues > > > Here are the unknown changes that may have been introduced in > IGTPW_11108: > > > IGT changes > > > Possible regressions > > > * igt@kms_vrr@max-min@pipe-a-dp-1: > > * bat-adls-6: NOTRUN -> FAIL <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max- > min@pipe-a-dp-1.html> > > * igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > * bat-arls-2: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * {bat-arls-4}: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-adlp-6: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-dg2-14: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless- > rr-switch-virtual.html> > * bat-arls-3: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-adls-6: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-arls-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-dg1-7: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * {bat-rpls-4}: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-adln-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * {bat-twl-1}: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * bat-rplp-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr- > switch-virtual.html> > * fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless- > rr-switch-virtual.html> > * fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless- > rr-switch-virtual.html> > > > Suppressed > > > The following results come from untrusted machines, tests, or > statuses. > They do not affect the overall result. > > * igt@i915_module_load@load: > > * {bat-apl-1}: PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl- > 1/igt@i915_module_load@load.html> -> ABORT <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl- > 1/igt@i915_module_load@load.html> > > * igt@kms_vrr@seamless-rr-switch-vrr: > > * {bat-twl-1}: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr- > switch-vrr.html> +2 other tests skip > > > New tests > > > New tests have been introduced between CI_DRM_14723 and > IGTPW_11108: > > > New IGT tests (1) > > > * igt@kms_vrr@seamless-rr-switch-virtual: > > * Statuses : 38 skip(s) > * Exec time: [0.0, 0.00] s > > > Known issues > > > Here are the changes found in IGTPW_11108 that come from known > issues: > > > IGT changes > > > Issues hit > > > * igt@debugfs_test@basic-hwmon: > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic- > hwmon.html> (i915#9318 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9318> ) > > * igt@fbdev@info: > > * bat-kbl-2: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> > (i915#1849 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> ) > > * igt@gem_huc_copy@huc-copy: > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc- > copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/2190> ) > * fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc- > copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/2190> ) > > * igt@gem_lmem_swapping@parallel-random-engines: > > * bat-kbl-2: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl- > 2/igt@gem_lmem_swapping@parallel-random-engines.html> +49 other > tests skip > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl- > 1/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> ) +3 other > tests skip > * fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk- > j4005/igt@gem_lmem_swapping@parallel-random-engines.html> > (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> ) > +3 other tests skip > > * igt@i915_pm_rpm@module-reload: > > * bat-adlp-6: PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp- > 6/igt@i915_pm_rpm@module-reload.html> -> DMESG-WARN <https://intel- > gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp- > 6/igt@i915_pm_rpm@module-reload.html> (i915#9427 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427> ) +2 other > tests dmesg-warn > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor- > legacy: > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl- > 1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > (i915#4103 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> ) > +1 other test skip > > * igt@kms_dsc@dsc-basic: > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc- > basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> / i915#9886 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9886> ) > > * igt@kms_force_connector_basic@force-load-detect: > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl- > 1/igt@kms_force_connector_basic@force-load-detect.html> > > * igt@kms_psr@psr-primary-page-flip: > > * fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr- > primary-page-flip.html> +20 other tests skip > > * igt@kms_vrr@flip-basic: > > * bat-atsm-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip- > basic.html> (i915#6078 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/6078> ) +9 other tests skip > * bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip- > basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +3 other tests skip > * fi-ivb-3770: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip- > basic.html> +9 other tests skip > * bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip- > basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> / i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/8808> ) +3 other tests skip > * fi-elk-e7500: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip- > basic.html> +9 other tests skip > * bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip- > basic.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9197> ) +9 other tests skip > * fi-kbl-guc: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip- > basic.html> +9 other tests skip > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip- > basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +4 other tests skip > > * igt@kms_vrr@flip-basic-fastset: > > * fi-pnv-d510: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic- > fastset.html> +9 other tests skip > * bat-dg1-7: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic- > fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9906> ) +3 other tests skip > * fi-kbl-7567u: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic- > fastset.html> +9 other tests skip > * bat-adln-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic- > fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9906> ) +2 other tests skip > * bat-rplp-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic- > fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9906> ) +2 other tests skip > * fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic- > fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9906> ) +3 other tests skip > * fi-cfl-guc: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic- > fastset.html> +9 other tests skip > * bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic- > fastset.html> (i915#9792 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9792> ) +9 other tests skip > * bat-adlp-6: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic- > fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9906> ) +1 other test skip > > * igt@kms_vrr@flip-suspend: > > * bat-rplp-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip- > suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +3 other tests skip > * fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip- > suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +4 other tests skip > * bat-dg1-7: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip- > suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +4 other tests skip > * bat-adlp-11: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip- > suspend.html> (i915#10470 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / > i915#10501 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501> > ) +6 other tests skip > * bat-adln-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip- > suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +3 other tests skip > * fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip- > suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) +4 other tests skip > > * igt@kms_vrr@flipline: > > * bat-dg2-14: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2- > 14/igt@kms_vrr@flipline.html> (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> ) +4 other > tests skip > > * igt@kms_vrr@max-min: > > * bat-adlm-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max- > min.html> (i915#9900 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9900> ) +9 other tests skip > * bat-arls-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max- > min.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/8808> ) +8 other tests skip > * bat-arls-3: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max- > min.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/8808> ) +7 other tests skip > * bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max- > min.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/8808> / i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/9906> ) +3 other tests skip > > * igt@kms_vrr@negative-basic: > > * bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative- > basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) > * bat-adls-6: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative- > basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/- > /issues/3555> ) > > * igt@kms_vrr@seamless-rr-switch-drrs: > > * fi-cfl-8700k: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless- > rr-switch-drrs.html> +9 other tests skip > * fi-blb-e6850: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless- > rr-switch-drrs.html> +9 other tests skip > * bat-dg2-14: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless- > rr-switch-drrs.html> (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 other > tests skip > * fi-bsw-nick: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless- > rr-switch-drrs.html> +9 other tests skip > * bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr- > switch-drrs.html> (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 other > tests skip > > * igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > * bat-dg2-9: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr- > switch-virtual.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197> ) +9 other > tests skip > * fi-kbl-x1275: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless- > rr-switch-virtual.html> +9 other tests skip > * bat-adlp-11: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless- > rr-switch-virtual.html> (i915#10470 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> ) +2 other > tests skip > * fi-cfl-8109u: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless- > rr-switch-virtual.html> +9 other tests skip > * fi-ilk-650: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr- > switch-virtual.html> +9 other tests skip > > * igt@kms_vrr@seamless-rr-switch-vrr: > > * bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr- > switch-vrr.html> (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +1 other > test skip > * bat-adls-6: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr- > switch-vrr.html> (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +1 other > test skip > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr- > switch-vrr.html> (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 other > tests skip > * fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless- > rr-switch-vrr.html> (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 other > tests skip > * bat-arls-2: NOTRUN -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr- > switch-vrr.html> (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> ) +2 other > tests skip > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > > * CI: CI-20190529 -> None > * IGT: IGT_7838 -> IGTPW_11108 > > CI-20190529: 20190529 > CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ > git://anongit.freedesktop.org/gfx-ci/linux > <http://anongit.freedesktop.org/gfx-ci/linux> > IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git> > IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git> ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-10 7:35 ` Saarinen, Jani @ 2024-05-10 9:11 ` Saarinen, Jani 0 siblings, 0 replies; 44+ messages in thread From: Saarinen, Jani @ 2024-05-10 9:11 UTC (permalink / raw) To: Saarinen, Jani, Manasi Navare, I915-ci-infra@lists.freedesktop.org Cc: igt-dev@lists.freedesktop.org, Modem, Bhanuprakash, Sean Paul, Drew Davenport Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Saarinen, > Jani > Sent: Friday, 10 May 2024 10.36 > To: Manasi Navare <navaremanasi@chromium.org>; Modem, Bhanuprakash > <bhanuprakash.modem@intel.com>; Sean Paul <seanpaul@chromium.org>; > Drew Davenport <ddavenport@chromium.org>; I915-ci- > infra@lists.freedesktop.org > Cc: igt-dev@lists.freedesktop.org > Subject: RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: > Add a subtest for seamless modeset to a virtual LRR mode (rev3) > > Hi, > > > -----Original Message----- > > From: Manasi Navare <navaremanasi@chromium.org> > > Sent: Thursday, 9 May 2024 19.24 > > To: Saarinen, Jani <jani.saarinen@intel.com>; Modem, Bhanuprakash > > <bhanuprakash.modem@intel.com>; Sean Paul > <seanpaul@chromium.org>; > > Drew Davenport <ddavenport@chromium.org>; I915-ci- > > infra@lists.freedesktop.org > > Cc: igt-dev@lists.freedesktop.org > > Subject: Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: > > Add a subtest for seamless modeset to a virtual LRR mode (rev3) > > > > Hi Jani, > > > > Looks like all the VRR basic legacy tests are skipping as well, do none of these devices have a VRR sink connected? > I will try to get this confirmed internally. According to data got these SKIPs are expected as there is no edp connected here. CI team please re-report and let shards to start. > > It is expected to skip in that case. I will do some local testing on my device here and confirm. > Ok. > > > @Bhanuprakash Modem <mailto:bhanuprakash.modem@intel.com> , are > these vrr basic skips expected? > > > > > > Regards > > Manasi > > > > On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani > > <jani.saarinen@intel.com <mailto:jani.saarinen@intel.com> > wrote: > > > > > > Hi Manasi > > > > Are those new results expected skips and thus issue can be reported ? > > > > > > > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org <mailto:igt- > > dev-bounces@lists.freedesktop.org> > On Behalf Of Patchwork > > Sent: Tuesday, 7 May 2024 22.52 > > To: Manasi Navare <navaremanasi@chromium.org > > <mailto:navaremanasi@chromium.org> > > > Cc: igt-dev@lists.freedesktop.org <mailto:igt- > > dev@lists.freedesktop.org> > > Subject: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR > > mode > > (rev3) > > > > > > > > Patch Details > > > > Series: > > > > series starting with [v3,1/2] tests/kms_vrr: Add a subtest for > > seamless modeset to a virtual LRR mode (rev3) > > > > URL: > > > > https://patchwork.freedesktop.org/series/132866/ > > > > State: > > > > failure > > > > Details: > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > > > > > > CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 > > > > > > Summary > > > > > > FAILURE > > > > Serious unknown changes coming with IGTPW_11108 absolutely need > to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_11108, please notify your bug team ('I915-ci- > > infra@lists.freedesktop.org > > <mailto:I915-ci-infra@lists.freedesktop.org> ') to allow them > > to document this new failure mode, which will reduce false positives > > in CI. > > > > External URL: https://intel-gfx-ci.01.org/tree/drm- > > tip/IGTPW_11108/index.html <https://intel-gfx-ci.01.org/tree/drm- > > tip/IGTPW_11108/index.html> > > > > > > Participating hosts (41 -> 40) > > > > > > Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 > > Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 > > > > > > Possible new issues > > > > > > Here are the unknown changes that may have been introduced in > > IGTPW_11108: > > > > > > IGT changes > > > > > > Possible regressions > > > > > > * igt@kms_vrr@max-min@pipe-a-dp-1: > > > > * bat-adls-6: NOTRUN -> FAIL <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max- > > min@pipe-a-dp-1.html> > > > > * igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > * bat-arls-2: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * {bat-arls-4}: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-adlp-6: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-dg2-14: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless- > > rr-switch-virtual.html> > > * bat-arls-3: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr- > > switch-virtual.html> > > * bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-adls-6: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr- > > switch-virtual.html> > > * bat-arls-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-dg1-7: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * {bat-rpls-4}: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-adln-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * {bat-twl-1}: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * bat-rplp-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> > > * fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl- > 11600/igt@kms_vrr@seamless- > > rr-switch-virtual.html> > > * fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl- > 1115g4/igt@kms_vrr@seamless- > > rr-switch-virtual.html> > > > > > > Suppressed > > > > > > The following results come from untrusted machines, tests, or > > statuses. > > They do not affect the overall result. > > > > * igt@i915_module_load@load: > > > > * {bat-apl-1}: PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl- > > 1/igt@i915_module_load@load.html> -> ABORT <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl- > > 1/igt@i915_module_load@load.html> > > > > * igt@kms_vrr@seamless-rr-switch-vrr: > > > > * {bat-twl-1}: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless- > rr- > > switch-vrr.html> +2 other tests skip > > > > > > New tests > > > > > > New tests have been introduced between CI_DRM_14723 and > > IGTPW_11108: > > > > > > New IGT tests (1) > > > > > > * igt@kms_vrr@seamless-rr-switch-virtual: > > > > * Statuses : 38 skip(s) > > * Exec time: [0.0, 0.00] s > > > > > > Known issues > > > > > > Here are the changes found in IGTPW_11108 that come from known > > issues: > > > > > > IGT changes > > > > > > Issues hit > > > > > > * igt@debugfs_test@basic-hwmon: > > > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic- > > hwmon.html> (i915#9318 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9318> ) > > > > * igt@fbdev@info: > > > > * bat-kbl-2: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> > > (i915#1849 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> ) > > > > * igt@gem_huc_copy@huc-copy: > > > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc- > > copy.html> (i915#2190 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/2190> ) > > * fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk- > j4005/igt@gem_huc_copy@huc- > > copy.html> (i915#2190 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/2190> ) > > > > * igt@gem_lmem_swapping@parallel-random-engines: > > > > * bat-kbl-2: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl- > > 2/igt@gem_lmem_swapping@parallel-random-engines.html> +49 other > tests > > skip > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl- > > 1/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> ) +3 > > other tests skip > > * fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk- > > j4005/igt@gem_lmem_swapping@parallel-random-engines.html> > > (i915#4613 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> ) > > +3 other tests skip > > > > * igt@i915_pm_rpm@module-reload: > > > > * bat-adlp-6: PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp- > > 6/igt@i915_pm_rpm@module-reload.html> -> DMESG-WARN > <https://intel- > > gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp- > > 6/igt@i915_pm_rpm@module-reload.html> (i915#9427 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427> ) +2 > > other tests dmesg-warn > > > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor- > > legacy: > > > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl- > > 1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > > (i915#4103 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> ) > > +1 other test skip > > > > * igt@kms_dsc@dsc-basic: > > > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc- > > basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> / i915#9886 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9886> ) > > > > * igt@kms_force_connector_basic@force-load-detect: > > > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl- > > 1/igt@kms_force_connector_basic@force-load-detect.html> > > > > * igt@kms_psr@psr-primary-page-flip: > > > > * fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr- > > primary-page-flip.html> +20 other tests skip > > > > * igt@kms_vrr@flip-basic: > > > > * bat-atsm-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip- > > basic.html> (i915#6078 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/6078> ) +9 other tests skip > > * bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip- > > basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +3 other tests skip > > * fi-ivb-3770: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip- > > basic.html> +9 other tests skip > > * bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip- > > basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> / i915#8808 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/8808> ) +3 other tests skip > > * fi-elk-e7500: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip- > > basic.html> +9 other tests skip > > * bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip- > > basic.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9197> ) +9 other tests skip > > * fi-kbl-guc: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip- > > basic.html> +9 other tests skip > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip- > > basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +4 other tests skip > > > > * igt@kms_vrr@flip-basic-fastset: > > > > * fi-pnv-d510: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip- > basic- > > fastset.html> +9 other tests skip > > * bat-dg1-7: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic- > > fastset.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9906> ) +3 other tests skip > > * fi-kbl-7567u: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic > > - > > fastset.html> +9 other tests skip > > * bat-adln-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic- > > fastset.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9906> ) +2 other tests skip > > * bat-rplp-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic- > > fastset.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9906> ) +2 other tests skip > > * fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basi > > c- fastset.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9906> ) +3 other tests skip > > * fi-cfl-guc: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic- > > fastset.html> +9 other tests skip > > * bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic- > > fastset.html> (i915#9792 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9792> ) +9 other tests skip > > * bat-adlp-6: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic- > > fastset.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9906> ) +1 other test skip > > > > * igt@kms_vrr@flip-suspend: > > > > * bat-rplp-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip- > > suspend.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +3 other tests skip > > * fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip- > > suspend.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +4 other tests skip > > * bat-dg1-7: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip- > > suspend.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +4 other tests skip > > * bat-adlp-11: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip- > > suspend.html> (i915#10470 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / > > i915#10501 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501> > > ) +6 other tests skip > > * bat-adln-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip- > > suspend.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +3 other tests skip > > * fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip- > > suspend.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) +4 other tests skip > > > > * igt@kms_vrr@flipline: > > > > * bat-dg2-14: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2- > > 14/igt@kms_vrr@flipline.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> ) +4 > > other tests skip > > > > * igt@kms_vrr@max-min: > > > > * bat-adlm-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max- > > min.html> (i915#9900 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9900> ) +9 other tests skip > > * bat-arls-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max- > > min.html> (i915#8808 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/8808> ) +8 other tests skip > > * bat-arls-3: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max- > > min.html> (i915#8808 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/8808> ) +7 other tests skip > > * bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max- > > min.html> (i915#8808 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/8808> / i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/9906> ) +3 other tests skip > > > > * igt@kms_vrr@negative-basic: > > > > * bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative- > > basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) > > * bat-adls-6: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative- > > basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/- > > /issues/3555> ) > > > > * igt@kms_vrr@seamless-rr-switch-drrs: > > > > * fi-cfl-8700k: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl- > 8700k/igt@kms_vrr@seamless- > > rr-switch-drrs.html> +9 other tests skip > > * fi-blb-e6850: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb- > e6850/igt@kms_vrr@seamless- > > rr-switch-drrs.html> +9 other tests skip > > * bat-dg2-14: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless- > > rr-switch-drrs.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 > > other tests skip > > * fi-bsw-nick: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless- > > rr-switch-drrs.html> +9 other tests skip > > * bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr- > > switch-drrs.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 > > other tests skip > > > > * igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > > * bat-dg2-9: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless- > rr- > > switch-virtual.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197> ) +9 > > other tests skip > > * fi-kbl-x1275: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl- > x1275/igt@kms_vrr@seamless- > > rr-switch-virtual.html> +9 other tests skip > > * bat-adlp-11: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp- > 11/igt@kms_vrr@seamless- > > rr-switch-virtual.html> (i915#10470 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> ) +2 > > other tests skip > > * fi-cfl-8109u: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl- > 8109u/igt@kms_vrr@seamless- > > rr-switch-virtual.html> +9 other tests skip > > * fi-ilk-650: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr- > > switch-virtual.html> +9 other tests skip > > > > * igt@kms_vrr@seamless-rr-switch-vrr: > > > > * bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless- > rr- > > switch-vrr.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +1 > > other test skip > > * bat-adls-6: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless- > rr- > > switch-vrr.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +1 > > other test skip > > * bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr- > > switch-vrr.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 > > other tests skip > > * fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl- > 11600/igt@kms_vrr@seamless- > > rr-switch-vrr.html> (i915#9906 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906> ) +3 > > other tests skip > > * bat-arls-2: NOTRUN -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless- > rr- > > switch-vrr.html> (i915#8808 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> ) +2 > > other tests skip > > > > {name}: This element is suppressed. This means it is ignored when > > computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > > > Build changes > > > > > > * CI: CI-20190529 -> None > > * IGT: IGT_7838 -> IGTPW_11108 > > > > CI-20190529: 20190529 > > CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ > > git://anongit.freedesktop.org/gfx-ci/linux > > <http://anongit.freedesktop.org/gfx-ci/linux> > > IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ > > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git> > > IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ > > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git> ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-09 16:23 ` Manasi Navare 2024-05-10 7:35 ` Saarinen, Jani @ 2024-05-10 10:59 ` Golani, Mitulkumar Ajitkumar 2024-05-10 12:32 ` Saarinen, Jani 1 sibling, 1 reply; 44+ messages in thread From: Golani, Mitulkumar Ajitkumar @ 2024-05-10 10:59 UTC (permalink / raw) To: Manasi Navare Cc: igt-dev@lists.freedesktop.org, Saarinen, Jani, Modem, Bhanuprakash, Sean Paul, Drew Davenport, I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 20738 bytes --] Hi @Manasi Navare<mailto:navaremanasi@chromium.org> Hi there, Seems like following subtests were skipped: negative-basic(TEST_NEGATIVE) , seamless-rr-switch-vrr (Flag: TEST_SEAMLESS_VRR) , seamless-rr-switch-drrs (Flag: TEST_SEAMLESS_DRRS) negative-basic: This test is designed for non-VRR panels. seamless-rr-switch-vrr: Specifically for eDP configurations with VRR. seamless-rr-switch-drrs: Also eDP-specific, for DRRS. These skips were expected as a DP panel is connected on these machine Thanks Mitul From: Manasi Navare <navaremanasi@chromium.org> Sent: Thursday, May 9, 2024 9:54 PM To: Saarinen, Jani <jani.saarinen@intel.com>; Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Sean Paul <seanpaul@chromium.org>; Drew Davenport <ddavenport@chromium.org>; I915-ci-infra@lists.freedesktop.org Cc: igt-dev@lists.freedesktop.org Subject: Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Hi Jani, Looks like all the VRR basic legacy tests are skipping as well, do none of these devices have a VRR sink connected? It is expected to skip in that case. I will do some local testing on my device here and confirm. @Bhanuprakash Modem<mailto:bhanuprakash.modem@intel.com> , are these vrr basic skips expected? Regards Manasi On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani <jani.saarinen@intel.com<mailto:jani.saarinen@intel.com>> wrote: Hi Manasi Are those new results expected skips and thus issue can be reported ? From: igt-dev <igt-dev-bounces@lists.freedesktop.org<mailto:igt-dev-bounces@lists.freedesktop.org>> On Behalf Of Patchwork Sent: Tuesday, 7 May 2024 22.52 To: Manasi Navare <navaremanasi@chromium.org<mailto:navaremanasi@chromium.org>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patch Details Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL: https://patchwork.freedesktop.org/series/132866/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 Summary FAILURE Serious unknown changes coming with IGTPW_11108 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108, please notify your bug team ('I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_11108: IGT changes Possible regressions * igt@kms_vrr@max-min@pipe-a-dp-1: * bat-adls-6: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html> * igt@kms_vrr@seamless-rr-switch-virtual (NEW): * bat-arls-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-arls-4}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-arls-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-arls-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-rpls-4}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-twl-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html> * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: * {bat-apl-1}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html> * igt@kms_vrr@seamless-rr-switch-vrr: * {bat-twl-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> +2 other tests skip New tests New tests have been introduced between CI_DRM_14723 and IGTPW_11108: New IGT tests (1) * igt@kms_vrr@seamless-rr-switch-virtual: * Statuses : 38 skip(s) * Exec time: [0.0, 0.00] s Known issues Here are the changes found in IGTPW_11108 that come from known issues: IGT changes Issues hit * igt@debugfs_test@basic-hwmon: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html> (i915#9318<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) * igt@fbdev@info: * bat-kbl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> (i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) * igt@gem_huc_copy@huc-copy: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * igt@gem_lmem_swapping@parallel-random-engines: * bat-kbl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> +49 other tests skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * igt@i915_pm_rpm@module-reload: * bat-adlp-6: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> (i915#9427<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427>) +2 other tests dmesg-warn * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip * igt@kms_dsc@dsc-basic: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9886<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886>) * igt@kms_force_connector_basic@force-load-detect: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html> * igt@kms_psr@psr-primary-page-flip: * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html> +20 other tests skip * igt@kms_vrr@flip-basic: * bat-atsm-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html> (i915#6078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078>) +9 other tests skip * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-ivb-3770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +3 other tests skip * fi-elk-e7500: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-dg2-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip * fi-kbl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@flip-basic-fastset: * fi-pnv-d510: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-kbl-7567u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-cfl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-mtlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9792<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792>) +9 other tests skip * bat-adlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * igt@kms_vrr@flip-suspend: * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * bat-adlp-11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html> (i915#10470<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / i915#10501<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501>) +6 other tests skip * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@flipline: * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@max-min: * bat-adlm-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html> (i915#9900<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900>) +9 other tests skip * bat-arls-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +8 other tests skip * bat-arls-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +7 other tests skip * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * igt@kms_vrr@negative-basic: * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_vrr@seamless-rr-switch-drrs: * fi-cfl-8700k: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * fi-blb-e6850: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * igt@kms_vrr@seamless-rr-switch-virtual (NEW): * bat-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip * fi-kbl-x1275: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * bat-adlp-11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#10470<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470>) +2 other tests skip * fi-cfl-8109u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * fi-ilk-650: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * igt@kms_vrr@seamless-rr-switch-vrr: * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * bat-arls-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +2 other tests skip {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 142660 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-10 10:59 ` Golani, Mitulkumar Ajitkumar @ 2024-05-10 12:32 ` Saarinen, Jani 2024-05-13 19:05 ` Manasi Navare 0 siblings, 1 reply; 44+ messages in thread From: Saarinen, Jani @ 2024-05-10 12:32 UTC (permalink / raw) To: Golani, Mitulkumar Ajitkumar, Manasi Navare Cc: igt-dev@lists.freedesktop.org, Modem, Bhanuprakash, Sean Paul, Drew Davenport, I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 21731 bytes --] Hi, Also this was done https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11077 as BAT issues were re-reported, waiting for shards now Would be good to understand is this is real issue ? From: Golani, Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com> Sent: Friday, 10 May 2024 14.00 To: Manasi Navare <navaremanasi@chromium.org> Cc: igt-dev@lists.freedesktop.org; Saarinen, Jani <jani.saarinen@intel.com>; Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Sean Paul <seanpaul@chromium.org>; Drew Davenport <ddavenport@chromium.org>; I915-ci-infra@lists.freedesktop.org Subject: RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Hi @Manasi Navare<mailto:navaremanasi@chromium.org> Hi there, Seems like following subtests were skipped: negative-basic(TEST_NEGATIVE) , seamless-rr-switch-vrr (Flag: TEST_SEAMLESS_VRR) , seamless-rr-switch-drrs (Flag: TEST_SEAMLESS_DRRS) negative-basic: This test is designed for non-VRR panels. seamless-rr-switch-vrr: Specifically for eDP configurations with VRR. seamless-rr-switch-drrs: Also eDP-specific, for DRRS. These skips were expected as a DP panel is connected on these machine Thanks Mitul From: Manasi Navare <navaremanasi@chromium.org<mailto:navaremanasi@chromium.org>> Sent: Thursday, May 9, 2024 9:54 PM To: Saarinen, Jani <jani.saarinen@intel.com<mailto:jani.saarinen@intel.com>>; Modem, Bhanuprakash <bhanuprakash.modem@intel.com<mailto:bhanuprakash.modem@intel.com>>; Sean Paul <seanpaul@chromium.org<mailto:seanpaul@chromium.org>>; Drew Davenport <ddavenport@chromium.org<mailto:ddavenport@chromium.org>>; I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Hi Jani, Looks like all the VRR basic legacy tests are skipping as well, do none of these devices have a VRR sink connected? It is expected to skip in that case. I will do some local testing on my device here and confirm. @Bhanuprakash Modem<mailto:bhanuprakash.modem@intel.com> , are these vrr basic skips expected? Regards Manasi On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani <jani.saarinen@intel.com<mailto:jani.saarinen@intel.com>> wrote: Hi Manasi Are those new results expected skips and thus issue can be reported ? From: igt-dev <igt-dev-bounces@lists.freedesktop.org<mailto:igt-dev-bounces@lists.freedesktop.org>> On Behalf Of Patchwork Sent: Tuesday, 7 May 2024 22.52 To: Manasi Navare <navaremanasi@chromium.org<mailto:navaremanasi@chromium.org>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patch Details Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL: https://patchwork.freedesktop.org/series/132866/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 Summary FAILURE Serious unknown changes coming with IGTPW_11108 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108, please notify your bug team ('I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_11108: IGT changes Possible regressions * igt@kms_vrr@max-min@pipe-a-dp-1: * bat-adls-6: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html> * igt@kms_vrr@seamless-rr-switch-virtual (NEW): * bat-arls-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-arls-4}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-arls-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-arls-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-rpls-4}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * {bat-twl-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html> * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html> * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: * {bat-apl-1}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html> * igt@kms_vrr@seamless-rr-switch-vrr: * {bat-twl-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> +2 other tests skip New tests New tests have been introduced between CI_DRM_14723 and IGTPW_11108: New IGT tests (1) * igt@kms_vrr@seamless-rr-switch-virtual: * Statuses : 38 skip(s) * Exec time: [0.0, 0.00] s Known issues Here are the changes found in IGTPW_11108 that come from known issues: IGT changes Issues hit * igt@debugfs_test@basic-hwmon: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html> (i915#9318<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) * igt@fbdev@info: * bat-kbl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> (i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) * igt@gem_huc_copy@huc-copy: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * igt@gem_lmem_swapping@parallel-random-engines: * bat-kbl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> +49 other tests skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * igt@i915_pm_rpm@module-reload: * bat-adlp-6: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> (i915#9427<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427>) +2 other tests dmesg-warn * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip * igt@kms_dsc@dsc-basic: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9886<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886>) * igt@kms_force_connector_basic@force-load-detect: * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html> * igt@kms_psr@psr-primary-page-flip: * fi-glk-j4005: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html> +20 other tests skip * igt@kms_vrr@flip-basic: * bat-atsm-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html> (i915#6078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078>) +9 other tests skip * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-ivb-3770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +3 other tests skip * fi-elk-e7500: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-dg2-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip * fi-kbl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html> +9 other tests skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@flip-basic-fastset: * fi-pnv-d510: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-kbl-7567u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-cfl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip * bat-mtlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9792<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792>) +9 other tests skip * bat-adlp-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * igt@kms_vrr@flip-suspend: * bat-rplp-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * bat-dg1-7: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * bat-adlp-11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html> (i915#10470<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / i915#10501<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501>) +6 other tests skip * bat-adln-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@flipline: * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@max-min: * bat-adlm-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html> (i915#9900<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900>) +9 other tests skip * bat-arls-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +8 other tests skip * bat-arls-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +7 other tests skip * bat-mtlp-8: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * igt@kms_vrr@negative-basic: * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_vrr@seamless-rr-switch-drrs: * fi-cfl-8700k: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * fi-blb-e6850: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * bat-dg2-14: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip * bat-jsl-3: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * igt@kms_vrr@seamless-rr-switch-virtual (NEW): * bat-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip * fi-kbl-x1275: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * bat-adlp-11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#10470<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470>) +2 other tests skip * fi-cfl-8109u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * fi-ilk-650: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip * igt@kms_vrr@seamless-rr-switch-vrr: * bat-adlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * bat-adls-6: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * bat-jsl-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip * bat-arls-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +2 other tests skip {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 148851 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-10 12:32 ` Saarinen, Jani @ 2024-05-13 19:05 ` Manasi Navare 2024-05-17 13:09 ` Juha-Pekka Heikkila 0 siblings, 1 reply; 44+ messages in thread From: Manasi Navare @ 2024-05-13 19:05 UTC (permalink / raw) To: Saarinen, Jani Cc: Golani, Mitulkumar Ajitkumar, igt-dev@lists.freedesktop.org, Modem, Bhanuprakash, Sean Paul, Drew Davenport, I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 24399 bytes --] Hi Jani, Bhanu, I have retested this on my end and it runs as expected with VRR capable edp and DP. Could you please help getting this merged? We would like to have this run as part of CI and our Chrome automation tests for testing seamless virtual modes with VRR fastset framework. Regards Manasi On Fri, May 10, 2024 at 5:32 AM Saarinen, Jani <jani.saarinen@intel.com> wrote: > Hi, > > Also this was done > https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11077 as BAT > issues were re-reported, waiting for shards now > > Would be good to understand is this is real issue ? > > > > *From:* Golani, Mitulkumar Ajitkumar < > mitulkumar.ajitkumar.golani@intel.com> > *Sent:* Friday, 10 May 2024 14.00 > *To:* Manasi Navare <navaremanasi@chromium.org> > *Cc:* igt-dev@lists.freedesktop.org; Saarinen, Jani < > jani.saarinen@intel.com>; Modem, Bhanuprakash < > bhanuprakash.modem@intel.com>; Sean Paul <seanpaul@chromium.org>; Drew > Davenport <ddavenport@chromium.org>; I915-ci-infra@lists.freedesktop.org > *Subject:* RE: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode > (rev3) > > > > Hi @Manasi Navare <navaremanasi@chromium.org> > > > Hi there, > > > > Seems like following subtests were skipped: > > > negative-basic(TEST_NEGATIVE) , seamless-rr-switch-vrr (Flag: > TEST_SEAMLESS_VRR) , seamless-rr-switch-drrs (Flag: TEST_SEAMLESS_DRRS) > > negative-basic: This test is designed for non-VRR panels. > > seamless-rr-switch-vrr: Specifically for eDP configurations with VRR. > > seamless-rr-switch-drrs: Also eDP-specific, for DRRS. > > > These skips were expected as a DP panel is connected on these machine > > Thanks > Mitul > > *From:* Manasi Navare <navaremanasi@chromium.org> > *Sent:* Thursday, May 9, 2024 9:54 PM > *To:* Saarinen, Jani <jani.saarinen@intel.com>; Modem, Bhanuprakash < > bhanuprakash.modem@intel.com>; Sean Paul <seanpaul@chromium.org>; Drew > Davenport <ddavenport@chromium.org>; I915-ci-infra@lists.freedesktop.org > *Cc:* igt-dev@lists.freedesktop.org > *Subject:* Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode > (rev3) > > > > Hi Jani, > > > > Looks like all the VRR basic legacy tests are skipping as well, do none of > these devices have a VRR sink connected? > > It is expected to skip in that case. I will do some local testing on my > device here and confirm. > > @Bhanuprakash Modem <bhanuprakash.modem@intel.com> , are these vrr basic > skips expected? > > > > Regards > > Manasi > > > > On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani <jani.saarinen@intel.com> > wrote: > > Hi Manasi > > Are those new results expected skips and thus issue can be reported ? > > > > *From:* igt-dev <igt-dev-bounces@lists.freedesktop.org> *On Behalf Of * > Patchwork > *Sent:* Tuesday, 7 May 2024 22.52 > *To:* Manasi Navare <navaremanasi@chromium.org> > *Cc:* igt-dev@lists.freedesktop.org > *Subject:* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode > (rev3) > > > > *Patch Details* > > *Series:* > > series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless > modeset to a virtual LRR mode (rev3) > > *URL:* > > https://patchwork.freedesktop.org/series/132866/ > > *State:* > > failure > > *Details:* > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_11108 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11108, please notify your bug team (' > I915-ci-infra@lists.freedesktop.org') to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > Participating hosts (41 -> 40) > > Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 > Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_11108: > IGT changes Possible regressions > > - igt@kms_vrr@max-min@pipe-a-dp-1: > > > - bat-adls-6: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html> > > > - igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > - bat-arls-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html> > - {bat-arls-4}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-arls-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-arls-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html> > - {bat-rpls-4}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - {bat-twl-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html> > - fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html> > - fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html> > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > - igt@i915_module_load@load: > > > - {bat-apl-1}: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html> > > > - igt@kms_vrr@seamless-rr-switch-vrr: > > > - {bat-twl-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> > +2 other tests skip > > New tests > > New tests have been introduced between CI_DRM_14723 and IGTPW_11108: > New IGT tests (1) > > - igt@kms_vrr@seamless-rr-switch-virtual: > > > - Statuses : 38 skip(s) > - Exec time: [0.0, 0.00] s > > Known issues > > Here are the changes found in IGTPW_11108 that come from known issues: > IGT changes Issues hit > > - igt@debugfs_test@basic-hwmon: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html> > (i915#9318 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) > > > - igt@fbdev@info: > > > - bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> > (i915#1849 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) > > > - igt@gem_huc_copy@huc-copy: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) > - fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) > > > - igt@gem_lmem_swapping@parallel-random-engines: > > > - bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> > +49 other tests skip > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 > other tests skip > - fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 > other tests skip > > > - igt@i915_pm_rpm@module-reload: > > > - bat-adlp-6: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> > (i915#9427 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427>) +2 > other tests dmesg-warn > > > - igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 > other test skip > > > - igt@kms_dsc@dsc-basic: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#9886 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886>) > > > - igt@kms_force_connector_basic@force-load-detect: > > > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html> > > > - igt@kms_psr@psr-primary-page-flip: > > > - fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html> > +20 other tests skip > > > - igt@kms_vrr@flip-basic: > > > - bat-atsm-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html> > (i915#6078 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078>) +9 > other tests skip > - bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 > other tests skip > - fi-ivb-3770: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html> > +9 other tests skip > - bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +3 > other tests skip > - fi-elk-e7500: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html> > +9 other tests skip > - bat-dg2-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html> > (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 > other tests skip > - fi-kbl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html> > +9 other tests skip > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > > > - igt@kms_vrr@flip-basic-fastset: > > > - fi-pnv-d510: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html> > +9 other tests skip > - bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-kbl-7567u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html> > +9 other tests skip > - bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 > other tests skip > - bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 > other tests skip > - fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-cfl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html> > +9 other tests skip > - bat-mtlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html> > (i915#9792 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792>) +9 > other tests skip > - bat-adlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 > other test skip > > > - igt@kms_vrr@flip-suspend: > > > - bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 > other tests skip > - fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > - bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > - bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html> > (i915#10470 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / > i915#10501 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501>) +6 > other tests skip > - bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 > other tests skip > - fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > > > - igt@kms_vrr@flipline: > > > - bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 > other tests skip > > > - igt@kms_vrr@max-min: > > > - bat-adlm-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html> > (i915#9900 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900>) +9 > other tests skip > - bat-arls-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +8 > other tests skip > - bat-arls-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +7 > other tests skip > - bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / > i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > > > - igt@kms_vrr@negative-basic: > > > - bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > - bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > > > - igt@kms_vrr@seamless-rr-switch-drrs: > > > - fi-cfl-8700k: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html> > +9 other tests skip > - fi-blb-e6850: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html> > +9 other tests skip > - bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-bsw-nick: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html> > +9 other tests skip > - bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > > > - igt@kms_vrr@seamless-rr-switch-virtual (NEW): > > > - bat-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 > other tests skip > - fi-kbl-x1275: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html> > +9 other tests skip > - bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#10470 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470>) +2 > other tests skip > - fi-cfl-8109u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html> > +9 other tests skip > - fi-ilk-650: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html> > +9 other tests skip > > > - igt@kms_vrr@seamless-rr-switch-vrr: > > > - bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 > other test skip > - bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 > other test skip > - bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 > other tests skip > - bat-arls-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +2 > other tests skip > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > Build changes > > - CI: CI-20190529 -> None > - IGT: IGT_7838 -> IGTPW_11108 > > CI-20190529: 20190529 > CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > [-- Attachment #2: Type: text/html, Size: 42246 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-05-13 19:05 ` Manasi Navare @ 2024-05-17 13:09 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 44+ messages in thread From: Juha-Pekka Heikkila @ 2024-05-17 13:09 UTC (permalink / raw) To: Manasi Navare, Saarinen, Jani Cc: Golani, Mitulkumar Ajitkumar, igt-dev@lists.freedesktop.org, Modem, Bhanuprakash, Sean Paul, Drew Davenport, I915-ci-infra@lists.freedesktop.org Hi Manasi, I merged your patch. /Juha-Pekka On 13.5.2024 22.05, Manasi Navare wrote: > Hi Jani, Bhanu, > > I have retested this on my end and it runs as expected with VRR capable > edp and DP. > Could you please help getting this merged? We would like to have this > run as part of CI and our Chrome automation tests for testing seamless > virtual modes with VRR fastset framework. > > Regards > Manasi > > On Fri, May 10, 2024 at 5:32 AM Saarinen, Jani <jani.saarinen@intel.com > <mailto:jani.saarinen@intel.com>> wrote: > > Hi,____ > > Also this was done > https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11077> as > BAT issues were re-reported, waiting for shards now ____ > > Would be good to understand is this is real issue ? ____ > > __ __ > > *From:*Golani, Mitulkumar Ajitkumar > <mitulkumar.ajitkumar.golani@intel.com > <mailto:mitulkumar.ajitkumar.golani@intel.com>> > *Sent:* Friday, 10 May 2024 14.00 > *To:* Manasi Navare <navaremanasi@chromium.org > <mailto:navaremanasi@chromium.org>> > *Cc:* igt-dev@lists.freedesktop.org > <mailto:igt-dev@lists.freedesktop.org>; Saarinen, Jani > <jani.saarinen@intel.com <mailto:jani.saarinen@intel.com>>; Modem, > Bhanuprakash <bhanuprakash.modem@intel.com > <mailto:bhanuprakash.modem@intel.com>>; Sean Paul > <seanpaul@chromium.org <mailto:seanpaul@chromium.org>>; Drew > Davenport <ddavenport@chromium.org > <mailto:ddavenport@chromium.org>>; > I915-ci-infra@lists.freedesktop.org > <mailto:I915-ci-infra@lists.freedesktop.org> > *Subject:* RE: ✗Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR > mode (rev3)____ > > __ __ > > Hi @Manasi Navare <mailto:navaremanasi@chromium.org>____ > > > Hi there,____ > > __ __ > > Seems like following subtests were skipped:____ > > > negative-basic(TEST_NEGATIVE) , seamless-rr-switch-vrr (Flag: > TEST_SEAMLESS_VRR) , seamless-rr-switch-drrs (Flag: TEST_SEAMLESS_DRRS) > > negative-basic: This test is designed for non-VRR panels.____ > > seamless-rr-switch-vrr: Specifically for eDP configurations with > VRR.____ > > seamless-rr-switch-drrs: Also eDP-specific, for DRRS.____ > > > These skips were expected as a DP panel is connected on these machine > > Thanks > Mitul____ > > *From:*Manasi Navare <navaremanasi@chromium.org > <mailto:navaremanasi@chromium.org>> > *Sent:* Thursday, May 9, 2024 9:54 PM > *To:* Saarinen, Jani <jani.saarinen@intel.com > <mailto:jani.saarinen@intel.com>>; Modem, Bhanuprakash > <bhanuprakash.modem@intel.com > <mailto:bhanuprakash.modem@intel.com>>; Sean Paul > <seanpaul@chromium.org <mailto:seanpaul@chromium.org>>; Drew > Davenport <ddavenport@chromium.org > <mailto:ddavenport@chromium.org>>; > I915-ci-infra@lists.freedesktop.org > <mailto:I915-ci-infra@lists.freedesktop.org> > *Cc:* igt-dev@lists.freedesktop.org > <mailto:igt-dev@lists.freedesktop.org> > *Subject:* Re: ✗Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR > mode (rev3)____ > > __ __ > > Hi Jani,____ > > __ __ > > Looks like all the VRR basic legacy tests are skipping as well, do > none of these devices have a VRR sink connected?____ > > It is expected to skip in that case. I will do some local testing on > my device here and confirm.____ > > @Bhanuprakash Modem <mailto:bhanuprakash.modem@intel.com> , are > these vrr basic skips expected?____ > > __ __ > > Regards____ > > Manasi____ > > __ __ > > On Tue, May 7, 2024 at 11:33 PM Saarinen, Jani > <jani.saarinen@intel.com <mailto:jani.saarinen@intel.com>> wrote:____ > > Hi Manasi____ > > Are those new results expected skips and thus issue can be > reported ? ____ > > ____ > > *From:*igt-dev <igt-dev-bounces@lists.freedesktop.org > <mailto:igt-dev-bounces@lists.freedesktop.org>> *On Behalf Of > *Patchwork > *Sent:* Tuesday, 7 May 2024 22.52 > *To:* Manasi Navare <navaremanasi@chromium.org > <mailto:navaremanasi@chromium.org>> > *Cc:* igt-dev@lists.freedesktop.org > <mailto:igt-dev@lists.freedesktop.org> > *Subject:* ✗Fi.CI.BAT: failure for series starting with [v3,1/2] > tests/kms_vrr: Add a subtest for seamless modeset to a virtual > LRR mode (rev3)____ > > ____ > > *Patch Details*____ > > *Series:*____ > > > > series starting with [v3,1/2] tests/kms_vrr: Add a subtest for > seamless modeset to a virtual LRR mode (rev3)____ > > *URL:*____ > > > > https://patchwork.freedesktop.org/series/132866/ > <https://patchwork.freedesktop.org/series/132866/>____ > > *State:*____ > > > > failure____ > > *Details:*____ > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html>____ > > > CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108____ > > > Summary____ > > *FAILURE*____ > > Serious unknown changes coming with IGTPW_11108 absolutely need > to be > verified manually.____ > > If you think the reported changes have nothing to do with the > changes > introduced in IGTPW_11108, please notify your bug team > ('I915-ci-infra@lists.freedesktop.org > <mailto:I915-ci-infra@lists.freedesktop.org>') to allow them > to document this new failure mode, which will reduce false > positives in CI.____ > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html>____ > > > Participating hosts (41 -> 40)____ > > Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 > Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 ____ > > > Possible new issues____ > > Here are the unknown changes that may have been introduced in > IGTPW_11108:____ > > > IGT changes____ > > > Possible regressions____ > > * igt@kms_vrr@max-min@pipe-a-dp-1:____ > > o bat-adls-6: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html>____ > > * igt@kms_vrr@seamless-rr-switch-virtual (NEW):____ > > o bat-arls-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o {bat-arls-4}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-adlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-arls-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-arls-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o {bat-rpls-4}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o {bat-twl-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > o fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html>____ > > > Suppressed____ > > The following results come from untrusted machines, tests, or > statuses. > They do not affect the overall result.____ > > * igt@i915_module_load@load:____ > > o {bat-apl-1}: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html>____ > > * igt@kms_vrr@seamless-rr-switch-vrr:____ > > o {bat-twl-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> +2 other tests skip____ > > > New tests____ > > New tests have been introduced between CI_DRM_14723 and > IGTPW_11108:____ > > > New IGT tests (1)____ > > * igt@kms_vrr@seamless-rr-switch-virtual:____ > > o Statuses : 38 skip(s)____ > o Exec time: [0.0, 0.00] s____ > > > Known issues____ > > Here are the changes found in IGTPW_11108 that come from known > issues:____ > > > IGT changes____ > > > Issues hit____ > > * igt@debugfs_test@basic-hwmon:____ > > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html> (i915#9318 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>)____ > > * igt@fbdev@info:____ > > o bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html> (i915#1849 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>)____ > > * igt@gem_huc_copy@huc-copy:____ > > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)____ > o fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html> (i915#2190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)____ > > * igt@gem_lmem_swapping@parallel-random-engines:____ > > o bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> +49 other tests skip____ > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip____ > o fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip____ > > * igt@i915_pm_rpm@module-reload:____ > > o bat-adlp-6: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html> (i915#9427 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427>) +2 other tests dmesg-warn____ > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:____ > > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip____ > > * igt@kms_dsc@dsc-basic:____ > > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9886 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886>)____ > > * igt@kms_force_connector_basic@force-load-detect:____ > > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html>____ > > * igt@kms_psr@psr-primary-page-flip:____ > > o fi-glk-j4005: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html> +20 other tests skip____ > > * igt@kms_vrr@flip-basic:____ > > o bat-atsm-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html> (i915#6078 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078>) +9 other tests skip____ > o bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip____ > o fi-ivb-3770: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html> +9 other tests skip____ > o bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +3 other tests skip____ > o fi-elk-e7500: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html> +9 other tests skip____ > o bat-dg2-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip____ > o fi-kbl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html> +9 other tests skip____ > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip____ > > * igt@kms_vrr@flip-basic-fastset:____ > > o fi-pnv-d510: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip____ > o bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > o fi-kbl-7567u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip____ > o bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip____ > o bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip____ > o fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > o fi-cfl-guc: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html> +9 other tests skip____ > o bat-mtlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9792 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792>) +9 other tests skip____ > o bat-adlp-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip____ > > * igt@kms_vrr@flip-suspend:____ > > o bat-rplp-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip____ > o fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip____ > o bat-dg1-7: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip____ > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html> (i915#10470 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470> / i915#10501 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501>) +6 other tests skip____ > o bat-adln-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip____ > o fi-tgl-1115g4: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip____ > > * igt@kms_vrr@flipline:____ > > o bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip____ > > * igt@kms_vrr@max-min:____ > > o bat-adlm-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html> (i915#9900 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900>) +9 other tests skip____ > o bat-arls-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +8 other tests skip____ > o bat-arls-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +7 other tests skip____ > o bat-mtlp-8: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > > * igt@kms_vrr@negative-basic:____ > > o bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)____ > o bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)____ > > * igt@kms_vrr@seamless-rr-switch-drrs:____ > > o fi-cfl-8700k: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip____ > o fi-blb-e6850: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip____ > o bat-dg2-14: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > o fi-bsw-nick: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html> +9 other tests skip____ > o bat-jsl-3: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > > * igt@kms_vrr@seamless-rr-switch-virtual (NEW):____ > > o bat-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +9 other tests skip____ > o fi-kbl-x1275: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip____ > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#10470 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470>) +2 other tests skip____ > o fi-cfl-8109u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip____ > o fi-ilk-650: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html> +9 other tests skip____ > > * igt@kms_vrr@seamless-rr-switch-vrr:____ > > o bat-adlp-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip____ > o bat-adls-6: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip____ > o bat-jsl-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > o fi-rkl-11600: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +3 other tests skip____ > o bat-arls-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#8808 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) +2 other tests skip____ > > {name}: This element is suppressed. This means it is ignored > when computing > the status of the difference (SUCCESS, WARNING, or FAILURE).____ > > > Build changes____ > > * CI: CI-20190529 -> None____ > * IGT: IGT_7838 -> IGTPW_11108____ > > CI-20190529: 20190529 > CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ > git://anongit.freedesktop.org/gfx-ci/linux > <http://anongit.freedesktop.org/gfx-ci/linux> > IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git> > IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git>____ > ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✓ CI.xeBAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (8 preceding siblings ...) 2024-05-07 19:51 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patchwork @ 2024-05-07 20:31 ` Patchwork 2024-05-08 4:54 ` ✗ CI.xeFULL: failure " Patchwork ` (4 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-05-07 20:31 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1222 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : success == Summary == CI Bug Log - changes from XEIGT_7838_BAT -> XEIGTPW_11108_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7838 -> IGTPW_11108 * Linux: xe-1248-0acac79849c88161fcceb75fdc56a438fa158324 -> xe-1250-9ba3c5b827bb4ad0418a182a5e0064edb6196820 IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1248-0acac79849c88161fcceb75fdc56a438fa158324: 0acac79849c88161fcceb75fdc56a438fa158324 xe-1250-9ba3c5b827bb4ad0418a182a5e0064edb6196820: 9ba3c5b827bb4ad0418a182a5e0064edb6196820 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/index.html [-- Attachment #2: Type: text/html, Size: 1781 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (9 preceding siblings ...) 2024-05-07 20:31 ` ✓ CI.xeBAT: success " Patchwork @ 2024-05-08 4:54 ` Patchwork 2024-05-10 10:48 ` ✗ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-05-08 4:54 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 33166 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from XEIGT_7838_full -> XEIGTPW_11108_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11108_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11108_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 -> 1) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_11108_full prevented too many machines from booting. Missing (2): shard-adlp shard-lnl Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11108_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_pm@mocs_suspend_resume}: - shard-dg2-set2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@xe_pm@mocs_suspend_resume.html New tests --------- New tests have been introduced between XEIGT_7838_full and XEIGTPW_11108_full: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11108_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotrebind: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#1548]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@core_hotunplug@hotrebind.html * igt@kms_async_flips@crc: - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#1201]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_async_flips@crc.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#1201] / [Intel XE#316]) +4 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124] / [Intel XE#1201]) +18 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1201] / [Intel XE#346]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_big_joiner@invalid-modeset.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#367]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#787]) +195 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +57 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#1252]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#314]) +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#373]) +19 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][13] ([Intel XE#1204]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][15] ([Intel XE#1214] / [Intel XE#282]) +15 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-dg2-set2: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#1214] / [Intel XE#282]) +8 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-435/igt@kms_cursor_legacy@forked-bo@all-pipes.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_cursor_legacy@forked-bo@all-pipes.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#323]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#703]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1138] / [Intel XE#1201]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_feature_discovery@display-4x.html * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-6-4-mc-ccs-to-4: - shard-dg2-set2: NOTRUN -> [FAIL][22] ([Intel XE#650]) +110 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-6-4-mc-ccs-to-4.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#651]) +62 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#653]) +65 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#1162] / [Intel XE#1214]) +4 other tests dmesg-warn [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: NOTRUN -> [FAIL][27] ([Intel XE#616]) +2 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2-set2: NOTRUN -> [TIMEOUT][30] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [TIMEOUT][31] ([Intel XE#904] / [Intel XE#909]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#305]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1129] / [Intel XE#1201]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][35] ([Intel XE#1214]) +1 other test dmesg-warn [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prop_blob@basic: - shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#1201] / [Intel XE#780]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-463/igt@kms_prop_blob@basic.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_prop_blob@basic.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1122] / [Intel XE#1201]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#929]) +38 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1149] / [Intel XE#1201]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rmfb@close-fd: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#294]) +2 other tests fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_rmfb@close-fd.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1127] / [Intel XE#1201]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#330]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#455]) +40 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#756]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1091] / [Intel XE#1201]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1126] / [Intel XE#1201]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][51] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [PASS][52] -> [TIMEOUT][53] ([Intel XE#1473] / [Intel XE#392]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-433/igt@xe_evict@evict-cm-threads-large.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1600]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][55] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) +1 other test incomplete [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#288]) +42 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#1562]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_reset@gt-reset-stress: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][58] ([Intel XE#1214] / [Intel XE#1638]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#512]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][60] ([Intel XE#1162] / [Intel XE#1214]) +3 other tests dmesg-warn [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-464/igt@xe_module_load@reload.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#977]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@xe_pat@pat-index-xe2.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#1173]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@xe_peer2peer@read.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-464/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#579]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-435/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#944]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@xe_query@multigpu-query-config.html #### Possible fixes #### * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2-set2: [DMESG-WARN][66] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][67] +3 other tests pass [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_flip@basic-plain-flip: - shard-dg2-set2: [INCOMPLETE][68] ([Intel XE#1150] / [Intel XE#1195]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-466/igt@kms_flip@basic-plain-flip.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_flip@basic-plain-flip.html * igt@kms_flip@flip-vs-panning-interruptible@c-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][70] ([Intel XE#1195]) -> [PASS][71] +9 other tests pass [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-436/igt@kms_flip@flip-vs-panning-interruptible@c-hdmi-a6.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_flip@flip-vs-panning-interruptible@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][72] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][73] +2 other tests pass [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: [SKIP][74] ([Intel XE#1201] / [Intel XE#417]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][76] ([Intel XE#361]) -> [PASS][77] +1 other test pass [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_vrr@negative-basic: - shard-dg2-set2: [SKIP][78] ([Intel XE#1201] / [Intel XE#455]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-464/igt@kms_vrr@negative-basic.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_vrr@negative-basic.html #### Warnings #### * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][80] ([Intel XE#1195]) -> [FAIL][81] ([Intel XE#1178]) +3 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: [FAIL][82] ([Intel XE#616]) -> [DMESG-FAIL][83] ([Intel XE#1162]) +1 other test dmesg-fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-464/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][84] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][85] ([Intel XE#1214] / [Intel XE#282]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][86] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][87] ([Intel XE#1201]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: [DMESG-FAIL][88] ([Intel XE#1162]) -> [FAIL][89] ([Intel XE#616]) +1 other test fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-464/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-dg2-set2: [INCOMPLETE][90] ([Intel XE#1195]) -> [TIMEOUT][91] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][92] ([Intel XE#1195]) -> [TIMEOUT][93] ([Intel XE#904] / [Intel XE#909]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-6.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [INCOMPLETE][94] ([Intel XE#1195] / [Intel XE#909]) -> [TIMEOUT][95] ([Intel XE#295] / [Intel XE#380] / [Intel XE#909]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][96] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][97] ([Intel XE#904] / [Intel XE#909]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][98] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][99] ([Intel XE#1201]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-433/igt@kms_psr@fbc-psr-cursor-plane-onoff.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-436/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][100] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][101] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [INCOMPLETE][102] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358] / [Intel XE#569]) -> [DMESG-WARN][103] ([Intel XE#1162] / [Intel XE#1214]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7838/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11108/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1150 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1548 [Intel XE#1562]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1562 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638 [Intel XE#1731]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1731 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294 [Intel XE#295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/295 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380 [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#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650 [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904 [Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_7838 -> IGTPW_11108 * Linux: xe-1248-0acac79849c88161fcceb75fdc56a438fa158324 -> xe-1250-9ba3c5b827bb4ad0418a182a5e0064edb6196820 IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1248-0acac79849c88161fcceb75fdc56a438fa158324: 0acac79849c88161fcceb75fdc56a438fa158324 xe-1250-9ba3c5b827bb4ad0418a182a5e0064edb6196820: 9ba3c5b827bb4ad0418a182a5e0064edb6196820 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-132866v3/index.html [-- Attachment #2: Type: text/html, Size: 43024 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (10 preceding siblings ...) 2024-05-08 4:54 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-05-10 10:48 ` Patchwork 2024-05-10 11:03 ` Patchwork ` (2 subsequent siblings) 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-05-10 10:48 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 18763 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11108 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) ------------------------------ Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11108: ### IGT changes ### #### Possible regressions #### * igt@kms_vrr@max-min@pipe-a-dp-1: - bat-adls-6: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-arls-2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-arls-4}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-6: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-14: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-3: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-3: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-mtlp-8: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adls-6: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-1: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-1: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg1-7: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-9: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-rpls-4}: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adln-1: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-twl-1}: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-rplp-1: NOTRUN -> [SKIP][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-rkl-11600: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-tgl-1115g4: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: - {bat-apl-1}: [PASS][20] -> [ABORT][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html * igt@kms_vrr@seamless-rr-switch-vrr: - {bat-twl-1}: NOTRUN -> [SKIP][22] +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html New tests --------- New tests have been introduced between CI_DRM_14723 and IGTPW_11108: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 38 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_11108 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][23] ([i915#9318]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][24] ([i915#1849]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][25] ([i915#2190]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][26] ([i915#2190]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][27] +49 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-jsl-1: NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-glk-j4005: NOTRUN -> [SKIP][29] ([i915#4613]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][30] -> [DMESG-WARN][31] ([i915#9427]) +2 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][32] ([i915#4103]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][33] ([i915#3555] / [i915#9886]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][34] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][35] +20 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html * igt@kms_vrr@flip-basic: - bat-atsm-1: NOTRUN -> [SKIP][36] ([i915#6078]) +9 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html - bat-jsl-3: NOTRUN -> [SKIP][37] ([i915#3555]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html - fi-ivb-3770: NOTRUN -> [SKIP][38] +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][39] ([i915#3555] / [i915#8808]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html - fi-elk-e7500: NOTRUN -> [SKIP][40] +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html - bat-dg2-8: NOTRUN -> [SKIP][41] ([i915#9197]) +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html - fi-kbl-guc: NOTRUN -> [SKIP][42] +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][43] ([i915#3555]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - fi-pnv-d510: NOTRUN -> [SKIP][44] +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html - bat-dg1-7: NOTRUN -> [SKIP][45] ([i915#9906]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html - fi-kbl-7567u: NOTRUN -> [SKIP][46] +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html - bat-adln-1: NOTRUN -> [SKIP][47] ([i915#9906]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html - bat-rplp-1: NOTRUN -> [SKIP][48] ([i915#9906]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html - fi-tgl-1115g4: NOTRUN -> [SKIP][49] ([i915#9906]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html - fi-cfl-guc: NOTRUN -> [SKIP][50] +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html - bat-mtlp-6: NOTRUN -> [SKIP][51] ([i915#9792]) +9 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html - bat-adlp-6: NOTRUN -> [SKIP][52] ([i915#9906]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - bat-rplp-1: NOTRUN -> [SKIP][53] ([i915#3555]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][54] ([i915#3555]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][55] ([i915#3555]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][56] ([i915#10470] / [i915#10501]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html - bat-adln-1: NOTRUN -> [SKIP][57] ([i915#3555]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][58] ([i915#3555]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - bat-dg2-14: NOTRUN -> [SKIP][59] ([i915#3555]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - bat-adlm-1: NOTRUN -> [SKIP][60] ([i915#9900]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html - bat-arls-1: NOTRUN -> [SKIP][61] ([i915#8808]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html - bat-arls-3: NOTRUN -> [SKIP][62] ([i915#8808]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html - bat-mtlp-8: NOTRUN -> [SKIP][63] ([i915#8808] / [i915#9906]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - bat-adlp-9: NOTRUN -> [SKIP][64] ([i915#3555]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html - bat-adls-6: NOTRUN -> [SKIP][65] ([i915#3555]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - fi-cfl-8700k: NOTRUN -> [SKIP][66] +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-blb-e6850: NOTRUN -> [SKIP][67] +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-dg2-14: NOTRUN -> [SKIP][68] ([i915#9906]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-bsw-nick: NOTRUN -> [SKIP][69] +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-jsl-3: NOTRUN -> [SKIP][70] ([i915#9906]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-dg2-9: NOTRUN -> [SKIP][71] ([i915#9197]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-x1275: NOTRUN -> [SKIP][72] +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-11: NOTRUN -> [SKIP][73] ([i915#10470]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-cfl-8109u: NOTRUN -> [SKIP][74] +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-ilk-650: NOTRUN -> [SKIP][75] +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - bat-adlp-9: NOTRUN -> [SKIP][76] ([i915#9906]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adls-6: NOTRUN -> [SKIP][77] ([i915#9906]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-jsl-1: NOTRUN -> [SKIP][78] ([i915#9906]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - fi-rkl-11600: NOTRUN -> [SKIP][79] ([i915#9906]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-arls-2: NOTRUN -> [SKIP][80] ([i915#8808]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html [-- Attachment #2: Type: text/html, Size: 22329 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (11 preceding siblings ...) 2024-05-10 10:48 ` ✗ Fi.CI.BAT: " Patchwork @ 2024-05-10 11:03 ` Patchwork 2024-05-10 11:45 ` ✓ Fi.CI.BAT: success " Patchwork 2024-05-11 1:11 ` ✗ Fi.CI.IGT: failure " Patchwork 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-05-10 11:03 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 18856 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11108 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) ------------------------------ Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11108: ### IGT changes ### #### Possible regressions #### * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-arls-2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-arls-4}: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-6: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg2-14: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-3: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-3: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-mtlp-8: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adls-6: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-jsl-1: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-1: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-dg1-7: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-9: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-rpls-4}: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adln-1: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-twl-1}: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-rplp-1: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-rkl-11600: NOTRUN -> [SKIP][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-tgl-1115g4: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch-virtual.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: - {bat-apl-1}: [PASS][19] -> [ABORT][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html * igt@kms_vrr@seamless-rr-switch-vrr: - {bat-twl-1}: NOTRUN -> [SKIP][21] +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html New tests --------- New tests have been introduced between CI_DRM_14723 and IGTPW_11108: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 38 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_11108 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][22] ([i915#9318]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][23] ([i915#1849]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][24] ([i915#2190]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][25] ([i915#2190]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][26] +49 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-jsl-1: NOTRUN -> [SKIP][27] ([i915#4613]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-glk-j4005: NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][29] -> [DMESG-WARN][30] ([i915#9427]) +2 other tests dmesg-warn [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][31] ([i915#4103]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#9886]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][33] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][34] +20 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html * igt@kms_vrr@flip-basic: - bat-atsm-1: NOTRUN -> [SKIP][35] ([i915#6078]) +9 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html - bat-jsl-3: NOTRUN -> [SKIP][36] ([i915#3555]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html - fi-ivb-3770: NOTRUN -> [SKIP][37] +9 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][38] ([i915#3555] / [i915#8808]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html - fi-elk-e7500: NOTRUN -> [SKIP][39] +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html - bat-dg2-8: NOTRUN -> [SKIP][40] ([i915#9197]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html - fi-kbl-guc: NOTRUN -> [SKIP][41] +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][42] ([i915#3555]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - fi-pnv-d510: NOTRUN -> [SKIP][43] +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html - bat-dg1-7: NOTRUN -> [SKIP][44] ([i915#9906]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html - fi-kbl-7567u: NOTRUN -> [SKIP][45] +9 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html - bat-adln-1: NOTRUN -> [SKIP][46] ([i915#9906]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html - bat-rplp-1: NOTRUN -> [SKIP][47] ([i915#9906]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html - fi-tgl-1115g4: NOTRUN -> [SKIP][48] ([i915#9906]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html - fi-cfl-guc: NOTRUN -> [SKIP][49] +9 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html - bat-mtlp-6: NOTRUN -> [SKIP][50] ([i915#9792]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html - bat-adlp-6: NOTRUN -> [SKIP][51] ([i915#9906]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - bat-rplp-1: NOTRUN -> [SKIP][52] ([i915#3555]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][53] ([i915#3555]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][54] ([i915#3555]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][55] ([i915#10470] / [i915#10501]) +6 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html - bat-adln-1: NOTRUN -> [SKIP][56] ([i915#3555]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][57] ([i915#3555]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - bat-dg2-14: NOTRUN -> [SKIP][58] ([i915#3555]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - bat-adlm-1: NOTRUN -> [SKIP][59] ([i915#9900]) +9 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html - bat-arls-1: NOTRUN -> [SKIP][60] ([i915#8808]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html - bat-arls-3: NOTRUN -> [SKIP][61] ([i915#8808]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html - bat-mtlp-8: NOTRUN -> [SKIP][62] ([i915#8808] / [i915#9906]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@max-min@pipe-a-dp-1: - bat-adls-6: NOTRUN -> [FAIL][63] ([i915#11077]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html * igt@kms_vrr@negative-basic: - bat-adlp-9: NOTRUN -> [SKIP][64] ([i915#3555]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html - bat-adls-6: NOTRUN -> [SKIP][65] ([i915#3555]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - fi-cfl-8700k: NOTRUN -> [SKIP][66] +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-blb-e6850: NOTRUN -> [SKIP][67] +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-dg2-14: NOTRUN -> [SKIP][68] ([i915#9906]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-bsw-nick: NOTRUN -> [SKIP][69] +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-jsl-3: NOTRUN -> [SKIP][70] ([i915#9906]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-dg2-9: NOTRUN -> [SKIP][71] ([i915#9197]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-x1275: NOTRUN -> [SKIP][72] +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-11: NOTRUN -> [SKIP][73] ([i915#10470]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-cfl-8109u: NOTRUN -> [SKIP][74] +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-ilk-650: NOTRUN -> [SKIP][75] +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - bat-adlp-9: NOTRUN -> [SKIP][76] ([i915#9906]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adls-6: NOTRUN -> [SKIP][77] ([i915#9906]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-jsl-1: NOTRUN -> [SKIP][78] ([i915#9906]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - fi-rkl-11600: NOTRUN -> [SKIP][79] ([i915#9906]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-arls-2: NOTRUN -> [SKIP][80] ([i915#8808]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#11077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11077 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html [-- Attachment #2: Type: text/html, Size: 22409 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (12 preceding siblings ...) 2024-05-10 11:03 ` Patchwork @ 2024-05-10 11:45 ` Patchwork 2024-05-11 1:11 ` ✗ Fi.CI.IGT: failure " Patchwork 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-05-10 11:45 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16730 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : success == Summary == CI Bug Log - changes from CI_DRM_14723 -> IGTPW_11108 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html Participating hosts (41 -> 40) ------------------------------ Additional (3): fi-glk-j4005 bat-kbl-2 bat-jsl-1 Missing (4): bat-dg2-11 bat-mtlp-9 fi-snb-2520m fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11108: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@load: - {bat-apl-1}: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-apl-1/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-apl-1/igt@i915_module_load@load.html * igt@kms_vrr@seamless-rr-switch-vrr: - {bat-twl-1}: NOTRUN -> [SKIP][3] +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-vrr.html New tests --------- New tests have been introduced between CI_DRM_14723 and IGTPW_11108: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 38 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_11108 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][5] ([i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][7] ([i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][8] +49 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-glk-j4005: NOTRUN -> [SKIP][10] ([i915#4613]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][11] -> [DMESG-WARN][12] ([i915#9427]) +2 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][13] ([i915#4103]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9886]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][16] +20 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html * igt@kms_vrr@flip-basic: - bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#6078]) +9 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-atsm-1/igt@kms_vrr@flip-basic.html - bat-jsl-3: NOTRUN -> [SKIP][18] ([i915#3555]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@flip-basic.html - fi-ivb-3770: NOTRUN -> [SKIP][19] +9 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ivb-3770/igt@kms_vrr@flip-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#8808]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@flip-basic.html - fi-elk-e7500: NOTRUN -> [SKIP][21] +9 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-elk-e7500/igt@kms_vrr@flip-basic.html - bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#9197]) +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-8/igt@kms_vrr@flip-basic.html - fi-kbl-guc: NOTRUN -> [SKIP][23] +9 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-guc/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][24] ([i915#3555]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - fi-pnv-d510: NOTRUN -> [SKIP][25] +9 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-pnv-d510/igt@kms_vrr@flip-basic-fastset.html - bat-dg1-7: NOTRUN -> [SKIP][26] ([i915#9906]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-basic-fastset.html - fi-kbl-7567u: NOTRUN -> [SKIP][27] +9 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-7567u/igt@kms_vrr@flip-basic-fastset.html - bat-adln-1: NOTRUN -> [SKIP][28] ([i915#9906]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-basic-fastset.html - bat-rplp-1: NOTRUN -> [SKIP][29] ([i915#9906]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-basic-fastset.html - fi-tgl-1115g4: NOTRUN -> [SKIP][30] ([i915#9906]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-basic-fastset.html - fi-cfl-guc: NOTRUN -> [SKIP][31] +9 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-guc/igt@kms_vrr@flip-basic-fastset.html - bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#9792]) +9 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - bat-rplp-1: NOTRUN -> [SKIP][33] ([i915#3555]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rplp-1/igt@kms_vrr@flip-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][34] ([i915#3555]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@flip-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#3555]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg1-7/igt@kms_vrr@flip-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][36] ([i915#10470] / [i915#10501]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@flip-suspend.html - bat-adln-1: NOTRUN -> [SKIP][37] ([i915#3555]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adln-1/igt@kms_vrr@flip-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][38] ([i915#3555]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-tgl-1115g4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - bat-dg2-14: NOTRUN -> [SKIP][39] ([i915#3555]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - bat-adlm-1: NOTRUN -> [SKIP][40] ([i915#9900]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlm-1/igt@kms_vrr@max-min.html - bat-arls-1: NOTRUN -> [SKIP][41] ([i915#8808]) +8 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@max-min.html - bat-arls-3: NOTRUN -> [SKIP][42] ([i915#8808]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@max-min.html - bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#8808] / [i915#9906]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@max-min@pipe-a-dp-1: - bat-adls-6: NOTRUN -> [FAIL][44] ([i915#11077]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@max-min@pipe-a-dp-1.html * igt@kms_vrr@negative-basic: - bat-adlp-9: NOTRUN -> [SKIP][45] ([i915#3555]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@negative-basic.html - bat-adls-6: NOTRUN -> [SKIP][46] ([i915#3555]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - fi-cfl-8700k: NOTRUN -> [SKIP][47] +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8700k/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-blb-e6850: NOTRUN -> [SKIP][48] +9 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-blb-e6850/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-dg2-14: NOTRUN -> [SKIP][49] ([i915#9906]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-14/igt@kms_vrr@seamless-rr-switch-drrs.html - fi-bsw-nick: NOTRUN -> [SKIP][50] +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-bsw-nick/igt@kms_vrr@seamless-rr-switch-drrs.html - bat-jsl-3: NOTRUN -> [SKIP][51] ([i915#9906]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - bat-dg2-9: NOTRUN -> [SKIP][52] ([i915#9197]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-kbl-x1275: NOTRUN -> [SKIP][53] +9 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-11: NOTRUN -> [SKIP][54] ([i915#10470]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-11/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-cfl-8109u: NOTRUN -> [SKIP][55] +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-cfl-8109u/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-2: NOTRUN -> [SKIP][56] ([i915#9906]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-arls-4}: NOTRUN -> [SKIP][57] ([i915#9906]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - fi-ilk-650: NOTRUN -> [SKIP][58] +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-ilk-650/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-adlp-6: NOTRUN -> [SKIP][59] ([i915#9906]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-3: NOTRUN -> [SKIP][60] ([i915#9906]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-3/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-mtlp-8: NOTRUN -> [SKIP][61] ([i915#9906]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html - bat-arls-1: NOTRUN -> [SKIP][62] ([i915#9906]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-1/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-rpls-4}: NOTRUN -> [SKIP][63] ([i915#9906]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-rpls-4/igt@kms_vrr@seamless-rr-switch-virtual.html - {bat-twl-1}: NOTRUN -> [SKIP][64] ([i915#9906]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-twl-1/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - bat-adlp-9: NOTRUN -> [SKIP][65] ([i915#9906]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adlp-9/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-adls-6: NOTRUN -> [SKIP][66] ([i915#9906]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-adls-6/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-jsl-1: NOTRUN -> [SKIP][67] ([i915#9906]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-jsl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - fi-rkl-11600: NOTRUN -> [SKIP][68] ([i915#9906]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch-vrr.html - bat-arls-2: NOTRUN -> [SKIP][69] ([i915#8808]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/bat-arls-2/igt@kms_vrr@seamless-rr-switch-vrr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#11077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11077 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9427 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7838 -> IGTPW_11108 CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/index.html [-- Attachment #2: Type: text/html, Size: 20698 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare ` (13 preceding siblings ...) 2024-05-10 11:45 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-05-11 1:11 ` Patchwork 14 siblings, 0 replies; 44+ messages in thread From: Patchwork @ 2024-05-11 1:11 UTC (permalink / raw) To: Manasi Navare; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84683 bytes --] == Series Details == Series: series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) URL : https://patchwork.freedesktop.org/series/132866/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14723_full -> IGTPW_11108_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11108_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11108_full, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/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_11108_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-virtual.html New tests --------- New tests have been introduced between CI_DRM_14723_full and IGTPW_11108_full: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch-virtual: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_11108_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][8] ([i915#9618]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@vecs0: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-2/igt@drm_fdinfo@busy-idle@vecs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +9 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][16] -> [FAIL][17] ([i915#6268]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][19] ([i915#7975] / [i915#8213]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-5/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4771]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][24] ([i915#9606]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk6/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][25] ([i915#9606]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][26] ([i915#9606]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: NOTRUN -> [FAIL][27] ([i915#2846]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@gem_exec_fair@basic-none.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4473] / [i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-5/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][31] ([i915#2842]) +3 other tests fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +10 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613] / [i915#7582]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: [PASS][46] -> [FAIL][47] ([i915#10378]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4565]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#284]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +11 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +11 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-7/igt@gem_mmap_wc@close.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-3/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][59] ([i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@gem_pwrite@basic-self.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@gem_pxp@display-protected-crc.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@beyond-eob: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-4/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4885]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][75] +21 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-7/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#2856]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@gen9_exec_parse@bb-start-far.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#2856]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4881]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][81] -> [ABORT][82] ([i915#10131] / [i915#9697]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6621]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#8925]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#6188]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][87] ([i915#9311]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-5/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][88] -> [FAIL][89] ([i915#10031]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html - shard-tglu: NOTRUN -> [INCOMPLETE][90] ([i915#7443]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#7707]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4212]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4212]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#8709]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#8709]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#9531]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#5286]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#5286]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#5286]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5286]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][101] +35 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +9 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3638]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3638]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][106] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#10656]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-5/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#10656]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-6/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#6095]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6095]) +111 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6095]) +77 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#10278]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#6095]) +194 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6095]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#7213]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#7828]) +12 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][118] +53 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#7828]) +9 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#7828]) +6 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#7828]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#7828]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3555]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3299]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3299]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7118] / [i915#9424]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#9424]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_content_protection@lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#9424]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6944] / [i915#7116] / [i915#7118]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7116] / [i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3359]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3359]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3359]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#3359]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3555]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#4103]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4103] / [i915#4213]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4103] / [i915#4213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9227]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#9833]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#8812]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8812]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3840] / [i915#9688]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#3840]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3955]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#1839]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#1839]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#9337]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4881]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9934]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#8381]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3637]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3637]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#2587] / [i915#2672]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#2672] / [i915#3555]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#2672]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2672]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-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-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672] / [i915#3555]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][162] -> [FAIL][163] ([i915#6880]) +2 other tests fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#5354]) +37 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: NOTRUN -> [FAIL][165] ([i915#6880]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#5439]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3458]) +20 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8708]) +12 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#1825]) +35 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#5439]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#10070]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#10070]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#10070]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#10070]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3023]) +22 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3458]) +17 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html - shard-dg2: NOTRUN -> [SKIP][177] ([i915#10433] / [i915#3458]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +11 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4816]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#4816]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#6301]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][187] ([i915#7862]) +1 other test fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][188] ([i915#10647]) +3 other tests fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8806]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#5354] / [i915#9423]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#6953] / [i915#9423]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][192] ([i915#8292]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][193] ([i915#8292]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#9423]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9423]) +11 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9423]) +7 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#5176] / [i915#9423]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#5176] / [i915#9423]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5235]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#5235]) +9 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5235] / [i915#9423]) +11 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#5235]) +15 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#5354]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#5354]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9685]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3361]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9340]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#8430]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9519]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9519]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][211] -> [SKIP][212] ([i915#9519]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9519]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][214] -> [SKIP][215] ([i915#9519]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6524] / [i915#6805]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@kms_prime@d3hot.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#9683]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#9688]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][219] +214 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk2/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#1072] / [i915#9732]) +20 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#9732]) +8 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#1072] / [i915#9732]) +16 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#1072] / [i915#9732]) +19 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#5289]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5190]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5289]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][229] ([i915#10959]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][230] ([i915#8623]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [PASS][231] -> [FAIL][232] ([i915#9196]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@seamless-rr-switch-virtual (NEW): - shard-snb: NOTRUN -> [SKIP][233] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-snb6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9906]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9906]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9906]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#2437] / [i915#9412]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][238] ([i915#2437]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#2437]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][240] ([i915#9100]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#2433]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2433]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][243] -> [FAIL][244] ([i915#4349]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][245] ([i915#4349]) +3 other tests fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#8850]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][247] ([i915#6806]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][248] ([i915#10537] / [i915#5793]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-5/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#8516]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3291] / [i915#3708]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#9917]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#9917]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#9917]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9917]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][256] ([i915#9779]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-glk2/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@sysfs_timeslice_duration@timeout@ccs0: - shard-dg2: NOTRUN -> [ABORT][257] ([i915#9252]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@sysfs_timeslice_duration@timeout@ccs0.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][258] +47 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#4818]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#4818]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#2575]) +13 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-13/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2575]) +9 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2575]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-7/igt@v3d/v3d_submit_csd@bad-multisync-pad.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#7711]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-18/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#7711]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-1/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#7711]) +6 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#2575]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-6/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@ccs0: - shard-dg2: [FAIL][268] ([i915#10086]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@ccs0.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3@ccs0.html * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][270] ([i915#10513] / [i915#1982]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-4/igt@gem_eio@kms.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][272] ([i915#2842]) -> [PASS][273] +3 other tests pass [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][274] ([i915#10378]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg1-16/igt@gem_lmem_swapping@heavy-multi@lmem0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: [FAIL][276] ([i915#10378]) -> [PASS][277] +1 other test pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [INCOMPLETE][278] ([i915#10047]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][280] ([i915#9820]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@debugfs-reader: - shard-dg2: [FAIL][282] ([i915#10031]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-5/igt@i915_suspend@debugfs-reader.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@i915_suspend@debugfs-reader.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-mtlp: [ABORT][284] -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-mtlp-6/igt@kms_big_fb@linear-8bpp-rotate-180.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-mtlp-4/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: [SKIP][286] -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-snb6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-snb6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][288] ([i915#1257]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-6/igt@kms_dp_aux_dev.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_flip_tiling@flip-change-tiling@pipe-d-dp-4-4-rc-ccs-to-4-rc-ccs-cc: - shard-dg2: [INCOMPLETE][290] -> [PASS][291] +1 other test pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-11/igt@kms_flip_tiling@flip-change-tiling@pipe-d-dp-4-4-rc-ccs-to-4-rc-ccs-cc.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_flip_tiling@flip-change-tiling@pipe-d-dp-4-4-rc-ccs-to-4-rc-ccs-cc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: [FAIL][292] ([i915#6880]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][294] ([i915#9519]) -> [PASS][295] +1 other test pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][296] ([i915#9519]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][298] ([i915#9196]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][300] ([i915#9196]) -> [PASS][301] +1 other test pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html #### Warnings #### * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: [SKIP][302] ([i915#4423]) -> [SKIP][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [SKIP][304] ([i915#3458]) -> [SKIP][305] ([i915#10433] / [i915#3458]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][306] ([i915#10433] / [i915#3458]) -> [SKIP][307] ([i915#3458]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg2: [SKIP][308] ([i915#1072] / [i915#9732]) -> [SKIP][309] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-7/igt@kms_psr@fbc-pr-sprite-blt.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-11/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr-cursor-blt: - shard-dg2: [SKIP][310] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][311] ([i915#1072] / [i915#9732]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14723/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-blt.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11108/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-blt.html [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047 [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10086]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10086 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10537 [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#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [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#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [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#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [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#5793]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [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#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [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#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227 [i915#9252]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9252 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [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#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9618 [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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9779 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [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_7838 -> IGTPW_11108 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14723: f58676e47c12a99409b71f7d3bab9f89e14522b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11108: 70f39756b8310ef49e565789055cfab85b5cef58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7838: 155628bc9d0ee70c67c3612462a62f095609f152 @ 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_11108/index.html [-- Attachment #2: Type: text/html, Size: 104795 bytes --] ^ permalink raw reply [flat|nested] 44+ messages in thread
end of thread, other threads:[~2024-05-21 16:04 UTC | newest] Thread overview: 44+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-24 20:13 [PATCH v3 1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Manasi Navare 2024-04-24 20:13 ` [PATCH v3 2/2] HAX: run kms_vrr tests in BAT Manasi Navare 2024-04-24 21:14 ` ✓ CI.xeBAT: success for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode Patchwork 2024-04-24 21:20 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-04-25 7:39 ` [PATCH v3 1/2] " Modem, Bhanuprakash 2024-04-25 7:42 ` Saarinen, Jani 2024-04-25 15:20 ` Manasi Navare 2024-04-26 3:44 ` Modem, Bhanuprakash 2024-04-26 7:48 ` Saarinen, Jani 2024-04-26 19:24 ` Manasi Navare 2024-04-26 19:42 ` Saarinen, Jani 2024-04-26 19:46 ` Manasi Navare 2024-04-26 20:03 ` Saarinen, Jani 2024-04-30 17:03 ` Manasi Navare 2024-05-01 7:32 ` Manasi Navare 2024-05-01 9:27 ` Saarinen, Jani 2024-05-06 19:00 ` Manasi Navare 2024-05-07 13:10 ` Illipilli, TejasreeX 2024-05-07 13:12 ` Saarinen, Jani 2024-05-07 16:51 ` Manasi Navare 2024-05-20 7:54 ` Modem, Bhanuprakash 2024-05-21 4:46 ` Manasi Navare 2024-05-21 5:22 ` Modem, Bhanuprakash 2024-05-21 6:50 ` Saarinen, Jani 2024-05-21 16:04 ` Manasi Navare 2024-04-25 13:55 ` ✗ CI.xeFULL: failure for series starting with [v3,1/2] " Patchwork 2024-04-26 20:57 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev2) Patchwork 2024-04-26 20:59 ` ✓ CI.xeBAT: success " Patchwork 2024-04-27 0:23 ` ✗ CI.xeFULL: failure " Patchwork 2024-05-07 19:51 ` ✗ Fi.CI.BAT: failure for series starting with [v3,1/2] tests/kms_vrr: Add a subtest for seamless modeset to a virtual LRR mode (rev3) Patchwork 2024-05-08 6:33 ` Saarinen, Jani 2024-05-09 16:23 ` Manasi Navare 2024-05-10 7:35 ` Saarinen, Jani 2024-05-10 9:11 ` Saarinen, Jani 2024-05-10 10:59 ` Golani, Mitulkumar Ajitkumar 2024-05-10 12:32 ` Saarinen, Jani 2024-05-13 19:05 ` Manasi Navare 2024-05-17 13:09 ` Juha-Pekka Heikkila 2024-05-07 20:31 ` ✓ CI.xeBAT: success " Patchwork 2024-05-08 4:54 ` ✗ CI.xeFULL: failure " Patchwork 2024-05-10 10:48 ` ✗ Fi.CI.BAT: " Patchwork 2024-05-10 11:03 ` Patchwork 2024-05-10 11:45 ` ✓ Fi.CI.BAT: success " Patchwork 2024-05-11 1:11 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox