* [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
* [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 17:39 Jeevan B
2024-05-27 20:41 ` ✓ Fi.CI.BAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 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
* ✓ Fi.CI.BAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
2024-05-27 17:39 [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 20:41 ` Patchwork
2024-05-27 20:59 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-27 20:41 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1647 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
URL : https://patchwork.freedesktop.org/series/134058/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14827 -> IGTPW_11199
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/index.html
Participating hosts (37 -> 36)
------------------------------
Missing (1): bat-dg2-11
Known issues
------------
Here are the changes found in IGTPW_11199 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-8: [PASS][1] -> [FAIL][2] ([i915#10378])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7871 -> IGTPW_11199
CI-20190529: 20190529
CI_DRM_14827: e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11199: 9b1394160ca87b63f1c216072b5d36fcf7a8313b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/index.html
[-- Attachment #2: Type: text/html, Size: 2233 bytes --]
^ 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 (rev3)
2024-05-27 17:39 [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 20:41 ` ✓ Fi.CI.BAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) Patchwork
@ 2024-05-27 20:59 ` Patchwork
2024-05-27 22:25 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-27 20:59 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2946 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
URL : https://patchwork.freedesktop.org/series/134058/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7871_BAT -> XEIGTPW_11199_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
Additional (1): bat-adlp-7
Missing (1): bat-atsm-2
Known issues
------------
Here are the changes found in XEIGTPW_11199_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@runner@aborted:
- bat-adlp-7: NOTRUN -> [FAIL][1] ([Intel XE#1953])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/bat-adlp-7/igt@runner@aborted.html
- bat-pvc-2: NOTRUN -> [FAIL][2] ([Intel XE#1953])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/bat-pvc-2/igt@runner@aborted.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- {bat-lnl-1}: [DMESG-WARN][3] ([Intel XE#324]) -> [PASS][4] +2 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@xe_exec_threads@threads-mixed-fd-basic:
- bat-dg2-oem2: [ABORT][5] ([Intel XE#1908]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908
[Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939
[Intel XE#1953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1953
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
Build changes
-------------
* IGT: IGT_7871 -> IGTPW_11199
* Linux: xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90 -> xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
IGTPW_11199: 9b1394160ca87b63f1c216072b5d36fcf7a8313b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90: 1cea2d72e1159a0a7923af196458aa68e6074f90
xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c: e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/index.html
[-- Attachment #2: Type: text/html, Size: 3594 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
2024-05-27 17:39 [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 20:41 ` ✓ Fi.CI.BAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) Patchwork
2024-05-27 20:59 ` ✓ CI.xeBAT: " Patchwork
@ 2024-05-27 22:25 ` Patchwork
2024-05-28 4:40 ` [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Modem, Bhanuprakash
2024-05-28 11:29 ` ✗ Fi.CI.IGT: failure for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-27 22:25 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13734 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
URL : https://patchwork.freedesktop.org/series/134058/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7871_full -> XEIGTPW_11199_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11199_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11199_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 2)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11199_full:
### IGT changes ###
#### Possible regressions ####
* igt@runner@aborted:
- shard-dg2-set2: NOTRUN -> ([FAIL][1], [FAIL][2], [FAIL][3], [FAIL][4], [FAIL][5], [FAIL][6], [FAIL][7], [FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-435/igt@runner@aborted.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-435/igt@runner@aborted.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-435/igt@runner@aborted.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-466/igt@runner@aborted.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-432/igt@runner@aborted.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-466/igt@runner@aborted.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-432/igt@runner@aborted.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-463/igt@runner@aborted.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-463/igt@runner@aborted.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-432/igt@runner@aborted.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-466/igt@runner@aborted.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-466/igt@runner@aborted.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-463/igt@runner@aborted.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-433/igt@runner@aborted.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-434/igt@runner@aborted.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-434/igt@runner@aborted.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-433/igt@runner@aborted.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-436/igt@runner@aborted.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-464/igt@runner@aborted.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-436/igt@runner@aborted.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-433/igt@runner@aborted.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-464/igt@runner@aborted.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-434/igt@runner@aborted.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-464/igt@runner@aborted.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-dg2-436/igt@runner@aborted.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_addfb_basic@bad-pitch-32:
- {shard-lnl}: [PASS][26] -> [SKIP][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-2/igt@kms_addfb_basic@bad-pitch-32.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-7/igt@kms_addfb_basic@bad-pitch-32.html
New tests
---------
New tests have been introduced between XEIGT_7871_full and XEIGTPW_11199_full:
### New IGT tests (1) ###
* igt@kms_pm_dc@deep-pkgc:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in XEIGTPW_11199_full that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_cursor_edge_walk@128x128-right-edge:
- {shard-lnl}: [FAIL][28] ([Intel XE#581]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_cursor_edge_walk@128x128-right-edge.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_pm_dc@dc5-psr:
- {shard-lnl}: [ABORT][30] ([Intel XE#1939]) -> [PASS][31] +1 other test pass
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_prop_blob@blob-prop-validate:
- {shard-lnl}: [SKIP][32] ([Intel XE#780]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_prop_blob@blob-prop-validate.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-4/igt@kms_prop_blob@blob-prop-validate.html
* igt@kms_properties@invalid-properties-legacy:
- {shard-lnl}: [SKIP][34] ([Intel XE#1646] / [Intel XE#1650]) -> [PASS][35] +2 other tests pass
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_properties@invalid-properties-legacy.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-8/igt@kms_properties@invalid-properties-legacy.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- {shard-lnl}: [DMESG-WARN][36] ([Intel XE#1330]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-7/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-7/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate:
- {shard-lnl}: [INCOMPLETE][38] ([Intel XE#1169] / [Intel XE#1330]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-4/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-6/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- {shard-lnl}: [DMESG-WARN][40] ([Intel XE#1595]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-5/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency:
- {shard-lnl}: [FAIL][42] ([Intel XE#1442]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@xe_pm_residency@idle-residency.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/shard-lnl-7/igt@xe_pm_residency@idle-residency.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[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#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1646]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1646
[Intel XE#1650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1650
[Intel XE#1661]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1661
[Intel XE#1663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1663
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
[Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908
[Intel XE#1912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1912
[Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939
[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#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_7871 -> IGTPW_11199
* Linux: xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90 -> xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
IGTPW_11199: 9b1394160ca87b63f1c216072b5d36fcf7a8313b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90: 1cea2d72e1159a0a7923af196458aa68e6074f90
xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c: e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11199/index.html
[-- Attachment #2: Type: text/html, Size: 10252 bytes --]
^ 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 17:39 [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-27 22:25 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-05-28 4:40 ` Modem, Bhanuprakash
2024-05-28 11:29 ` ✗ Fi.CI.IGT: failure for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) Patchwork
4 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-28 10:09 Jeevan B
2024-05-28 10:12 ` Modem, Bhanuprakash
0 siblings, 1 reply; 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 Jeevan B
@ 2024-05-28 10:12 ` Modem, Bhanuprakash
0 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
* ✗ Fi.CI.IGT: failure for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
2024-05-27 17:39 [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 4:40 ` [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Modem, Bhanuprakash
@ 2024-05-28 11:29 ` Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-05-28 11:29 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 95113 bytes --]
== Series Details ==
Series: tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3)
URL : https://patchwork.freedesktop.org/series/134058/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14827_full -> IGTPW_11199_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11199_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11199_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_11199/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_11199_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@requests:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-5/igt@i915_selftest@live@requests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- shard-dg1: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@i915_selftest@live@slpc.html
* igt@kms_pm_dc@deep-pkgc (NEW):
- shard-dg1: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_pm_dc@deep-pkgc.html
- shard-mtlp: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_pm_dc@deep-pkgc.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][6] -> [ABORT][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
New tests
---------
New tests have been introduced between CI_DRM_14827_full and IGTPW_11199_full:
### New IGT tests (7) ###
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.91] s
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.82] s
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.98] s
* igt@kms_flip@2x-wf_vblank-ts-check@ab-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.93] s
* igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.85] s
* igt@kms_flip@2x-wf_vblank-ts-check@bc-hdmi-a1-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [10.83] s
* igt@kms_pm_dc@deep-pkgc:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_11199_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +28 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][15] ([i915#7742])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-1/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#9364])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8562])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-3/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][24] ([i915#6268])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][25] -> [FAIL][26] ([i915#9561])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#5882]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#5882]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [INCOMPLETE][32] ([i915#10513])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][33] -> [FAIL][34] ([i915#5784])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#6334])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#6344])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-smem:
- shard-mtlp: NOTRUN -> [FAIL][40] ([i915#10386])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@gem_exec_capture@capture@vecs0-smem.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [PASS][41] -> [TIMEOUT][42] ([i915#3778] / [i915#7016])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-8/igt@gem_exec_endless@dispatch@bcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4473] / [i915#4771])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][45] ([i915#2842]) +4 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +10 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +14 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][58] +19 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-snb5/igt@gem_exec_schedule@thriceslice.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#2190])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613] / [i915#7582])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [TIMEOUT][67] ([i915#5493])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][68] ([i915#10378]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-glk7/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#8289])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#284])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4077]) +15 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_wc@coherency:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4083]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-7/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@gem_partial_pwrite_pread@write.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +8 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@bench:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@gem_pread@bench.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4270])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +6 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@allocator-evict@bcs0:
- shard-dg2: NOTRUN -> [INCOMPLETE][89] ([i915#10652])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@gem_softpin@allocator-evict@bcs0.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4885])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4077]) +18 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4879])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3297]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#6227])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-3/igt@i915_module_load@load.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6412])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#8399])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#6590])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][106] -> [FAIL][107] ([i915#3591]) +1 other test fail
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6621])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][109] ([i915#8346])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8925])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3555] / [i915#8925])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#8437])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#3826])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#8709]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][121] ([i915#1769])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#5138])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +6 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][127] +16 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +18 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#10656]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_big_joiner@basic.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#10656])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#10656])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +103 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/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-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +23 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10278]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#10278])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6095]) +19 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#6095]) +166 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#10278])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#10278])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#7213]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][148] +26 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#7828]) +10 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7828]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +12 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#7118] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][154] ([i915#7173])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#9424]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#7118])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#7116] / [i915#9424]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#3359]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3359]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3359]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#4103]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +53 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9067])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#9067])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#4213])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9227])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#9723])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8588])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#1257])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#1257])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3840]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3840])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3469]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3955])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#4854])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#1839])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3637]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#9934]) +9 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8381])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#8381]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +4 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@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][196] ([i915#2672]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8810])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8708]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [PASS][201] -> [FAIL][202] ([i915#6880])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][203] +55 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#1825]) +36 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#5439])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3458]) +27 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3458]) +18 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#8708]) +24 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3023]) +22 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708]) +23 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#1825]) +20 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#6118])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#6301])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#6301])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8806])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#3555]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#6953] / [i915#9423])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][221] ([i915#8292])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9423]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#9423]) +15 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5176]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#9423]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#5235]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#5235]) +5 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#5235] / [i915#9423]) +11 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#5354])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9685])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#9685])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9293])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3361]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#9340])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9340])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#8430])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8430])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#9519])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#9519])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#9519]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#6524] / [i915#6805])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#6524])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#9808]) +7 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-4/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4348])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9683]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][250] +146 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#9732]) +22 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@pr-sprite-blt:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#9688]) +8 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#4077] / [i915#9688])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-1/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +28 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9732]) +20 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#4884])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#5289]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#4235] / [i915#5190]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#4235]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#4235])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8809] / [i915#8823])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][264] ([IGT#2] / [i915#6493])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#8623]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8808])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#9906]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#9906]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#9906])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#9906])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9906])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#2437]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_writeback@writeback-check-output.html
- shard-glk: NOTRUN -> [SKIP][273] ([i915#2437])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-glk5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#2437])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#2437])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#7387])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@perf@global-sseu-config.html
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#7387])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#2434])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#2433])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][280] ([i915#4349])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][281] ([i915#4349]) +3 other tests fail
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#8850])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][283] ([i915#6806])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-8/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#8516])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#8516])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#8516])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][287] ([i915#9351])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-read:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3708])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3291] / [i915#3708])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3291] / [i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#3708] / [i915#4077]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#3708])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#9917])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][294] ([i915#9781])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][295] +35 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#4818])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2575]) +10 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#2575]) +14 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-18/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#2575]) +16 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@vc4/vc4_label_bo@set-label:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#7711]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-rkl-2/igt@vc4/vc4_label_bo@set-label.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#7711]) +4 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-3/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#7711]) +14 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#7711]) +11 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-5/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][304] ([i915#5784]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-2/igt@gem_eio@reset-stress.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@gem_eio@reset-stress.html
* igt@gem_lmem_swapping@verify@lmem0:
- shard-dg2: [INCOMPLETE][306] ([i915#10317]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-5/igt@gem_lmem_swapping@verify@lmem0.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-1/igt@gem_lmem_swapping@verify@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][308] ([i915#1982] / [i915#9820] / [i915#9849]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [INCOMPLETE][310] ([i915#1982] / [i915#9849]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [INCOMPLETE][312] -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-8/igt@i915_module_load@resize-bar.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@i915_module_load@resize-bar.html
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-1:
- shard-snb: [ABORT][314] -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-snb5/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-1.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-snb2/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][316] ([i915#2122]) -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@dpms-off-confusion@d-hdmi-a4:
- shard-dg1: [INCOMPLETE][318] -> [PASS][319] +1 other test pass
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg1-15/igt@kms_flip@dpms-off-confusion@d-hdmi-a4.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_flip@dpms-off-confusion@d-hdmi-a4.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][320] ([i915#9519]) -> [PASS][321] +1 other test pass
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_sysfs_edid_timing:
- shard-snb: [FAIL][322] ([IGT#2] / [i915#6493]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-snb7/igt@kms_sysfs_edid_timing.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-snb4/igt@kms_sysfs_edid_timing.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][324] ([i915#10131] / [i915#9697]) -> [ABORT][325] ([i915#10131] / [i915#10887] / [i915#9820])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][326] ([i915#9424]) -> [SKIP][327] ([i915#9433])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg1-14/igt@kms_content_protection@mei-interface.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][328] ([i915#10433] / [i915#3458]) -> [SKIP][329] ([i915#3458]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen:
- shard-dg1: [SKIP][330] ([i915#3458] / [i915#4423]) -> [SKIP][331] ([i915#3458])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg2: [SKIP][332] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][333] ([i915#1072] / [i915#9732]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-11/igt@kms_psr@fbc-pr-sprite-blt.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-3/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: [SKIP][334] ([i915#1072] / [i915#9732]) -> [SKIP][335] ([i915#1072] / [i915#9673] / [i915#9732]) +12 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14827/shard-dg2-8/igt@kms_psr@fbc-psr-primary-blt.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10317]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10317
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10652
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9364
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7871 -> IGTPW_11199
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14827: e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11199: 9b1394160ca87b63f1c216072b5d36fcf7a8313b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11199/index.html
[-- Attachment #2: Type: text/html, Size: 116975 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
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-27 17:39 [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 20:41 ` ✓ Fi.CI.BAT: success for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) Patchwork
2024-05-27 20:59 ` ✓ CI.xeBAT: " Patchwork
2024-05-27 22:25 ` ✗ CI.xeFULL: failure " Patchwork
2024-05-28 4:40 ` [PATCH i-g-t] tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank Modem, Bhanuprakash
2024-05-28 11:29 ` ✗ Fi.CI.IGT: failure for tests/intel/kms_pm_dc: Add a new test to validate the deep sleep state during extended vblank (rev3) 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-28 10:09 Jeevan B
2024-05-28 10:12 ` 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