All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] adding gamma state checker for icl+ platforms
@ 2019-10-18 11:21 Swati Sharma
  2019-10-18 11:21 ` [PATCH 1/2] [v7] drm/i915/color: Extract icl_read_luts() Swati Sharma
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Swati Sharma @ 2019-10-18 11:21 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula

In this patch, enabled gamma state checker for ICL and TGL.
Limiting state checker only for super fine segment, since getting incorrect
readbacks for fine and coarse segments. Patch includes fix for multiple
colored screen during boot.

Swati Sharma (2):
  [v7] drm/i915/color: Extract icl_read_luts()
  FOR_TESTING_ONLY: Print rgb values of hw and sw blobs

 drivers/gpu/drm/i915/display/intel_color.c | 115 +++++++++++++++++----
 drivers/gpu/drm/i915/i915_reg.h            |   6 ++
 2 files changed, 103 insertions(+), 18 deletions(-)

-- 
2.23.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH 1/2] [v7] drm/i915/color: Extract icl_read_luts()
  2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
@ 2019-10-18 11:21 ` Swati Sharma
  2019-10-18 11:21 ` [PATCH 2/2] FOR_TESTING_ONLY: Print rgb values of hw and sw blobs Swati Sharma
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Swati Sharma @ 2019-10-18 11:21 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula

For icl+, have hw read out to create hw blob of gamma
lut values. icl+ platforms supports multi segmented gamma
mode by default, add hw lut creation for this mode.

This will be used to validate gamma programming using dsb
(display state buffer) which is a tgl specific feature.

Major change done-removal of readouts of coarse and fine segments
because PAL_PREC_DATA register isn't giving propoer values.
State checker limited only to "fine segment"

v2: -readout code for multisegmented gamma has to come
     up with some intermediate entries that aren't preserved
     in hardware (Jani N)
    -linear interpolation (Ville)
    -moved common code to check gamma_enable to specific funcs,
     since icl doesn't support that
v3: -use u16 instead of __u16 [Jani N]
    -used single lut [Jani N]
    -improved and more readable for loops [Jani N]
    -read values directly to actual locations and then fill gaps [Jani N]
    -moved cleaning to patch 1 [Jani N]
    -renamed icl_read_lut_multi_seg() to icl_read_lut_multi_segment to
     make it similar to icl_load_luts()
    -renamed icl_compute_interpolated_gamma_blob() to
     icl_compute_interpolated_gamma_lut_values() more sensible, I guess
v4: -removed interpolated func for creating gamma lut values
    -removed readouts of fine and coarse segments, failure to read PAL_PREC_DATA
     correctly
v5: -added gamma_enable check inside read_luts()
v6: -renamed intel_color_lut_entry_equal() to intel_color_lut_entries_equal() [Ville]
    -changed if-else to switch [Ville]
    -removed intel_color_lut_entry_multi_equal() [Ville]
v7: -checkpatch warnings

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 drivers/gpu/drm/i915/display/intel_color.c | 113 +++++++++++++++++----
 drivers/gpu/drm/i915/i915_reg.h            |   6 ++
 2 files changed, 101 insertions(+), 18 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_color.c b/drivers/gpu/drm/i915/display/intel_color.c
index fa44eb73d088..926af86a75d5 100644
--- a/drivers/gpu/drm/i915/display/intel_color.c
+++ b/drivers/gpu/drm/i915/display/intel_color.c
@@ -812,7 +812,7 @@ icl_load_gcmax(const struct intel_crtc_state *crtc_state,
 	struct intel_dsb *dsb = intel_dsb_get(crtc);
 	enum pipe pipe = crtc->pipe;
 
-	/* Fixme: LUT entries are 16 bit only, so we can prog 0xFFFF max */
+	/* FIXME LUT entries are 16 bit only, so we can prog 0xFFFF max */
 	intel_dsb_reg_write(dsb, PREC_PAL_GC_MAX(pipe, 0), color->red);
 	intel_dsb_reg_write(dsb, PREC_PAL_GC_MAX(pipe, 1), color->green);
 	intel_dsb_reg_write(dsb, PREC_PAL_GC_MAX(pipe, 2), color->blue);
@@ -1477,6 +1477,24 @@ static int glk_gamma_precision(const struct intel_crtc_state *crtc_state)
 	}
 }
 
+static int icl_gamma_precision(const struct intel_crtc_state *crtc_state)
+{
+	if ((crtc_state->gamma_mode & POST_CSC_GAMMA_ENABLE) == 0)
+		return 0;
+
+	switch (crtc_state->gamma_mode & GAMMA_MODE_MODE_MASK) {
+	case GAMMA_MODE_MODE_8BIT:
+		return 8;
+	case GAMMA_MODE_MODE_10BIT:
+		return 10;
+	case GAMMA_MODE_MODE_12BIT_MULTI_SEGMENTED:
+		return 16;
+	default:
+		MISSING_CASE(crtc_state->gamma_mode);
+		return 0;
+	}
+}
+
 int intel_color_get_gamma_bit_precision(const struct intel_crtc_state *crtc_state)
 {
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
@@ -1488,7 +1506,9 @@ int intel_color_get_gamma_bit_precision(const struct intel_crtc_state *crtc_stat
 		else
 			return i9xx_gamma_precision(crtc_state);
 	} else {
-		if (IS_CANNONLAKE(dev_priv) || IS_GEMINILAKE(dev_priv))
+		if (INTEL_GEN(dev_priv) >= 11)
+			return icl_gamma_precision(crtc_state);
+		else if (IS_CANNONLAKE(dev_priv) || IS_GEMINILAKE(dev_priv))
 			return glk_gamma_precision(crtc_state);
 		else if (IS_IRONLAKE(dev_priv))
 			return ilk_gamma_precision(crtc_state);
@@ -1505,9 +1525,9 @@ static bool err_check(struct drm_color_lut *lut1,
 		((abs((long)lut2->green - lut1->green)) <= err);
 }
 
-static bool intel_color_lut_entry_equal(struct drm_color_lut *lut1,
-					struct drm_color_lut *lut2,
-					int lut_size, u32 err)
+static bool intel_color_lut_entries_equal(struct drm_color_lut *lut1,
+					  struct drm_color_lut *lut2,
+					  int lut_size, u32 err)
 {
 	int i;
 
@@ -1537,16 +1557,8 @@ bool intel_color_lut_equal(struct drm_property_blob *blob1,
 	lut_size2 = drm_color_lut_size(blob2);
 
 	/* check sw and hw lut size */
-	switch (gamma_mode) {
-	case GAMMA_MODE_MODE_8BIT:
-	case GAMMA_MODE_MODE_10BIT:
-		if (lut_size1 != lut_size2)
-			return false;
-		break;
-	default:
-		MISSING_CASE(gamma_mode);
-			return false;
-	}
+	if (lut_size1 != lut_size2)
+		return false;
 
 	lut1 = blob1->data;
 	lut2 = blob2->data;
@@ -1554,11 +1566,16 @@ bool intel_color_lut_equal(struct drm_property_blob *blob1,
 	err = 0xffff >> bit_precision;
 
 	/* check sw and hw lut entry to be equal */
-	switch (gamma_mode) {
+	switch (gamma_mode & GAMMA_MODE_MODE_MASK) {
 	case GAMMA_MODE_MODE_8BIT:
 	case GAMMA_MODE_MODE_10BIT:
-		if (!intel_color_lut_entry_equal(lut1, lut2,
-						 lut_size2, err))
+		if (!intel_color_lut_entries_equal(lut1, lut2,
+						   lut_size2, err))
+			return false;
+		break;
+	case GAMMA_MODE_MODE_12BIT_MULTI_SEGMENTED:
+		if (!intel_color_lut_entries_equal(lut1, lut2,
+						   9, err))
 			return false;
 		break;
 	default:
@@ -1815,6 +1832,65 @@ static void glk_read_luts(struct intel_crtc_state *crtc_state)
 		crtc_state->base.gamma_lut = glk_read_lut_10(crtc_state, PAL_PREC_INDEX_VALUE(0));
 }
 
+static struct drm_property_blob *
+icl_read_lut_multi_segment(const struct intel_crtc_state *crtc_state)
+{
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
+	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
+	int lut_size = INTEL_INFO(dev_priv)->color.gamma_lut_size;
+	enum pipe pipe = crtc->pipe;
+	struct drm_property_blob *blob;
+	struct drm_color_lut *blob_data;
+	u32 i, val1, val2;
+
+	blob = drm_property_create_blob(&dev_priv->drm,
+					sizeof(struct drm_color_lut) * lut_size,
+					NULL);
+	if (IS_ERR(blob))
+		return NULL;
+
+	blob_data = blob->data;
+
+	I915_WRITE(PREC_PAL_MULTI_SEG_INDEX(pipe), PAL_PREC_AUTO_INCREMENT);
+
+	for (i = 0; i < 9; i++) {
+		val1 = I915_READ(PREC_PAL_MULTI_SEG_DATA(pipe));
+		val2 = I915_READ(PREC_PAL_MULTI_SEG_DATA(pipe));
+
+		blob_data[i].red = REG_FIELD_GET(PAL_PREC_MULTI_SEG_RED_UDW_MASK, val2) << 6 |
+				   REG_FIELD_GET(PAL_PREC_MULTI_SEG_RED_LDW_MASK, val1);
+		blob_data[i].green = REG_FIELD_GET(PAL_PREC_MULTI_SEG_GREEN_UDW_MASK, val2) << 6 |
+				     REG_FIELD_GET(PAL_PREC_MULTI_SEG_GREEN_LDW_MASK, val1);
+		blob_data[i].blue = REG_FIELD_GET(PAL_PREC_MULTI_SEG_BLUE_UDW_MASK, val2) << 6 |
+				    REG_FIELD_GET(PAL_PREC_MULTI_SEG_BLUE_LDW_MASK, val1);
+	}
+
+	/*
+	 * FIXME readouts from PAL_PREC_DATA register aren't giving
+	 * correct values in the case of fine and coarse segments.
+	 * Restricting readouts only for super fine segment as of now.
+	 */
+
+	return blob;
+}
+
+static void icl_read_luts(struct intel_crtc_state *crtc_state)
+{
+	if ((crtc_state->gamma_mode & POST_CSC_GAMMA_ENABLE) == 0)
+		return;
+
+	switch (crtc_state->gamma_mode & GAMMA_MODE_MODE_MASK) {
+	case GAMMA_MODE_MODE_8BIT:
+		crtc_state->base.gamma_lut = i9xx_read_lut_8(crtc_state);
+		break;
+	case GAMMA_MODE_MODE_12BIT_MULTI_SEGMENTED:
+		crtc_state->base.gamma_lut = icl_read_lut_multi_segment(crtc_state);
+		break;
+	default:
+		crtc_state->base.gamma_lut = glk_read_lut_10(crtc_state, PAL_PREC_INDEX_VALUE(0));
+	}
+}
+
 void intel_color_init(struct intel_crtc *crtc)
 {
 	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
@@ -1858,6 +1934,7 @@ void intel_color_init(struct intel_crtc *crtc)
 
 		if (INTEL_GEN(dev_priv) >= 11) {
 			dev_priv->display.load_luts = icl_load_luts;
+			dev_priv->display.read_luts = icl_read_luts;
 		} else if (IS_CANNONLAKE(dev_priv) || IS_GEMINILAKE(dev_priv)) {
 			dev_priv->display.load_luts = glk_load_luts;
 			dev_priv->display.read_luts = glk_read_luts;
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 1dc067fc57ab..06b6398b7d62 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -10584,6 +10584,12 @@ enum skl_power_gate {
 
 #define _PAL_PREC_MULTI_SEG_DATA_A	0x4A40C
 #define _PAL_PREC_MULTI_SEG_DATA_B	0x4AC0C
+#define  PAL_PREC_MULTI_SEG_RED_LDW_MASK   REG_GENMASK(29, 24)
+#define  PAL_PREC_MULTI_SEG_RED_UDW_MASK   REG_GENMASK(29, 20)
+#define  PAL_PREC_MULTI_SEG_GREEN_LDW_MASK REG_GENMASK(19, 14)
+#define  PAL_PREC_MULTI_SEG_GREEN_UDW_MASK REG_GENMASK(19, 10)
+#define  PAL_PREC_MULTI_SEG_BLUE_LDW_MASK  REG_GENMASK(9, 4)
+#define  PAL_PREC_MULTI_SEG_BLUE_UDW_MASK  REG_GENMASK(9, 0)
 
 #define PREC_PAL_MULTI_SEG_INDEX(pipe)	_MMIO_PIPE(pipe, \
 					_PAL_PREC_MULTI_SEG_INDEX_A, \
-- 
2.23.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH 2/2] FOR_TESTING_ONLY: Print rgb values of hw and sw blobs
  2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
  2019-10-18 11:21 ` [PATCH 1/2] [v7] drm/i915/color: Extract icl_read_luts() Swati Sharma
@ 2019-10-18 11:21 ` Swati Sharma
  2019-10-18 12:47 ` ✗ Fi.CI.CHECKPATCH: warning for adding gamma state checker for icl+ platforms (rev6) Patchwork
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Swati Sharma @ 2019-10-18 11:21 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula

Only to print hw and sw lut values/channel.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 drivers/gpu/drm/i915/display/intel_color.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_color.c b/drivers/gpu/drm/i915/display/intel_color.c
index 926af86a75d5..5d84036d23ab 100644
--- a/drivers/gpu/drm/i915/display/intel_color.c
+++ b/drivers/gpu/drm/i915/display/intel_color.c
@@ -1520,6 +1520,8 @@ int intel_color_get_gamma_bit_precision(const struct intel_crtc_state *crtc_stat
 static bool err_check(struct drm_color_lut *lut1,
 		      struct drm_color_lut *lut2, u32 err)
 {
+	DRM_DEBUG_KMS("hw_lut->red=0x%x sw_lut->red=0x%x hw_lut->blue=0x%x sw_lut->blue=0x%x hw_lut->green=0x%x sw_lut->green=0x%x", lut2->red, lut1->red, lut2->blue, lut1->blue, lut2->green, lut1->green);
+
 	return ((abs((long)lut2->red - lut1->red)) <= err) &&
 		((abs((long)lut2->blue - lut1->blue)) <= err) &&
 		((abs((long)lut2->green - lut1->green)) <= err);
-- 
2.23.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✗ Fi.CI.CHECKPATCH: warning for adding gamma state checker for icl+ platforms (rev6)
  2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
  2019-10-18 11:21 ` [PATCH 1/2] [v7] drm/i915/color: Extract icl_read_luts() Swati Sharma
  2019-10-18 11:21 ` [PATCH 2/2] FOR_TESTING_ONLY: Print rgb values of hw and sw blobs Swati Sharma
@ 2019-10-18 12:47 ` Patchwork
  2019-10-18 13:17 ` ✗ Fi.CI.BAT: failure " Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-18 12:47 UTC (permalink / raw)
  To: Swati Sharma; +Cc: intel-gfx

== Series Details ==

Series: adding gamma state checker for icl+ platforms (rev6)
URL   : https://patchwork.freedesktop.org/series/66811/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
1452f0de3aa7 drm/i915/color: Extract icl_read_luts()
-:33: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#33: 
    -removed readouts of fine and coarse segments, failure to read PAL_PREC_DATA

total: 0 errors, 1 warnings, 0 checks, 175 lines checked
e791bbdd1ac8 FOR_TESTING_ONLY: Print rgb values of hw and sw blobs
-:18: WARNING:LONG_LINE: line over 100 characters
#18: FILE: drivers/gpu/drm/i915/display/intel_color.c:1523:
+	DRM_DEBUG_KMS("hw_lut->red=0x%x sw_lut->red=0x%x hw_lut->blue=0x%x sw_lut->blue=0x%x hw_lut->green=0x%x sw_lut->green=0x%x", lut2->red, lut1->red, lut2->blue, lut1->blue, lut2->green, lut1->green);

total: 0 errors, 1 warnings, 0 checks, 8 lines checked

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✗ Fi.CI.BAT: failure for adding gamma state checker for icl+ platforms (rev6)
  2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
                   ` (2 preceding siblings ...)
  2019-10-18 12:47 ` ✗ Fi.CI.CHECKPATCH: warning for adding gamma state checker for icl+ platforms (rev6) Patchwork
@ 2019-10-18 13:17 ` Patchwork
  2019-10-18 14:01 ` Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-18 13:17 UTC (permalink / raw)
  To: Swati Sharma; +Cc: intel-gfx

== Series Details ==

Series: adding gamma state checker for icl+ platforms (rev6)
URL   : https://patchwork.freedesktop.org/series/66811/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7128 -> Patchwork_14880
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14880 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14880, 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/Patchwork_14880/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_execlists:
    - fi-kbl-7500u:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
    - fi-kbl-soraka:      [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-kbl-soraka/igt@i915_selftest@live_execlists.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-soraka/igt@i915_selftest@live_execlists.html

  * igt@runner@aborted:
    - fi-kbl-7500u:       NOTRUN -> [FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-7500u/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_create@basic-files:
    - fi-icl-u2:          [PASS][6] -> [INCOMPLETE][7] ([fdo#107713] / [fdo#109100])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u2/igt@gem_ctx_create@basic-files.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u2/igt@gem_ctx_create@basic-files.html

  * igt@gem_ctx_switch@legacy-render:
    - fi-cml-u:           [PASS][8] -> [INCOMPLETE][9] ([fdo#110566] / [fdo#111381])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-cml-u/igt@gem_ctx_switch@legacy-render.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-cml-u/igt@gem_ctx_switch@legacy-render.html

  * igt@gem_mmap@basic:
    - fi-icl-u3:          [PASS][10] -> [DMESG-WARN][11] ([fdo#107724])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u3/igt@gem_mmap@basic.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u3/igt@gem_mmap@basic.html

  * igt@i915_selftest@live_execlists:
    - fi-skl-6770hq:      [PASS][12] -> [INCOMPLETE][13] ([fdo#111934])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-6770hq/igt@i915_selftest@live_execlists.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-6770hq/igt@i915_selftest@live_execlists.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic:
    - {fi-icl-u4}:        [FAIL][14] ([fdo#111699]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u4/igt@gem_exec_suspend@basic.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u4/igt@gem_exec_suspend@basic.html

  * igt@i915_selftest@live_execlists:
    - fi-whl-u:           [INCOMPLETE][16] -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-whl-u/igt@i915_selftest@live_execlists.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-whl-u/igt@i915_selftest@live_execlists.html
    - fi-skl-6260u:       [INCOMPLETE][18] ([fdo#111934]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-6260u/igt@i915_selftest@live_execlists.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-6260u/igt@i915_selftest@live_execlists.html
    - fi-skl-lmem:        [INCOMPLETE][20] ([fdo#111934]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-lmem/igt@i915_selftest@live_execlists.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-lmem/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-cfl-8109u:       [DMESG-FAIL][22] ([fdo#112050 ]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html

  * igt@i915_selftest@live_gtt:
    - {fi-tgl-u2}:        [INCOMPLETE][24] ([fdo#111833]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-tgl-u2/igt@i915_selftest@live_gtt.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-tgl-u2/igt@i915_selftest@live_gtt.html

  * igt@i915_selftest@live_sanitycheck:
    - fi-icl-u3:          [DMESG-WARN][26] ([fdo#107724]) -> [PASS][27] +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u3/igt@i915_selftest@live_sanitycheck.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#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566
  [fdo#111144]: https://bugs.freedesktop.org/show_bug.cgi?id=111144
  [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
  [fdo#111678]: https://bugs.freedesktop.org/show_bug.cgi?id=111678
  [fdo#111699]: https://bugs.freedesktop.org/show_bug.cgi?id=111699
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111833]: https://bugs.freedesktop.org/show_bug.cgi?id=111833
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880
  [fdo#111934]: https://bugs.freedesktop.org/show_bug.cgi?id=111934
  [fdo#112050 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112050 


Participating hosts (52 -> 45)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (8): fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7128 -> Patchwork_14880

  CI-20190529: 20190529
  CI_DRM_7128: 8b9127d9e8ad36b96096fb3358a1edb34eda96ba @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5232: bb5735423eaf6fdbf6b2f94ef0b8520e74eab993 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14880: e791bbdd1ac8f475b35f5ccfc18b90f9ec975f65 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

e791bbdd1ac8 FOR_TESTING_ONLY: Print rgb values of hw and sw blobs
1452f0de3aa7 drm/i915/color: Extract icl_read_luts()

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✗ Fi.CI.BAT: failure for adding gamma state checker for icl+ platforms (rev6)
  2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
                   ` (3 preceding siblings ...)
  2019-10-18 13:17 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-18 14:01 ` Patchwork
  2019-10-23  8:02 ` ✓ Fi.CI.BAT: success " Patchwork
  2019-10-23 21:18   ` [Intel-gfx] " Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-18 14:01 UTC (permalink / raw)
  To: Swati Sharma; +Cc: intel-gfx

== Series Details ==

Series: adding gamma state checker for icl+ platforms (rev6)
URL   : https://patchwork.freedesktop.org/series/66811/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7128 -> Patchwork_14880
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14880 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14880, 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/Patchwork_14880/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_execlists:
    - fi-kbl-7500u:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
    - fi-kbl-soraka:      [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-kbl-soraka/igt@i915_selftest@live_execlists.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-soraka/igt@i915_selftest@live_execlists.html

  * igt@runner@aborted:
    - fi-kbl-7500u:       NOTRUN -> [FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-7500u/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_create@basic-files:
    - fi-icl-u2:          [PASS][6] -> [INCOMPLETE][7] ([fdo#107713] / [fdo#109100])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u2/igt@gem_ctx_create@basic-files.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u2/igt@gem_ctx_create@basic-files.html

  * igt@gem_ctx_switch@legacy-render:
    - fi-cml-u:           [PASS][8] -> [INCOMPLETE][9] ([fdo#110566] / [fdo#111381])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-cml-u/igt@gem_ctx_switch@legacy-render.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-cml-u/igt@gem_ctx_switch@legacy-render.html

  * igt@gem_mmap@basic:
    - fi-icl-u3:          [PASS][10] -> [DMESG-WARN][11] ([fdo#107724])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u3/igt@gem_mmap@basic.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u3/igt@gem_mmap@basic.html

  * igt@i915_selftest@live_execlists:
    - fi-skl-6770hq:      [PASS][12] -> [INCOMPLETE][13] ([fdo#111934])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-6770hq/igt@i915_selftest@live_execlists.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-6770hq/igt@i915_selftest@live_execlists.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic:
    - {fi-icl-u4}:        [FAIL][14] ([fdo#111699]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u4/igt@gem_exec_suspend@basic.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u4/igt@gem_exec_suspend@basic.html

  * igt@i915_selftest@live_execlists:
    - fi-whl-u:           [INCOMPLETE][16] ([fdo#112065]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-whl-u/igt@i915_selftest@live_execlists.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-whl-u/igt@i915_selftest@live_execlists.html
    - fi-skl-6260u:       [INCOMPLETE][18] ([fdo#111934]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-6260u/igt@i915_selftest@live_execlists.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-6260u/igt@i915_selftest@live_execlists.html
    - fi-skl-lmem:        [INCOMPLETE][20] ([fdo#111934]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-lmem/igt@i915_selftest@live_execlists.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-lmem/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-cfl-8109u:       [DMESG-FAIL][22] ([fdo#112050 ]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html

  * igt@i915_selftest@live_gtt:
    - {fi-tgl-u2}:        [INCOMPLETE][24] ([fdo#111833]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-tgl-u2/igt@i915_selftest@live_gtt.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-tgl-u2/igt@i915_selftest@live_gtt.html

  * igt@i915_selftest@live_sanitycheck:
    - fi-icl-u3:          [DMESG-WARN][26] ([fdo#107724]) -> [PASS][27] +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u3/igt@i915_selftest@live_sanitycheck.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#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566
  [fdo#111144]: https://bugs.freedesktop.org/show_bug.cgi?id=111144
  [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
  [fdo#111678]: https://bugs.freedesktop.org/show_bug.cgi?id=111678
  [fdo#111699]: https://bugs.freedesktop.org/show_bug.cgi?id=111699
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111833]: https://bugs.freedesktop.org/show_bug.cgi?id=111833
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880
  [fdo#111934]: https://bugs.freedesktop.org/show_bug.cgi?id=111934
  [fdo#112050 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112050 
  [fdo#112065]: https://bugs.freedesktop.org/show_bug.cgi?id=112065


Participating hosts (52 -> 45)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (8): fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7128 -> Patchwork_14880

  CI-20190529: 20190529
  CI_DRM_7128: 8b9127d9e8ad36b96096fb3358a1edb34eda96ba @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5232: bb5735423eaf6fdbf6b2f94ef0b8520e74eab993 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14880: e791bbdd1ac8f475b35f5ccfc18b90f9ec975f65 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

e791bbdd1ac8 FOR_TESTING_ONLY: Print rgb values of hw and sw blobs
1452f0de3aa7 drm/i915/color: Extract icl_read_luts()

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.BAT: success for adding gamma state checker for icl+ platforms (rev6)
  2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
                   ` (4 preceding siblings ...)
  2019-10-18 14:01 ` Patchwork
@ 2019-10-23  8:02 ` Patchwork
  2019-10-23 21:18   ` [Intel-gfx] " Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-23  8:02 UTC (permalink / raw)
  To: Swati Sharma; +Cc: intel-gfx

== Series Details ==

Series: adding gamma state checker for icl+ platforms (rev6)
URL   : https://patchwork.freedesktop.org/series/66811/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7128 -> Patchwork_14880
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/index.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_create@basic-files:
    - fi-icl-u2:          [PASS][1] -> [INCOMPLETE][2] ([fdo#107713] / [fdo#109100])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u2/igt@gem_ctx_create@basic-files.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u2/igt@gem_ctx_create@basic-files.html

  * igt@gem_ctx_switch@legacy-render:
    - fi-cml-u:           [PASS][3] -> [INCOMPLETE][4] ([fdo#110566] / [fdo#111381])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-cml-u/igt@gem_ctx_switch@legacy-render.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-cml-u/igt@gem_ctx_switch@legacy-render.html

  * igt@gem_mmap@basic:
    - fi-icl-u3:          [PASS][5] -> [DMESG-WARN][6] ([fdo#107724])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u3/igt@gem_mmap@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u3/igt@gem_mmap@basic.html

  * igt@i915_selftest@live_execlists:
    - fi-kbl-7500u:       [PASS][7] -> [INCOMPLETE][8] ([fdo#112065])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
    - fi-kbl-soraka:      [PASS][9] -> [INCOMPLETE][10] ([fdo#112065])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-kbl-soraka/igt@i915_selftest@live_execlists.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-kbl-soraka/igt@i915_selftest@live_execlists.html
    - fi-skl-6770hq:      [PASS][11] -> [INCOMPLETE][12] ([fdo#111934])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-6770hq/igt@i915_selftest@live_execlists.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-6770hq/igt@i915_selftest@live_execlists.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic:
    - {fi-icl-u4}:        [FAIL][13] ([fdo#111699]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u4/igt@gem_exec_suspend@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u4/igt@gem_exec_suspend@basic.html

  * igt@i915_selftest@live_execlists:
    - fi-whl-u:           [INCOMPLETE][15] ([fdo#112065]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-whl-u/igt@i915_selftest@live_execlists.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-whl-u/igt@i915_selftest@live_execlists.html
    - fi-skl-6260u:       [INCOMPLETE][17] ([fdo#111934]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-6260u/igt@i915_selftest@live_execlists.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-6260u/igt@i915_selftest@live_execlists.html
    - fi-skl-lmem:        [INCOMPLETE][19] ([fdo#111934]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-skl-lmem/igt@i915_selftest@live_execlists.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-skl-lmem/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-cfl-8109u:       [DMESG-FAIL][21] ([fdo#112050 ]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html

  * igt@i915_selftest@live_gtt:
    - {fi-tgl-u2}:        [INCOMPLETE][23] ([fdo#111833]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-tgl-u2/igt@i915_selftest@live_gtt.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-tgl-u2/igt@i915_selftest@live_gtt.html

  * igt@i915_selftest@live_sanitycheck:
    - fi-icl-u3:          [DMESG-WARN][25] ([fdo#107724]) -> [PASS][26] +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/fi-icl-u3/igt@i915_selftest@live_sanitycheck.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#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566
  [fdo#111144]: https://bugs.freedesktop.org/show_bug.cgi?id=111144
  [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
  [fdo#111678]: https://bugs.freedesktop.org/show_bug.cgi?id=111678
  [fdo#111699]: https://bugs.freedesktop.org/show_bug.cgi?id=111699
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111833]: https://bugs.freedesktop.org/show_bug.cgi?id=111833
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880
  [fdo#111934]: https://bugs.freedesktop.org/show_bug.cgi?id=111934
  [fdo#112050 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112050 
  [fdo#112065]: https://bugs.freedesktop.org/show_bug.cgi?id=112065


Participating hosts (52 -> 45)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (8): fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7128 -> Patchwork_14880

  CI-20190529: 20190529
  CI_DRM_7128: 8b9127d9e8ad36b96096fb3358a1edb34eda96ba @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5232: bb5735423eaf6fdbf6b2f94ef0b8520e74eab993 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14880: e791bbdd1ac8f475b35f5ccfc18b90f9ec975f65 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

e791bbdd1ac8 FOR_TESTING_ONLY: Print rgb values of hw and sw blobs
1452f0de3aa7 drm/i915/color: Extract icl_read_luts()

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.IGT: success for adding gamma state checker for icl+ platforms (rev6)
@ 2019-10-23 21:18   ` Patchwork
  0 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-23 21:18 UTC (permalink / raw)
  To: Swati Sharma; +Cc: intel-gfx

== Series Details ==

Series: adding gamma state checker for icl+ platforms (rev6)
URL   : https://patchwork.freedesktop.org/series/66811/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7128_full -> Patchwork_14880_full
====================================================

Summary
-------

  **WARNING**

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

  

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

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

### IGT changes ###

#### Warnings ####

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-skl:          [FAIL][1] ([fdo#103232]) -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  
#### Suppressed ####

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

  * igt@gem_reg_read@timestamp-moving:
    - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-tglb6/igt@gem_reg_read@timestamp-moving.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-tglb5/igt@gem_reg_read@timestamp-moving.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-apl:          [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +6 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_isolation@vcs1-none:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#109276] / [fdo#112080])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@gem_ctx_isolation@vcs1-none.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb7/igt@gem_ctx_isolation@vcs1-none.html

  * igt@gem_ctx_switch@bcs0:
    - shard-apl:          [PASS][9] -> [INCOMPLETE][10] ([fdo#103927])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl6/igt@gem_ctx_switch@bcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl2/igt@gem_ctx_switch@bcs0.html

  * igt@gem_exec_schedule@in-order-bsd:
    - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#111325]) +4 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb5/igt@gem_exec_schedule@in-order-bsd.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb1/igt@gem_exec_schedule@in-order-bsd.html

  * igt@gem_exec_schedule@in-order-bsd2:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#109276]) +13 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@gem_exec_schedule@in-order-bsd2.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_exec_schedule@in-order-bsd2.html

  * igt@gem_persistent_relocs@forked-thrashing:
    - shard-iclb:         [PASS][15] -> [FAIL][16] ([fdo#112037])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb6/igt@gem_persistent_relocs@forked-thrashing.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb2/igt@gem_persistent_relocs@forked-thrashing.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-hsw:          [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-hsw:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103540] / [fdo#107807])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw7/igt@i915_pm_rpm@modeset-non-lpsp.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw4/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_color@pipe-b-ctm-0-5:
    - shard-skl:          [PASS][23] -> [FAIL][24] ([fdo#108682])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl8/igt@kms_color@pipe-b-ctm-0-5.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl2/igt@kms_color@pipe-b-ctm-0-5.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-skl:          [PASS][25] -> [INCOMPLETE][26] ([fdo#110741])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-hsw:          [PASS][27] -> [FAIL][28] ([fdo#105767])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-glk:          [PASS][29] -> [FAIL][30] ([fdo#104873])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-hsw:          [PASS][31] -> [INCOMPLETE][32] ([fdo#103540])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-iclb:         [PASS][33] -> [FAIL][34] ([fdo#103167]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc:
    - shard-skl:          [PASS][35] -> [FAIL][36] ([fdo#108145])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html

  * igt@perf_pmu@busy-idle-check-all-vcs1:
    - shard-iclb:         [PASS][39] -> [SKIP][40] ([fdo#112080]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@perf_pmu@busy-idle-check-all-vcs1.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb7/igt@perf_pmu@busy-idle-check-all-vcs1.html

  * igt@prime_self_import@reimport-vs-gem_close-race:
    - shard-iclb:         [PASS][41] -> [INCOMPLETE][42] ([fdo#107713])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb6/igt@prime_self_import@reimport-vs-gem_close-race.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb7/igt@prime_self_import@reimport-vs-gem_close-race.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [FAIL][43] ([fdo#111925]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-snb2/igt@gem_eio@in-flight-contexts-immediate.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-snb4/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_schedule@preempt-queue-chain-bsd2:
    - shard-iclb:         [SKIP][45] ([fdo#109276]) -> [PASS][46] +11 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb8/igt@gem_exec_schedule@preempt-queue-chain-bsd2.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb1/igt@gem_exec_schedule@preempt-queue-chain-bsd2.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd:
    - shard-iclb:         [SKIP][47] ([fdo#111325]) -> [PASS][48] +2 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html

  * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing:
    - shard-iclb:         [TIMEOUT][49] ([fdo#112037]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb3/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb6/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html

  * igt@gem_reg_read@timestamp-moving:
    - shard-iclb:         [INCOMPLETE][51] ([fdo#107713]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb7/igt@gem_reg_read@timestamp-moving.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb4/igt@gem_reg_read@timestamp-moving.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [DMESG-WARN][53] ([fdo#108566]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-kbl2/igt@gem_softpin@noreloc-s3.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-kbl3/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_query@query-garbage-items:
    - shard-apl:          [INCOMPLETE][57] ([fdo#103927]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl1/igt@i915_query@query-garbage-items.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl3/igt@i915_query@query-garbage-items.html

  * igt@kms_color@pipe-a-ctm-blue-to-red:
    - shard-skl:          [DMESG-WARN][59] ([fdo#106107]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl5/igt@kms_color@pipe-a-ctm-blue-to-red.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl3/igt@kms_color@pipe-a-ctm-blue-to-red.html

  * igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding:
    - shard-skl:          [FAIL][61] ([fdo#103232]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-apl:          [FAIL][63] ([fdo#102670]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [INCOMPLETE][65] ([fdo#103540]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw5/igt@kms_flip@flip-vs-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_tiling@flip-x-tiled:
    - shard-skl:          [FAIL][67] ([fdo#108145] / [fdo#108303]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl5/igt@kms_flip_tiling@flip-x-tiled.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl3/igt@kms_flip_tiling@flip-x-tiled.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         [FAIL][69] ([fdo#103167]) -> [PASS][70] +7 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - {shard-tglb}:       [FAIL][71] ([fdo#103167]) -> [PASS][72] +2 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [DMESG-WARN][73] ([fdo#108566]) -> [PASS][74] +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
    - shard-skl:          [FAIL][75] ([fdo#108145]) -> [PASS][76] +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][77] ([fdo#109441]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-dirty-switch:
    - shard-hsw:          [SKIP][79] ([fdo#109271]) -> [SKIP][80] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw2/igt@gem_ctx_isolation@vcs1-dirty-switch.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw7/igt@gem_ctx_isolation@vcs1-dirty-switch.html

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][81] ([fdo#111329]) -> [SKIP][82] ([fdo#109276] / [fdo#112080])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-glk:          [SKIP][83] ([fdo#109271]) -> [SKIP][84] ([fdo#109271] / [fdo#112080]) +13 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-glk5/igt@gem_ctx_isolation@vcs1-s3.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-glk8/igt@gem_ctx_isolation@vcs1-s3.html
    - shard-apl:          [SKIP][85] ([fdo#109271]) -> [SKIP][86] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl1/igt@gem_ctx_isolation@vcs1-s3.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl2/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_isolation@vcs2-clean:
    - shard-skl:          [SKIP][87] ([fdo#109271]) -> [SKIP][88] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl6/igt@gem_ctx_isolation@vcs2-clean.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl7/igt@gem_ctx_isolation@vcs2-clean.html

  * igt@gem_ctx_isolation@vcs2-dirty-create:
    - shard-snb:          [SKIP][89] ([fdo#109271]) -> [SKIP][90] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-snb6/igt@gem_ctx_isolation@vcs2-dirty-create.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-snb1/igt@gem_ctx_isolation@vcs2-dirty-create.html

  * igt@gem_ctx_isolation@vcs2-dirty-switch:
    - shard-iclb:         [SKIP][91] ([fdo#109276]) -> [SKIP][92] ([fdo#109276] / [fdo#112080]) +7 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb7/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_ctx_isolation@vcs2-dirty-switch.html
    - shard-kbl:          [SKIP][93] ([fdo#109271]) -> [SKIP][94] ([fdo#109271] / [fdo#112080]) +6 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-kbl7/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-kbl2/igt@gem_ctx_isolation@vcs2-dirty-switch.html

  * igt@gem_mocs_settings@mocs-settings-bsd2:
    - shard-iclb:         [SKIP][95] ([fdo#109276]) -> [FAIL][96] ([fdo#111330])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb5/igt@gem_mocs_settings@mocs-settings-bsd2.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb1/igt@gem_mocs_settings@mocs-settings-bsd2.html

  * igt@kms_atomic_transition@3x-modeset-transitions:
    - shard-kbl:          [SKIP][97] ([fdo#109271]) -> [SKIP][98] ([fdo#109271] / [fdo#111766]) +3 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-kbl2/igt@kms_atomic_transition@3x-modeset-transitions.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-kbl3/igt@kms_atomic_transition@3x-modeset-transitions.html

  * igt@kms_atomic_transition@3x-modeset-transitions-fencing:
    - shard-iclb:         [SKIP][99] ([fdo#109278]) -> [SKIP][100] ([fdo#109278] / [fdo#111766]) +3 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@kms_atomic_transition@3x-modeset-transitions-fencing.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@kms_atomic_transition@3x-modeset-transitions-fencing.html

  * igt@kms_atomic_transition@3x-modeset-transitions-nonblocking:
    - shard-apl:          [SKIP][101] ([fdo#109271]) -> [SKIP][102] ([fdo#109271] / [fdo#111766]) +3 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl4/igt@kms_atomic_transition@3x-modeset-transitions-nonblocking.html
   [102]: https://intel-g

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [Intel-gfx] ✓ Fi.CI.IGT: success for adding gamma state checker for icl+ platforms (rev6)
@ 2019-10-23 21:18   ` Patchwork
  0 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-23 21:18 UTC (permalink / raw)
  To: Swati Sharma; +Cc: intel-gfx

== Series Details ==

Series: adding gamma state checker for icl+ platforms (rev6)
URL   : https://patchwork.freedesktop.org/series/66811/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7128_full -> Patchwork_14880_full
====================================================

Summary
-------

  **WARNING**

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

  

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

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

### IGT changes ###

#### Warnings ####

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-skl:          [FAIL][1] ([fdo#103232]) -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  
#### Suppressed ####

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

  * igt@gem_reg_read@timestamp-moving:
    - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-tglb6/igt@gem_reg_read@timestamp-moving.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-tglb5/igt@gem_reg_read@timestamp-moving.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-apl:          [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +6 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_isolation@vcs1-none:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#109276] / [fdo#112080])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@gem_ctx_isolation@vcs1-none.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb7/igt@gem_ctx_isolation@vcs1-none.html

  * igt@gem_ctx_switch@bcs0:
    - shard-apl:          [PASS][9] -> [INCOMPLETE][10] ([fdo#103927])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl6/igt@gem_ctx_switch@bcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl2/igt@gem_ctx_switch@bcs0.html

  * igt@gem_exec_schedule@in-order-bsd:
    - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#111325]) +4 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb5/igt@gem_exec_schedule@in-order-bsd.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb1/igt@gem_exec_schedule@in-order-bsd.html

  * igt@gem_exec_schedule@in-order-bsd2:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#109276]) +13 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@gem_exec_schedule@in-order-bsd2.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_exec_schedule@in-order-bsd2.html

  * igt@gem_persistent_relocs@forked-thrashing:
    - shard-iclb:         [PASS][15] -> [FAIL][16] ([fdo#112037])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb6/igt@gem_persistent_relocs@forked-thrashing.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb2/igt@gem_persistent_relocs@forked-thrashing.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-hsw:          [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-hsw:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103540] / [fdo#107807])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw7/igt@i915_pm_rpm@modeset-non-lpsp.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw4/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_color@pipe-b-ctm-0-5:
    - shard-skl:          [PASS][23] -> [FAIL][24] ([fdo#108682])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl8/igt@kms_color@pipe-b-ctm-0-5.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl2/igt@kms_color@pipe-b-ctm-0-5.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-skl:          [PASS][25] -> [INCOMPLETE][26] ([fdo#110741])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-hsw:          [PASS][27] -> [FAIL][28] ([fdo#105767])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-glk:          [PASS][29] -> [FAIL][30] ([fdo#104873])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-hsw:          [PASS][31] -> [INCOMPLETE][32] ([fdo#103540])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-iclb:         [PASS][33] -> [FAIL][34] ([fdo#103167]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc:
    - shard-skl:          [PASS][35] -> [FAIL][36] ([fdo#108145])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html

  * igt@perf_pmu@busy-idle-check-all-vcs1:
    - shard-iclb:         [PASS][39] -> [SKIP][40] ([fdo#112080]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@perf_pmu@busy-idle-check-all-vcs1.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb7/igt@perf_pmu@busy-idle-check-all-vcs1.html

  * igt@prime_self_import@reimport-vs-gem_close-race:
    - shard-iclb:         [PASS][41] -> [INCOMPLETE][42] ([fdo#107713])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb6/igt@prime_self_import@reimport-vs-gem_close-race.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb7/igt@prime_self_import@reimport-vs-gem_close-race.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [FAIL][43] ([fdo#111925]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-snb2/igt@gem_eio@in-flight-contexts-immediate.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-snb4/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_schedule@preempt-queue-chain-bsd2:
    - shard-iclb:         [SKIP][45] ([fdo#109276]) -> [PASS][46] +11 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb8/igt@gem_exec_schedule@preempt-queue-chain-bsd2.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb1/igt@gem_exec_schedule@preempt-queue-chain-bsd2.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd:
    - shard-iclb:         [SKIP][47] ([fdo#111325]) -> [PASS][48] +2 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html

  * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing:
    - shard-iclb:         [TIMEOUT][49] ([fdo#112037]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb3/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb6/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html

  * igt@gem_reg_read@timestamp-moving:
    - shard-iclb:         [INCOMPLETE][51] ([fdo#107713]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb7/igt@gem_reg_read@timestamp-moving.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb4/igt@gem_reg_read@timestamp-moving.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [DMESG-WARN][53] ([fdo#108566]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-kbl2/igt@gem_softpin@noreloc-s3.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-kbl3/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_query@query-garbage-items:
    - shard-apl:          [INCOMPLETE][57] ([fdo#103927]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl1/igt@i915_query@query-garbage-items.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl3/igt@i915_query@query-garbage-items.html

  * igt@kms_color@pipe-a-ctm-blue-to-red:
    - shard-skl:          [DMESG-WARN][59] ([fdo#106107]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl5/igt@kms_color@pipe-a-ctm-blue-to-red.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl3/igt@kms_color@pipe-a-ctm-blue-to-red.html

  * igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding:
    - shard-skl:          [FAIL][61] ([fdo#103232]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - shard-apl:          [FAIL][63] ([fdo#102670]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [INCOMPLETE][65] ([fdo#103540]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw5/igt@kms_flip@flip-vs-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_tiling@flip-x-tiled:
    - shard-skl:          [FAIL][67] ([fdo#108145] / [fdo#108303]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl5/igt@kms_flip_tiling@flip-x-tiled.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl3/igt@kms_flip_tiling@flip-x-tiled.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         [FAIL][69] ([fdo#103167]) -> [PASS][70] +7 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - {shard-tglb}:       [FAIL][71] ([fdo#103167]) -> [PASS][72] +2 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [DMESG-WARN][73] ([fdo#108566]) -> [PASS][74] +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
    - shard-skl:          [FAIL][75] ([fdo#108145]) -> [PASS][76] +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][77] ([fdo#109441]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-dirty-switch:
    - shard-hsw:          [SKIP][79] ([fdo#109271]) -> [SKIP][80] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-hsw2/igt@gem_ctx_isolation@vcs1-dirty-switch.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-hsw7/igt@gem_ctx_isolation@vcs1-dirty-switch.html

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][81] ([fdo#111329]) -> [SKIP][82] ([fdo#109276] / [fdo#112080])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-glk:          [SKIP][83] ([fdo#109271]) -> [SKIP][84] ([fdo#109271] / [fdo#112080]) +13 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-glk5/igt@gem_ctx_isolation@vcs1-s3.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-glk8/igt@gem_ctx_isolation@vcs1-s3.html
    - shard-apl:          [SKIP][85] ([fdo#109271]) -> [SKIP][86] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl1/igt@gem_ctx_isolation@vcs1-s3.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-apl2/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_isolation@vcs2-clean:
    - shard-skl:          [SKIP][87] ([fdo#109271]) -> [SKIP][88] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-skl6/igt@gem_ctx_isolation@vcs2-clean.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-skl7/igt@gem_ctx_isolation@vcs2-clean.html

  * igt@gem_ctx_isolation@vcs2-dirty-create:
    - shard-snb:          [SKIP][89] ([fdo#109271]) -> [SKIP][90] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-snb6/igt@gem_ctx_isolation@vcs2-dirty-create.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-snb1/igt@gem_ctx_isolation@vcs2-dirty-create.html

  * igt@gem_ctx_isolation@vcs2-dirty-switch:
    - shard-iclb:         [SKIP][91] ([fdo#109276]) -> [SKIP][92] ([fdo#109276] / [fdo#112080]) +7 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb7/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@gem_ctx_isolation@vcs2-dirty-switch.html
    - shard-kbl:          [SKIP][93] ([fdo#109271]) -> [SKIP][94] ([fdo#109271] / [fdo#112080]) +6 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-kbl7/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-kbl2/igt@gem_ctx_isolation@vcs2-dirty-switch.html

  * igt@gem_mocs_settings@mocs-settings-bsd2:
    - shard-iclb:         [SKIP][95] ([fdo#109276]) -> [FAIL][96] ([fdo#111330])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb5/igt@gem_mocs_settings@mocs-settings-bsd2.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb1/igt@gem_mocs_settings@mocs-settings-bsd2.html

  * igt@kms_atomic_transition@3x-modeset-transitions:
    - shard-kbl:          [SKIP][97] ([fdo#109271]) -> [SKIP][98] ([fdo#109271] / [fdo#111766]) +3 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-kbl2/igt@kms_atomic_transition@3x-modeset-transitions.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-kbl3/igt@kms_atomic_transition@3x-modeset-transitions.html

  * igt@kms_atomic_transition@3x-modeset-transitions-fencing:
    - shard-iclb:         [SKIP][99] ([fdo#109278]) -> [SKIP][100] ([fdo#109278] / [fdo#111766]) +3 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-iclb4/igt@kms_atomic_transition@3x-modeset-transitions-fencing.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/shard-iclb8/igt@kms_atomic_transition@3x-modeset-transitions-fencing.html

  * igt@kms_atomic_transition@3x-modeset-transitions-nonblocking:
    - shard-apl:          [SKIP][101] ([fdo#109271]) -> [SKIP][102] ([fdo#109271] / [fdo#111766]) +3 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7128/shard-apl4/igt@kms_atomic_transition@3x-modeset-transitions-nonblocking.html
   [102]: https://intel-g

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14880/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2019-10-23 21:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-18 11:21 [PATCH 0/2] adding gamma state checker for icl+ platforms Swati Sharma
2019-10-18 11:21 ` [PATCH 1/2] [v7] drm/i915/color: Extract icl_read_luts() Swati Sharma
2019-10-18 11:21 ` [PATCH 2/2] FOR_TESTING_ONLY: Print rgb values of hw and sw blobs Swati Sharma
2019-10-18 12:47 ` ✗ Fi.CI.CHECKPATCH: warning for adding gamma state checker for icl+ platforms (rev6) Patchwork
2019-10-18 13:17 ` ✗ Fi.CI.BAT: failure " Patchwork
2019-10-18 14:01 ` Patchwork
2019-10-23  8:02 ` ✓ Fi.CI.BAT: success " Patchwork
2019-10-23 21:18 ` ✓ Fi.CI.IGT: " Patchwork
2019-10-23 21:18   ` [Intel-gfx] " Patchwork

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.