* [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
@ 2024-05-28 10:09 Jeevan B
2024-05-28 10:12 ` Modem, Bhanuprakash
` (4 more replies)
0 siblings, 5 replies; 14+ messages in thread
From: Jeevan B @ 2024-05-28 10:09 UTC (permalink / raw)
To: igt-dev; +Cc: bhanuprakash.modem, suraj.kandpal, Jeevan B
Add a new test to validate deep sleep states during extended vblank
scenarios, where two frames are committed simultaneously for a given
time with reduced refresh rate.
v2: dealy of one frame added to simulate extended vblank.
remove vrr related debug checks.
v3: fix typo and add define. (Suraj)
v4: fix structure and add skip if no vrr monitor found. (Bhanu)
v5: remove redundant code and correct delay logic. (Bhanu)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_dc.c | 72 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 7766d34d7..7ce1b7051 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -76,6 +76,10 @@
*
* SUBTEST: dc9-dpms
* Description: This test validates display engine entry to DC9 state
+ *
+ * SUBTEST: deep-pkgc
+ * Description: This test validates display engine entry to PKGC10 state for extended vblank
+ * Functionality: pm_dc
*/
/* DC State Flags */
@@ -89,6 +93,7 @@
#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
#define KMS_POLL_DISABLE 0
#define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
+#define MSECS (1000000ul)
IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
@@ -584,6 +589,64 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
return get_dc_counter(str);
}
+static void test_deep_pkgc_state(data_t *data)
+{
+ unsigned int pre_val = 0, cur_val = 0;
+ time_t start = time(NULL), duration = 2, delay;
+ enum pipe pipe;
+ bool pkgc_flag = false;
+ bool vrr_supported = false, flip = true;
+
+ igt_display_t *display = &data->display;
+ igt_plane_t *primary;
+ igt_output_t *output = NULL;
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ /* Check VRR capabilities before setting up */
+ if (igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
+ igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
+ vrr_supported = true;
+ break;
+ }
+ }
+
+ /* Skip the test if no VRR capable output is found */
+ if (!vrr_supported)
+ igt_skip("No VRR capable output found, skipping the test.\n");
+
+ igt_display_reset(display);
+
+ if (output) {
+ igt_output_set_pipe(output, pipe);
+
+ data->output = output;
+ data->mode = igt_output_get_mode(output);
+ setup_videoplayback(data);
+
+ primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ delay = 1 * (MSECS / (data->mode->vrefresh - 10));
+
+ igt_plane_set_fb(primary, &data->fb_rgb);
+ igt_display_commit(&data->display);
+
+ while (time(NULL) - start < duration) {
+ flip = !flip;
+ igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
+ igt_display_commit(&data->display);
+
+ cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ if (cur_val > pre_val) {
+ pkgc_flag = true;
+ break;
+ }
+ usleep(delay);
+ }
+ }
+ cleanup_dc3co_fbs(data);
+ igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
+}
+
static void test_pkgc_state_dpms(data_t *data)
{
unsigned int timeout_sec = 6;
@@ -687,6 +750,15 @@ igt_main
test_dc_state_psr(&data, CHECK_DC6);
}
+ igt_describe("This test validates display engine entry to PKGC10 state "
+ "during extended vblank");
+ igt_subtest("deep-pkgc") {
+ igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
+ "PC8+ residencies not supported\n");
+ igt_require(intel_display_ver(data.devid) >= 20);
+ test_deep_pkgc_state(&data);
+ }
+
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
2024-05-28 10:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
@ 2024-05-28 10:12 ` Modem, Bhanuprakash
2024-05-28 18:54 ` ✓ CI.xeBAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4) Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 14+ messages in thread
From: Modem, Bhanuprakash @ 2024-05-28 10:12 UTC (permalink / raw)
To: Jeevan B, igt-dev; +Cc: suraj.kandpal
Hi Jeevan,
On 28-05-2024 03:39 pm, Jeevan B wrote:
> Add a new test to validate deep sleep states during extended vblank
> scenarios, where two frames are committed simultaneously for a given
> time with reduced refresh rate.
> v2: dealy of one frame added to simulate extended vblank.
> remove vrr related debug checks.
> v3: fix typo and add define. (Suraj)
> v4: fix structure and add skip if no vrr monitor found. (Bhanu)
> v5: remove redundant code and correct delay logic. (Bhanu)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 72 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 72 insertions(+)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 7766d34d7..7ce1b7051 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -76,6 +76,10 @@
> *
> * SUBTEST: dc9-dpms
> * Description: This test validates display engine entry to DC9 state
> + *
> + * SUBTEST: deep-pkgc
> + * Description: This test validates display engine entry to PKGC10 state for extended vblank
> + * Functionality: pm_dc
> */
>
> /* DC State Flags */
> @@ -89,6 +93,7 @@
> #define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> #define KMS_POLL_DISABLE 0
> #define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
> +#define MSECS (1000000ul)
>
> IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
>
> @@ -584,6 +589,64 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
> return get_dc_counter(str);
> }
>
> +static void test_deep_pkgc_state(data_t *data)
> +{
> + unsigned int pre_val = 0, cur_val = 0;
> + time_t start = time(NULL), duration = 2, delay;
> + enum pipe pipe;
> + bool pkgc_flag = false;
> + bool vrr_supported = false, flip = true;
> +
> + igt_display_t *display = &data->display;
> + igt_plane_t *primary;
> + igt_output_t *output = NULL;
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
> + /* Check VRR capabilities before setting up */
> + if (igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
> + igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
> + vrr_supported = true;
> + break;
> + }
> + }
> +
> + /* Skip the test if no VRR capable output is found */
> + if (!vrr_supported)
> + igt_skip("No VRR capable output found, skipping the test.\n");
> +
> + igt_display_reset(display);
> +
> + if (output) {
Do we really need this check? if vrr_supported check is pass means there
is a valid output available.
Apart from that, overall patch looks good to me. You can use my R-b
after addressing above comment.
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
- Bhanu
> + igt_output_set_pipe(output, pipe);
> +
> + data->output = output;
> + data->mode = igt_output_get_mode(output);
> + setup_videoplayback(data);
> +
> + primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + delay = 1 * (MSECS / (data->mode->vrefresh - 10));
> +
> + igt_plane_set_fb(primary, &data->fb_rgb);
> + igt_display_commit(&data->display);
> +
> + while (time(NULL) - start < duration) {
> + flip = !flip;
> + igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
> + igt_display_commit(&data->display);
> +
> + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + if (cur_val > pre_val) {
> + pkgc_flag = true;
> + break;
> + }
> + usleep(delay);
> + }
> + }
> + cleanup_dc3co_fbs(data);
> + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
> +}
> +
> static void test_pkgc_state_dpms(data_t *data)
> {
> unsigned int timeout_sec = 6;
> @@ -687,6 +750,15 @@ igt_main
> test_dc_state_psr(&data, CHECK_DC6);
> }
>
> + igt_describe("This test validates display engine entry to PKGC10 state "
> + "during extended vblank");
> + igt_subtest("deep-pkgc") {
> + igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> + "PC8+ residencies not supported\n");
> + igt_require(intel_display_ver(data.devid) >= 20);
> + test_deep_pkgc_state(&data);
> + }
> +
> igt_describe("This test validates display engine entry to DC5 state "
> "while all connectors's DPMS property set to OFF");
> igt_subtest("dc5-dpms") {
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ CI.xeBAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
2024-05-28 10:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-05-28 10:12 ` Modem, Bhanuprakash
@ 2024-05-28 18:54 ` Patchwork
2024-05-28 19:04 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-28 18:54 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 919 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
URL : https://patchwork.freedesktop.org/series/134058/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7873_BAT -> XEIGTPW_11202_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7873 -> IGTPW_11202
IGTPW_11202: 11202
IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1353-abaeae202dfb4e361edd660a124e22178340725d: abaeae202dfb4e361edd660a124e22178340725d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/index.html
[-- Attachment #2: Type: text/html, Size: 1464 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Fi.CI.BAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
2024-05-28 10:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-05-28 10:12 ` Modem, Bhanuprakash
2024-05-28 18:54 ` ✓ CI.xeBAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4) Patchwork
@ 2024-05-28 19:04 ` Patchwork
2024-05-28 20:21 ` ✓ CI.xeFULL: " Patchwork
2024-05-29 12:05 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-28 19:04 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 17954 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
URL : https://patchwork.freedesktop.org/series/134058/
State : success
== Summary ==
CI Bug Log - changes from IGT_7873 -> IGTPW_11202
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/index.html
Participating hosts (34 -> 39)
------------------------------
Additional (6): fi-kbl-7567u fi-elk-e7500 bat-jsl-3 bat-dg2-11 bat-mtlp-8 bat-mtlp-6
Missing (1): bat-arls-1
Known issues
------------
Here are the changes found in IGTPW_11202 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-3: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@debugfs_test@basic-hwmon.html
- bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
- bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#1849] / [i915#2582])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@fbdev@info.html
* igt@fbdev@write:
- bat-mtlp-6: NOTRUN -> [SKIP][5] ([i915#2582]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@fbdev@write.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-7567u: NOTRUN -> [SKIP][6] ([i915#2190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html
- bat-jsl-3: NOTRUN -> [SKIP][7] ([i915#2190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- bat-jsl-3: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html
- fi-kbl-7567u: NOTRUN -> [SKIP][10] ([i915#4613]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/fi-kbl-7567u/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-6: NOTRUN -> [SKIP][11] ([i915#4613]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#4083])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@gem_mmap@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#4083])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@gem_mmap@basic.html
- bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#4083])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#4079]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@gem_render_tiled_blits@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#4079]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#4077]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#4077]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4077]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-mtlp-6: NOTRUN -> [SKIP][20] ([i915#4079]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#6621])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@i915_pm_rps@basic-api.html
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#6621])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-mtlp-6: NOTRUN -> [SKIP][23] ([i915#6621])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][24] -> [ABORT][25] ([i915#10594])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][26] ([i915#4212] / [i915#9792]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][27] ([i915#4212]) +7 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][28] ([i915#5190] / [i915#9792])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][29] ([i915#5190])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-mtlp-8: NOTRUN -> [SKIP][30] ([i915#5190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][31] ([i915#4212]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][32] ([i915#4215] / [i915#5190])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][33] ([i915#4103] / [i915#4213]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-3: NOTRUN -> [SKIP][34] ([i915#4103]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#4213]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/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][36] ([i915#9792]) +17 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-7567u: NOTRUN -> [SKIP][37] +11 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/fi-kbl-7567u/igt@kms_dsc@dsc-basic.html
- bat-jsl-3: NOTRUN -> [SKIP][38] ([i915#3555] / [i915#9886])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@kms_dsc@dsc-basic.html
- bat-dg2-11: NOTRUN -> [SKIP][39] ([i915#3555] / [i915#3840])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_dsc@dsc-basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][40] ([i915#3555] / [i915#3840] / [i915#9159])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-mtlp-6: NOTRUN -> [SKIP][41] ([i915#3637] / [i915#9792]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-3: NOTRUN -> [SKIP][42]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
- bat-mtlp-8: NOTRUN -> [SKIP][43]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-11: NOTRUN -> [SKIP][44]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-6: NOTRUN -> [SKIP][45] ([i915#5274] / [i915#9792])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-11: NOTRUN -> [SKIP][46] ([i915#5274])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-8: NOTRUN -> [SKIP][47] ([i915#5274])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][48] ([i915#4342] / [i915#5354] / [i915#9792])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
- fi-elk-e7500: NOTRUN -> [SKIP][49] +24 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][50] ([i915#5354])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
- bat-mtlp-6: NOTRUN -> [SKIP][51] ([i915#5354] / [i915#9792])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-mtlp-6: NOTRUN -> [SKIP][52] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/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][53] ([i915#4077] / [i915#9688])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][54] ([i915#1072] / [i915#9732]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-6: NOTRUN -> [SKIP][55] ([i915#3555] / [i915#8809] / [i915#9792])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-3: NOTRUN -> [SKIP][56] ([i915#3555])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-jsl-3/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-11: NOTRUN -> [SKIP][57] ([i915#3555])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- bat-mtlp-8: NOTRUN -> [SKIP][58] ([i915#3555] / [i915#8809])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][59] ([i915#3708])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
- bat-mtlp-6: NOTRUN -> [SKIP][60] ([i915#3708] / [i915#9792])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-6: NOTRUN -> [SKIP][61] ([i915#3708] / [i915#4077]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][62] ([i915#3708]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][63] ([i915#3708] / [i915#4077]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@prime_vgem@basic-gtt.html
- bat-mtlp-8: NOTRUN -> [SKIP][64] ([i915#3708] / [i915#4077]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- bat-mtlp-6: NOTRUN -> [SKIP][65] ([i915#3708]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-6: NOTRUN -> [SKIP][66] ([i915#10216] / [i915#3708])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-6/igt@prime_vgem@basic-write.html
- bat-dg2-11: NOTRUN -> [SKIP][67] ([i915#3291] / [i915#3708]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-dg2-11/igt@prime_vgem@basic-write.html
- bat-mtlp-8: NOTRUN -> [SKIP][68] ([i915#10216] / [i915#3708])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/bat-mtlp-8/igt@prime_vgem@basic-write.html
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[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#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#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#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[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#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7873 -> IGTPW_11202
CI-20190529: 20190529
CI_DRM_14837: a86e8e1b93dba695cc2f1820a8b4de6a161487e7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11202: 11202
IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/index.html
[-- Attachment #2: Type: text/html, Size: 24001 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ CI.xeFULL: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
2024-05-28 10:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
` (2 preceding siblings ...)
2024-05-28 19:04 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-05-28 20:21 ` Patchwork
2024-05-29 12:05 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-28 20:21 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8513 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
URL : https://patchwork.freedesktop.org/series/134058/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7873_full -> XEIGTPW_11202_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (3 -> 2)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11202_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_dc@deep-pkgc (NEW):
- {shard-lnl}: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_cursor_edge_walk@128x128-top-bottom:
- {shard-lnl}: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7873/shard-lnl-8/igt@kms_cursor_edge_walk@128x128-top-bottom.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-2/igt@kms_cursor_edge_walk@128x128-top-bottom.html
* igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1:
- {shard-lnl}: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7873/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- {shard-lnl}: NOTRUN -> [INCOMPLETE][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-8/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
New tests
---------
New tests have been introduced between XEIGT_7873_full and XEIGTPW_11202_full:
### New IGT tests (1) ###
* igt@kms_pm_dc@deep-pkgc:
- Statuses : 1 fail(s)
- Exec time: [1.81] s
Known issues
------------
Here are the changes found in XEIGTPW_11202_full that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- {shard-lnl}: [FAIL][7] ([Intel XE#1659]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7873/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_pm_dc@dc5-psr:
- {shard-lnl}: [FAIL][9] ([Intel XE#718]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7873/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr@fbc-psr2-suspend:
- {shard-lnl}: [DMESG-WARN][11] ([Intel XE#1830]) -> [PASS][12] +2 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7873/shard-lnl-4/igt@kms_psr@fbc-psr2-suspend.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-4/igt@kms_psr@fbc-psr2-suspend.html
* igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate:
- {shard-lnl}: [DMESG-WARN][13] ([Intel XE#1330]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7873/shard-lnl-5/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/shard-lnl-5/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442
[Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
[Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
[Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* IGT: IGT_7873 -> IGTPW_11202
IGTPW_11202: 11202
IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1353-abaeae202dfb4e361edd660a124e22178340725d: abaeae202dfb4e361edd660a124e22178340725d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11202/index.html
[-- Attachment #2: Type: text/html, Size: 5423 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Fi.CI.IGT: failure for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
2024-05-28 10:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
` (3 preceding siblings ...)
2024-05-28 20:21 ` ✓ CI.xeFULL: " Patchwork
@ 2024-05-29 12:05 ` Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-29 12:05 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100317 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4)
URL : https://patchwork.freedesktop.org/series/134058/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7873_full -> IGTPW_11202_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11202_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11202_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_11202/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_11202_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_dc@deep-pkgc (NEW):
- shard-dg2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-3/igt@kms_pm_dc@deep-pkgc.html
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_pm_dc@deep-pkgc.html
- shard-mtlp: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-1/igt@kms_pm_dc@deep-pkgc.html
New tests
---------
New tests have been introduced between IGT_7873_full and IGTPW_11202_full:
### New IGT tests (1) ###
* igt@kms_pm_dc@deep-pkgc:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_11202_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][10] ([i915#10380])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@api_intel_bb@render-ccs.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#9318])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@debugfs_test@basic-hwmon.html
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#9318])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-7/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#11078])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#11078])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-7/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#11078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#11078]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#11078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][18] ([i915#9408])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) +9 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8414])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-idle.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][22] ([i915#7742]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3281]) +16 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#3936])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-1/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#8562])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [PASS][31] -> [FAIL][32] ([i915#6268])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [PASS][33] -> [FAIL][34] ([i915#6268])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#8555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#5882]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#280])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#280])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][40] ([i915#10030] / [i915#7975] / [i915#8213])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [INCOMPLETE][41] ([i915#10513])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg2: NOTRUN -> [FAIL][42] ([i915#5784])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4771])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4771])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-8/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4812]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture@vecs0-smem:
- shard-mtlp: NOTRUN -> [FAIL][48] ([i915#10386])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@gem_exec_capture@capture@vecs0-smem.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][49] ([i915#9606])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][50] -> [FAIL][51] ([i915#2846])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][53] -> [FAIL][54] ([i915#2842])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][55] ([i915#2842]) +4 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][56] ([i915#2842]) +2 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-glk3/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][57] -> [FAIL][58] ([i915#2842]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-tglu: NOTRUN -> [FAIL][59] ([i915#2842]) +4 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-9/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4473] / [i915#4771]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4812]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3539] / [i915#4852]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3281]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281]) +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3281]) +13 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4537])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4537] / [i915#4812])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4812]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4860])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#2190])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#2190])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-10/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: [PASS][75] -> [FAIL][76] ([i915#10378])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][77] ([i915#4613]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-glk7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4613]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4565])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#284])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#284])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@gem_media_vme.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#284])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4083]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +18 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4083]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +8 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282]) +10 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][89] ([i915#2658])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-3/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-3/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@gem_pxp@create-regular-context-2.html
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#4270]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@display-protected-crc:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#4270]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4270]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3282]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#8411]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#4079]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4885])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4885])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3297]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4880])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3297]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#4958])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-large:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#2856]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-3/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#2527]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#2856]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4881])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][116] -> [INCOMPLETE][117] ([i915#9849])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [INCOMPLETE][118] ([i915#1982] / [i915#9849])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][119] -> [ABORT][120] ([i915#10131] / [i915#10887] / [i915#9820])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#7091])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#8399])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#8399])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-9/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#6590])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6621])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#6621])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#8925])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@i915_pm_rps@thresholds@gt0.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#8925])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#7984])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#6245])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5723])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4212])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#5190])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4212]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4212]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3826])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6228])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#9531])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#5286]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-16bpp-rotate-0:
- shard-mtlp: [PASS][144] -> [FAIL][145] ([i915#5138])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-mtlp-4/igt@kms_big_fb@linear-16bpp-rotate-0.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@kms_big_fb@linear-16bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][146] +27 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3638]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +9 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#3638]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6187])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#5190]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][152] +20 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538]) +7 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#10656])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_big_joiner@basic.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#10656])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#10656]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#10656]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-3/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +103 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#10278]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#6095]) +184 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +23 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-3/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6095]) +39 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#10278])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#10278])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#10278])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#6095]) +67 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#7213] / [i915#9010])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#7213]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#4087]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#7828]) +12 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#7828]) +10 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#7828]) +14 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#7828]) +9 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#7828]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#9424]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3299])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3116])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#7118] / [i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#9424]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#9424])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][184] ([i915#1339] / [i915#7173])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3359]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +13 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8814])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3359]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3359])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3359]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3359]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555]) +8 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555]) +6 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#4103]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#4103])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#9809]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#9067])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#4213])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9833])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9723]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#9723])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#8588])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8812])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3840]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3840] / [i915#9053])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3469])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-5/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#4854])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#4854])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#4854])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9337])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#658])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3637]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#9934]) +11 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3637]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2:
- shard-dg2: NOTRUN -> [FAIL][222] ([i915#2122])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][223] ([i915#2122]) +3 other tests fail
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#2672]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#2672]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#2672]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8810]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: [PASS][231] -> [FAIL][232] ([i915#6880])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-snb: [PASS][233] -> [SKIP][234] +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +7 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#5439]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#5439])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#5439])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/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][239] ([i915#3458]) +18 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#10433] / [i915#3458])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#5354]) +39 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3023]) +38 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#3458]) +24 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#10055])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#10070])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#10070])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#8708]) +30 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][248] +56 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +23 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#1825]) +35 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#1825]) +60 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#6301]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][258] ([i915#7862]) +1 other test fail
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-glk7/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3582]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#8806])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#5354] / [i915#9423])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#9423]) +9 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#9423]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#9423]) +7 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9423]) +7 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#5176] / [i915#9423]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#5235]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#5235] / [i915#9423]) +19 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#5235]) +11 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#5235]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#5235]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#5354])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#9812])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#9685]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9685]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][276] -> [SKIP][277] ([i915#4281])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_dc@deep-pkgc (NEW):
- shard-snb: NOTRUN -> [SKIP][278]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-snb5/igt@kms_pm_dc@deep-pkgc.html
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#3828])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-10/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#8430])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#8430])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-8/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][282] -> [SKIP][283] ([i915#9519]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#9519]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#9519])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#9519]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#4077]) +13 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_pm_rpm@pm-caching.html
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#4077]) +7 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#6524]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#6524] / [i915#6805])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#6524])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#9808]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][293] +57 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-18/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#4348])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#9683]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#9683]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#9683]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#9683]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#9688]) +10 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@psr-basic:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#9732]) +12 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-9/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-no-drrs:
- shard-glk: NOTRUN -> [SKIP][301] +227 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-glk3/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr-primary-render:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +17 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-4/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +32 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#1072] / [i915#9732]) +31 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#4077] / [i915#9688])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@kms_psr@psr2-sprite-mmap-gtt@edp-1.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#4235]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#4884])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#4235]) +2 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#5289])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#5289])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#5289])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#3555]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][314] -> [FAIL][315] ([IGT#2])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_sysfs_edid_timing.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][316] ([i915#9196])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#9906])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8808])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#9906])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#9906])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#2437])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][322] ([i915#2437])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-glk8/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#2437]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#2437] / [i915#9412])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-15/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#2436])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#2436])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#2434])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-5/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#2433])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][329] -> [FAIL][330] ([i915#4349])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#8850])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#8440])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@perf_pmu@faulting-read@gtt.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#3708])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#3708])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#3708] / [i915#4077])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#3291] / [i915#3708])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#3708])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#9917])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#9917])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][340] ([i915#9781])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][341] ([i915#9779])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-3/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-dg1: NOTRUN -> [FAIL][342] ([i915#9779])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-14/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#2575]) +9 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#2575]) +15 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][345] +62 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-2/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#2575]) +18 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@vc4/vc4_label_bo@set-kernel-name:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#7711]) +11 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@vc4/vc4_label_bo@set-kernel-name.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#2575]) +12 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-tglu-4/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#7711]) +6 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#7711]) +9 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-17/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#7711]) +11 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@vc4/vc4_tiling@get-bad-handle.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][352] ([i915#7742]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][354] ([i915#2842]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [FAIL][356] ([i915#10378]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][358] ([i915#5493]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [INCOMPLETE][360] ([i915#1982] / [i915#9820] / [i915#9849]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [SKIP][362] -> [PASS][363] +3 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@i915_module_load@resize-bar.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@i915_module_load@resize-bar.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-dg2: [INCOMPLETE][364] ([i915#10670]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-5/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][366] ([i915#2122]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [FAIL][368] ([i915#6880]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_getfb@getfb-handle-protection:
- shard-dg2: [SKIP][370] ([i915#2575]) -> [PASS][371] +25 other tests pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_getfb@getfb-handle-protection.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_getfb@getfb-handle-protection.html
* igt@kms_plane@pixel-format@pipe-b:
- shard-mtlp: [ABORT][372] -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-6/igt@kms_plane@pixel-format@pipe-b.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][374] ([i915#9519]) -> [PASS][375] +3 other tests pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][376] ([i915#9519]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [FAIL][378] ([i915#9196]) -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-4:
- shard-dg1: [INCOMPLETE][380] ([i915#9508]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg1-18/igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-4.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg1-16/igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-4.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: [SKIP][382] ([i915#2575]) -> [SKIP][383] ([i915#8411])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@api_intel_bb@object-reloc-purge-cache.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg2: [SKIP][384] ([i915#5608]) -> [SKIP][385] ([i915#8414])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@drm_fdinfo@all-busy-check-all.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@drm_fdinfo@all-busy-check-all.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: [SKIP][386] ([i915#2575]) -> [SKIP][387] ([i915#3539] / [i915#4852]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_exec_fair@basic-pace-share.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: [SKIP][388] ([i915#2575]) -> [SKIP][389] ([i915#4812])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_exec_fence@concurrent.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-dg2: [SKIP][390] ([i915#2575]) -> [SKIP][391] ([i915#3281]) +3 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_exec_reloc@basic-write-cpu.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: [SKIP][392] ([i915#2575]) -> [SKIP][393] ([i915#4860])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: [SKIP][394] ([i915#2575]) -> [SKIP][395] ([i915#4083])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: [SKIP][396] ([i915#2575]) -> [SKIP][397] ([i915#3282]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_readwrite@write-bad-handle.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@gem_readwrite@write-bad-handle.html
* igt@gem_tiled_fence_blits@basic:
- shard-dg2: [SKIP][398] ([i915#2575]) -> [SKIP][399] ([i915#4077]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_tiled_fence_blits@basic.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@gem_tiled_fence_blits@basic.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: [SKIP][400] ([i915#2575]) -> [SKIP][401] ([i915#3297])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][402] ([i915#5190]) -> [SKIP][403] ([i915#4538] / [i915#5190]) +2 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2: [SKIP][404] ([i915#2575]) -> [SKIP][405] ([i915#7828]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: [SKIP][406] ([i915#2575]) -> [SKIP][407] ([i915#3299])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: [SKIP][408] -> [SKIP][409] ([i915#3555] / [i915#3840])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_dsc@dsc-basic.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][410] ([i915#2575]) -> [SKIP][411] +3 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: [SKIP][412] ([i915#2575]) -> [SKIP][413] ([i915#5274])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
- shard-dg2: [SKIP][414] -> [SKIP][415] ([i915#8708]) +4 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][416] -> [SKIP][417] ([i915#3458]) +3 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][418] ([i915#10433] / [i915#3458]) -> [SKIP][419] ([i915#3458]) +2 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][420] -> [SKIP][421] ([i915#5354]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][422] ([i915#3458]) -> [SKIP][423] ([i915#10433] / [i915#3458])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][424] ([i915#4816]) -> [SKIP][425] ([i915#4070] / [i915#4816])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: [SKIP][426] ([i915#1072] / [i915#9732]) -> [SKIP][427] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-5/igt@kms_psr@fbc-psr-primary-blt.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2: [SKIP][428] -> [SKIP][429] ([i915#1072] / [i915#9732]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_psr@pr-sprite-blt.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-7/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][430] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][431] ([i915#1072] / [i915#9732]) +3 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-1/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: [SKIP][432] ([i915#2575] / [i915#5190]) -> [SKIP][433] ([i915#5190])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: [SKIP][434] ([i915#2575]) -> [SKIP][435] ([i915#4235]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: [SKIP][436] ([i915#2575]) -> [SKIP][437] ([i915#3555]) +2 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: [SKIP][438] ([i915#2575]) -> [SKIP][439] ([i915#2437] / [i915#9412])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-8/igt@kms_writeback@writeback-pixel-formats.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-11/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][440] ([i915#9100]) -> [FAIL][441] ([i915#7484])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7873/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11202/index.html
[-- Attachment #2: Type: text/html, Size: 109956 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
@ 2024-05-30 7:15 Jeevan B
0 siblings, 0 replies; 14+ messages in thread
From: Jeevan B @ 2024-05-30 7:15 UTC (permalink / raw)
To: igt-dev; +Cc: bhanuprakash.modem, suraj.kandpal, Jeevan B
Add a new test to validate deep sleep states during extended vblank
scenarios, where two frames are committed simultaneously for a given
time with reduced refresh rate.
v2: dealy of one frame added to simulate extended vblank.
remove vrr related debug checks.
v3: fix typo and add define. (Suraj)
v4: fix structure and add skip if no vrr monitor found. (Bhanu)
v5: remove redundant code and correct delay logic. (Bhanu)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel/kms_pm_dc.c | 71 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 7766d34d7..e1318bfa6 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -76,6 +76,10 @@
*
* SUBTEST: dc9-dpms
* Description: This test validates display engine entry to DC9 state
+ *
+ * SUBTEST: deep-pkgc
+ * Description: This test validates display engine entry to PKGC10 state for extended vblank
+ * Functionality: pm_dc
*/
/* DC State Flags */
@@ -89,6 +93,7 @@
#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
#define KMS_POLL_DISABLE 0
#define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
+#define MSECS (1000000ul)
IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
@@ -584,6 +589,63 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
return get_dc_counter(str);
}
+static void test_deep_pkgc_state(data_t *data)
+{
+ unsigned int pre_val = 0, cur_val = 0;
+ time_t start = time(NULL), duration = 2, delay;
+ enum pipe pipe;
+ bool pkgc_flag = false;
+ bool vrr_supported = false, flip = true;
+
+ igt_display_t *display = &data->display;
+ igt_plane_t *primary;
+ igt_output_t *output = NULL;
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ /* Check VRR capabilities before setting up */
+ if (igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
+ igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
+ vrr_supported = true;
+ break;
+ }
+ }
+
+ /* Skip the test if no VRR capable output is found */
+ if (!vrr_supported)
+ igt_skip("No VRR capable output found, skipping the test.\n");
+
+ igt_display_reset(display);
+
+ igt_output_set_pipe(output, pipe);
+
+ data->output = output;
+ data->mode = igt_output_get_mode(output);
+ setup_videoplayback(data);
+
+ primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ delay = 1 * (MSECS / (data->mode->vrefresh - 10));
+
+ igt_plane_set_fb(primary, &data->fb_rgb);
+ igt_display_commit(&data->display);
+
+ while (time(NULL) - start < duration) {
+ flip = !flip;
+ igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
+ igt_display_commit(&data->display);
+
+ cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ if (cur_val > pre_val) {
+ pkgc_flag = true;
+ break;
+ }
+ usleep(delay);
+ }
+
+ cleanup_dc3co_fbs(data);
+ igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
+}
+
static void test_pkgc_state_dpms(data_t *data)
{
unsigned int timeout_sec = 6;
@@ -687,6 +749,15 @@ igt_main
test_dc_state_psr(&data, CHECK_DC6);
}
+ igt_describe("This test validates display engine entry to PKGC10 state "
+ "during extended vblank");
+ igt_subtest("deep-pkgc") {
+ igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
+ "PC8+ residencies not supported\n");
+ igt_require(intel_display_ver(data.devid) >= 20);
+ test_deep_pkgc_state(&data);
+ }
+
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
@ 2024-05-27 17:39 Jeevan B
2024-05-28 4:40 ` Modem, Bhanuprakash
0 siblings, 1 reply; 14+ messages in thread
From: Jeevan B @ 2024-05-27 17:39 UTC (permalink / raw)
To: igt-dev; +Cc: bhanuprakash.modem, suraj.kandpal, Jeevan B
Add a new test to validate deep sleep states during extended vblank
scenarios, where two frames are committed simultaneously for a given
time with reduced refresh rate.
v2: dealy of one frame added to simulate extended vblank.
remove vrr related debug checks.
v3: fix typo and add define. (Suraj)
v4: fix structure and add skip if no vrr monitor found. (Bhanu)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_dc.c | 78 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 78 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 7766d34d7..51416c2f0 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -76,6 +76,10 @@
*
* SUBTEST: dc9-dpms
* Description: This test validates display engine entry to DC9 state
+ *
+ * SUBTEST: deep-pkgc
+ * Description: This test validates display engine entry to PKGC10 state for extended vblank
+ * Functionality: pm_dc
*/
/* DC State Flags */
@@ -89,6 +93,7 @@
#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
#define KMS_POLL_DISABLE 0
#define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
+#define MSECS 1000000
IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
@@ -584,6 +589,70 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
return get_dc_counter(str);
}
+static void test_deep_pkgc_state(data_t *data)
+{
+ unsigned int pre_val = 0, cur_val = 0;
+ time_t start = time(NULL), duration = 2, delay;
+ enum pipe pipe;
+ bool pkgc_flag = false;
+ bool vrr_supported = false, flip = true;
+
+ igt_display_t *display = &data->display;
+ igt_plane_t *primary;
+ igt_output_t *output;
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ // Check VRR capabilities before setting up
+ if (igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
+ igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
+ vrr_supported = true;
+ break;
+ }
+ }
+
+ // Skip the test if no VRR capable output is found
+ if (!vrr_supported)
+ igt_skip("No VRR capable output found, skipping the test.\n");
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ igt_display_reset(display);
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ if (!igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) ||
+ !igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
+ continue;
+ }
+
+ igt_output_set_pipe(output, pipe);
+
+ data->output = output;
+ data->mode = igt_output_get_mode(output);
+ setup_videoplayback(data);
+
+ primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ delay = 1 * (MSECS / data->mode->vrefresh);
+
+ igt_plane_set_fb(primary, &data->fb_rgb);
+ igt_display_commit(&data->display);
+
+ while (time(NULL) - start < duration) {
+ flip = !flip;
+ igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
+ igt_display_commit(&data->display);
+
+ cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ if (cur_val > pre_val) {
+ pkgc_flag = true;
+ break;
+ }
+ usleep(delay);
+ }
+ }
+ cleanup_dc3co_fbs(data);
+ igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
+}
+
static void test_pkgc_state_dpms(data_t *data)
{
unsigned int timeout_sec = 6;
@@ -687,6 +756,15 @@ igt_main
test_dc_state_psr(&data, CHECK_DC6);
}
+ igt_describe("This test validates display engine entry to PKGC10 state "
+ "during extended vblank");
+ igt_subtest("deep-pkgc") {
+ igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
+ "PC8+ residencies not supported\n");
+ igt_require(intel_display_ver(data.devid) >= 20);
+ test_deep_pkgc_state(&data);
+ }
+
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
2024-05-27 17:39 Jeevan B
@ 2024-05-28 4:40 ` Modem, Bhanuprakash
0 siblings, 0 replies; 14+ messages in thread
From: Modem, Bhanuprakash @ 2024-05-28 4:40 UTC (permalink / raw)
To: Jeevan B, igt-dev; +Cc: suraj.kandpal
Hi Jeevan,
On 27-05-2024 11:09 pm, Jeevan B wrote:
> Add a new test to validate deep sleep states during extended vblank
> scenarios, where two frames are committed simultaneously for a given
> time with reduced refresh rate.
> v2: dealy of one frame added to simulate extended vblank.
> remove vrr related debug checks.
> v3: fix typo and add define. (Suraj)
> v4: fix structure and add skip if no vrr monitor found. (Bhanu)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 78 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 78 insertions(+)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 7766d34d7..51416c2f0 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -76,6 +76,10 @@
> *
> * SUBTEST: dc9-dpms
> * Description: This test validates display engine entry to DC9 state
> + *
> + * SUBTEST: deep-pkgc
> + * Description: This test validates display engine entry to PKGC10 state for extended vblank
> + * Functionality: pm_dc
> */
>
> /* DC State Flags */
> @@ -89,6 +93,7 @@
> #define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> #define KMS_POLL_DISABLE 0
> #define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
> +#define MSECS 1000000
Please make this arch/compiler safe
#define MSECS (1000000ul)
>
> IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
>
> @@ -584,6 +589,70 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
> return get_dc_counter(str);
> }
>
> +static void test_deep_pkgc_state(data_t *data)
> +{
> + unsigned int pre_val = 0, cur_val = 0;
> + time_t start = time(NULL), duration = 2, delay;
> + enum pipe pipe;
> + bool pkgc_flag = false;
> + bool vrr_supported = false, flip = true;
> +
> + igt_display_t *display = &data->display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
> + // Check VRR capabilities before setting up
> + if (igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
> + igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
> + vrr_supported = true;
> + break;
> + }
> + }
> +
> + // Skip the test if no VRR capable output is found
Please fix the comment style as
/* This is single line comment. */
/*
* This is multi-line
* comment.
*/
> + if (!vrr_supported)
> + igt_skip("No VRR capable output found, skipping the test.\n");
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
This loop is redundant, just capture the output in above loop & use it
here directly. No need to iterate all outputs again.
> + igt_display_reset(display);
> + igt_output_set_pipe(output, PIPE_NONE);
This is redundant, as igt_display_reset() is doing the same, please drop it.
> +
> + if (!igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) ||
> + !igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
> + continue;
> + }
This check is no more required.
> +
> + igt_output_set_pipe(output, pipe);
> +
> + data->output = output;
> + data->mode = igt_output_get_mode(output);
> + setup_videoplayback(data);
> +
> + primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + delay = 1 * (MSECS / data->mode->vrefresh);
To make sure to achieve the extended vblank, let's try with some value
which is less than the vrefresh.
Ex: 1 * (MSECS / (vrefresh - 10))
- Bhanu
> +
> + igt_plane_set_fb(primary, &data->fb_rgb);
> + igt_display_commit(&data->display);
> +
> + while (time(NULL) - start < duration) {
> + flip = !flip;
> + igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
> + igt_display_commit(&data->display);
> +
> + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + if (cur_val > pre_val) {
> + pkgc_flag = true;
> + break;
> + }
> + usleep(delay);
> + }
> + }
> + cleanup_dc3co_fbs(data);
> + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
> +}
> +
> static void test_pkgc_state_dpms(data_t *data)
> {
> unsigned int timeout_sec = 6;
> @@ -687,6 +756,15 @@ igt_main
> test_dc_state_psr(&data, CHECK_DC6);
> }
>
> + igt_describe("This test validates display engine entry to PKGC10 state "
> + "during extended vblank");
> + igt_subtest("deep-pkgc") {
> + igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> + "PC8+ residencies not supported\n");
> + igt_require(intel_display_ver(data.devid) >= 20);
> + test_deep_pkgc_state(&data);
> + }
> +
> igt_describe("This test validates display engine entry to DC5 state "
> "while all connectors's DPMS property set to OFF");
> igt_subtest("dc5-dpms") {
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
@ 2024-05-27 10:21 Jeevan B
2024-05-27 13:03 ` Modem, Bhanuprakash
0 siblings, 1 reply; 14+ messages in thread
From: Jeevan B @ 2024-05-27 10:21 UTC (permalink / raw)
To: igt-dev; +Cc: bhanuprakash.modem, suraj.kandpal, Jeevan B
Add a new test to validate deep sleep states during extended vblank
scenarios, where two frames are committed simultaneously for a given
time with reduced refresh rate.
v2: dealy of one frame added to simulate extended vblank.
remove vrr related debug checks.
v3: fix typo and add define. (Suraj)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_dc.c | 54 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 7766d34d7..f7989ed47 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -76,6 +76,10 @@
*
* SUBTEST: dc9-dpms
* Description: This test validates display engine entry to DC9 state
+ *
+ * SUBTEST: deep-pkgc
+ * Description: This test validates display engine entry to PKGC10 state for extended vblank
+ * Functionality: pm_dc
*/
/* DC State Flags */
@@ -89,6 +93,7 @@
#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
#define KMS_POLL_DISABLE 0
#define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
+#define MSECS 1000000
IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
@@ -584,6 +589,46 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
return get_dc_counter(str);
}
+static void test_deep_pkgc_state(data_t *data)
+{
+ unsigned int pre_val = 0, cur_val = 0;
+ time_t start = time(NULL), duration = 2, delay;
+ enum pipe pipe;
+ bool pkgc_flag;
+ igt_display_t *display = &data->display;
+ igt_plane_t *primary;
+ igt_output_t *output;
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ igt_output_set_pipe(output, pipe);
+ data->output = output;
+ data->mode = igt_output_get_mode(output);
+ setup_videoplayback(data);
+ igt_require(igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE));
+ igt_require(igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE));
+
+ primary = igt_output_get_plane_type(data->output,
+ DRM_PLANE_TYPE_PRIMARY);
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ delay = 1 * (MSECS / data->mode->vrefresh);
+ while (time(NULL) - start < duration) {
+ igt_plane_set_fb(primary, &data->fb_rgb);
+ igt_display_commit(&data->display);
+ usleep(delay);
+
+ igt_plane_set_fb(primary, &data->fb_rgr);
+ igt_display_commit(&data->display);
+ cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ if (cur_val > pre_val) {
+ pkgc_flag = true;
+ continue;
+ }
+ }
+ }
+ cleanup_dc3co_fbs(data);
+ igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
+}
+
static void test_pkgc_state_dpms(data_t *data)
{
unsigned int timeout_sec = 6;
@@ -687,6 +732,15 @@ igt_main
test_dc_state_psr(&data, CHECK_DC6);
}
+ igt_describe("This test validates display engine entry to PKGC10 state "
+ "during extended vblank");
+ igt_subtest("deep-pkgc") {
+ igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
+ "PC8+ residencies not supported\n");
+ igt_require(intel_display_ver(data.devid) >= 20);
+ test_deep_pkgc_state(&data);
+ }
+
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
2024-05-27 10:21 Jeevan B
@ 2024-05-27 13:03 ` Modem, Bhanuprakash
0 siblings, 0 replies; 14+ messages in thread
From: Modem, Bhanuprakash @ 2024-05-27 13:03 UTC (permalink / raw)
To: Jeevan B, igt-dev; +Cc: suraj.kandpal
Hi Jeevan,
On 27-05-2024 03:51 pm, Jeevan B wrote:
> Add a new test to validate deep sleep states during extended vblank
> scenarios, where two frames are committed simultaneously for a given
> time with reduced refresh rate.
> v2: dealy of one frame added to simulate extended vblank.
> remove vrr related debug checks.
> v3: fix typo and add define. (Suraj)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 54 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 54 insertions(+)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 7766d34d7..f7989ed47 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -76,6 +76,10 @@
> *
> * SUBTEST: dc9-dpms
> * Description: This test validates display engine entry to DC9 state
> + *
> + * SUBTEST: deep-pkgc
> + * Description: This test validates display engine entry to PKGC10 state for extended vblank
> + * Functionality: pm_dc
> */
>
> /* DC State Flags */
> @@ -89,6 +93,7 @@
> #define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> #define KMS_POLL_DISABLE 0
> #define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
> +#define MSECS 1000000
>
> IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
>
> @@ -584,6 +589,46 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
> return get_dc_counter(str);
> }
>
> +static void test_deep_pkgc_state(data_t *data)
> +{
> + unsigned int pre_val = 0, cur_val = 0;
> + time_t start = time(NULL), duration = 2, delay;
> + enum pipe pipe;
> + bool pkgc_flag;
Please initialize this flag with "false".
> + igt_display_t *display = &data->display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
> + igt_output_set_pipe(output, pipe);
Please do igt_display_reset()/igt_output_set_pipe(NULL) before setting
the output to pipe.
> + data->output = output;
> + data->mode = igt_output_get_mode(output);
> + setup_videoplayback(data);
> + igt_require(igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE));
> + igt_require(igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE));
Check for the config capabilities before setting up anything.
(Move these checks to just after initializing the loops)
if (!has_vrr_capable || !get_vrr_capable)
continue;
> +
> + primary = igt_output_get_plane_type(data->output,
> + DRM_PLANE_TYPE_PRIMARY);
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + delay = 1 * (MSECS / data->mode->vrefresh);
> + while (time(NULL) - start < duration) {
> + igt_plane_set_fb(primary, &data->fb_rgb);
> + igt_display_commit(&data->display);
> + usleep(delay);
> +
> + igt_plane_set_fb(primary, &data->fb_rgr);
> + igt_display_commit(&data->display);
Why do we need 2 commits, lets simplify this as below:
pre_val = read_pkgc_counter(data->debugfs_root_fd);
delay = 1 * (MSECS / data->mode->vrefresh);
+
+ igt_plane_set_fb(primary, &data->fb_rgb);
+ igt_display_commit(&data->display);
+
+ flip = true;
+
while (time(NULL) - start < duration) {
- igt_plane_set_fb(primary, &data->fb_rgb);
+ flip = !flip;
+ igt_plane_set_fb(primary, flip ? &data->fb_rgb :
&data->fb_rgr);
igt_display_commit(&data->display);
- usleep(delay);
- igt_plane_set_fb(primary, &data->fb_rgr);
- igt_display_commit(&data->display);
cur_val = read_pkgc_counter(data->debugfs_root_fd);
if (cur_val > pre_val) {
pkgc_flag = true;
- continue;
+ break;
}
+ usleep(delay);
}
}
> + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + if (cur_val > pre_val) {
> + pkgc_flag = true;
> + continue;
If PKGC states achieved, we must do the "break" instead of "continue".
Right?
> + }
> + }
> + }
> + cleanup_dc3co_fbs(data);
> + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
It'll throw an error if there is no valid output found, instead we must
skip.
- Bhanu
> +}
> +
> static void test_pkgc_state_dpms(data_t *data)
> {
> unsigned int timeout_sec = 6;
> @@ -687,6 +732,15 @@ igt_main
> test_dc_state_psr(&data, CHECK_DC6);
> }
>
> + igt_describe("This test validates display engine entry to PKGC10 state "
> + "during extended vblank");
> + igt_subtest("deep-pkgc") {
> + igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> + "PC8+ residencies not supported\n");
> + igt_require(intel_display_ver(data.devid) >= 20);
> + test_deep_pkgc_state(&data);
> + }
> +
> igt_describe("This test validates display engine entry to DC5 state "
> "while all connectors's DPMS property set to OFF");
> igt_subtest("dc5-dpms") {
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
@ 2024-05-27 4:19 Jeevan B
2024-05-27 5:03 ` Kandpal, Suraj
0 siblings, 1 reply; 14+ messages in thread
From: Jeevan B @ 2024-05-27 4:19 UTC (permalink / raw)
To: igt-dev; +Cc: bhanuprakash.modem, suraj.kandpal, Jeevan B
Add a new test to validate deep sleep states during extended vblank
scenarios, where two frames are committed simultaneously for a give
time with reduced refresh rate.
v2: dealy of one frame added to simulate extended vblank.
remove vrr related debug checks.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_dc.c | 49 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 7766d34d7..9f89e537d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -584,6 +584,46 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
return get_dc_counter(str);
}
+static void test_deep_pkgc_state(data_t *data)
+{
+ unsigned int pre_val = 0, cur_val = 0;
+ time_t start = time(NULL), duration = 2, delay;
+ enum pipe pipe;
+ bool pkgc_flag;
+ igt_display_t *display = &data->display;
+ igt_plane_t *primary;
+ igt_output_t *output;
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ igt_output_set_pipe(output, pipe);
+ data->output = output;
+ data->mode = igt_output_get_mode(output);
+ setup_videoplayback(data);
+ igt_require(igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE));
+ igt_require(igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE));
+
+ primary = igt_output_get_plane_type(data->output,
+ DRM_PLANE_TYPE_PRIMARY);
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ delay = 1 * ((1000 * 1000) / data->mode->vrefresh);
+ while (time(NULL) - start < duration) {
+ igt_plane_set_fb(primary, &data->fb_rgb);
+ igt_display_commit(&data->display);
+ usleep(delay);
+
+ igt_plane_set_fb(primary, &data->fb_rgr);
+ igt_display_commit(&data->display);
+ cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ if (cur_val > pre_val) {
+ pkgc_flag = true;
+ continue;
+ }
+ }
+ }
+ cleanup_dc3co_fbs(data);
+ igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
+}
+
static void test_pkgc_state_dpms(data_t *data)
{
unsigned int timeout_sec = 6;
@@ -687,6 +727,15 @@ igt_main
test_dc_state_psr(&data, CHECK_DC6);
}
+ igt_describe("This test validates display engine entry to DC8 state "
+ "while extended vblank");
+ igt_subtest("deep-pkgc") {
+ igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
+ "PC8+ residencies not supported\n");
+ igt_require(intel_display_ver(data.devid) >= 20);
+ test_deep_pkgc_state(&data);
+ }
+
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* RE: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
2024-05-27 4:19 Jeevan B
@ 2024-05-27 5:03 ` Kandpal, Suraj
2024-05-27 10:12 ` B, Jeevan
0 siblings, 1 reply; 14+ messages in thread
From: Kandpal, Suraj @ 2024-05-27 5:03 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: Modem, Bhanuprakash
> Subject: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the
> deep sleep state during extended vblank
>
> Add a new test to validate deep sleep states during extended vblank scenarios,
> where two frames are committed simultaneously for a give time with reduced
Typo here *given
> refresh rate.
> v2: dealy of one frame added to simulate extended vblank.
> remove vrr related debug checks.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 49
> +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 49 insertions(+)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index
> 7766d34d7..9f89e537d 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -584,6 +584,46 @@ static unsigned int read_pkgc_counter(int
> debugfs_root_fd)
> return get_dc_counter(str);
> }
>
> +static void test_deep_pkgc_state(data_t *data) {
> + unsigned int pre_val = 0, cur_val = 0;
> + time_t start = time(NULL), duration = 2, delay;
> + enum pipe pipe;
> + bool pkgc_flag;
> + igt_display_t *display = &data->display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
> + igt_output_set_pipe(output, pipe);
> + data->output = output;
> + data->mode = igt_output_get_mode(output);
> + setup_videoplayback(data);
> + igt_require(igt_output_has_prop(output,
> IGT_CONNECTOR_VRR_CAPABLE));
> + igt_require(igt_output_get_prop(output,
> IGT_CONNECTOR_VRR_CAPABLE));
Why are there two igt_require checking the same thing here?
> +
> + primary = igt_output_get_plane_type(data->output,
> +
> DRM_PLANE_TYPE_PRIMARY);
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + delay = 1 * ((1000 * 1000) / data->mode->vrefresh);
If 1000*1000 is constant why not use a #define would look cleaner
> + while (time(NULL) - start < duration) {
> + igt_plane_set_fb(primary, &data->fb_rgb);
> + igt_display_commit(&data->display);
> + usleep(delay);
> +
> + igt_plane_set_fb(primary, &data->fb_rgr);
> + igt_display_commit(&data->display);
> + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + if (cur_val > pre_val) {
> + pkgc_flag = true;
> + continue;
> + }
> + }
> + }
> + cleanup_dc3co_fbs(data);
> + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n"); }
> +
> static void test_pkgc_state_dpms(data_t *data) {
> unsigned int timeout_sec = 6;
> @@ -687,6 +727,15 @@ igt_main
> test_dc_state_psr(&data, CHECK_DC6);
> }
>
> + igt_describe("This test validates display engine entry to DC8 state "
> + "while extended vblank");
*during extended vblank
Regards,
Suraj Kandpal
> + igt_subtest("deep-pkgc") {
> +
> igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> + "PC8+ residencies not supported\n");
> + igt_require(intel_display_ver(data.devid) >= 20);
> + test_deep_pkgc_state(&data);
> + }
> +
> igt_describe("This test validates display engine entry to DC5 state "
> "while all connectors's DPMS property set to OFF");
> igt_subtest("dc5-dpms") {
> --
> 2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread* RE: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank
2024-05-27 5:03 ` Kandpal, Suraj
@ 2024-05-27 10:12 ` B, Jeevan
0 siblings, 0 replies; 14+ messages in thread
From: B, Jeevan @ 2024-05-27 10:12 UTC (permalink / raw)
To: Kandpal, Suraj, igt-dev@lists.freedesktop.org; +Cc: Modem, Bhanuprakash
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Monday, May 27, 2024 10:33 AM
> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: RE: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate
> the deep sleep state during extended vblank
>
> > Subject: [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to
> > validate the deep sleep state during extended vblank
> >
> > Add a new test to validate deep sleep states during extended vblank
> > scenarios, where two frames are committed simultaneously for a give
> > time with reduced
>
> Typo here *given
>
> > refresh rate.
> > v2: dealy of one frame added to simulate extended vblank.
> > remove vrr related debug checks.
> >
> > Signed-off-by: Jeevan B <jeevan.b@intel.com>
> > ---
> > tests/intel/kms_pm_dc.c | 49
> > +++++++++++++++++++++++++++++++++++++++++
> > 1 file changed, 49 insertions(+)
> >
> > diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index
> > 7766d34d7..9f89e537d 100644
> > --- a/tests/intel/kms_pm_dc.c
> > +++ b/tests/intel/kms_pm_dc.c
> > @@ -584,6 +584,46 @@ static unsigned int read_pkgc_counter(int
> > debugfs_root_fd)
> > return get_dc_counter(str);
> > }
> >
> > +static void test_deep_pkgc_state(data_t *data) {
> > + unsigned int pre_val = 0, cur_val = 0;
> > + time_t start = time(NULL), duration = 2, delay;
> > + enum pipe pipe;
> > + bool pkgc_flag;
> > + igt_display_t *display = &data->display;
> > + igt_plane_t *primary;
> > + igt_output_t *output;
> > +
> > + for_each_pipe_with_valid_output(display, pipe, output) {
> > + igt_output_set_pipe(output, pipe);
> > + data->output = output;
> > + data->mode = igt_output_get_mode(output);
> > + setup_videoplayback(data);
> > + igt_require(igt_output_has_prop(output,
> > IGT_CONNECTOR_VRR_CAPABLE));
> > + igt_require(igt_output_get_prop(output,
> > IGT_CONNECTOR_VRR_CAPABLE));
>
> Why are there two igt_require checking the same thing here?
To check VRR is supported and available.
BR, Jeevan B
>
> > +
> > + primary = igt_output_get_plane_type(data->output,
> > +
> > DRM_PLANE_TYPE_PRIMARY);
> > + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> > + delay = 1 * ((1000 * 1000) / data->mode->vrefresh);
>
> If 1000*1000 is constant why not use a #define would look cleaner
>
> > + while (time(NULL) - start < duration) {
> > + igt_plane_set_fb(primary, &data->fb_rgb);
> > + igt_display_commit(&data->display);
> > + usleep(delay);
> > +
> > + igt_plane_set_fb(primary, &data->fb_rgr);
> > + igt_display_commit(&data->display);
> > + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> > + if (cur_val > pre_val) {
> > + pkgc_flag = true;
> > + continue;
> > + }
> > + }
> > + }
> > + cleanup_dc3co_fbs(data);
> > + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n"); }
> > +
> > static void test_pkgc_state_dpms(data_t *data) {
> > unsigned int timeout_sec = 6;
> > @@ -687,6 +727,15 @@ igt_main
> > test_dc_state_psr(&data, CHECK_DC6);
> > }
> >
> > + igt_describe("This test validates display engine entry to DC8 state "
> > + "while extended vblank");
>
> *during extended vblank
>
> Regards,
> Suraj Kandpal
> > + igt_subtest("deep-pkgc") {
> > +
> > igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> > + "PC8+ residencies not supported\n");
> > + igt_require(intel_display_ver(data.devid) >= 20);
> > + test_deep_pkgc_state(&data);
> > + }
> > +
> > igt_describe("This test validates display engine entry to DC5 state "
> > "while all connectors's DPMS property set to OFF");
> > igt_subtest("dc5-dpms") {
> > --
> > 2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-05-30 7:08 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-28 10:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-05-28 10:12 ` Modem, Bhanuprakash
2024-05-28 18:54 ` ✓ CI.xeBAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev4) Patchwork
2024-05-28 19:04 ` ✓ Fi.CI.BAT: " Patchwork
2024-05-28 20:21 ` ✓ CI.xeFULL: " Patchwork
2024-05-29 12:05 ` ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-05-30 7:15 [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-05-27 17:39 Jeevan B
2024-05-28 4:40 ` Modem, Bhanuprakash
2024-05-27 10:21 Jeevan B
2024-05-27 13:03 ` Modem, Bhanuprakash
2024-05-27 4:19 Jeevan B
2024-05-27 5:03 ` Kandpal, Suraj
2024-05-27 10:12 ` B, Jeevan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox