All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6
@ 2019-05-30 12:21 Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-05-30 12:21 UTC (permalink / raw)
  To: igt-dev

This series enables the i915_pm_lpsp igt for platforms till Gen11.

This is v6 version after addressing review comment provided by
Animesh.

TODO: Future Gen12 generation this igt test may require a complete
design change because of Hardware changes.

This series has added i915_pm_lpsp subtests to CI fast
feedback list in order to run these subtest on all
affected platforms.

Patchwork revision history:
Revision 1 :  https://patchwork.freedesktop.org/series/58051/
Revision 2 :  https://patchwork.freedesktop.org/series/59048/
Revision 3 :  https://patchwork.freedesktop.org/series/59581/
Revision 4 :  https://patchwork.freedesktop.org/series/60321/
Revision 5 :  https://patchwork.freedesktop.org/series/60465/

Anshuman Gupta (4):
  igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11.
  igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel.
  igt/i915/i915_pm_lpsp: panel-fitter subtest modifications.
  DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list.

 tests/i915/i915_pm_lpsp.c             | 159 +++++++++++++++++++++-----
 tests/intel-ci/fast-feedback.testlist |   4 +
 2 files changed, 137 insertions(+), 26 deletions(-)

-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t v6 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11.
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
@ 2019-05-30 12:21 ` Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel Anshuman Gupta
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-05-30 12:21 UTC (permalink / raw)
  To: igt-dev

Enabling i915_pm_lpsp igt tests for all platforms till Gen11.
Earlier these test were enabled only on haswell and broadwell
platforms.

v2: Removed global no_lpsp_pw_idx. [Animesh]
    Check only state value for power well. [Animesh]
    Adding igt_wait of 1 second as sometimes screens_disabled
    test fails because AUDIO power domain was having non-zero
    power domain reference count.[Imre]
    Dumping i915_pm_runtime_status and i915_power_domain_info
    in case test fails.[Imre]
v3: Having igt_wait() to check lpsp_enabled() only to the part
    of test affected by delayed audio codec disabling.
v4: Simplification of power well mask. [Animesh]

Cc: imre.deak@intel.com
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_lpsp.c | 82 ++++++++++++++++++++++++++++++---------
 1 file changed, 64 insertions(+), 18 deletions(-)

diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c
index b319dbe9..5885ed5f 100644
--- a/tests/i915/i915_pm_lpsp.c
+++ b/tests/i915/i915_pm_lpsp.c
@@ -30,26 +30,62 @@
 #include <fcntl.h>
 #include <unistd.h>
 
+#include "igt_sysfs.h"
+
+#define   SKL_PW_CTL_PW_2_MASK                  (0x1 << 30)
+#define   ICL_PW_CTL_PW_3_MASK                  (0x1 << 4)
+
+#define DUMP_DBGFS(file1, file2, fd)			\
+	"%s:\n%s\n%s:\n%s\n", file1,			\
+	igt_sysfs_get(fd, file1), file2,		\
+	igt_sysfs_get(fd, file2)			\
 
 static bool supports_lpsp(uint32_t devid)
 {
-	return IS_HASWELL(devid) || IS_BROADWELL(devid);
+	return IS_HASWELL(devid) || IS_BROADWELL(devid)
+				 || AT_LEAST_GEN(devid, 9);
+}
+
+static uint32_t get_no_lpsp_pw_mask(uint32_t devid)
+{
+	uint32_t no_lpsp_pw_mask;
+
+	if (IS_HASWELL(devid) || IS_BROADWELL(devid))
+		no_lpsp_pw_mask = HSW_PWR_WELL_STATE_ENABLED;
+	else if (IS_GEN(devid, 11))
+		no_lpsp_pw_mask = ICL_PW_CTL_PW_3_MASK;
+	else if (AT_LEAST_GEN(devid, 9))
+		no_lpsp_pw_mask = SKL_PW_CTL_PW_2_MASK;
+	else
+		no_lpsp_pw_mask = 0;
+
+	return no_lpsp_pw_mask;
 }
 
-static bool lpsp_is_enabled(int drm_fd)
+static bool lpsp_is_enabled(uint32_t devid)
 {
-	uint32_t val;
+	uint32_t val, mask, pw_mask;
+
+	mask = get_no_lpsp_pw_mask(devid);
+	igt_require(mask > 0);
 
 	val = INREG(HSW_PWR_WELL_CTL2);
-	return !(val & HSW_PWR_WELL_STATE_ENABLED);
+	return !(val & mask);
 }
 
 /* The LPSP mode is all about an enabled pipe, but we expect to also be in the
  * low power mode when no pipes are enabled, so do this check anyway. */
-static void screens_disabled_subtest(int drm_fd, drmModeResPtr drm_res)
+static void screens_disabled_subtest(int drm_fd, drmModeResPtr drm_res,
+				     uint32_t devid, int fd)
 {
 	kmstest_unset_all_crtcs(drm_fd, drm_res);
-	igt_assert(lpsp_is_enabled(drm_fd));
+
+	/* Some times delayed audio codec disabling causes to fail the test.
+	 * Using igt_wait to check lpsp after drm_mode_setcrtc().
+	 */
+	igt_assert_f(igt_wait(lpsp_is_enabled(devid), 1000, 100),
+		     DUMP_DBGFS("i915_runtime_pm_status",
+				"i915_power_domain_info", fd));
 }
 
 static uint32_t create_fb(int drm_fd, int width, int height)
@@ -62,7 +98,7 @@ static uint32_t create_fb(int drm_fd, int width, int height)
 
 static void edp_subtest(int drm_fd, drmModeResPtr drm_res,
 			drmModeConnectorPtr *drm_connectors, uint32_t devid,
-			bool use_panel_fitter)
+			bool use_panel_fitter, int fd)
 {
 	int i, rc;
 	uint32_t crtc_id = 0, buffer_id = 0;
@@ -133,16 +169,18 @@ static void edp_subtest(int drm_fd, drmModeResPtr drm_res,
 
 	if (use_panel_fitter) {
 		if (IS_HASWELL(devid))
-			igt_assert(!lpsp_is_enabled(drm_fd));
+			igt_assert(!lpsp_is_enabled(devid));
 		else
-			igt_assert(lpsp_is_enabled(drm_fd));
+			igt_assert(lpsp_is_enabled(devid));
 	} else {
-		igt_assert(lpsp_is_enabled(drm_fd));
+		igt_assert_f(lpsp_is_enabled(devid),
+			     DUMP_DBGFS("i915_runtime_pm_status",
+					"i915_power_domain_info", fd));
 	}
 }
 
-static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res,
-			    drmModeConnectorPtr *drm_connectors)
+static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, uint32_t devid,
+			    drmModeConnectorPtr *drm_connectors, int fd)
 {
 	int i, rc;
 	uint32_t crtc_id = 0, buffer_id = 0;
@@ -177,8 +215,9 @@ static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res,
 	rc = drmModeSetCrtc(drm_fd, crtc_id, buffer_id, 0, 0,
 			    &connector->connector_id, 1, mode);
 	igt_assert_eq(rc, 0);
-
-	igt_assert(!lpsp_is_enabled(drm_fd));
+	igt_assert_f(!lpsp_is_enabled(devid),
+		     DUMP_DBGFS("i915_runtime_pm_status",
+				"i915_power_domain_info", fd));
 }
 
 #define MAX_CONNECTORS 32
@@ -190,6 +229,8 @@ drmModeConnectorPtr drm_connectors[MAX_CONNECTORS];
 
 igt_main
 {
+	int debugfs;
+
 	igt_fixture {
 		int i;
 
@@ -212,17 +253,22 @@ igt_main
 
 		intel_register_access_init(intel_get_pci_device(), 0, drm_fd);
 
+		igt_require(get_no_lpsp_pw_mask(devid) > 0);
 		kmstest_set_vt_graphics_mode();
+		debugfs = igt_debugfs_dir(drm_fd);
 	}
 
 	igt_subtest("screens-disabled")
-		screens_disabled_subtest(drm_fd, drm_res);
+		screens_disabled_subtest(drm_fd, drm_res, devid, debugfs);
 	igt_subtest("edp-native")
-		edp_subtest(drm_fd, drm_res, drm_connectors, devid, false);
+		edp_subtest(drm_fd, drm_res, drm_connectors, devid, false,
+			    debugfs);
 	igt_subtest("edp-panel-fitter")
-		edp_subtest(drm_fd, drm_res, drm_connectors, devid, true);
+		edp_subtest(drm_fd, drm_res, drm_connectors, devid, true,
+			    debugfs);
 	igt_subtest("non-edp")
-		non_edp_subtest(drm_fd, drm_res, drm_connectors);
+		non_edp_subtest(drm_fd, drm_res, devid, drm_connectors,
+				debugfs);
 
 	igt_fixture {
 		int i;
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t v6 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel.
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
@ 2019-05-30 12:21 ` Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 3/4] igt/i915/i915_pm_lpsp: panel-fitter subtest modifications Anshuman Gupta
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-05-30 12:21 UTC (permalink / raw)
  To: igt-dev

Earlier on HSW/BDW it was assumed that only eDP panel will act
as lpsp. But that is not true now.
So checking whether a non edp panel can act as lpsp or not.

v2: CI igt fixures.
v3: CI igt fixture.
v4: Changed macro LPSP_PORT to SKL_LPSP_PORT. [Animesh]

Cc: imre.deak@intel.com
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_lpsp.c | 69 +++++++++++++++++++++++++++++++++++++--
 1 file changed, 66 insertions(+), 3 deletions(-)

diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c
index 5885ed5f..53cb7843 100644
--- a/tests/i915/i915_pm_lpsp.c
+++ b/tests/i915/i915_pm_lpsp.c
@@ -35,6 +35,9 @@
 #define   SKL_PW_CTL_PW_2_MASK                  (0x1 << 30)
 #define   ICL_PW_CTL_PW_3_MASK                  (0x1 << 4)
 
+/* DDI A port will be LPSP on non-edp panel till Gen11 */
+#define   SKL_LPSP_PORT				'A'
+
 #define DUMP_DBGFS(file1, file2, fd)			\
 	"%s:\n%s\n%s:\n%s\n", file1,			\
 	igt_sysfs_get(fd, file1), file2,		\
@@ -73,6 +76,55 @@ static bool lpsp_is_enabled(uint32_t devid)
 	return !(val & mask);
 }
 
+static bool is_non_edp_ddia_port(FILE *file, char *info)
+{
+	int ret;
+	char ddi[256];
+	char port;
+	bool ddi_a_port = false;
+
+	while (fgets(info, 256, file)) {
+		if (strstr(info, "encoder")) {
+			ret = sscanf(info, "%*s %*s %*s %s %c", ddi, &port);
+			igt_assert_eq(ret, 2);
+			if (!strcmp(ddi, "DDI") && port == SKL_LPSP_PORT)
+				ddi_a_port = true;
+		}
+		if (strstr(info, "connector") && strstr(info, "eDP"))
+			ddi_a_port = false;
+	}
+	return ddi_a_port;
+}
+
+static bool non_edp_lpsp_check(int device)
+{
+	char tmp[256];
+	FILE *file;
+	int line;
+	int fd;
+	bool is_lpsp = false;
+
+	fd = igt_debugfs_open(device, "i915_display_info", O_RDONLY);
+	file = fdopen(fd, "r");
+	igt_skip_on(!file);
+
+	line = 0;
+	while (fgets(tmp, 256, file)) {
+		if (strstr(tmp, "CRTC") && line > 0) {
+			if (strstr(tmp, "pipe: A") &&
+			    strstr(tmp, "active=yes")) {
+				is_lpsp = is_non_edp_ddia_port(file, tmp);
+				break;
+			}
+		}
+		line++;
+	}
+
+	fclose(file);
+	close(fd);
+	return is_lpsp;
+}
+
 /* The LPSP mode is all about an enabled pipe, but we expect to also be in the
  * low power mode when no pipes are enabled, so do this check anyway. */
 static void screens_disabled_subtest(int drm_fd, drmModeResPtr drm_res,
@@ -215,9 +267,20 @@ static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, uint32_t devid,
 	rc = drmModeSetCrtc(drm_fd, crtc_id, buffer_id, 0, 0,
 			    &connector->connector_id, 1, mode);
 	igt_assert_eq(rc, 0);
-	igt_assert_f(!lpsp_is_enabled(devid),
-		     DUMP_DBGFS("i915_runtime_pm_status",
-				"i915_power_domain_info", fd));
+
+	if (non_edp_lpsp_check(drm_fd) ||
+	    connector->connector_type == DRM_MODE_CONNECTOR_DSI)
+		/* Some times delayed audio codec disabling causes to fail the.
+		 * the test. Using igt_wait to check lpsp after
+		 * drm_mode_setcrtc().
+		 */
+		igt_assert_f(igt_wait(lpsp_is_enabled(devid), 1000, 100),
+			     DUMP_DBGFS("i915_runtime_pm_status",
+					"i915_power_domain_info", fd));
+	else
+		igt_assert_f(!lpsp_is_enabled(devid),
+			     DUMP_DBGFS("i915_runtime_pm_status",
+					"i915_power_domain_info", fd));
 }
 
 #define MAX_CONNECTORS 32
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t v6 3/4] igt/i915/i915_pm_lpsp: panel-fitter subtest modifications.
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel Anshuman Gupta
@ 2019-05-30 12:21 ` Anshuman Gupta
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list Anshuman Gupta
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-05-30 12:21 UTC (permalink / raw)
  To: igt-dev

It makes sense to skip the test if edp-panel native resoultion
is limted to 1024x768 rather than failing the test.
Dumping i915_runtime_pm_status and i915_power_domain_info if
test fails.
Small improvment in panel-fitter condition which check
lpsp_enabled().

Cc: imre.deak@intel.com
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_lpsp.c | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c
index 53cb7843..028124c6 100644
--- a/tests/i915/i915_pm_lpsp.c
+++ b/tests/i915/i915_pm_lpsp.c
@@ -197,10 +197,10 @@ static void edp_subtest(int drm_fd, drmModeResPtr drm_res,
 			 * support LPSP are too new for panels with native
 			 * 1024x768 resolution, so this should force the panel
 			 * fitter. */
-			igt_assert(c->count_modes &&
-				   c->modes[0].hdisplay > 1024);
-			igt_assert(c->count_modes &&
-				   c->modes[0].vdisplay > 768);
+			igt_require(c->count_modes &&
+				    c->modes[0].hdisplay > 1024);
+			igt_require(c->count_modes &&
+				    c->modes[0].vdisplay > 768);
 			mode = &std_1024_mode;
 			break;
 		}
@@ -219,16 +219,14 @@ static void edp_subtest(int drm_fd, drmModeResPtr drm_res,
 			    &connector->connector_id, 1, mode);
 	igt_assert_eq(rc, 0);
 
-	if (use_panel_fitter) {
-		if (IS_HASWELL(devid))
-			igt_assert(!lpsp_is_enabled(devid));
-		else
-			igt_assert(lpsp_is_enabled(devid));
-	} else {
+	if (use_panel_fitter && IS_HASWELL(devid))
+		igt_assert_f(!lpsp_is_enabled(devid),
+			     DUMP_DBGFS("i915_runtime_pm_status",
+					"i915_power_domain_info", fd));
+	else
 		igt_assert_f(lpsp_is_enabled(devid),
 			     DUMP_DBGFS("i915_runtime_pm_status",
 					"i915_power_domain_info", fd));
-	}
 }
 
 static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, uint32_t devid,
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t v6 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list.
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
                   ` (2 preceding siblings ...)
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 3/4] igt/i915/i915_pm_lpsp: panel-fitter subtest modifications Anshuman Gupta
@ 2019-05-30 12:21 ` Anshuman Gupta
  2019-05-31 10:26 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-05-30 12:21 UTC (permalink / raw)
  To: igt-dev

This patch adds below i915_pm_lpsp subtests to CI fast feedback
list in order to test these subtest on ICL
(which is affected platform).
Subtests:
screens-disabled
edp-native
edp-panel-fitter
non-edp

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/intel-ci/fast-feedback.testlist | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 40475b1a..670f0a26 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -216,6 +216,10 @@ igt@kms_psr@sprite_plane_onoff
 igt@kms_psr@primary_mmap_gtt
 igt@kms_setmode@basic-clone-single-crtc
 igt@i915_pm_backlight@basic-brightness
+igt@i915_pm_lpsp@edp-native
+igt@i915_pm_lpsp@edp-panel-fitter
+igt@i915_pm_lpsp@non-edp
+igt@i915_pm_lpsp@screens-disabled
 igt@i915_pm_rpm@basic-pci-d3-state
 igt@i915_pm_rpm@basic-rte
 igt@i915_pm_rps@basic-api
-- 
2.21.0

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
                   ` (3 preceding siblings ...)
  2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list Anshuman Gupta
@ 2019-05-31 10:26 ` Patchwork
  2019-07-04 17:09 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev2) Patchwork
  2019-08-14 11:49 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev3) Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-05-31 10:26 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: enable pm_lpsp for platforms till Gen11 v6
URL   : https://patchwork.freedesktop.org/series/61385/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6169 -> IGTPW_3082
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3082 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3082, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61385/revisions/1/mbox/

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_lpsp@edp-native:
    - fi-icl-dsi:         NOTRUN -> [SKIP][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-dsi/igt@i915_pm_lpsp@edp-native.html

  * igt@i915_pm_lpsp@non-edp:
    - fi-icl-dsi:         NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-dsi/igt@i915_pm_lpsp@non-edp.html
    - fi-cml-u:           NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-cml-u/igt@i915_pm_lpsp@non-edp.html
    - fi-icl-y:           NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-y/igt@i915_pm_lpsp@non-edp.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-blb-e6850:       [PASS][5] -> [INCOMPLETE][6] ([fdo#107718])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@kms_addfb_basic@unused-offsets:
    - fi-icl-u3:          [PASS][7] -> [DMESG-WARN][8] ([fdo#107724])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-u3/igt@kms_addfb_basic@unused-offsets.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-u3/igt@kms_addfb_basic@unused-offsets.html

  * igt@kms_chamelium@dp-edid-read:
    - fi-kbl-7500u:       [PASS][9] -> [FAIL][10] ([fdo#109483] / [fdo#109635 ])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-kbl-7500u/igt@kms_chamelium@dp-edid-read.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-kbl-7500u/igt@kms_chamelium@dp-edid-read.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u3:          [PASS][11] -> [FAIL][12] ([fdo#103167])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html
    - fi-icl-u2:          [PASS][13] -> [FAIL][14] ([fdo#103167])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-pnv-d510:        [PASS][15] -> [INCOMPLETE][16] ([fdo#110740])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-pnv-d510/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-pnv-d510/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  
#### Possible fixes ####

  * igt@gem_ctx_switch@basic-default:
    - {fi-icl-guc}:       [INCOMPLETE][17] ([fdo#107713] / [fdo#108569]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-guc/igt@gem_ctx_switch@basic-default.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-guc/igt@gem_ctx_switch@basic-default.html

  * igt@i915_selftest@live_contexts:
    - fi-bdw-gvtdvm:      [DMESG-FAIL][19] ([fdo#110235]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html

  * igt@kms_busy@basic-flip-a:
    - fi-kbl-7567u:       [SKIP][21] ([fdo#109271] / [fdo#109278]) -> [PASS][22] +2 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - fi-icl-u3:          [DMESG-WARN][23] ([fdo#107724]) -> [PASS][24] +4 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-u3/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-u3/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [DMESG-WARN][25] ([fdo#102614]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
    - fi-icl-dsi:         [DMESG-WARN][27] ([fdo#106107]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-dsi/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-dsi/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html

  
#### Warnings ####

  * igt@i915_selftest@live_hangcheck:
    - fi-icl-u2:          [DMESG-WARN][29] ([fdo#110801]) -> [INCOMPLETE][30] ([fdo#107713] / [fdo#108569])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-u2/igt@i915_selftest@live_hangcheck.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-u2/igt@i915_selftest@live_hangcheck.html
    - fi-icl-dsi:         [DMESG-WARN][31] ([fdo#110801]) -> [INCOMPLETE][32] ([fdo#107713] / [fdo#108569])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6169/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html

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

  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
  [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 
  [fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235
  [fdo#110740]: https://bugs.freedesktop.org/show_bug.cgi?id=110740
  [fdo#110801]: https://bugs.freedesktop.org/show_bug.cgi?id=110801


Participating hosts (50 -> 45)
------------------------------

  Missing    (5): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus 


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

  * IGT: IGT_5025 -> IGTPW_3082

  CI_DRM_6169: 5a82ae892e5928ad598f80d58398bd967051eabc @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3082: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/
  IGT_5025: 4b9889882ef6d287d339db89c584dd035c6dae80 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3082/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev2)
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
                   ` (4 preceding siblings ...)
  2019-05-31 10:26 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 Patchwork
@ 2019-07-04 17:09 ` Patchwork
  2019-08-14 11:49 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev3) Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-07-04 17:09 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: enable pm_lpsp for platforms till Gen11 v6 (rev2)
URL   : https://patchwork.freedesktop.org/series/61385/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5084 -> IGTPW_3243
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3243 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3243, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61385/revisions/2/mbox/

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_lpsp@edp-native:
    - fi-icl-dsi:         NOTRUN -> [SKIP][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-icl-dsi/igt@i915_pm_lpsp@edp-native.html

  * igt@i915_pm_lpsp@non-edp:
    - fi-icl-dsi:         NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-icl-dsi/igt@i915_pm_lpsp@non-edp.html
    - fi-cml-u:           NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-cml-u/igt@i915_pm_lpsp@non-edp.html

  * igt@i915_selftest@live_hangcheck:
    - fi-kbl-x1275:       [PASS][4] -> [DMESG-WARN][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5084/fi-kbl-x1275/igt@i915_selftest@live_hangcheck.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-kbl-x1275/igt@i915_selftest@live_hangcheck.html

  * igt@runner@aborted:
    - fi-kbl-x1275:       NOTRUN -> [FAIL][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-kbl-x1275/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_workarounds@basic-read:
    - fi-icl-dsi:         [PASS][7] -> [DMESG-WARN][8] ([fdo#106107])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5084/fi-icl-dsi/igt@gem_workarounds@basic-read.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-icl-dsi/igt@gem_workarounds@basic-read.html

  * igt@i915_pm_rpm@module-reload:
    - fi-icl-dsi:         [PASS][9] -> [INCOMPLETE][10] ([fdo#107713] / [fdo#108840])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5084/fi-icl-dsi/igt@i915_pm_rpm@module-reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-icl-dsi/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live_contexts:
    - fi-skl-gvtdvm:      [PASS][11] -> [DMESG-FAIL][12] ([fdo#111056])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5084/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][13] -> [FAIL][14] ([fdo#109485])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5084/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
#### Possible fixes ####

  * igt@i915_selftest@live_contexts:
    - fi-skl-iommu:       [INCOMPLETE][15] ([fdo#111050]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5084/fi-skl-iommu/igt@i915_selftest@live_contexts.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/fi-skl-iommu/igt@i915_selftest@live_contexts.html

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

  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566
  [fdo#111050]: https://bugs.freedesktop.org/show_bug.cgi?id=111050
  [fdo#111056]: https://bugs.freedesktop.org/show_bug.cgi?id=111056


Participating hosts (54 -> 43)
------------------------------

  Additional (1): fi-icl-u4 
  Missing    (12): fi-kbl-soraka fi-kbl-7567u fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-cfl-8700k fi-apl-guc fi-icl-u3 fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * IGT: IGT_5084 -> IGTPW_3243

  CI_DRM_6417: 913b87462bcd3c69df2d1ba44d7a9055a49c5dff @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3243: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/
  IGT_5084: 9f45069f9b5136d07e053d8086e8df51e14332eb @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3243/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev3)
  2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
                   ` (5 preceding siblings ...)
  2019-07-04 17:09 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev2) Patchwork
