All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test
@ 2021-03-03  5:07 Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Anshuman Gupta @ 2021-03-03  5:07 UTC (permalink / raw)
  To: igt-dev

v3 has changed the pc8/pc10 timeout values.

Anshuman Gupta (5):
  i915/i915_pm_rpm: Enable PC8+ residency test
  i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test
  i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout
  i915/i915_pm_rpm: Add PC10 display off test
  i915/i915_pm_rpm: Add PC10 idle display on test

 tests/i915/i915_pm_rpm.c | 113 +++++++++++++++++++++++++++++++--------
 1 file changed, 92 insertions(+), 21 deletions(-)

-- 
2.26.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] [PATCH i-g-t v3 1/5] i915/i915_pm_rpm: Enable PC8+ residency test
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
@ 2021-03-03  5:07 ` Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Anshuman Gupta @ 2021-03-03  5:07 UTC (permalink / raw)
  To: igt-dev

Enabled pc8-residency test for each platform that supports pc8.
Bifurcate pc8-residency is display-on and display-off test case.

Negative testing of PC8 residency on HASWELL/BROADWELL while
display being "on" is removed as it saves CI time and there is
no ROI of such testing.

v2: chooses the optimum timeout value for PC8 test timeout.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 56 ++++++++++++++++++++++++++++------------
 1 file changed, 39 insertions(+), 17 deletions(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index d9ec0388..067d1b91 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -52,6 +52,16 @@
 #include "igt_debugfs.h"
 #include "igt_device.h"
 #include "igt_edid.h"
+#include "igt_psr.h"
+
+#define MSR_PKG_CST_CONFIG_CONTROL	0xE2
+/*
+ * Below PKG CST limit mask and PC8 bits are meant for
+ * HSW,BDW SKL,ICL and Goldmont Microarch.
+ * Refer IA S/W developers manual vol3c part3 chapter:35
+ */
+#define  PKG_CST_LIMIT_MASK		0xF
+#define  PKG_CST_LIMIT_C8		0x6
 
 #define MSR_PC8_RES	0x630
 #define MSR_PC9_RES	0x631
@@ -85,6 +95,14 @@ enum plane_type {
 #define WAIT_EXTRA	4
 #define USE_DPMS	8
 
+/*
+ * PC state timeout
+ * idle time of msecs is enough for cpu to be in C10 but for package C states
+ * it requeries other soc devices to be idle to be ready for entry to PC8/PC10.
+ * Let's keep 3 seconds timeout for PC8 and 5 seconds for PC10.
+ */
+#define PC8_TIMEOUT 3
+
 int drm_fd, msr_fd, pc8_status_fd;
 int debugfs;
 bool has_runtime_pm, has_pc8;
@@ -301,7 +319,6 @@ static void init_modeset_cached_params(struct mode_set_data *data)
 					    SCREEN_TYPE_LPSP);
 	non_lpsp = init_modeset_params_for_type(data, &non_lpsp_mode_params,
 						SCREEN_TYPE_NON_LPSP);
-
 	if (lpsp)
 		default_mode_params = &lpsp_mode_params;
 	else if (non_lpsp)
@@ -728,10 +745,6 @@ static void setup_pc8(void)
 {
 	has_pc8 = false;
 
-	/* Only Haswell supports the PC8 feature. */
-	if (!IS_HASWELL(ms_data.devid) && !IS_BROADWELL(ms_data.devid))
-		return;
-
 	/* Make sure our Kernel supports MSR and the module is loaded. */
 	igt_require(modprobe("msr") == 0);
 
@@ -827,20 +840,27 @@ static void basic_subtest(void)
 	/* XXX Also we can test wake up via exec nop */
 }
 
-static void pc8_residency_subtest(void)
+static void pc8_residency_subtest(bool display_on)
 {
 	igt_require(has_pc8);
 
-	/* Make sure PC8+ residencies move! */
-	disable_all_screens(&ms_data);
-	igt_assert_f(pc8_plus_residency_changed(30),
-		     "Machine is not reaching PC8+ states, please check its "
-		     "configuration.\n");
+	if (IS_HASWELL(ms_data.devid) || IS_BROADWELL(ms_data.devid))
+		igt_require_f(!display_on, "pc8 with display on not supported\n");
 
-	/* Make sure PC8+ residencies stop! */
-	enable_one_screen(&ms_data);
-	igt_assert_f(!pc8_plus_residency_changed(10),
-		     "PC8+ residency didn't stop with screen enabled.\n");
+	if (!display_on) {
+		/* Make sure PC8+ residencies move! */
+		disable_all_screens(&ms_data);
+		igt_assert_f(pc8_plus_residency_changed(PC8_TIMEOUT),
+			     "Machine is not reaching PC8+ states with all screens disabled.\n");
+	} else {
+		/* check pc8 with psr disabled on any output */
+		psr_disable(drm_fd, debugfs);
+		enable_one_screen(&ms_data);
+		igt_assert_f(pc8_plus_residency_changed(PC8_TIMEOUT),
+			     "Machine is not reaching PC8+ states with a screen enabled.\n");
+		/* Restore PSR with PSR_MODE_1 for rest of IGT */
+		psr_enable(drm_fd, debugfs, PSR_MODE_1);
+	}
 }
 
 static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
@@ -2075,8 +2095,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 		reg_read_ioctl_subtest();
 	igt_subtest("i2c")
 		i2c_subtest();
-	igt_subtest("pc8-residency")
-		pc8_residency_subtest();
+	igt_subtest("pc8-residency-display-on")
+		pc8_residency_subtest(true);
+	igt_subtest("pc8-residency-display-off")
+		pc8_residency_subtest(false);
 	igt_subtest("debugfs-read")
 		debugfs_read_subtest();
 	igt_subtest("debugfs-forcewake-user")
-- 
2.26.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [igt-dev] [PATCH i-g-t v3 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
@ 2021-03-03  5:07 ` Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout Anshuman Gupta
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Anshuman Gupta @ 2021-03-03  5:07 UTC (permalink / raw)
  To: igt-dev

modeset-pc8-residency-stress checks PC8 residency with modeset
stress, It is sufficient to validate PC8 while all displays
being off with modeset stress.
Negative testing of PC8 residency on HASWELL/BROADWELL while
display being "on" is removed as it saves CI time and there is
no ROI of such testing. wait_for_active() already covers that
for platform without runtime_pm.

v2: Used optimum pc8 timeout value and commit log changes.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 067d1b91..c78277aa 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -882,7 +882,7 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
 		if (wait_flags & WAIT_STATUS)
 			igt_assert(wait_for_suspended());
 		if (wait_flags & WAIT_PC8_RES)
-			igt_assert(pc8_plus_residency_changed(30));
+			igt_assert(pc8_plus_residency_changed(PC8_TIMEOUT));
 		if (wait_flags & WAIT_EXTRA)
 			sleep(5);
 
@@ -891,8 +891,6 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
 		igt_require(enable_one_screen_with_type(&ms_data, type));
 		if (wait_flags & WAIT_STATUS)
 			igt_assert(wait_for_active());
-		if (wait_flags & WAIT_PC8_RES)
-			igt_assert(!pc8_plus_residency_changed(5));
 		if (wait_flags & WAIT_EXTRA)
 			sleep(5);
 	}
-- 
2.26.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [igt-dev] [PATCH i-g-t v3 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
@ 2021-03-03  5:07 ` Anshuman Gupta
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Anshuman Gupta @ 2021-03-03  5:07 UTC (permalink / raw)
  To: igt-dev

Use a optimum PC8 timeout value for gem-execbuf-stress-pc8
igt test.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index c78277aa..290d1223 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -1410,7 +1410,7 @@ static void gem_execbuf_stress_subtest(int rounds, int wait_flags)
 			igt_assert(wait_for_suspended());
 		}
 		if (wait_flags & WAIT_PC8_RES)
-			igt_assert(pc8_plus_residency_changed(30));
+			igt_assert(pc8_plus_residency_changed(PC8_TIMEOUT));
 		if (wait_flags & WAIT_EXTRA)
 			sleep(5);
 	}
-- 
2.26.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
                   ` (2 preceding siblings ...)
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout Anshuman Gupta
@ 2021-03-03  5:07 ` Anshuman Gupta
  2021-04-18 19:37   ` Shankar, Uma
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 5/5] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Anshuman Gupta @ 2021-03-03  5:07 UTC (permalink / raw)
  To: igt-dev

Add a test to validate PC10 residencies while all output's
display is off.

v2: used optimum pc10 timeout value.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 290d1223..b27c20bd 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -102,6 +102,7 @@ enum plane_type {
  * Let's keep 3 seconds timeout for PC8 and 5 seconds for PC10.
  */
 #define PC8_TIMEOUT 3
+#define PC10_TIMEOUT 5
 
 int drm_fd, msr_fd, pc8_status_fd;
 int debugfs;
@@ -187,6 +188,16 @@ static bool pc8_plus_residency_changed(unsigned int timeout_sec)
 			timeout_sec * 1000, 100);
 }
 
+static bool pc10_residency_changed(unsigned int timeout_sec)
+{
+	uint64_t res_pc10;
+
+	res_pc10 = get_residency(MSR_PC10_RES);
+
+	return igt_wait(res_pc10 != get_residency(MSR_PC10_RES),
+			timeout_sec * 1000, 100);
+}
+
 static enum pc8_status get_pc8_status(void)
 {
 	ssize_t n_read;
@@ -863,6 +874,19 @@ static void pc8_residency_subtest(bool display_on)
 	}
 }
 
+static void pc10_residency_subtest(bool display_on)
+{
+	igt_require(has_pc8);
+	igt_require(AT_LEAST_GEN(ms_data.devid, 9));
+
+	if (!display_on) {
+		/* Make sure PC10 residencies move! */
+		disable_all_screens_and_wait(&ms_data);
+		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
+			     "Machine is not reaching PC10 state with all screens disabled.\n");
+	}
+}
+
 static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
 {
 	int i;
@@ -2097,6 +2121,8 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 		pc8_residency_subtest(true);
 	igt_subtest("pc8-residency-display-off")
 		pc8_residency_subtest(false);
+	igt_subtest("pc10-residency-display-off")
+		pc10_residency_subtest(false);
 	igt_subtest("debugfs-read")
 		debugfs_read_subtest();
 	igt_subtest("debugfs-forcewake-user")
-- 
2.26.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [igt-dev] [PATCH i-g-t v3 5/5] i915/i915_pm_rpm: Add PC10 idle display on test
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
                   ` (3 preceding siblings ...)
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
@ 2021-03-03  5:07 ` Anshuman Gupta
  2021-03-03 15:28 ` [igt-dev] ✓ Fi.CI.BAT: success for PC state igt test (rev3) Patchwork
  2021-03-03 17:24 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Anshuman Gupta @ 2021-03-03  5:07 UTC (permalink / raw)
  To: igt-dev

Add a test which validates PC10 residencies with
psr idle display on.

v2: used optimum pc10 timeout value.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index b27c20bd..9e5ee4e5 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -79,6 +79,7 @@ enum pc8_status {
 enum screen_type {
 	SCREEN_TYPE_LPSP,
 	SCREEN_TYPE_NON_LPSP,
+	SCREEN_TYPE_PSR,
 	SCREEN_TYPE_ANY,
 };
 
@@ -137,6 +138,7 @@ struct modeset_params {
 
 struct modeset_params lpsp_mode_params;
 struct modeset_params non_lpsp_mode_params;
+struct modeset_params psr_mode_params;
 struct modeset_params *default_mode_params;
 
 static int modprobe(const char *driver)
@@ -302,6 +304,10 @@ static bool init_modeset_params_for_type(struct mode_set_data *data,
 		    i915_output_is_lpsp_capable(drm_fd, output))
 			continue;
 
+		if (type == SCREEN_TYPE_PSR &&
+		    !psr_sink_support(drm_fd, debugfs, PSR_MODE_1))
+			continue;
+
 		connector = c;
 		mode = igt_output_get_mode(output);
 		break;
@@ -336,6 +342,8 @@ static void init_modeset_cached_params(struct mode_set_data *data)
 		default_mode_params = &non_lpsp_mode_params;
 	else
 		default_mode_params = NULL;
+
+	init_modeset_params_for_type(data, &psr_mode_params, SCREEN_TYPE_PSR);
 }
 
 static bool set_mode_for_params(struct modeset_params *params)
@@ -367,6 +375,9 @@ static bool enable_one_screen_with_type(struct mode_set_data *data,
 	case SCREEN_TYPE_NON_LPSP:
 		params = &non_lpsp_mode_params;
 		break;
+	case SCREEN_TYPE_PSR:
+		params = &psr_mode_params;
+		break;
 	default:
 		igt_assert(0);
 	}
@@ -377,6 +388,12 @@ static bool enable_one_screen_with_type(struct mode_set_data *data,
 	return set_mode_for_params(params);
 }
 
+static void enable_psr_screen(struct mode_set_data *data)
+{
+	psr_enable(drm_fd, debugfs, PSR_MODE_1);
+	igt_require(enable_one_screen_with_type(data, SCREEN_TYPE_PSR));
+}
+
 static void enable_one_screen(struct mode_set_data *data)
 {
 	/* SKIP if there are no connected screens. */
@@ -884,6 +901,12 @@ static void pc10_residency_subtest(bool display_on)
 		disable_all_screens_and_wait(&ms_data);
 		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
 			     "Machine is not reaching PC10 state with all screens disabled.\n");
+	} else {
+		/* check pc10 with psr screen */
+		enable_psr_screen(&ms_data);
+		igt_assert(psr_wait_entry(debugfs, PSR_MODE_1));
+		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
+			     "Machine is not reaching PC10 state with idle display on\n");
 	}
 }
 
@@ -2121,6 +2144,8 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 		pc8_residency_subtest(true);
 	igt_subtest("pc8-residency-display-off")
 		pc8_residency_subtest(false);
+	igt_subtest("pc10-residency-display-on")
+		pc10_residency_subtest(true);
 	igt_subtest("pc10-residency-display-off")
 		pc10_residency_subtest(false);
 	igt_subtest("debugfs-read")
-- 
2.26.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for PC state igt test (rev3)
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
                   ` (4 preceding siblings ...)
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 5/5] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
@ 2021-03-03 15:28 ` Patchwork
  2021-03-03 17:24 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2021-03-03 15:28 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 6249 bytes --]

== Series Details ==

Series: PC state igt test (rev3)
URL   : https://patchwork.freedesktop.org/series/84737/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9823 -> IGTPW_5565
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_5565 need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_5565, please notify your bug team 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_5565/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_5565:

### IGT changes ###

#### Warnings ####

  * igt@i915_pm_rpm@module-reload:
    - fi-glk-dsi:         [DMESG-WARN][1] ([i915#1982]) -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/fi-glk-dsi/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-glk-dsi/igt@i915_pm_rpm@module-reload.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_selftest@live@gem_contexts:
    - {fi-cml-drallion}:  NOTRUN -> [DMESG-FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-drallion/igt@i915_selftest@live@gem_contexts.html

  
Known issues
------------

  Here are the changes found in IGTPW_5565 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@nop-compute0:
    - fi-cml-s:           NOTRUN -> [SKIP][4] ([fdo#109315]) +17 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-s/igt@amdgpu/amd_cs_nop@nop-compute0.html

  * igt@gem_exec_fence@basic-wait@bcs0:
    - fi-cml-s:           NOTRUN -> [SKIP][5] ([i915#1208]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-s/igt@gem_exec_fence@basic-wait@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-cml-s:           NOTRUN -> [SKIP][6] ([i915#2190])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-s/igt@gem_huc_copy@huc-copy.html

  * igt@gem_tiled_fence_blits@basic:
    - fi-kbl-8809g:       [PASS][7] -> [TIMEOUT][8] ([i915#3145])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/fi-kbl-8809g/igt@gem_tiled_fence_blits@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-kbl-8809g/igt@gem_tiled_fence_blits@basic.html

  * igt@kms_chamelium@dp-hpd-fast:
    - fi-cml-s:           NOTRUN -> [SKIP][9] ([fdo#109284] / [fdo#111827]) +8 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-s/igt@kms_chamelium@dp-hpd-fast.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-cml-s:           NOTRUN -> [SKIP][10] ([fdo#109285])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-s/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-cml-s:           NOTRUN -> [SKIP][11] ([fdo#109278] / [i915#533])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-s/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  
#### Possible fixes ####

  * igt@gem_exec_gttfill@basic:
    - fi-kbl-8809g:       [TIMEOUT][12] ([i915#3145]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html

  * igt@gem_exec_parallel@engines@contexts:
    - {fi-cml-drallion}:  [INCOMPLETE][14] -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/fi-cml-drallion/igt@gem_exec_parallel@engines@contexts.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-cml-drallion/igt@gem_exec_parallel@engines@contexts.html

  * igt@i915_selftest@live@client:
    - fi-glk-dsi:         [DMESG-FAIL][16] ([i915#3047]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/fi-glk-dsi/igt@i915_selftest@live@client.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/fi-glk-dsi/igt@i915_selftest@live@client.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1208]: https://gitlab.freedesktop.org/drm/intel/issues/1208
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
  [i915#3047]: https://gitlab.freedesktop.org/drm/intel/issues/3047
  [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


Participating hosts (38 -> 33)
------------------------------

  Additional (1): fi-cml-s 
  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6020 -> IGTPW_5565

  CI-20190529: 20190529
  CI_DRM_9823: d559dcad6da00e498bb2c41967a9e5487545b8ba @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5565: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/index.html
  IGT_6020: 8382d9e87bba39ecc6fa879b2491e28c7fb2e3c7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@i915_pm_rpm@pc8-residency-display-off
+igt@i915_pm_rpm@pc8-residency-display-on
+igt@i915_pm_rpm@pc10-residency-display-off
+igt@i915_pm_rpm@pc10-residency-display-on
-igt@i915_pm_rpm@pc8-residency

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/index.html

[-- Attachment #1.2: Type: text/html, Size: 7206 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for PC state igt test (rev3)
  2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
                   ` (5 preceding siblings ...)
  2021-03-03 15:28 ` [igt-dev] ✓ Fi.CI.BAT: success for PC state igt test (rev3) Patchwork
@ 2021-03-03 17:24 ` Patchwork
  2021-03-22  7:14   ` Gupta, Anshuman
  6 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2021-03-03 17:24 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 30239 bytes --]

== Series Details ==

Series: PC state igt test (rev3)
URL   : https://patchwork.freedesktop.org/series/84737/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9823_full -> IGTPW_5565_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_5565_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_5565_full, please notify your bug team 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_5565/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_5565_full:

### IGT changes ###

#### Possible regressions ####

  * {igt@i915_pm_rpm@pc10-residency-display-off} (NEW):
    - shard-iclb:         NOTRUN -> [FAIL][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb5/igt@i915_pm_rpm@pc10-residency-display-off.html

  * {igt@i915_pm_rpm@pc8-residency-display-off} (NEW):
    - shard-kbl:          NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@i915_pm_rpm@pc8-residency-display-off.html

  
#### Warnings ####

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@kms_content_protection@content_type_change:
    - shard-iclb:         [SKIP][5] ([fdo#109300] / [fdo#111066]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb6/igt@kms_content_protection@content_type_change.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb1/igt@kms_content_protection@content_type_change.html

  
New tests
---------

  New tests have been introduced between CI_DRM_9823_full and IGTPW_5565_full:

### New IGT tests (4) ###

  * igt@i915_pm_rpm@pc10-residency-display-off:
    - Statuses : 2 fail(s) 2 skip(s)
    - Exec time: [0.0, 9.38] s

  * igt@i915_pm_rpm@pc10-residency-display-on:
    - Statuses : 2 fail(s) 4 skip(s)
    - Exec time: [0.0, 7.25] s

  * igt@i915_pm_rpm@pc8-residency-display-off:
    - Statuses : 2 fail(s) 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 4.01] s

  * igt@i915_pm_rpm@pc8-residency-display-on:
    - Statuses :
    - Exec time: [None] s

  

Known issues
------------

  Here are the changes found in IGTPW_5565_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-3x:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#1839])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb8/igt@feature_discovery@display-3x.html

  * igt@gem_ctx_persistence@engines-mixed:
    - shard-hsw:          NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw5/igt@gem_ctx_persistence@engines-mixed.html

  * igt@gem_ctx_persistence@legacy-engines-queued:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +6 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][11] ([i915#2846])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2842]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][16] ([i915#2842]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-tglb:         NOTRUN -> [FAIL][17] ([i915#2842]) +4 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][18] ([i915#2842]) +4 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_reloc@basic-wide-active@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][19] ([i915#2389]) +4 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@gem_exec_reloc@basic-wide-active@rcs0.html

  * igt@gem_exec_schedule@u-fairslice@rcs0:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][20] ([i915#2803])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@gem_exec_schedule@u-fairslice@rcs0.html

  * igt@gem_exec_whisper@basic-contexts-forked:
    - shard-glk:          [PASS][21] -> [DMESG-WARN][22] ([i915#118] / [i915#95]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk8/igt@gem_exec_whisper@basic-contexts-forked.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk7/igt@gem_exec_whisper@basic-contexts-forked.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][23] ([i915#2658]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb6/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#768]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#109312])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb2/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_userptr_blits@input-checking:
    - shard-snb:          NOTRUN -> [DMESG-WARN][26] ([i915#3002])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb6/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#1317]) +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb8/igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-idle@wb:
    - shard-glk:          NOTRUN -> [SKIP][28] ([fdo#109271]) +52 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk9/igt@gem_userptr_blits@mmap-offset-invalidate-idle@wb.html

  * igt@gen9_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#112306]) +2 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#112306]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_pm_backlight@basic-brightness:
    - shard-hsw:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3012])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw2/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#1937])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * {igt@i915_pm_rpm@pc10-residency-display-off} (NEW):
    - shard-tglb:         NOTRUN -> [FAIL][33] ([i915#2411]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb6/igt@i915_pm_rpm@pc10-residency-display-off.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111614]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#110725] / [fdo#111614]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_joiner@basic:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([i915#2705])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_big_joiner@basic.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +18 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_color@pipe-d-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#109278] / [i915#1149])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@kms_color@pipe-d-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-a-ctm-green-to-red:
    - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk3/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +25 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl1/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-a-ctm-max:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_color_chamelium@pipe-a-ctm-max.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-25:
    - shard-kbl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@kms_color_chamelium@pipe-b-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-c-ctm-negative:
    - shard-hsw:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw1/igt@kms_color_chamelium@pipe-c-ctm-negative.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +7 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][45] ([i915#1319]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl7/igt@kms_content_protection@atomic-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111828])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@kms_content_protection@atomic-dpms.html
    - shard-kbl:          NOTRUN -> [TIMEOUT][47] ([i915#1319]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb5/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109278] / [fdo#109279])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding:
    - shard-kbl:          [PASS][50] -> [FAIL][51] ([i915#54])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html
    - shard-apl:          [PASS][52] -> [FAIL][53] ([i915#54])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html
    - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#54])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-suspend:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +121 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html

  * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
    - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271]) +375 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb6/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109274] / [fdo#109278])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-tglb:         [PASS][59] -> [FAIL][60] ([i915#2346])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@pipe-d-single-move:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278]) +12 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_cursor_legacy@pipe-d-single-move.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109274]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#111825]) +22 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
    - shard-tglb:         NOTRUN -> [FAIL][64] ([i915#2122])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
    - shard-apl:          [PASS][65] -> [DMESG-WARN][66] ([i915#180])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][67] ([i915#180]) +2 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-kbl:          NOTRUN -> [FAIL][68] ([i915#2641])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#2642])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-apl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#2642])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
    - shard-kbl:          NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2642])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-hsw:          NOTRUN -> [SKIP][72] ([fdo#109271]) +56 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109280]) +23 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#533])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [PASS][75] -> [DMESG-WARN][76] ([i915#180]) +3 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane@plane-position-hole-dpms-pipe-b-planes:
    - shard-kbl:          [PASS][77] -> [FAIL][78] ([i915#2472])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl6/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
    - shard-glk:          [PASS][79] -> [FAIL][80] ([i915#2472])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk9/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk2/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
    - shard-apl:          [PASS][81] -> [FAIL][82] ([i915#2472])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-apl3/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl3/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][83] ([i915#265])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
    - shard-apl:          NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][85] ([i915#265])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_multiple@atomic-pipe-b-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([fdo#111615])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb2/igt@kms_plane_multiple@atomic-pipe-b-tiling-yf.html

  * igt@kms_plane_multiple@atomic-pipe-d-tiling-none:
    - shard-hsw:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#533]) +7 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw1/igt@kms_plane_multiple@atomic-pipe-d-tiling-none.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-glk:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2733])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([i915#1836])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb3/igt@kms_prime@basic-crc@first-to-second.html
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1836])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_prime@basic-crc@first-to-second.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#658]) +2 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-iclb:         NOTRUN -> [SKIP][92] ([i915#658])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#658]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
    - shard-kbl:          NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#658]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][95] -> [SKIP][96] ([fdo#109441])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr@suspend:
    - shard-hsw:          NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#1072]) +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw2/igt@kms_psr@suspend.html

  * igt@kms_vblank@pipe-d-ts-continuation-idle:
    - shard-apl:          NOTRUN -> [SKIP][98] ([fdo#109271]) +225 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl6/igt@kms_vblank@pipe-d-ts-continuation-idle.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-apl:          NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#533]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][100] ([fdo#109502]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][101] ([fdo#109502]) +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][102] ([i915#2437])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-apl:          NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2437])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl2/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@ctx-flip-threshold-reset-after-capture:
    - shard-iclb:         NOTRUN -> [SKIP][104] ([i915#2530]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@nouveau_crc@ctx-flip-threshold-reset-after-capture.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2530]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@perf@gen12-oa-tlb-invalidate:
    - shard-iclb:         NOTRUN -> [SKIP][106] ([fdo#109289])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@perf@gen12-oa-tlb-invalidate.html

  * igt@prime_nv_api@i915_nv_double_import:
    - shard-tglb:         NOTRUN -> [SKIP][107] ([fdo#109291]) +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb5/igt@prime_nv_api@i915_nv_double_import.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109291]) +3 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@sysfs_clients@busy@vcs0:
    - shard-glk:          [PASS][109] -> [FAIL][110] ([i915#3019])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk5/igt@sysfs_clients@busy@vcs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@sysfs_clients@busy@vcs0.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         [PASS][111] -> [FAIL][112] ([i915#3028])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb3/igt@sysfs_clients@recycle-many.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb6/igt@sysfs_clients@recycle-many.html
    - shard-glk:          [PASS][113] -> [FAIL][114] ([i915#3028])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk6/igt@sysfs_clients@recycle-many.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk6/igt@sysfs_clients@recycle-many.html
    - shard-tglb:         [PASS][115] -> [FAIL][116] ([i915#3028])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb2/igt@sysfs_clients@recycle-many.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@sysfs_clients@recycle-many.html
    - shard-snb:          NOTRUN -> [FAIL][117] ([i915#3028])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb7/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@sema-10@rcs0:
    - shard-glk:          NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#3026]) +2 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk8/igt@sysfs_clients@sema-10@rcs0.html

  * igt@sysfs_clients@sema-10@vcs0:
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#3026]) +3 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl4/igt@sysfs_clients@sema-10@vcs0.html

  * igt@sysfs_clients@split-10@bcs0:
    - shard-apl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#3026])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl8/igt@sysfs_clients@split-10@bcs0.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@many-contexts:
    - shard-iclb:         [INCOMPLETE][121] ([i915#3057]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb4/igt@gem_ctx_persistence@many-contexts.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][123] ([i915#3063]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb7/igt@gem_eio@unwedge-stress.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb8/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][125] ([i915#2842]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-kbl:          [FAIL][127] ([i915#2842]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [FAIL][129] ([i915#2842]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-glk:          [FAIL][131] ([i915#2389]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk1/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@gem_exec_reloc@basic-many-active@rcs0.html

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/index.html

[-- Attachment #1.2: Type: text/html, Size: 33849 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [igt-dev] ✓ Fi.CI.IGT: success for PC state igt test (rev3)
  2021-03-03 17:24 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2021-03-22  7:14   ` Gupta, Anshuman
  0 siblings, 0 replies; 10+ messages in thread
From: Gupta, Anshuman @ 2021-03-22  7:14 UTC (permalink / raw)
  To: igt-dev

Pushed to drm-intel-next.
Thanks for review.
Br,
Anshuman.

From: Patchwork <patchwork@emeril.freedesktop.org> 
Sent: Wednesday, March 3, 2021 10:54 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✓ Fi.CI.IGT: success for PC state igt test (rev3)

Patch Details 
Series:
PC state igt test (rev3)
URL:
https://patchwork.freedesktop.org/series/84737/
State:
success
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/index.html
CI Bug Log - changes from CI_DRM_9823_full -> IGTPW_5565_full
Summary
WARNING
Minor unknown changes coming with IGTPW_5565_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5565_full, please notify your bug team 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_5565/index.html
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_5565_full:
IGT changes
Possible regressions
• {igt@i915_pm_rpm@pc10-residency-display-off} (NEW):
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb5/igt@i915_pm_rpm@pc10-residency-display-off.html +1 similar issue
• {igt@i915_pm_rpm@pc8-residency-display-off} (NEW):
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@i915_pm_rpm@pc8-residency-display-off.html
Warnings
• igt@i915_pm_rpm@gem-execbuf-stress-pc8:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html ([fdo#109271]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
• igt@kms_content_protection@content_type_change:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb6/igt@kms_content_protection@content_type_change.html ([fdo#109300] / [fdo#111066]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb1/igt@kms_content_protection@content_type_change.html
New tests
New tests have been introduced between CI_DRM_9823_full and IGTPW_5565_full:
New IGT tests (4)
• igt@i915_pm_rpm@pc10-residency-display-off:
o Statuses : 2 fail(s) 2 skip(s)
o Exec time: [0.0, 9.38] s
• igt@i915_pm_rpm@pc10-residency-display-on:
o Statuses : 2 fail(s) 4 skip(s)
o Exec time: [0.0, 7.25] s
• igt@i915_pm_rpm@pc8-residency-display-off:
o Statuses : 2 fail(s) 1 pass(s) 4 skip(s)
o Exec time: [0.0, 4.01] s
• igt@i915_pm_rpm@pc8-residency-display-on:
o Statuses :
o Exec time: [None] s
Known issues
Here are the changes found in IGTPW_5565_full that come from known issues:
IGT changes
Issues hit
• igt@feature_discovery@display-3x:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb8/igt@feature_discovery@display-3x.html ([i915#1839])
• igt@gem_ctx_persistence@engines-mixed:
o shard-hsw: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw5/igt@gem_ctx_persistence@engines-mixed.html ([fdo#109271] / [i915#1099])
• igt@gem_ctx_persistence@legacy-engines-queued:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html ([fdo#109271] / [i915#1099]) +6 similar issues
• igt@gem_ctx_sseu@invalid-args:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html ([i915#280])
• igt@gem_exec_fair@basic-deadline:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@gem_exec_fair@basic-deadline.html ([i915#2846])
• igt@gem_exec_fair@basic-none-share@rcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html ([i915#2842])
• igt@gem_exec_fair@basic-none-vip@rcs0:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html ([i915#2842]) +1 similar issue
• igt@gem_exec_fair@basic-none@rcs0:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html ([i915#2842]) +1 similar issue
• igt@gem_exec_fair@basic-none@vcs0:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@gem_exec_fair@basic-none@vcs0.html ([i915#2842]) +4 similar issues
• igt@gem_exec_fair@basic-pace@vcs1:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html ([i915#2842]) +4 similar issues
• igt@gem_exec_reloc@basic-wide-active@rcs0:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@gem_exec_reloc@basic-wide-active@rcs0.html ([i915#2389]) +4 similar issues
• igt@gem_exec_schedule@u-fairslice@rcs0:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@gem_exec_schedule@u-fairslice@rcs0.html ([i915#2803])
• igt@gem_exec_whisper@basic-contexts-forked:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk8/igt@gem_exec_whisper@basic-contexts-forked.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk7/igt@gem_exec_whisper@basic-contexts-forked.html ([i915#118] / [i915#95]) +1 similar issue
• igt@gem_pwrite@basic-exhaustion:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb6/igt@gem_pwrite@basic-exhaustion.html ([i915#2658]) +1 similar issue
• igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html ([i915#768]) +3 similar issues
• igt@gem_softpin@evict-snoop-interruptible:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb2/igt@gem_softpin@evict-snoop-interruptible.html ([fdo#109312])
• igt@gem_userptr_blits@input-checking:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb6/igt@gem_userptr_blits@input-checking.html ([i915#3002])
• igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb8/igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt.html ([i915#1317]) +3 similar issues
• igt@gem_userptr_blits@mmap-offset-invalidate-idle@wb:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk9/igt@gem_userptr_blits@mmap-offset-invalidate-idle@wb.html ([fdo#109271]) +52 similar issues
• igt@gen9_exec_parse@batch-without-end:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@gen9_exec_parse@batch-without-end.html ([fdo#112306]) +2 similar issues
• igt@gen9_exec_parse@bb-start-param:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@gen9_exec_parse@bb-start-param.html ([fdo#112306]) +1 similar issue
• igt@i915_pm_backlight@basic-brightness:
o shard-hsw: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw2/igt@i915_pm_backlight@basic-brightness.html ([fdo#109271] / [i915#3012])
• igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html ([fdo#109271] / [i915#1937])
• {igt@i915_pm_rpm@pc10-residency-display-off} (NEW):
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb6/igt@i915_pm_rpm@pc10-residency-display-off.html ([i915#2411]) +2 similar issues
• igt@kms_big_fb@x-tiled-32bpp-rotate-90:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html ([fdo#111614]) +1 similar issue
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html ([fdo#110725] / [fdo#111614]) +2 similar issues
• igt@kms_big_joiner@basic:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_big_joiner@basic.html ([i915#2705])
• igt@kms_chamelium@vga-hpd-without-ddc:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html ([fdo#109271] / [fdo#111827]) +18 similar issues
• igt@kms_color@pipe-d-ctm-0-5:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@kms_color@pipe-d-ctm-0-5.html ([fdo#109278] / [i915#1149])
• igt@kms_color_chamelium@pipe-a-ctm-green-to-red:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk3/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html ([fdo#109271] / [fdo#111827]) +4 similar issues
• igt@kms_color_chamelium@pipe-a-ctm-limited-range:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl1/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html ([fdo#109271] / [fdo#111827]) +25 similar issues
• igt@kms_color_chamelium@pipe-a-ctm-max:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_color_chamelium@pipe-a-ctm-max.html ([fdo#109284] / [fdo#111827]) +10 similar issues
• igt@kms_color_chamelium@pipe-b-ctm-0-25:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@kms_color_chamelium@pipe-b-ctm-0-25.html ([fdo#109271] / [fdo#111827]) +10 similar issues
• igt@kms_color_chamelium@pipe-c-ctm-negative:
o shard-hsw: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw1/igt@kms_color_chamelium@pipe-c-ctm-negative.html ([fdo#109271] / [fdo#111827]) +3 similar issues
• igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html ([fdo#109284] / [fdo#111827]) +7 similar issues
• igt@kms_content_protection@atomic-dpms:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl7/igt@kms_content_protection@atomic-dpms.html ([i915#1319]) +1 similar issue
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@kms_content_protection@atomic-dpms.html ([fdo#111828])
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl6/igt@kms_content_protection@atomic-dpms.html ([i915#1319]) +1 similar issue
• igt@kms_content_protection@legacy:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb5/igt@kms_content_protection@legacy.html ([fdo#109300] / [fdo#111066]) +1 similar issue
• igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding.html ([fdo#109278] / [fdo#109279])
• igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html ([i915#54])
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html ([i915#54])
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-128x42-sliding.html ([i915#54])
• igt@kms_cursor_crc@pipe-d-cursor-suspend:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html ([fdo#109271]) +121 similar issues
• igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb6/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html ([fdo#109271]) +375 similar issues
• igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html ([fdo#109274] / [fdo#109278])
• igt@kms_cursor_legacy@flip-vs-cursor-atomic:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html ([i915#2346])
• igt@kms_cursor_legacy@pipe-d-single-move:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_cursor_legacy@pipe-d-single-move.html ([fdo#109278]) +12 similar issues
• igt@kms_flip@2x-flip-vs-modeset-vs-hang:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html ([fdo#109274]) +6 similar issues
• igt@kms_flip@2x-flip-vs-rmfb:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_flip@2x-flip-vs-rmfb.html ([fdo#111825]) +22 similar issues
• igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html ([i915#2122])
• igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html ([i915#180])
• igt@kms_flip@flip-vs-suspend@c-dp1:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html ([i915#180]) +2 similar issues
• igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html ([i915#2641])
• igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html ([fdo#109271] / [i915#2642])
• igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html ([fdo#109271] / [i915#2642])
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html ([fdo#109271] / [i915#2642])
• igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
o shard-hsw: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html ([fdo#109271]) +56 similar issues
• igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack.html ([fdo#109280]) +23 similar issues
• igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl3/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html ([fdo#109271] / [i915#533])
• igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html ([i915#180]) +3 similar issues
• igt@kms_plane@plane-position-hole-dpms-pipe-b-planes:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl6/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html ([i915#2472])
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk9/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk2/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html ([i915#2472])
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-apl3/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl3/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html ([i915#2472])
• igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html ([i915#265])
• igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html ([fdo#108145] / [i915#265])
• igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html ([i915#265])
• igt@kms_plane_multiple@atomic-pipe-b-tiling-yf:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb2/igt@kms_plane_multiple@atomic-pipe-b-tiling-yf.html ([fdo#111615])
• igt@kms_plane_multiple@atomic-pipe-d-tiling-none:
o shard-hsw: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw1/igt@kms_plane_multiple@atomic-pipe-d-tiling-none.html ([fdo#109271] / [i915#533]) +7 similar issues
• igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html ([fdo#109271] / [i915#2733])
• igt@kms_prime@basic-crc@first-to-second:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb3/igt@kms_prime@basic-crc@first-to-second.html ([i915#1836])
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_prime@basic-crc@first-to-second.html ([i915#1836])
• igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html ([fdo#109271] / [i915#658]) +2 similar issues
• igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html ([i915#658])
• igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html ([fdo#109271] / [i915#658]) +1 similar issue
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html ([fdo#109271] / [i915#658]) +1 similar issue
• igt@kms_psr@psr2_no_drrs:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb2/igt@kms_psr@psr2_no_drrs.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_psr@psr2_no_drrs.html ([fdo#109441])
• igt@kms_psr@suspend:
o shard-hsw: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-hsw2/igt@kms_psr@suspend.html ([fdo#109271] / [i915#1072]) +1 similar issue
• igt@kms_vblank@pipe-d-ts-continuation-idle:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl6/igt@kms_vblank@pipe-d-ts-continuation-idle.html ([fdo#109271]) +225 similar issues
• igt@kms_vblank@pipe-d-wait-idle:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html ([fdo#109271] / [i915#533]) +1 similar issue
• igt@kms_vrr@flip-basic:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb7/igt@kms_vrr@flip-basic.html ([fdo#109502]) +1 similar issue
• igt@kms_vrr@flip-dpms:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@kms_vrr@flip-dpms.html ([fdo#109502]) +1 similar issue
• igt@kms_writeback@writeback-check-output:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb7/igt@kms_writeback@writeback-check-output.html ([i915#2437])
• igt@kms_writeback@writeback-pixel-formats:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl2/igt@kms_writeback@writeback-pixel-formats.html ([fdo#109271] / [i915#2437])
• igt@nouveau_crc@ctx-flip-threshold-reset-after-capture:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@nouveau_crc@ctx-flip-threshold-reset-after-capture.html ([i915#2530]) +1 similar issue
• igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html ([i915#2530]) +1 similar issue
• igt@perf@gen12-oa-tlb-invalidate:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@perf@gen12-oa-tlb-invalidate.html ([fdo#109289])
• igt@prime_nv_api@i915_nv_double_import:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb5/igt@prime_nv_api@i915_nv_double_import.html ([fdo#109291]) +2 similar issues
• igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb8/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html ([fdo#109291]) +3 similar issues
• igt@sysfs_clients@busy@vcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk5/igt@sysfs_clients@busy@vcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@sysfs_clients@busy@vcs0.html ([i915#3019])
• igt@sysfs_clients@recycle-many:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb3/igt@sysfs_clients@recycle-many.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb6/igt@sysfs_clients@recycle-many.html ([i915#3028])
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk6/igt@sysfs_clients@recycle-many.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk6/igt@sysfs_clients@recycle-many.html ([i915#3028])
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb2/igt@sysfs_clients@recycle-many.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb3/igt@sysfs_clients@recycle-many.html ([i915#3028])
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-snb7/igt@sysfs_clients@recycle-many.html ([i915#3028])
• igt@sysfs_clients@sema-10@rcs0:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk8/igt@sysfs_clients@sema-10@rcs0.html ([fdo#109271] / [i915#3026]) +2 similar issues
• igt@sysfs_clients@sema-10@vcs0:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl4/igt@sysfs_clients@sema-10@vcs0.html ([fdo#109271] / [i915#3026]) +3 similar issues
• igt@sysfs_clients@split-10@bcs0:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-apl8/igt@sysfs_clients@split-10@bcs0.html ([fdo#109271] / [i915#3026])
Possible fixes
• igt@gem_ctx_persistence@many-contexts:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-iclb4/igt@gem_ctx_persistence@many-contexts.html ([i915#3057]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-iclb4/igt@gem_ctx_persistence@many-contexts.html
• igt@gem_eio@unwedge-stress:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb7/igt@gem_eio@unwedge-stress.html ([i915#3063]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb8/igt@gem_eio@unwedge-stress.html
• igt@gem_exec_fair@basic-flow@rcs0:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html ([i915#2842]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html
• igt@gem_exec_fair@basic-none-solo@rcs0:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-kbl4/igt@gem_exec_fair@basic-none-solo@rcs0.html ([i915#2842]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
• igt@gem_exec_fair@basic-pace@rcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html ([i915#2842]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html
• igt@gem_exec_reloc@basic-many-active@rcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9823/shard-glk1/igt@gem_exec_reloc@basic-many-active@rcs0.html ([i915#2389]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5565/shard-glk1/igt@gem_exec_reloc@basic-many-active@rcs0.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test
  2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
@ 2021-04-18 19:37   ` Shankar, Uma
  0 siblings, 0 replies; 10+ messages in thread
From: Shankar, Uma @ 2021-04-18 19:37 UTC (permalink / raw)
  To: Gupta, Anshuman, igt-dev



> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Anshuman
> Gupta
> Sent: Wednesday, March 3, 2021 10:38 AM
> To: igt-dev@lists.freedesktop.org
> Subject: [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test
> 
> Add a test to validate PC10 residencies while all output's display is off.
> 
> v2: used optimum pc10 timeout value.

Looks Good to me.
Reviewed-by: Uma Shankar <uma.shankar@intel.com>

> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
> ---
>  tests/i915/i915_pm_rpm.c | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index
> 290d1223..b27c20bd 100644
> --- a/tests/i915/i915_pm_rpm.c
> +++ b/tests/i915/i915_pm_rpm.c
> @@ -102,6 +102,7 @@ enum plane_type {
>   * Let's keep 3 seconds timeout for PC8 and 5 seconds for PC10.
>   */
>  #define PC8_TIMEOUT 3
> +#define PC10_TIMEOUT 5
> 
>  int drm_fd, msr_fd, pc8_status_fd;
>  int debugfs;
> @@ -187,6 +188,16 @@ static bool pc8_plus_residency_changed(unsigned int
> timeout_sec)
>  			timeout_sec * 1000, 100);
>  }
> 
> +static bool pc10_residency_changed(unsigned int timeout_sec) {
> +	uint64_t res_pc10;
> +
> +	res_pc10 = get_residency(MSR_PC10_RES);
> +
> +	return igt_wait(res_pc10 != get_residency(MSR_PC10_RES),
> +			timeout_sec * 1000, 100);
> +}
> +
>  static enum pc8_status get_pc8_status(void)  {
>  	ssize_t n_read;
> @@ -863,6 +874,19 @@ static void pc8_residency_subtest(bool display_on)
>  	}
>  }
> 
> +static void pc10_residency_subtest(bool display_on) {
> +	igt_require(has_pc8);
> +	igt_require(AT_LEAST_GEN(ms_data.devid, 9));
> +
> +	if (!display_on) {
> +		/* Make sure PC10 residencies move! */
> +		disable_all_screens_and_wait(&ms_data);
> +		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
> +			     "Machine is not reaching PC10 state with all screens
> disabled.\n");
> +	}
> +}
> +
>  static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)  {
>  	int i;
> @@ -2097,6 +2121,8 @@ igt_main_args("", long_options, help_str, opt_handler,
> NULL)
>  		pc8_residency_subtest(true);
>  	igt_subtest("pc8-residency-display-off")
>  		pc8_residency_subtest(false);
> +	igt_subtest("pc10-residency-display-off")
> +		pc10_residency_subtest(false);
>  	igt_subtest("debugfs-read")
>  		debugfs_read_subtest();
>  	igt_subtest("debugfs-forcewake-user")
> --
> 2.26.2
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-04-18 19:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-03  5:07 [igt-dev] [PATCH i-g-t v3 0/5] PC state igt test Anshuman Gupta
2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout Anshuman Gupta
2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
2021-04-18 19:37   ` Shankar, Uma
2021-03-03  5:07 ` [igt-dev] [PATCH i-g-t v3 5/5] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
2021-03-03 15:28 ` [igt-dev] ✓ Fi.CI.BAT: success for PC state igt test (rev3) Patchwork
2021-03-03 17:24 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-03-22  7:14   ` Gupta, Anshuman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.