@ 2019-08-14 11:49 ` Patchwork
  2019-08-18 12:58   ` Gupta, Anshuman
  6 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2019-08-14 11:49 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: igt-dev

== Series Details ==

Series: enable pm_lpsp for platforms till Gen11 v6 (rev3)
URL   : https://patchwork.freedesktop.org/series/61385/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5134 -> IGTPW_3344
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3344 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3344, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61385/revisions/3/mbox/

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_lpsp@non-edp:
    - fi-cml-u:           NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-cml-u/igt@i915_pm_lpsp@non-edp.html

  
#### Suppressed ####

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

  * igt@i915_pm_lpsp@edp-native:
    - {fi-icl-dsi}:       NOTRUN -> [SKIP][2] +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-dsi/igt@i915_pm_lpsp@edp-native.html

  * igt@i915_pm_lpsp@non-edp:
    - {fi-icl-guc}:       NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-guc/igt@i915_pm_lpsp@non-edp.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_flink_basic@double-flink:
    - fi-icl-u3:          [PASS][4] -> [DMESG-WARN][5] ([fdo#107724]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u3/igt@gem_flink_basic@double-flink.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u3/igt@gem_flink_basic@double-flink.html

  * igt@i915_selftest@live_reset:
    - fi-icl-u3:          [PASS][6] -> [INCOMPLETE][7] ([fdo#107713])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u3/igt@i915_selftest@live_reset.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u3/igt@i915_selftest@live_reset.html

  
#### Possible fixes ####

  * igt@gem_ctx_switch@rcs0:
    - {fi-icl-guc}:       [FAIL][8] ([fdo#110946]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-guc/igt@gem_ctx_switch@rcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-guc/igt@gem_ctx_switch@rcs0.html

  * igt@gem_exec_fence@nb-await-default:
    - fi-icl-u3:          [DMESG-WARN][10] ([fdo#107724]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u3/igt@gem_exec_fence@nb-await-default.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u3/igt@gem_exec_fence@nb-await-default.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-blb-e6850:       [INCOMPLETE][12] ([fdo#107718]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@i915_selftest@live_hangcheck:
    - {fi-icl-guc}:       [INCOMPLETE][14] ([fdo#107713] / [fdo#108569]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-guc/igt@i915_selftest@live_hangcheck.html

  
#### Warnings ####

  * igt@kms_chamelium@vga-edid-read:
    - fi-icl-u2:          [FAIL][16] ([fdo#109483]) -> [SKIP][17] ([fdo#109309])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u2/igt@kms_chamelium@vga-edid-read.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u2/igt@kms_chamelium@vga-edid-read.html

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

  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
  [fdo#110946]: https://bugs.freedesktop.org/show_bug.cgi?id=110946


Participating hosts (53 -> 43)
------------------------------

  Missing    (10): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-gdg-551 fi-pnv-d510 fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * IGT: IGT_5134 -> IGTPW_3344

  CI_DRM_6706: 57b60ae5ac6b9d384440562785c2581f6ee8330f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3344: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/
  IGT_5134: 81df2f22385bc275975cf199d962eed9bc10f916 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev3)
  2019-08-14 11:49 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev3) Patchwork
@ 2019-08-18 12:58   ` Gupta, Anshuman
  0 siblings, 0 replies; 9+ messages in thread
From: Gupta, Anshuman @ 2019-08-18 12:58 UTC (permalink / raw)
  To: igt-dev, martin.peres, tomi.p.sarvela



On 8/14/2019 5:19 PM, Patchwork wrote:
> == Series Details ==
> 
> Series: enable pm_lpsp for platforms till Gen11 v6 (rev3)
> URL   : https://patchwork.freedesktop.org/series/61385/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_5134 -> IGTPW_3344
> ====================================================
> 
> Summary
> -------
> 
>    **FAILURE**
> 
>    Serious unknown changes coming with IGTPW_3344 absolutely need to be
>    verified manually.
>    
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_3344, please notify your bug team to allow them
>    to document this new failure mode, which will reduce false positives in CI.
> 
>    External URL: https://patchwork.freedesktop.org/api/1.0/series/61385/revisions/3/mbox/
> 
> Possible new issues
> -------------------
> 
>    Here are the unknown changes that may have been introduced in IGTPW_3344:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>    * igt@i915_pm_lpsp@non-edp:
>      - fi-cml-u:           NOTRUN -> [SKIP][1]
>     [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-cml-u/igt@i915_pm_lpsp@non-edp.html
This is a valid skip as i915_display_info 
(https://intel-gfx-ci.01.org/hardware/fi-cml-u/i915_display_info.txt) 
indicates that there is only edp connector connected to fi-cml-u.

We should suppress this failure.

Thanks,
Anshuman.
> 
>    
> #### Suppressed ####
> 
>    The following results come from untrusted machines, tests, or statuses.
>    They do not affect the overall result.
> 
>    * igt@i915_pm_lpsp@edp-native:
>      - {fi-icl-dsi}:       NOTRUN -> [SKIP][2] +1 similar issue
>     [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-dsi/igt@i915_pm_lpsp@edp-native.html
> 
>    * igt@i915_pm_lpsp@non-edp:
>      - {fi-icl-guc}:       NOTRUN -> [SKIP][3]
>     [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-guc/igt@i915_pm_lpsp@non-edp.html
> 
>    
> Known issues
> ------------
> 
>    Here are the changes found in IGTPW_3344 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>    * igt@gem_flink_basic@double-flink:
>      - fi-icl-u3:          [PASS][4] -> [DMESG-WARN][5] ([fdo#107724]) +1 similar issue
>     [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u3/igt@gem_flink_basic@double-flink.html
>     [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u3/igt@gem_flink_basic@double-flink.html
> 
>    * igt@i915_selftest@live_reset:
>      - fi-icl-u3:          [PASS][6] -> [INCOMPLETE][7] ([fdo#107713])
>     [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u3/igt@i915_selftest@live_reset.html
>     [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u3/igt@i915_selftest@live_reset.html
> 
>    
> #### Possible fixes ####
> 
>    * igt@gem_ctx_switch@rcs0:
>      - {fi-icl-guc}:       [FAIL][8] ([fdo#110946]) -> [PASS][9]
>     [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-guc/igt@gem_ctx_switch@rcs0.html
>     [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-guc/igt@gem_ctx_switch@rcs0.html
> 
>    * igt@gem_exec_fence@nb-await-default:
>      - fi-icl-u3:          [DMESG-WARN][10] ([fdo#107724]) -> [PASS][11]
>     [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u3/igt@gem_exec_fence@nb-await-default.html
>     [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u3/igt@gem_exec_fence@nb-await-default.html
> 
>    * igt@gem_exec_suspend@basic-s4-devices:
>      - fi-blb-e6850:       [INCOMPLETE][12] ([fdo#107718]) -> [PASS][13]
>     [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
>     [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
> 
>    * igt@i915_selftest@live_hangcheck:
>      - {fi-icl-guc}:       [INCOMPLETE][14] ([fdo#107713] / [fdo#108569]) -> [PASS][15]
>     [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
>     [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
> 
>    
> #### Warnings ####
> 
>    * igt@kms_chamelium@vga-edid-read:
>      - fi-icl-u2:          [FAIL][16] ([fdo#109483]) -> [SKIP][17] ([fdo#109309])
>     [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5134/fi-icl-u2/igt@kms_chamelium@vga-edid-read.html
>     [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/fi-icl-u2/igt@kms_chamelium@vga-edid-read.html
> 
>    
>    {name}: This element is suppressed. This means it is ignored when computing
>            the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>    [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>    [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
>    [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>    [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
>    [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>    [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
>    [fdo#110946]: https://bugs.freedesktop.org/show_bug.cgi?id=110946
> 
> 
> Participating hosts (53 -> 43)
> ------------------------------
> 
>    Missing    (10): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-gdg-551 fi-pnv-d510 fi-icl-y fi-byt-clapper fi-bdw-samus
> 
> 
> Build changes
> -------------
> 
>    * IGT: IGT_5134 -> IGTPW_3344
> 
>    CI_DRM_6706: 57b60ae5ac6b9d384440562785c2581f6ee8330f @ git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_3344: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/
>    IGT_5134: 81df2f22385bc275975cf199d962eed9bc10f916 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3344/
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-08-18 12:58 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-30 12:21 [igt-dev] [PATCH i-g-t v6 0/4] enable pm_lpsp for platforms till Gen11 v6 Anshuman Gupta
2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel Anshuman Gupta
2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 3/4] igt/i915/i915_pm_lpsp: panel-fitter subtest modifications Anshuman Gupta
2019-05-30 12:21 ` [igt-dev] [PATCH i-g-t v6 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list Anshuman Gupta
2019-05-31 10:26 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 Patchwork
2019-07-04 17:09 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev2) Patchwork
2019-08-14 11:49 ` [igt-dev] ✗ Fi.CI.BAT: failure for enable pm_lpsp for platforms till Gen11 v6 (rev3) Patchwork
2019-08-18 12:58   ` 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.