All of lore.kernel.org
 help / color / mirror / Atom feed
* [v4 0/4] Enable Multi-segmented-gamma for ICL
@ 2019-06-12  6:44 Uma Shankar
  2019-06-12  6:44 ` [v4 1/4] drm/i915: Change gamma/degamma_lut_size data type to u32 Uma Shankar
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Uma Shankar @ 2019-06-12  6:44 UTC (permalink / raw)
  To: intel-gfx

This patch series enables programming of Multi-segmented-gamma
palette for ICL.

Note: Due to the roundup and eventual precision loss, there are CRC
failures with IGT color tests when multi segmented gamma mode is enabled.

v4: Rebase and addressed Ville's review comments.

Shashank Sharma (3):
  drm/i915: Change gamma/degamma_lut_size data type to u32
  drm/i915: Rename ivb_load_lut_10_max
  drm/i915/icl: Add Multi-segmented gamma support

Uma Shankar (1):
  drm/i915/icl: Add register definitions for Multi Segmented gamma

 drivers/gpu/drm/i915/i915_pci.c          |   2 +-
 drivers/gpu/drm/i915/i915_reg.h          |  19 ++++-
 drivers/gpu/drm/i915/intel_color.c       | 140 ++++++++++++++++++++++++++++---
 drivers/gpu/drm/i915/intel_device_info.h |   4 +-
 4 files changed, 150 insertions(+), 15 deletions(-)

-- 
1.9.1

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

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

* [v4 1/4] drm/i915: Change gamma/degamma_lut_size data type to u32
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
@ 2019-06-12  6:44 ` Uma Shankar
  2019-06-12  6:44 ` [v4 2/4] drm/i915/icl: Add register definitions for Multi Segmented gamma Uma Shankar
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 15+ messages in thread
From: Uma Shankar @ 2019-06-12  6:44 UTC (permalink / raw)
  To: intel-gfx

From: Shashank Sharma <shashank.sharma@intel.com>

Currently, data type of gamma_lut_size & degamma_lut_size elements
in intel_device_info is u16, which means it can accommodate maximum
64k values. In case of ICL multisegmented gamma, the size of gamma
LUT is 256K.

This patch changes the data type of both of these elements to u32.

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>

V4: Added Uma's r-b.

Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Shashank Sharma <shashank.sharma@intel.com>
---
 drivers/gpu/drm/i915/intel_device_info.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_device_info.h b/drivers/gpu/drm/i915/intel_device_info.h
index 1fb8b50..8a6b76a 100644
--- a/drivers/gpu/drm/i915/intel_device_info.h
+++ b/drivers/gpu/drm/i915/intel_device_info.h
@@ -178,8 +178,8 @@ struct intel_device_info {
 	int cursor_offsets[I915_MAX_PIPES];
 
 	struct color_luts {
-		u16 degamma_lut_size;
-		u16 gamma_lut_size;
+		u32 degamma_lut_size;
+		u32 gamma_lut_size;
 		u32 degamma_lut_tests;
 		u32 gamma_lut_tests;
 	} color;
-- 
1.9.1

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

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

* [v4 2/4] drm/i915/icl: Add register definitions for Multi Segmented gamma
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
  2019-06-12  6:44 ` [v4 1/4] drm/i915: Change gamma/degamma_lut_size data type to u32 Uma Shankar
@ 2019-06-12  6:44 ` Uma Shankar
  2019-06-12  6:44 ` [v4 3/4] drm/i915: Rename ivb_load_lut_10_max Uma Shankar
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 15+ messages in thread
From: Uma Shankar @ 2019-06-12  6:44 UTC (permalink / raw)
  To: intel-gfx

Add macros to define multi segmented gamma registers

V2: Addressed Ville's comments:
    	Add gen-lable before bit definition
    Addressed Jani's comment
	- Use REG_GENMASK() and REG_BIT()
V3: Addressed Ville's comments:
    - Put comments at the end of line.
    - Change the comment at start of ICL multisegmented gamma registers.
    Added Ville's r-b

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Shashank Sharma <shashank.sharma@intel.com>
---
 drivers/gpu/drm/i915/i915_reg.h | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 7a26766..0798151 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7203,7 +7203,8 @@ enum {
 #define  GAMMA_MODE_MODE_8BIT	(0 << 0)
 #define  GAMMA_MODE_MODE_10BIT	(1 << 0)
 #define  GAMMA_MODE_MODE_12BIT	(2 << 0)
-#define  GAMMA_MODE_MODE_SPLIT	(3 << 0)
+#define  GAMMA_MODE_MODE_SPLIT	(3 << 0) /* ivb-bdw */
+#define  GAMMA_MODE_MODE_12BIT_MULTI_SEGMENTED	(3 << 0) /* icl + */
 
 /* DMC/CSR */
 #define CSR_PROGRAM(i)		_MMIO(0x80000 + (i) * 4)
@@ -10164,6 +10165,22 @@ enum skl_power_gate {
 #define PRE_CSC_GAMC_INDEX(pipe)	_MMIO_PIPE(pipe, _PRE_CSC_GAMC_INDEX_A, _PRE_CSC_GAMC_INDEX_B)
 #define PRE_CSC_GAMC_DATA(pipe)		_MMIO_PIPE(pipe, _PRE_CSC_GAMC_DATA_A, _PRE_CSC_GAMC_DATA_B)
 
+/* ICL Multi segmented gamma */
+#define _PAL_PREC_MULTI_SEG_INDEX_A	0x4A408
+#define _PAL_PREC_MULTI_SEG_INDEX_B	0x4AC08
+#define  PAL_PREC_MULTI_SEGMENT_AUTO_INCREMENT		REG_BIT(15)
+#define  PAL_PREC_MULTI_SEGMENT_INDEX_VALUE_MASK	REG_GENMASK(4, 0)
+
+#define _PAL_PREC_MULTI_SEG_DATA_A	0x4A40C
+#define _PAL_PREC_MULTI_SEG_DATA_B	0x4AC0C
+
+#define PREC_PAL_MULTI_SEG_INDEX(pipe)	_MMIO_PIPE(pipe, \
+					_PAL_PREC_MULTI_SEG_INDEX_A, \
+					_PAL_PREC_MULTI_SEG_INDEX_B)
+#define PREC_PAL_MULTI_SEG_DATA(pipe)	_MMIO_PIPE(pipe, \
+					_PAL_PREC_MULTI_SEG_DATA_A, \
+					_PAL_PREC_MULTI_SEG_DATA_B)
+
 /* pipe CSC & degamma/gamma LUTs on CHV */
 #define _CGM_PIPE_A_CSC_COEFF01	(VLV_DISPLAY_BASE + 0x67900)
 #define _CGM_PIPE_A_CSC_COEFF23	(VLV_DISPLAY_BASE + 0x67904)
-- 
1.9.1

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

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

* [v4 3/4] drm/i915: Rename ivb_load_lut_10_max
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
  2019-06-12  6:44 ` [v4 1/4] drm/i915: Change gamma/degamma_lut_size data type to u32 Uma Shankar
  2019-06-12  6:44 ` [v4 2/4] drm/i915/icl: Add register definitions for Multi Segmented gamma Uma Shankar
@ 2019-06-12  6:44 ` Uma Shankar
  2019-06-12  6:45 ` [v4 4/4] drm/i915/icl: Add Multi-segmented gamma support Uma Shankar
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 15+ messages in thread
From: Uma Shankar @ 2019-06-12  6:44 UTC (permalink / raw)
  To: intel-gfx

From: Shashank Sharma <shashank.sharma@intel.com>

This patch renames function ivb_load_lut_10_max to
ivb_load_lut_ext_max.

V3: Added Vill'es r-b.

Cc: Uma Shankar <uma.shankar@intel.com>

Suggested-by: Ville Syrjala <ville.syrjala@linux.intel.com>
Reviewed-by: Ville Syrjala <ville.syrjala@linux.intel.com>
Signed-off-by: Shashank Sharma <shashank.sharma@intel.com>
---
 drivers/gpu/drm/i915/intel_color.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_color.c b/drivers/gpu/drm/i915/intel_color.c
index 0b8cf3e..46443ae 100644
--- a/drivers/gpu/drm/i915/intel_color.c
+++ b/drivers/gpu/drm/i915/intel_color.c
@@ -607,7 +607,7 @@ static void bdw_load_lut_10(struct intel_crtc *crtc,
 	I915_WRITE(PREC_PAL_INDEX(pipe), 0);
 }
 
-static void ivb_load_lut_10_max(struct intel_crtc *crtc)
+static void ivb_load_lut_ext_max(struct intel_crtc *crtc)
 {
 	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
 	enum pipe pipe = crtc->pipe;
@@ -640,7 +640,7 @@ static void ivb_load_luts(const struct intel_crtc_state *crtc_state)
 	} else if (crtc_state->gamma_mode == GAMMA_MODE_MODE_SPLIT) {
 		ivb_load_lut_10(crtc, degamma_lut, PAL_PREC_SPLIT_MODE |
 				PAL_PREC_INDEX_VALUE(0));
-		ivb_load_lut_10_max(crtc);
+		ivb_load_lut_ext_max(crtc);
 		ivb_load_lut_10(crtc, gamma_lut, PAL_PREC_SPLIT_MODE |
 				PAL_PREC_INDEX_VALUE(512));
 	} else {
@@ -648,7 +648,7 @@ static void ivb_load_luts(const struct intel_crtc_state *crtc_state)
 
 		ivb_load_lut_10(crtc, blob,
 				PAL_PREC_INDEX_VALUE(0));
-		ivb_load_lut_10_max(crtc);
+		ivb_load_lut_ext_max(crtc);
 	}
 }
 
@@ -663,7 +663,7 @@ static void bdw_load_luts(const struct intel_crtc_state *crtc_state)
 	} else if (crtc_state->gamma_mode == GAMMA_MODE_MODE_SPLIT) {
 		bdw_load_lut_10(crtc, degamma_lut, PAL_PREC_SPLIT_MODE |
 				PAL_PREC_INDEX_VALUE(0));
-		ivb_load_lut_10_max(crtc);
+		ivb_load_lut_ext_max(crtc);
 		bdw_load_lut_10(crtc, gamma_lut, PAL_PREC_SPLIT_MODE |
 				PAL_PREC_INDEX_VALUE(512));
 	} else {
@@ -671,7 +671,7 @@ static void bdw_load_luts(const struct intel_crtc_state *crtc_state)
 
 		bdw_load_lut_10(crtc, blob,
 				PAL_PREC_INDEX_VALUE(0));
-		ivb_load_lut_10_max(crtc);
+		ivb_load_lut_ext_max(crtc);
 	}
 }
 
@@ -763,7 +763,7 @@ static void glk_load_luts(const struct intel_crtc_state *crtc_state)
 		i9xx_load_luts(crtc_state);
 	} else {
 		bdw_load_lut_10(crtc, gamma_lut, PAL_PREC_INDEX_VALUE(0));
-		ivb_load_lut_10_max(crtc);
+		ivb_load_lut_ext_max(crtc);
 	}
 }
 
@@ -780,7 +780,7 @@ static void icl_load_luts(const struct intel_crtc_state *crtc_state)
 		i9xx_load_luts(crtc_state);
 	} else {
 		bdw_load_lut_10(crtc, gamma_lut, PAL_PREC_INDEX_VALUE(0));
-		ivb_load_lut_10_max(crtc);
+		ivb_load_lut_ext_max(crtc);
 	}
 }
 
-- 
1.9.1

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

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

* [v4 4/4] drm/i915/icl: Add Multi-segmented gamma support
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
                   ` (2 preceding siblings ...)
  2019-06-12  6:44 ` [v4 3/4] drm/i915: Rename ivb_load_lut_10_max Uma Shankar
@ 2019-06-12  6:45 ` Uma Shankar
  2019-06-12  6:56 ` ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4) Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 15+ messages in thread
From: Uma Shankar @ 2019-06-12  6:45 UTC (permalink / raw)
  To: intel-gfx; +Cc: Daniel Vetter

From: Shashank Sharma <shashank.sharma@intel.com>

ICL introduces a new gamma correction mode in display engine, called
multi-segmented-gamma mode. This mode allows users to program the
darker region of the gamma curve with sueprfine precision. An
example use case for this is HDR curves (like PQ ST-2084).

If we plot a gamma correction curve from value range between 0.0 to 1.0,
ICL's multi-segment has 3 different sections:
- superfine segment: 9 values, ranges between 0 - 1/(128 * 256)
- fine segment: 257 values, ranges between 0 - 1/(128)
- corase segment: 257 values, ranges between 0 - 1

This patch:
- Changes gamma LUTs size for ICL/GEN11 to 262144 entries (8 * 128 * 256),
  so that userspace can program with highest precision supported.
- Changes default gamma mode (non-legacy) to multi-segmented-gamma mode.
- Adds functions to program/detect multi-segment gamma.

V2: Addressed review comments from Ville
    - separate function for superfine and fine segments.
    - remove enum for segments.
    - reuse last entry of the LUT as gc_max value.
    - replace if() ....cond with switch...case in icl_load_luts.
    - add an entry variable, instead of 'word'

V3: Addressed review comments from Ville
    - extra newline
    - s/entry/color/
    - remove LUT size checks
    - program ilk_lut_12p4_ldw value before ilk_lut_12p4_udw
    - Change the comments in description of fine and coarse segments,
      and try to make more sense.
    - use 8 * 128 instead of 1024
    - add 1 entry in LUT for GCMAX

V4: Addressed review comments from Ville
    - Remove unused macro
    - missing shift entry in blue
    - pick correct entry for GCMAX
    - Added Ville's R-B
Note: Tested and confirmed the programming sequence of odd/even
registers in the HW. The correct sequence should be:
	ilk_lut_12p4_udw
	ilk_lut_12p4_ldw

v5: Addressed Ville's review comments and renamed odd/even register
helpers to be more consistent with the values.

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Shashank Sharma <shashank.sharma@intel.com>
Signed-off-by: Uma Shankar <uma.shankar@intel.com>
---
 drivers/gpu/drm/i915/i915_pci.c    |   2 +-
 drivers/gpu/drm/i915/intel_color.c | 126 +++++++++++++++++++++++++++++++++++--
 2 files changed, 123 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c
index 482f1d0..ed6b1f6 100644
--- a/drivers/gpu/drm/i915/i915_pci.c
+++ b/drivers/gpu/drm/i915/i915_pci.c
@@ -747,7 +747,7 @@
 	GEN(11), \
 	.ddb_size = 2048, \
 	.has_logical_ring_elsq = 1, \
-	.color = { .degamma_lut_size = 33, .gamma_lut_size = 1024 }
+	.color = { .degamma_lut_size = 33, .gamma_lut_size = 262145 }
 
 static const struct intel_device_info intel_icelake_11_info = {
 	GEN11_FEATURES,
diff --git a/drivers/gpu/drm/i915/intel_color.c b/drivers/gpu/drm/i915/intel_color.c
index 46443ae..23a84dd 100644
--- a/drivers/gpu/drm/i915/intel_color.c
+++ b/drivers/gpu/drm/i915/intel_color.c
@@ -41,6 +41,7 @@
 #define CTM_COEFF_ABS(coeff)		((coeff) & (CTM_COEFF_SIGN - 1))
 
 #define LEGACY_LUT_LENGTH		256
+
 /*
  * Extract the CSC coefficient from a CTM coefficient (in U32.32 fixed point
  * format). This macro takes the coefficient we want transformed and the
@@ -767,6 +768,116 @@ static void glk_load_luts(const struct intel_crtc_state *crtc_state)
 	}
 }
 
+/* ilk+ "12.4" interpolated format (high 10 bits) */
+static u32 ilk_lut_12p4_udw(const struct drm_color_lut *color)
+{
+	return (color->red >> 6) << 20 | (color->green >> 6) << 10 |
+		(color->blue >> 6);
+}
+
+/* ilk+ "12.4" interpolated format (low 6 bits) */
+static u32 ilk_lut_12p4_ldw(const struct drm_color_lut *color)
+{
+	return (color->red & 0x3f) << 24 | (color->green & 0x3f) << 14 |
+		(color->blue & 0x3f) << 4;
+}
+
+static void
+icl_load_gcmax(const struct intel_crtc_state *crtc_state,
+	       const struct drm_color_lut *color)
+{
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
+	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
+	enum pipe pipe = crtc->pipe;
+
+	/* Fixme: LUT entries are 16 bit only, so we can prog 0xFFFF max */
+	I915_WRITE(PREC_PAL_GC_MAX(pipe, 0), color->red);
+	I915_WRITE(PREC_PAL_GC_MAX(pipe, 1), color->green);
+	I915_WRITE(PREC_PAL_GC_MAX(pipe, 2), color->blue);
+}
+
+static void
+icl_program_gamma_superfine_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);
+	const struct drm_property_blob *blob = crtc_state->base.gamma_lut;
+	const struct drm_color_lut *lut = blob->data;
+	enum pipe pipe = crtc->pipe;
+	u32 i;
+
+	/*
+	 * Every entry in the multi-segment LUT is corresponding to a superfine
+	 * segment step which is 1/(8 * 128 * 256).
+	 *
+	 * Superfine segment has 9 entries, corresponding to values
+	 * 0, 1/(8 * 128 * 256), 2/(8 * 128 * 256) .... 8/(8 * 128 * 256).
+	 */
+	I915_WRITE(PREC_PAL_MULTI_SEG_INDEX(pipe), PAL_PREC_AUTO_INCREMENT);
+
+	for (i = 0; i < 9; i++) {
+		const struct drm_color_lut *entry = &lut[i];
+
+		I915_WRITE(PREC_PAL_MULTI_SEG_DATA(pipe),
+			   ilk_lut_12p4_ldw(entry));
+		I915_WRITE(PREC_PAL_MULTI_SEG_DATA(pipe),
+			   ilk_lut_12p4_udw(entry));
+	}
+}
+
+static void
+icl_program_gamma_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);
+	const struct drm_property_blob *blob = crtc_state->base.gamma_lut;
+	const struct drm_color_lut *lut = blob->data;
+	const struct drm_color_lut *entry;
+	enum pipe pipe = crtc->pipe;
+	u32 i;
+
+	/*
+	 *
+	 * Program Fine segment (let's call it seg2)...
+	 *
+	 * Fine segment's step is 1/(128 * 256) ie 1/(128 * 256),  2/(128*256)
+	 * ... 256/(128*256). So in order to program fine segment of LUT we
+	 * need to pick every 8'th entry in LUT, and program 256 indexes.
+	 *
+	 * PAL_PREC_INDEX[0] and PAL_PREC_INDEX[1] map to seg2[1],
+	 * with seg2[0] being unused by the hardware.
+	 */
+	I915_WRITE(PREC_PAL_INDEX(pipe), PAL_PREC_AUTO_INCREMENT);
+	for (i = 1; i < 257; i++) {
+		entry = &lut[i * 8];
+		I915_WRITE(PREC_PAL_DATA(pipe), ilk_lut_12p4_ldw(entry));
+		I915_WRITE(PREC_PAL_DATA(pipe), ilk_lut_12p4_udw(entry));
+	}
+
+	/*
+	 * Program Coarse segment (let's call it seg3)...
+	 *
+	 * Coarse segment's starts from index 0 and it's step is 1/256 ie 0,
+	 * 1/256, 2/256 ...256/256. As per the description of each entry in LUT
+	 * above, we need to pick every (8 * 128)th entry in LUT, and
+	 * program 256 of those.
+	 *
+	 * Spec is not very clear about if entries seg3[0] and seg3[1] are
+	 * being used or not, but we still need to program these to advance
+	 * the index.
+	 */
+	for (i = 0; i < 256; i++) {
+		entry = &lut[i * 8 * 128];
+		I915_WRITE(PREC_PAL_DATA(pipe), ilk_lut_12p4_ldw(entry));
+		I915_WRITE(PREC_PAL_DATA(pipe), ilk_lut_12p4_udw(entry));
+	}
+
+	/* The last entry in the LUT is to be programmed in GCMAX */
+	entry = &lut[256 * 8 * 128];
+	icl_load_gcmax(crtc_state, entry);
+	ivb_load_lut_ext_max(crtc);
+}
+
 static void icl_load_luts(const struct intel_crtc_state *crtc_state)
 {
 	const struct drm_property_blob *gamma_lut = crtc_state->base.gamma_lut;
@@ -775,10 +886,17 @@ static void icl_load_luts(const struct intel_crtc_state *crtc_state)
 	if (crtc_state->base.degamma_lut)
 		glk_load_degamma_lut(crtc_state);
 
-	if ((crtc_state->gamma_mode & GAMMA_MODE_MODE_MASK) ==
-	    GAMMA_MODE_MODE_8BIT) {
+	switch (crtc_state->gamma_mode & GAMMA_MODE_MODE_MASK) {
+	case GAMMA_MODE_MODE_8BIT:
 		i9xx_load_luts(crtc_state);
-	} else {
+		break;
+
+	case GAMMA_MODE_MODE_12BIT_MULTI_SEGMENTED:
+		icl_program_gamma_superfine_segment(crtc_state);
+		icl_program_gamma_multi_segment(crtc_state);
+		break;
+
+	default:
 		bdw_load_lut_10(crtc, gamma_lut, PAL_PREC_INDEX_VALUE(0));
 		ivb_load_lut_ext_max(crtc);
 	}
@@ -1219,7 +1337,7 @@ static u32 icl_gamma_mode(const struct intel_crtc_state *crtc_state)
 	    crtc_state_is_legacy_gamma(crtc_state))
 		gamma_mode |= GAMMA_MODE_MODE_8BIT;
 	else
-		gamma_mode |= GAMMA_MODE_MODE_10BIT;
+		gamma_mode |= GAMMA_MODE_MODE_12BIT_MULTI_SEGMENTED;
 
 	return gamma_mode;
 }
-- 
1.9.1

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

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

* ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
                   ` (3 preceding siblings ...)
  2019-06-12  6:45 ` [v4 4/4] drm/i915/icl: Add Multi-segmented gamma support Uma Shankar
@ 2019-06-12  6:56 ` Patchwork
  2019-06-12  8:58   ` Shankar, Uma
  2019-06-12 10:23 ` ✓ Fi.CI.BAT: success " Patchwork
  2019-06-13  7:06 ` ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2019-06-12  6:56 UTC (permalink / raw)
  To: Sharma, Shashank; +Cc: intel-gfx

== Series Details ==

Series: Enable Multi-segmented-gamma for ICL (rev4)
URL   : https://patchwork.freedesktop.org/series/60126/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6242 -> Patchwork_13248
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-skl-gvtdvm:      [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-gvtdvm/igt@i915_module_load@reload-with-fault-injection.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-u3/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@prime_vgem@basic-fence-flip:
    - fi-ilk-650:         [PASS][5] -> [DMESG-WARN][6] ([fdo#106387]) +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html

  
#### Possible fixes ####

  * igt@i915_module_load@reload:
    - fi-icl-u3:          [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-u3/igt@i915_module_load@reload.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-u3/igt@i915_module_load@reload.html

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-bsw-kefka:       [DMESG-WARN][9] -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-bsw-kefka/igt@i915_module_load@reload-with-fault-injection.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-bsw-kefka/igt@i915_module_load@reload-with-fault-injection.html

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

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

  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485


Participating hosts (53 -> 47)
------------------------------

  Additional (1): fi-bsw-n3050 
  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus 


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

  * Linux: CI_DRM_6242 -> Patchwork_13248

  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

e8edff0dab0b drm/i915/icl: Add Multi-segmented gamma support
8ec34efe53ac drm/i915: Rename ivb_load_lut_10_max
d8c5fa05c917 drm/i915/icl: Add register definitions for Multi Segmented gamma
0113a2c67b14 drm/i915: Change gamma/degamma_lut_size data type to u32

== Logs ==

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

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

* Re: ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12  6:56 ` ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4) Patchwork
@ 2019-06-12  8:58   ` Shankar, Uma
  2019-06-12 10:20     ` Peres, Martin
  0 siblings, 1 reply; 15+ messages in thread
From: Shankar, Uma @ 2019-06-12  8:58 UTC (permalink / raw)
  To: intel-gfx, Peres, Martin



>-----Original Message-----
>From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On Behalf Of
>Patchwork
>Sent: Wednesday, June 12, 2019 12:27 PM
>To: Sharma, Shashank <shashank.sharma@intel.com>
>Cc: intel-gfx@lists.freedesktop.org
>Subject: [Intel-gfx] ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL
>(rev4)
>
>== Series Details ==
>
>Series: Enable Multi-segmented-gamma for ICL (rev4)
>URL   : https://patchwork.freedesktop.org/series/60126/
>State : failure
>
>== Summary ==
>
>CI Bug Log - changes from CI_DRM_6242 -> Patchwork_13248
>====================================================
>
>Summary
>-------
>
>  **FAILURE**
>
>  Serious unknown changes coming with Patchwork_13248 absolutely need to be
>  verified manually.
>
>  If you think the reported changes have nothing to do with the changes
>  introduced in Patchwork_13248, 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_13248/
>
>Possible new issues
>-------------------
>
>  Here are the unknown changes that may have been introduced in Patchwork_13248:
>
>### IGT changes ###
>
>#### Possible regressions ####
>
>  * igt@i915_module_load@reload-with-fault-injection:
>    - fi-skl-gvtdvm:      [PASS][1] -> [INCOMPLETE][2]
>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-
>gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
>   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-
>gvtdvm/igt@i915_module_load@reload-with-fault-injection.html

Hi Martin,
Getting this failure on BAT run in intel-gfx, can you help enable a CI run for full IGT scan.
I am getting BAT passing on trybot and this doesn't seem to be related to the changes here.

Thanks & Regards,
Uma Shankar

>
>Known issues
>------------
>
>  Here are the changes found in Patchwork_13248 that come from known issues:
>
>### IGT changes ###
>
>#### Issues hit ####
>
>  * igt@gem_exec_reloc@basic-cpu-noreloc:
>    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>
>  * igt@prime_vgem@basic-fence-flip:
>    - fi-ilk-650:         [PASS][5] -> [DMESG-WARN][6] ([fdo#106387]) +2 similar issues
>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-ilk-
>650/igt@prime_vgem@basic-fence-flip.html
>   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-ilk-
>650/igt@prime_vgem@basic-fence-flip.html
>
>
>#### Possible fixes ####
>
>  * igt@i915_module_load@reload:
>    - fi-icl-u3:          [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8]
>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>u3/igt@i915_module_load@reload.html
>   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>u3/igt@i915_module_load@reload.html
>
>  * igt@i915_module_load@reload-with-fault-injection:
>    - fi-bsw-kefka:       [DMESG-WARN][9] -> [PASS][10]
>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-bsw-
>kefka/igt@i915_module_load@reload-with-fault-injection.html
>   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-bsw-
>kefka/igt@i915_module_load@reload-with-fault-injection.html
>
>  * igt@kms_chamelium@hdmi-hpd-fast:
>    - fi-kbl-7500u:       [FAIL][11] ([fdo#109485]) -> [PASS][12]
>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-kbl-
>7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-kbl-
>7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>
>
>  {name}: This element is suppressed. This means it is ignored when computing
>          the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>  [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
>  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
>
>
>Participating hosts (53 -> 47)
>------------------------------
>
>  Additional (1): fi-bsw-n3050
>  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-
>byt-clapper fi-bdw-samus
>
>
>Build changes
>-------------
>
>  * Linux: CI_DRM_6242 -> Patchwork_13248
>
>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>git://anongit.freedesktop.org/gfx-ci/linux
>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>git://anongit.freedesktop.org/gfx-ci/linux
>
>
>== Linux commits ==
>
>e8edff0dab0b drm/i915/icl: Add Multi-segmented gamma support 8ec34efe53ac
>drm/i915: Rename ivb_load_lut_10_max
>d8c5fa05c917 drm/i915/icl: Add register definitions for Multi Segmented gamma
>0113a2c67b14 drm/i915: Change gamma/degamma_lut_size data type to u32
>
>== Logs ==
>
>For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>_______________________________________________
>Intel-gfx mailing list
>Intel-gfx@lists.freedesktop.org
>https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12  8:58   ` Shankar, Uma
@ 2019-06-12 10:20     ` Peres, Martin
  2019-06-12 12:04       ` Shankar, Uma
  0 siblings, 1 reply; 15+ messages in thread
From: Peres, Martin @ 2019-06-12 10:20 UTC (permalink / raw)
  To: Shankar, Uma, intel-gfx

On 12/06/2019 11:58, Shankar, Uma wrote:
> 
> 
>> -----Original Message-----
>> From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On Behalf Of
>> Patchwork
>> Sent: Wednesday, June 12, 2019 12:27 PM
>> To: Sharma, Shashank <shashank.sharma@intel.com>
>> Cc: intel-gfx@lists.freedesktop.org
>> Subject: [Intel-gfx] ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL
>> (rev4)
>>
>> == Series Details ==
>>
>> Series: Enable Multi-segmented-gamma for ICL (rev4)
>> URL   : https://patchwork.freedesktop.org/series/60126/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_6242 -> Patchwork_13248
>> ====================================================
>>
>> Summary
>> -------
>>
>>  **FAILURE**
>>
>>  Serious unknown changes coming with Patchwork_13248 absolutely need to be
>>  verified manually.
>>
>>  If you think the reported changes have nothing to do with the changes
>>  introduced in Patchwork_13248, 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_13248/
>>
>> Possible new issues
>> -------------------
>>
>>  Here are the unknown changes that may have been introduced in Patchwork_13248:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>>  * igt@i915_module_load@reload-with-fault-injection:
>>    - fi-skl-gvtdvm:      [PASS][1] -> [INCOMPLETE][2]
>>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-
>> gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
>>   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-
>> gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
> 
> Hi Martin,
> Getting this failure on BAT run in intel-gfx, can you help enable a CI run for full IGT scan.
> I am getting BAT passing on trybot and this doesn't seem to be related to the changes here.

Thanks for reporting the issue. I mapped this failure to this bug:
https://bugs.freedesktop.org/show_bug.cgi?id=110343

I am sure the GEM team will be happy to take another look at this issue :D

Martin

> 
> Thanks & Regards,
> Uma Shankar
> 
>>
>> Known issues
>> ------------
>>
>>  Here are the changes found in Patchwork_13248 that come from known issues:
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>>  * igt@gem_exec_reloc@basic-cpu-noreloc:
>>    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
>>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>> u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>>   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>> u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>>
>>  * igt@prime_vgem@basic-fence-flip:
>>    - fi-ilk-650:         [PASS][5] -> [DMESG-WARN][6] ([fdo#106387]) +2 similar issues
>>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-ilk-
>> 650/igt@prime_vgem@basic-fence-flip.html
>>   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-ilk-
>> 650/igt@prime_vgem@basic-fence-flip.html
>>
>>
>> #### Possible fixes ####
>>
>>  * igt@i915_module_load@reload:
>>    - fi-icl-u3:          [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8]
>>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>> u3/igt@i915_module_load@reload.html
>>   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>> u3/igt@i915_module_load@reload.html
>>
>>  * igt@i915_module_load@reload-with-fault-injection:
>>    - fi-bsw-kefka:       [DMESG-WARN][9] -> [PASS][10]
>>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-bsw-
>> kefka/igt@i915_module_load@reload-with-fault-injection.html
>>   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-bsw-
>> kefka/igt@i915_module_load@reload-with-fault-injection.html
>>
>>  * igt@kms_chamelium@hdmi-hpd-fast:
>>    - fi-kbl-7500u:       [FAIL][11] ([fdo#109485]) -> [PASS][12]
>>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-kbl-
>> 7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>>   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-kbl-
>> 7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>>
>>
>>  {name}: This element is suppressed. This means it is ignored when computing
>>          the status of the difference (SUCCESS, WARNING, or FAILURE).
>>
>>  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
>>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>>  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>>  [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
>>  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
>>
>>
>> Participating hosts (53 -> 47)
>> ------------------------------
>>
>>  Additional (1): fi-bsw-n3050
>>  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-
>> byt-clapper fi-bdw-samus
>>
>>
>> Build changes
>> -------------
>>
>>  * Linux: CI_DRM_6242 -> Patchwork_13248
>>
>>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>> git://anongit.freedesktop.org/gfx-ci/linux
>>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>> git://anongit.freedesktop.org/gfx-ci/linux
>>
>>
>> == Linux commits ==
>>
>> e8edff0dab0b drm/i915/icl: Add Multi-segmented gamma support 8ec34efe53ac
>> drm/i915: Rename ivb_load_lut_10_max
>> d8c5fa05c917 drm/i915/icl: Add register definitions for Multi Segmented gamma
>> 0113a2c67b14 drm/i915: Change gamma/degamma_lut_size data type to u32
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 

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

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

* ✓ Fi.CI.BAT: success for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
                   ` (4 preceding siblings ...)
  2019-06-12  6:56 ` ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4) Patchwork
@ 2019-06-12 10:23 ` Patchwork
  2019-06-13  7:06 ` ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2019-06-12 10:23 UTC (permalink / raw)
  To: Sharma, Shashank; +Cc: intel-gfx

== Series Details ==

Series: Enable Multi-segmented-gamma for ICL (rev4)
URL   : https://patchwork.freedesktop.org/series/60126/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6242 -> Patchwork_13248
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-u3/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-skl-gvtdvm:      [PASS][3] -> [INCOMPLETE][4] ([fdo#110343])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-gvtdvm/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_selftest@live_blt:
    - fi-skl-iommu:       [PASS][5] -> [INCOMPLETE][6] ([fdo#108602])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-iommu/igt@i915_selftest@live_blt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-iommu/igt@i915_selftest@live_blt.html

  * igt@prime_vgem@basic-fence-flip:
    - fi-ilk-650:         [PASS][7] -> [DMESG-WARN][8] ([fdo#106387]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html

  
#### Possible fixes ####

  * igt@i915_module_load@reload:
    - fi-icl-u3:          [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-u3/igt@i915_module_load@reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-u3/igt@i915_module_load@reload.html

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-bsw-kefka:       [DMESG-WARN][11] ([fdo#110900]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-bsw-kefka/igt@i915_module_load@reload-with-fault-injection.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-bsw-kefka/igt@i915_module_load@reload-with-fault-injection.html

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

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

  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
  [fdo#110343]: https://bugs.freedesktop.org/show_bug.cgi?id=110343
  [fdo#110900]: https://bugs.freedesktop.org/show_bug.cgi?id=110900


Participating hosts (53 -> 47)
------------------------------

  Additional (1): fi-bsw-n3050 
  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus 


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

  * Linux: CI_DRM_6242 -> Patchwork_13248

  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

e8edff0dab0b drm/i915/icl: Add Multi-segmented gamma support
8ec34efe53ac drm/i915: Rename ivb_load_lut_10_max
d8c5fa05c917 drm/i915/icl: Add register definitions for Multi Segmented gamma
0113a2c67b14 drm/i915: Change gamma/degamma_lut_size data type to u32

== Logs ==

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

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

* Re: ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12 10:20     ` Peres, Martin
@ 2019-06-12 12:04       ` Shankar, Uma
  2019-06-12 12:35         ` Peres, Martin
  0 siblings, 1 reply; 15+ messages in thread
From: Shankar, Uma @ 2019-06-12 12:04 UTC (permalink / raw)
  To: Peres, Martin, intel-gfx



>-----Original Message-----
>From: Peres, Martin
>Sent: Wednesday, June 12, 2019 3:51 PM
>To: Shankar, Uma <uma.shankar@intel.com>; intel-gfx@lists.freedesktop.org
>Cc: Sharma, Shashank <shashank.sharma@intel.com>
>Subject: Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL
>(rev4)
>
>On 12/06/2019 11:58, Shankar, Uma wrote:
>>
>>
>>> -----Original Message-----
>>> From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On
>>> Behalf Of Patchwork
>>> Sent: Wednesday, June 12, 2019 12:27 PM
>>> To: Sharma, Shashank <shashank.sharma@intel.com>
>>> Cc: intel-gfx@lists.freedesktop.org
>>> Subject: [Intel-gfx] ✗ Fi.CI.BAT: failure for Enable
>>> Multi-segmented-gamma for ICL
>>> (rev4)
>>>
>>> == Series Details ==
>>>
>>> Series: Enable Multi-segmented-gamma for ICL (rev4)
>>> URL   : https://patchwork.freedesktop.org/series/60126/
>>> State : failure
>>>
>>> == Summary ==
>>>
>>> CI Bug Log - changes from CI_DRM_6242 -> Patchwork_13248
>>> ====================================================
>>>
>>> Summary
>>> -------
>>>
>>>  **FAILURE**
>>>
>>>  Serious unknown changes coming with Patchwork_13248 absolutely need
>>> to be  verified manually.
>>>
>>>  If you think the reported changes have nothing to do with the
>>> changes  introduced in Patchwork_13248, 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_13248/
>>>
>>> Possible new issues
>>> -------------------
>>>
>>>  Here are the unknown changes that may have been introduced in
>Patchwork_13248:
>>>
>>> ### IGT changes ###
>>>
>>> #### Possible regressions ####
>>>
>>>  * igt@i915_module_load@reload-with-fault-injection:
>>>    - fi-skl-gvtdvm:      [PASS][1] -> [INCOMPLETE][2]
>>>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-
>>> gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
>>>   [2]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-
>>> gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
>>
>> Hi Martin,
>> Getting this failure on BAT run in intel-gfx, can you help enable a CI run for full IGT
>scan.
>> I am getting BAT passing on trybot and this doesn't seem to be related to the
>changes here.
>
>Thanks for reporting the issue. I mapped this failure to this bug:
>https://bugs.freedesktop.org/show_bug.cgi?id=110343
>
>I am sure the GEM team will be happy to take another look at this issue :D

Thanks Martin for your help here.

Regards,
Uma Shankar

>Martin
>
>>
>> Thanks & Regards,
>> Uma Shankar
>>
>>>
>>> Known issues
>>> ------------
>>>
>>>  Here are the changes found in Patchwork_13248 that come from known issues:
>>>
>>> ### IGT changes ###
>>>
>>> #### Issues hit ####
>>>
>>>  * igt@gem_exec_reloc@basic-cpu-noreloc:
>>>    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
>>>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>>> u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>>>   [4]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>>> u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>>>
>>>  * igt@prime_vgem@basic-fence-flip:
>>>    - fi-ilk-650:         [PASS][5] -> [DMESG-WARN][6] ([fdo#106387]) +2 similar issues
>>>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-ilk-
>>> 650/igt@prime_vgem@basic-fence-flip.html
>>>   [6]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-ilk-
>>> 650/igt@prime_vgem@basic-fence-flip.html
>>>
>>>
>>> #### Possible fixes ####
>>>
>>>  * igt@i915_module_load@reload:
>>>    - fi-icl-u3:          [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8]
>>>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>>> u3/igt@i915_module_load@reload.html
>>>   [8]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>>> u3/igt@i915_module_load@reload.html
>>>
>>>  * igt@i915_module_load@reload-with-fault-injection:
>>>    - fi-bsw-kefka:       [DMESG-WARN][9] -> [PASS][10]
>>>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-bsw-
>>> kefka/igt@i915_module_load@reload-with-fault-injection.html
>>>   [10]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-bsw-
>>> kefka/igt@i915_module_load@reload-with-fault-injection.html
>>>
>>>  * igt@kms_chamelium@hdmi-hpd-fast:
>>>    - fi-kbl-7500u:       [FAIL][11] ([fdo#109485]) -> [PASS][12]
>>>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-kbl-
>>> 7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>>>   [12]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-kbl-
>>> 7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>>>
>>>
>>>  {name}: This element is suppressed. This means it is ignored when computing
>>>          the status of the difference (SUCCESS, WARNING, or FAILURE).
>>>
>>>  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
>>>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>>>  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>>>  [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
>>>  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
>>>
>>>
>>> Participating hosts (53 -> 47)
>>> ------------------------------
>>>
>>>  Additional (1): fi-bsw-n3050
>>>  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-
>>> byt-clapper fi-bdw-samus
>>>
>>>
>>> Build changes
>>> -------------
>>>
>>>  * Linux: CI_DRM_6242 -> Patchwork_13248
>>>
>>>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>>> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>>>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>
>>>
>>> == Linux commits ==
>>>
>>> e8edff0dab0b drm/i915/icl: Add Multi-segmented gamma support
>>> 8ec34efe53ac
>>> drm/i915: Rename ivb_load_lut_10_max
>>> d8c5fa05c917 drm/i915/icl: Add register definitions for Multi
>>> Segmented gamma
>>> 0113a2c67b14 drm/i915: Change gamma/degamma_lut_size data type to u32
>>>
>>> == Logs ==
>>>
>>> For more details see:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>>> _______________________________________________
>>> Intel-gfx mailing list
>>> Intel-gfx@lists.freedesktop.org
>>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>

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

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

* Re: ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12 12:04       ` Shankar, Uma
@ 2019-06-12 12:35         ` Peres, Martin
  0 siblings, 0 replies; 15+ messages in thread
From: Peres, Martin @ 2019-06-12 12:35 UTC (permalink / raw)
  To: Shankar, Uma, intel-gfx

On 12/06/2019 15:05, Shankar, Uma wrote:
> 
> 
>> -----Original Message-----
>> From: Peres, Martin
>> Sent: Wednesday, June 12, 2019 3:51 PM
>> To: Shankar, Uma <uma.shankar@intel.com>; intel-gfx@lists.freedesktop.org
>> Cc: Sharma, Shashank <shashank.sharma@intel.com>
>> Subject: Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL
>> (rev4)
>>
>> On 12/06/2019 11:58, Shankar, Uma wrote:
>>>
>>>
>>>> -----Original Message-----
>>>> From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On
>>>> Behalf Of Patchwork
>>>> Sent: Wednesday, June 12, 2019 12:27 PM
>>>> To: Sharma, Shashank <shashank.sharma@intel.com>
>>>> Cc: intel-gfx@lists.freedesktop.org
>>>> Subject: [Intel-gfx] ✗ Fi.CI.BAT: failure for Enable
>>>> Multi-segmented-gamma for ICL
>>>> (rev4)
>>>>
>>>> == Series Details ==
>>>>
>>>> Series: Enable Multi-segmented-gamma for ICL (rev4)
>>>> URL   : https://patchwork.freedesktop.org/series/60126/
>>>> State : failure
>>>>
>>>> == Summary ==
>>>>
>>>> CI Bug Log - changes from CI_DRM_6242 -> Patchwork_13248
>>>> ====================================================
>>>>
>>>> Summary
>>>> -------
>>>>
>>>>  **FAILURE**
>>>>
>>>>  Serious unknown changes coming with Patchwork_13248 absolutely need
>>>> to be  verified manually.
>>>>
>>>>  If you think the reported changes have nothing to do with the
>>>> changes  introduced in Patchwork_13248, 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_13248/
>>>>
>>>> Possible new issues
>>>> -------------------
>>>>
>>>>  Here are the unknown changes that may have been introduced in
>> Patchwork_13248:
>>>>
>>>> ### IGT changes ###
>>>>
>>>> #### Possible regressions ####
>>>>
>>>>  * igt@i915_module_load@reload-with-fault-injection:
>>>>    - fi-skl-gvtdvm:      [PASS][1] -> [INCOMPLETE][2]
>>>>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-skl-
>>>> gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
>>>>   [2]:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-skl-
>>>> gvtdvm/igt@i915_module_load@reload-with-fault-injection.html
>>>
>>> Hi Martin,
>>> Getting this failure on BAT run in intel-gfx, can you help enable a CI run for full IGT
>> scan.
>>> I am getting BAT passing on trybot and this doesn't seem to be related to the
>> changes here.
>>
>> Thanks for reporting the issue. I mapped this failure to this bug:
>> https://bugs.freedesktop.org/show_bug.cgi?id=110343
>>
>> I am sure the GEM team will be happy to take another look at this issue :D
> 
> Thanks Martin for your help here.

You are welcome, just doing my job ;)

Martin

> 
> Regards,
> Uma Shankar
> 
>> Martin
>>
>>>
>>> Thanks & Regards,
>>> Uma Shankar
>>>
>>>>
>>>> Known issues
>>>> ------------
>>>>
>>>>  Here are the changes found in Patchwork_13248 that come from known issues:
>>>>
>>>> ### IGT changes ###
>>>>
>>>> #### Issues hit ####
>>>>
>>>>  * igt@gem_exec_reloc@basic-cpu-noreloc:
>>>>    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
>>>>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>>>> u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>>>>   [4]:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>>>> u3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>>>>
>>>>  * igt@prime_vgem@basic-fence-flip:
>>>>    - fi-ilk-650:         [PASS][5] -> [DMESG-WARN][6] ([fdo#106387]) +2 similar issues
>>>>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-ilk-
>>>> 650/igt@prime_vgem@basic-fence-flip.html
>>>>   [6]:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-ilk-
>>>> 650/igt@prime_vgem@basic-fence-flip.html
>>>>
>>>>
>>>> #### Possible fixes ####
>>>>
>>>>  * igt@i915_module_load@reload:
>>>>    - fi-icl-u3:          [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8]
>>>>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-icl-
>>>> u3/igt@i915_module_load@reload.html
>>>>   [8]:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-icl-
>>>> u3/igt@i915_module_load@reload.html
>>>>
>>>>  * igt@i915_module_load@reload-with-fault-injection:
>>>>    - fi-bsw-kefka:       [DMESG-WARN][9] -> [PASS][10]
>>>>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-bsw-
>>>> kefka/igt@i915_module_load@reload-with-fault-injection.html
>>>>   [10]:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-bsw-
>>>> kefka/igt@i915_module_load@reload-with-fault-injection.html
>>>>
>>>>  * igt@kms_chamelium@hdmi-hpd-fast:
>>>>    - fi-kbl-7500u:       [FAIL][11] ([fdo#109485]) -> [PASS][12]
>>>>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/fi-kbl-
>>>> 7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>>>>   [12]:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/fi-kbl-
>>>> 7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>>>>
>>>>
>>>>  {name}: This element is suppressed. This means it is ignored when computing
>>>>          the status of the difference (SUCCESS, WARNING, or FAILURE).
>>>>
>>>>  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
>>>>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>>>>  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>>>>  [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
>>>>  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
>>>>
>>>>
>>>> Participating hosts (53 -> 47)
>>>> ------------------------------
>>>>
>>>>  Additional (1): fi-bsw-n3050
>>>>  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-
>>>> byt-clapper fi-bdw-samus
>>>>
>>>>
>>>> Build changes
>>>> -------------
>>>>
>>>>  * Linux: CI_DRM_6242 -> Patchwork_13248
>>>>
>>>>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>>>> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>>>>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>>
>>>>
>>>> == Linux commits ==
>>>>
>>>> e8edff0dab0b drm/i915/icl: Add Multi-segmented gamma support
>>>> 8ec34efe53ac
>>>> drm/i915: Rename ivb_load_lut_10_max
>>>> d8c5fa05c917 drm/i915/icl: Add register definitions for Multi
>>>> Segmented gamma
>>>> 0113a2c67b14 drm/i915: Change gamma/degamma_lut_size data type to u32
>>>>
>>>> == Logs ==
>>>>
>>>> For more details see:
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>>>> _______________________________________________
>>>> Intel-gfx mailing list
>>>> Intel-gfx@lists.freedesktop.org
>>>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>>
> 
> 

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

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

* ✗ Fi.CI.IGT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
                   ` (5 preceding siblings ...)
  2019-06-12 10:23 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2019-06-13  7:06 ` Patchwork
  2019-06-13  7:39   ` Shankar, Uma
  6 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2019-06-13  7:06 UTC (permalink / raw)
  To: Sharma, Shashank; +Cc: intel-gfx

== Series Details ==

Series: Enable Multi-segmented-gamma for ICL (rev4)
URL   : https://patchwork.freedesktop.org/series/60126/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6242_full -> Patchwork_13248_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_13248_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_13248_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_13248_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_color@pipe-b-ctm-0-25:
    - shard-iclb:         [PASS][1] -> [FAIL][2] +4 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb3/igt@kms_color@pipe-b-ctm-0-25.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb2/igt@kms_color@pipe-b-ctm-0-25.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_schedule@preemptive-hang-bsd2:
    - shard-kbl:          [PASS][3] -> [INCOMPLETE][4] ([fdo#103665])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-kbl7/igt@gem_exec_schedule@preemptive-hang-bsd2.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-kbl3/igt@gem_exec_schedule@preemptive-hang-bsd2.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-iclb:         [PASS][5] -> [FAIL][6] ([fdo#108686])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb2/igt@gem_tiled_swapping@non-threaded.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb7/igt@gem_tiled_swapping@non-threaded.html
    - shard-glk:          [PASS][7] -> [DMESG-WARN][8] ([fdo#108686])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-glk7/igt@gem_tiled_swapping@non-threaded.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-glk9/igt@gem_tiled_swapping@non-threaded.html

  * igt@i915_pm_rpm@i2c:
    - shard-skl:          [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-skl5/igt@i915_pm_rpm@i2c.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-skl6/igt@i915_pm_rpm@i2c.html

  * igt@kms_color@pipe-c-degamma:
    - shard-iclb:         [PASS][11] -> [FAIL][12] ([fdo#104782]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb2/igt@kms_color@pipe-c-degamma.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb7/igt@kms_color@pipe-c-degamma.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
    - shard-snb:          [PASS][13] -> [SKIP][14] ([fdo#109271]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-snb4/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-skl:          [PASS][15] -> [INCOMPLETE][16] ([fdo#104108])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-skl5/igt@kms_fbcon_fbt@fbc-suspend.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-skl6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
    - shard-hsw:          [PASS][17] -> [SKIP][18] ([fdo#109271]) +30 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-hsw4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-hsw1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-glk:          [PASS][19] -> [FAIL][20] ([fdo#105363])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103540])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-hsw7/igt@kms_flip@flip-vs-suspend.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-hsw2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-kbl:          [PASS][27] -> [DMESG-WARN][28] ([fdo#108566]) +1 similar issue
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
    - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +2 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_sysfs_edid_timing:
    - shard-hsw:          [PASS][33] -> [FAIL][34] ([fdo#100047])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-hsw4/igt@kms_sysfs_edid_timing.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-hsw1/igt@kms_sysfs_edid_timing.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@bcs0-s3:
    - shard-apl:          [DMESG-WARN][35] ([fdo#108566]) -> [PASS][36] +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-apl5/igt@gem_ctx_isolation@bcs0-s3.html

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38] +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-kbl3/igt@gem_eio@in-flight-suspend.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-kbl7/igt@gem_eio@in-flight-suspend.html

  * igt@i915_suspend@forcewake:
    - shard-skl:          [INCOMPLETE][39] ([fdo#104108]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-skl2/igt@i915_suspend@forcewake.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-skl7/igt@i915_suspend@forcewake.html

  * igt@i915_suspend@sysfs-reader:
    - shard-iclb:         [INCOMPLETE][41] ([fdo#107713]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb7/igt@i915_suspend@sysfs-reader.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [SKIP][43] ([fdo#109349]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [FAIL][45] ([fdo#103167]) -> [PASS][46] +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
    - shard-skl:          [FAIL][47] ([fdo#108145]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][49] ([fdo#109642]) -> [PASS][50] +1 similar issue
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb3/igt@kms_psr2_su@frontbuffer.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         [SKIP][51] ([fdo#109441]) -> [PASS][52] +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html

  * igt@kms_sysfs_edid_timing:
    - shard-iclb:         [FAIL][53] ([fdo#100047]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb2/igt@kms_sysfs_edid_timing.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb7/igt@kms_sysfs_edid_timing.html

  * igt@perf@blocking:
    - shard-iclb:         [FAIL][55] ([fdo#110728]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-iclb8/igt@perf@blocking.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-iclb4/igt@perf@blocking.html

  
  [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728


Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts


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

  * Linux: CI_DRM_6242 -> Patchwork_13248

  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

* Re: ✗ Fi.CI.IGT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-13  7:06 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2019-06-13  7:39   ` Shankar, Uma
  2019-06-14 13:22     ` Peres, Martin
  0 siblings, 1 reply; 15+ messages in thread
From: Shankar, Uma @ 2019-06-13  7:39 UTC (permalink / raw)
  To: intel-gfx, Peres, Martin; +Cc: Kurmi, Suresh Kumar



>-----Original Message-----
>From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On Behalf Of
>Patchwork
>Sent: Thursday, June 13, 2019 12:36 PM
>To: Sharma, Shashank <shashank.sharma@intel.com>
>Cc: intel-gfx@lists.freedesktop.org
>Subject: [Intel-gfx] ✗ Fi.CI.IGT: failure for Enable Multi-segmented-gamma for ICL
>(rev4)
>
>== Series Details ==
>
>Series: Enable Multi-segmented-gamma for ICL (rev4)
>URL   : https://patchwork.freedesktop.org/series/60126/
>State : failure
>
>== Summary ==
>
>CI Bug Log - changes from CI_DRM_6242_full -> Patchwork_13248_full
>====================================================
>
>Summary
>-------
>
>  **FAILURE**
>
>  Serious unknown changes coming with Patchwork_13248_full absolutely need to be
>  verified manually.
>
>  If you think the reported changes have nothing to do with the changes
>  introduced in Patchwork_13248_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_13248_full:
>
>### IGT changes ###
>
>#### Possible regressions ####
>
>  * igt@kms_color@pipe-b-ctm-0-25:
>    - shard-iclb:         [PASS][1] -> [FAIL][2] +4 similar issues
>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb3/igt@kms_color@pipe-b-ctm-0-25.html
>   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb2/igt@kms_color@pipe-b-ctm-0-25.html
>

Hi Martin,
These are the failures which we get when we enabled multi segment gamma due to the crc
limitations (already in discussion with hardware design and validation team). As discussed,
can we mark these as known issues and merge the multi segment gamma series. 

We will be tracking the hardware CRC issues separately and will work with hardware design teams to
debug that. 

Thanks & Regards,
Uma Shankar

>Known issues
>------------
>
>  Here are the changes found in Patchwork_13248_full that come from known issues:
>
>### IGT changes ###
>
>#### Issues hit ####
>
>  * igt@gem_exec_schedule@preemptive-hang-bsd2:
>    - shard-kbl:          [PASS][3] -> [INCOMPLETE][4] ([fdo#103665])
>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>kbl7/igt@gem_exec_schedule@preemptive-hang-bsd2.html
>   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>kbl3/igt@gem_exec_schedule@preemptive-hang-bsd2.html
>
>  * igt@gem_tiled_swapping@non-threaded:
>    - shard-iclb:         [PASS][5] -> [FAIL][6] ([fdo#108686])
>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb2/igt@gem_tiled_swapping@non-threaded.html
>   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb7/igt@gem_tiled_swapping@non-threaded.html
>    - shard-glk:          [PASS][7] -> [DMESG-WARN][8] ([fdo#108686])
>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>glk7/igt@gem_tiled_swapping@non-threaded.html
>   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>glk9/igt@gem_tiled_swapping@non-threaded.html
>
>  * igt@i915_pm_rpm@i2c:
>    - shard-skl:          [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues
>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>skl5/igt@i915_pm_rpm@i2c.html
>   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>skl6/igt@i915_pm_rpm@i2c.html
>
>  * igt@kms_color@pipe-c-degamma:
>    - shard-iclb:         [PASS][11] -> [FAIL][12] ([fdo#104782]) +2 similar issues
>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb2/igt@kms_color@pipe-c-degamma.html
>   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb7/igt@kms_color@pipe-c-degamma.html
>
>  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
>    - shard-snb:          [PASS][13] -> [SKIP][14] ([fdo#109271]) +1 similar issue
>   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>snb7/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>snb4/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>
>  * igt@kms_fbcon_fbt@fbc-suspend:
>    - shard-skl:          [PASS][15] -> [INCOMPLETE][16] ([fdo#104108])
>   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>skl5/igt@kms_fbcon_fbt@fbc-suspend.html
>   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>skl6/igt@kms_fbcon_fbt@fbc-suspend.html
>
>  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
>    - shard-hsw:          [PASS][17] -> [SKIP][18] ([fdo#109271]) +30 similar issues
>   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>hsw4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
>   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>hsw1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
>
>  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
>    - shard-glk:          [PASS][19] -> [FAIL][20] ([fdo#105363])
>   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>
>  * igt@kms_flip@flip-vs-suspend:
>    - shard-hsw:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103540])
>   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>hsw7/igt@kms_flip@flip-vs-suspend.html
>   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>hsw2/igt@kms_flip@flip-vs-suspend.html
>
>  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
>   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>
>  * igt@kms_frontbuffer_tracking@fbc-suspend:
>    - shard-apl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
>   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
>   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
>
>  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>    - shard-kbl:          [PASS][27] -> [DMESG-WARN][28] ([fdo#108566]) +1 similar issue
>   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>
>  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
>    - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145])
>   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>skl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>
>  * igt@kms_psr@psr2_primary_mmap_cpu:
>    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +2 similar issues
>   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
>   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html
>
>  * igt@kms_sysfs_edid_timing:
>    - shard-hsw:          [PASS][33] -> [FAIL][34] ([fdo#100047])
>   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>hsw4/igt@kms_sysfs_edid_timing.html
>   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>hsw1/igt@kms_sysfs_edid_timing.html
>
>
>#### Possible fixes ####
>
>  * igt@gem_ctx_isolation@bcs0-s3:
>    - shard-apl:          [DMESG-WARN][35] ([fdo#108566]) -> [PASS][36] +3 similar issues
>   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>apl4/igt@gem_ctx_isolation@bcs0-s3.html
>   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>apl5/igt@gem_ctx_isolation@bcs0-s3.html
>
>  * igt@gem_eio@in-flight-suspend:
>    - shard-kbl:          [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38] +2 similar issues
>   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>kbl3/igt@gem_eio@in-flight-suspend.html
>   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>kbl7/igt@gem_eio@in-flight-suspend.html
>
>  * igt@i915_suspend@forcewake:
>    - shard-skl:          [INCOMPLETE][39] ([fdo#104108]) -> [PASS][40]
>   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>skl2/igt@i915_suspend@forcewake.html
>   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>skl7/igt@i915_suspend@forcewake.html
>
>  * igt@i915_suspend@sysfs-reader:
>    - shard-iclb:         [INCOMPLETE][41] ([fdo#107713]) -> [PASS][42]
>   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb7/igt@i915_suspend@sysfs-reader.html
>   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb1/igt@i915_suspend@sysfs-reader.html
>
>  * igt@kms_dp_dsc@basic-dsc-enable-edp:
>    - shard-iclb:         [SKIP][43] ([fdo#109349]) -> [PASS][44]
>   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>
>  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>    - shard-iclb:         [FAIL][45] ([fdo#103167]) -> [PASS][46] +3 similar issues
>   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>
>  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>    - shard-skl:          [FAIL][47] ([fdo#108145]) -> [PASS][48]
>   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>skl5/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>skl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>
>  * igt@kms_psr2_su@frontbuffer:
>    - shard-iclb:         [SKIP][49] ([fdo#109642]) -> [PASS][50] +1 similar issue
>   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb3/igt@kms_psr2_su@frontbuffer.html
>   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb2/igt@kms_psr2_su@frontbuffer.html
>
>  * igt@kms_psr@psr2_cursor_blt:
>    - shard-iclb:         [SKIP][51] ([fdo#109441]) -> [PASS][52] +1 similar issue
>   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb5/igt@kms_psr@psr2_cursor_blt.html
>   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb2/igt@kms_psr@psr2_cursor_blt.html
>
>  * igt@kms_sysfs_edid_timing:
>    - shard-iclb:         [FAIL][53] ([fdo#100047]) -> [PASS][54]
>   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb2/igt@kms_sysfs_edid_timing.html
>   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb7/igt@kms_sysfs_edid_timing.html
>
>  * igt@perf@blocking:
>    - shard-iclb:         [FAIL][55] ([fdo#110728]) -> [PASS][56]
>   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>iclb8/igt@perf@blocking.html
>   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>iclb4/igt@perf@blocking.html
>
>
>  [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
>  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
>  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
>  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
>  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
>  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
>  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728
>
>
>Participating hosts (10 -> 10)
>------------------------------
>
>  No changes in participating hosts
>
>
>Build changes
>-------------
>
>  * Linux: CI_DRM_6242 -> Patchwork_13248
>
>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>git://anongit.freedesktop.org/gfx-ci/linux
>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>git://anongit.freedesktop.org/gfx-ci/linux
>  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>git://anongit.freedesktop.org/piglit
>
>== Logs ==
>
>For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>_______________________________________________
>Intel-gfx mailing list
>Intel-gfx@lists.freedesktop.org
>https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: ✗ Fi.CI.IGT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-13  7:39   ` Shankar, Uma
@ 2019-06-14 13:22     ` Peres, Martin
  2019-06-17  9:48       ` Shankar, Uma
  0 siblings, 1 reply; 15+ messages in thread
From: Peres, Martin @ 2019-06-14 13:22 UTC (permalink / raw)
  To: Shankar, Uma, intel-gfx; +Cc: Kurmi, Suresh Kumar

On 13/06/2019 10:39, Shankar, Uma wrote:
> 
> 
>> -----Original Message-----
>> From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On Behalf Of
>> Patchwork
>> Sent: Thursday, June 13, 2019 12:36 PM
>> To: Sharma, Shashank <shashank.sharma@intel.com>
>> Cc: intel-gfx@lists.freedesktop.org
>> Subject: [Intel-gfx] ✗ Fi.CI.IGT: failure for Enable Multi-segmented-gamma for ICL
>> (rev4)
>>
>> == Series Details ==
>>
>> Series: Enable Multi-segmented-gamma for ICL (rev4)
>> URL   : https://patchwork.freedesktop.org/series/60126/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_6242_full -> Patchwork_13248_full
>> ====================================================
>>
>> Summary
>> -------
>>
>>  **FAILURE**
>>
>>  Serious unknown changes coming with Patchwork_13248_full absolutely need to be
>>  verified manually.
>>
>>  If you think the reported changes have nothing to do with the changes
>>  introduced in Patchwork_13248_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_13248_full:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>>  * igt@kms_color@pipe-b-ctm-0-25:
>>    - shard-iclb:         [PASS][1] -> [FAIL][2] +4 similar issues
>>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb3/igt@kms_color@pipe-b-ctm-0-25.html
>>   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb2/igt@kms_color@pipe-b-ctm-0-25.html
>>
> 
> Hi Martin,
> These are the failures which we get when we enabled multi segment gamma due to the crc
> limitations (already in discussion with hardware design and validation team). As discussed,
> can we mark these as known issues and merge the multi segment gamma series. 
> 
> We will be tracking the hardware CRC issues separately and will work with hardware design teams to
> debug that. 

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110920
Acked-by: Martin Peres <martin.peres@linux.intel.com>

Martin

> 
> Thanks & Regards,
> Uma Shankar
> 
>> Known issues
>> ------------
>>
>>  Here are the changes found in Patchwork_13248_full that come from known issues:
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>>  * igt@gem_exec_schedule@preemptive-hang-bsd2:
>>    - shard-kbl:          [PASS][3] -> [INCOMPLETE][4] ([fdo#103665])
>>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> kbl7/igt@gem_exec_schedule@preemptive-hang-bsd2.html
>>   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> kbl3/igt@gem_exec_schedule@preemptive-hang-bsd2.html
>>
>>  * igt@gem_tiled_swapping@non-threaded:
>>    - shard-iclb:         [PASS][5] -> [FAIL][6] ([fdo#108686])
>>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb2/igt@gem_tiled_swapping@non-threaded.html
>>   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb7/igt@gem_tiled_swapping@non-threaded.html
>>    - shard-glk:          [PASS][7] -> [DMESG-WARN][8] ([fdo#108686])
>>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> glk7/igt@gem_tiled_swapping@non-threaded.html
>>   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> glk9/igt@gem_tiled_swapping@non-threaded.html
>>
>>  * igt@i915_pm_rpm@i2c:
>>    - shard-skl:          [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues
>>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> skl5/igt@i915_pm_rpm@i2c.html
>>   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> skl6/igt@i915_pm_rpm@i2c.html
>>
>>  * igt@kms_color@pipe-c-degamma:
>>    - shard-iclb:         [PASS][11] -> [FAIL][12] ([fdo#104782]) +2 similar issues
>>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb2/igt@kms_color@pipe-c-degamma.html
>>   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb7/igt@kms_color@pipe-c-degamma.html
>>
>>  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
>>    - shard-snb:          [PASS][13] -> [SKIP][14] ([fdo#109271]) +1 similar issue
>>   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> snb7/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>>   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> snb4/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>>
>>  * igt@kms_fbcon_fbt@fbc-suspend:
>>    - shard-skl:          [PASS][15] -> [INCOMPLETE][16] ([fdo#104108])
>>   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> skl5/igt@kms_fbcon_fbt@fbc-suspend.html
>>   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> skl6/igt@kms_fbcon_fbt@fbc-suspend.html
>>
>>  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
>>    - shard-hsw:          [PASS][17] -> [SKIP][18] ([fdo#109271]) +30 similar issues
>>   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> hsw4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
>>   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> hsw1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
>>
>>  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
>>    - shard-glk:          [PASS][19] -> [FAIL][20] ([fdo#105363])
>>   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>>   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>>
>>  * igt@kms_flip@flip-vs-suspend:
>>    - shard-hsw:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103540])
>>   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> hsw7/igt@kms_flip@flip-vs-suspend.html
>>   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> hsw2/igt@kms_flip@flip-vs-suspend.html
>>
>>  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>>    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
>>   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>>   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>>
>>  * igt@kms_frontbuffer_tracking@fbc-suspend:
>>    - shard-apl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
>>   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
>>   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
>>
>>  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>>    - shard-kbl:          [PASS][27] -> [DMESG-WARN][28] ([fdo#108566]) +1 similar issue
>>   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>>   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>>
>>  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
>>    - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145])
>>   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> skl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>>   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>>
>>  * igt@kms_psr@psr2_primary_mmap_cpu:
>>    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +2 similar issues
>>   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
>>   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html
>>
>>  * igt@kms_sysfs_edid_timing:
>>    - shard-hsw:          [PASS][33] -> [FAIL][34] ([fdo#100047])
>>   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> hsw4/igt@kms_sysfs_edid_timing.html
>>   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> hsw1/igt@kms_sysfs_edid_timing.html
>>
>>
>> #### Possible fixes ####
>>
>>  * igt@gem_ctx_isolation@bcs0-s3:
>>    - shard-apl:          [DMESG-WARN][35] ([fdo#108566]) -> [PASS][36] +3 similar issues
>>   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> apl4/igt@gem_ctx_isolation@bcs0-s3.html
>>   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> apl5/igt@gem_ctx_isolation@bcs0-s3.html
>>
>>  * igt@gem_eio@in-flight-suspend:
>>    - shard-kbl:          [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38] +2 similar issues
>>   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> kbl3/igt@gem_eio@in-flight-suspend.html
>>   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> kbl7/igt@gem_eio@in-flight-suspend.html
>>
>>  * igt@i915_suspend@forcewake:
>>    - shard-skl:          [INCOMPLETE][39] ([fdo#104108]) -> [PASS][40]
>>   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> skl2/igt@i915_suspend@forcewake.html
>>   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> skl7/igt@i915_suspend@forcewake.html
>>
>>  * igt@i915_suspend@sysfs-reader:
>>    - shard-iclb:         [INCOMPLETE][41] ([fdo#107713]) -> [PASS][42]
>>   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb7/igt@i915_suspend@sysfs-reader.html
>>   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb1/igt@i915_suspend@sysfs-reader.html
>>
>>  * igt@kms_dp_dsc@basic-dsc-enable-edp:
>>    - shard-iclb:         [SKIP][43] ([fdo#109349]) -> [PASS][44]
>>   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>>   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>>
>>  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>>    - shard-iclb:         [FAIL][45] ([fdo#103167]) -> [PASS][46] +3 similar issues
>>   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>>   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>>
>>  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>>    - shard-skl:          [FAIL][47] ([fdo#108145]) -> [PASS][48]
>>   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> skl5/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>>   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> skl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>>
>>  * igt@kms_psr2_su@frontbuffer:
>>    - shard-iclb:         [SKIP][49] ([fdo#109642]) -> [PASS][50] +1 similar issue
>>   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb3/igt@kms_psr2_su@frontbuffer.html
>>   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb2/igt@kms_psr2_su@frontbuffer.html
>>
>>  * igt@kms_psr@psr2_cursor_blt:
>>    - shard-iclb:         [SKIP][51] ([fdo#109441]) -> [PASS][52] +1 similar issue
>>   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb5/igt@kms_psr@psr2_cursor_blt.html
>>   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb2/igt@kms_psr@psr2_cursor_blt.html
>>
>>  * igt@kms_sysfs_edid_timing:
>>    - shard-iclb:         [FAIL][53] ([fdo#100047]) -> [PASS][54]
>>   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb2/igt@kms_sysfs_edid_timing.html
>>   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb7/igt@kms_sysfs_edid_timing.html
>>
>>  * igt@perf@blocking:
>>    - shard-iclb:         [FAIL][55] ([fdo#110728]) -> [PASS][56]
>>   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>> iclb8/igt@perf@blocking.html
>>   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>> iclb4/igt@perf@blocking.html
>>
>>
>>  [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
>>  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>>  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
>>  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>>  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
>>  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
>>  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
>>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>>  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>>  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>>  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
>>  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>>  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
>>  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>>  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>>  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728
>>
>>
>> Participating hosts (10 -> 10)
>> ------------------------------
>>
>>  No changes in participating hosts
>>
>>
>> Build changes
>> -------------
>>
>>  * Linux: CI_DRM_6242 -> Patchwork_13248
>>
>>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>> git://anongit.freedesktop.org/gfx-ci/linux
>>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>> git://anongit.freedesktop.org/gfx-ci/linux
>>  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>> git://anongit.freedesktop.org/piglit
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 

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

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

* Re: ✗ Fi.CI.IGT: failure for Enable Multi-segmented-gamma for ICL (rev4)
  2019-06-14 13:22     ` Peres, Martin
@ 2019-06-17  9:48       ` Shankar, Uma
  0 siblings, 0 replies; 15+ messages in thread
From: Shankar, Uma @ 2019-06-17  9:48 UTC (permalink / raw)
  To: Peres, Martin, intel-gfx; +Cc: Kurmi, Suresh Kumar



>On 13/06/2019 10:39, Shankar, Uma wrote:
>>
>>
>>> -----Original Message-----
>>> From: Intel-gfx [mailto:intel-gfx-bounces@lists.freedesktop.org] On
>>> Behalf Of Patchwork
>>> Sent: Thursday, June 13, 2019 12:36 PM
>>> To: Sharma, Shashank <shashank.sharma@intel.com>
>>> Cc: intel-gfx@lists.freedesktop.org
>>> Subject: [Intel-gfx] ✗ Fi.CI.IGT: failure for Enable
>>> Multi-segmented-gamma for ICL
>>> (rev4)
>>>
>>> == Series Details ==
>>>
>>> Series: Enable Multi-segmented-gamma for ICL (rev4)
>>> URL   : https://patchwork.freedesktop.org/series/60126/
>>> State : failure
>>>
>>> == Summary ==
>>>
>>> CI Bug Log - changes from CI_DRM_6242_full -> Patchwork_13248_full
>>> ====================================================
>>>
>>> Summary
>>> -------
>>>
>>>  **FAILURE**
>>>
>>>  Serious unknown changes coming with Patchwork_13248_full absolutely
>>> need to be  verified manually.
>>>
>>>  If you think the reported changes have nothing to do with the
>>> changes  introduced in Patchwork_13248_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_13248_full:
>>>
>>> ### IGT changes ###
>>>
>>> #### Possible regressions ####
>>>
>>>  * igt@kms_color@pipe-b-ctm-0-25:
>>>    - shard-iclb:         [PASS][1] -> [FAIL][2] +4 similar issues
>>>   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb3/igt@kms_color@pipe-b-ctm-0-25.html
>>>   [2]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb2/igt@kms_color@pipe-b-ctm-0-25.html
>>>
>>
>> Hi Martin,
>> These are the failures which we get when we enabled multi segment
>> gamma due to the crc limitations (already in discussion with hardware
>> design and validation team). As discussed, can we mark these as known issues and
>merge the multi segment gamma series.
>>
>> We will be tracking the hardware CRC issues separately and will work
>> with hardware design teams to debug that.
>
>Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110920
>Acked-by: Martin Peres <martin.peres@linux.intel.com>

Thanks Martin.

We are working with simulation (Fulsim) team to analyse the crc behaviour in hardware.
Will update the Bugzilla once we have more information/findings on this.

Regards,
Uma Shankar

>Martin
>
>>
>> Thanks & Regards,
>> Uma Shankar
>>
>>> Known issues
>>> ------------
>>>
>>>  Here are the changes found in Patchwork_13248_full that come from known
>issues:
>>>
>>> ### IGT changes ###
>>>
>>> #### Issues hit ####
>>>
>>>  * igt@gem_exec_schedule@preemptive-hang-bsd2:
>>>    - shard-kbl:          [PASS][3] -> [INCOMPLETE][4] ([fdo#103665])
>>>   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> kbl7/igt@gem_exec_schedule@preemptive-hang-bsd2.html
>>>   [4]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> kbl3/igt@gem_exec_schedule@preemptive-hang-bsd2.html
>>>
>>>  * igt@gem_tiled_swapping@non-threaded:
>>>    - shard-iclb:         [PASS][5] -> [FAIL][6] ([fdo#108686])
>>>   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb2/igt@gem_tiled_swapping@non-threaded.html
>>>   [6]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb7/igt@gem_tiled_swapping@non-threaded.html
>>>    - shard-glk:          [PASS][7] -> [DMESG-WARN][8] ([fdo#108686])
>>>   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> glk7/igt@gem_tiled_swapping@non-threaded.html
>>>   [8]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> glk9/igt@gem_tiled_swapping@non-threaded.html
>>>
>>>  * igt@i915_pm_rpm@i2c:
>>>    - shard-skl:          [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues
>>>   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> skl5/igt@i915_pm_rpm@i2c.html
>>>   [10]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> skl6/igt@i915_pm_rpm@i2c.html
>>>
>>>  * igt@kms_color@pipe-c-degamma:
>>>    - shard-iclb:         [PASS][11] -> [FAIL][12] ([fdo#104782]) +2 similar issues
>>>   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb2/igt@kms_color@pipe-c-degamma.html
>>>   [12]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb7/igt@kms_color@pipe-c-degamma.html
>>>
>>>  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
>>>    - shard-snb:          [PASS][13] -> [SKIP][14] ([fdo#109271]) +1 similar issue
>>>   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> snb7/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>>>   [14]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> snb4/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>>>
>>>  * igt@kms_fbcon_fbt@fbc-suspend:
>>>    - shard-skl:          [PASS][15] -> [INCOMPLETE][16] ([fdo#104108])
>>>   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> skl5/igt@kms_fbcon_fbt@fbc-suspend.html
>>>   [16]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> skl6/igt@kms_fbcon_fbt@fbc-suspend.html
>>>
>>>  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
>>>    - shard-hsw:          [PASS][17] -> [SKIP][18] ([fdo#109271]) +30 similar issues
>>>   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> hsw4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
>>>   [18]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> hsw1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
>>>
>>>  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
>>>    - shard-glk:          [PASS][19] -> [FAIL][20] ([fdo#105363])
>>>   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>>>   [20]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>>>
>>>  * igt@kms_flip@flip-vs-suspend:
>>>    - shard-hsw:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103540])
>>>   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> hsw7/igt@kms_flip@flip-vs-suspend.html
>>>   [22]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> hsw2/igt@kms_flip@flip-vs-suspend.html
>>>
>>>  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>>>    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
>>>   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>>>   [24]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwr
>>> ite.html
>>>
>>>  * igt@kms_frontbuffer_tracking@fbc-suspend:
>>>    - shard-apl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar
>issues
>>>   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
>>>   [26]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
>>>
>>>  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>>>    - shard-kbl:          [PASS][27] -> [DMESG-WARN][28] ([fdo#108566]) +1 similar
>issue
>>>   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>>>   [28]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.h
>>> tml
>>>
>>>  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
>>>    - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145])
>>>   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> skl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>>>   [30]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>>>
>>>  * igt@kms_psr@psr2_primary_mmap_cpu:
>>>    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +2 similar issues
>>>   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
>>>   [32]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html
>>>
>>>  * igt@kms_sysfs_edid_timing:
>>>    - shard-hsw:          [PASS][33] -> [FAIL][34] ([fdo#100047])
>>>   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> hsw4/igt@kms_sysfs_edid_timing.html
>>>   [34]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> hsw1/igt@kms_sysfs_edid_timing.html
>>>
>>>
>>> #### Possible fixes ####
>>>
>>>  * igt@gem_ctx_isolation@bcs0-s3:
>>>    - shard-apl:          [DMESG-WARN][35] ([fdo#108566]) -> [PASS][36] +3 similar
>issues
>>>   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> apl4/igt@gem_ctx_isolation@bcs0-s3.html
>>>   [36]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> apl5/igt@gem_ctx_isolation@bcs0-s3.html
>>>
>>>  * igt@gem_eio@in-flight-suspend:
>>>    - shard-kbl:          [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38] +2 similar
>issues
>>>   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> kbl3/igt@gem_eio@in-flight-suspend.html
>>>   [38]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> kbl7/igt@gem_eio@in-flight-suspend.html
>>>
>>>  * igt@i915_suspend@forcewake:
>>>    - shard-skl:          [INCOMPLETE][39] ([fdo#104108]) -> [PASS][40]
>>>   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> skl2/igt@i915_suspend@forcewake.html
>>>   [40]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> skl7/igt@i915_suspend@forcewake.html
>>>
>>>  * igt@i915_suspend@sysfs-reader:
>>>    - shard-iclb:         [INCOMPLETE][41] ([fdo#107713]) -> [PASS][42]
>>>   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb7/igt@i915_suspend@sysfs-reader.html
>>>   [42]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb1/igt@i915_suspend@sysfs-reader.html
>>>
>>>  * igt@kms_dp_dsc@basic-dsc-enable-edp:
>>>    - shard-iclb:         [SKIP][43] ([fdo#109349]) -> [PASS][44]
>>>   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>>>   [44]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>>>
>>>  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>>>    - shard-iclb:         [FAIL][45] ([fdo#103167]) -> [PASS][46] +3 similar issues
>>>   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>>>   [46]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwr
>>> ite.html
>>>
>>>  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>>>    - shard-skl:          [FAIL][47] ([fdo#108145]) -> [PASS][48]
>>>   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> skl5/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>>>   [48]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> skl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>>>
>>>  * igt@kms_psr2_su@frontbuffer:
>>>    - shard-iclb:         [SKIP][49] ([fdo#109642]) -> [PASS][50] +1 similar issue
>>>   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb3/igt@kms_psr2_su@frontbuffer.html
>>>   [50]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb2/igt@kms_psr2_su@frontbuffer.html
>>>
>>>  * igt@kms_psr@psr2_cursor_blt:
>>>    - shard-iclb:         [SKIP][51] ([fdo#109441]) -> [PASS][52] +1 similar issue
>>>   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb5/igt@kms_psr@psr2_cursor_blt.html
>>>   [52]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb2/igt@kms_psr@psr2_cursor_blt.html
>>>
>>>  * igt@kms_sysfs_edid_timing:
>>>    - shard-iclb:         [FAIL][53] ([fdo#100047]) -> [PASS][54]
>>>   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb2/igt@kms_sysfs_edid_timing.html
>>>   [54]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb7/igt@kms_sysfs_edid_timing.html
>>>
>>>  * igt@perf@blocking:
>>>    - shard-iclb:         [FAIL][55] ([fdo#110728]) -> [PASS][56]
>>>   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6242/shard-
>>> iclb8/igt@perf@blocking.html
>>>   [56]:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/shard-
>>> iclb4/igt@perf@blocking.html
>>>
>>>
>>>  [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
>>>  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>>>  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
>>>  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>>>  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
>>>  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
>>>  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
>>>  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>>>  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>>>  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>>>  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
>>>  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>>>  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
>>>  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>>>  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>>>  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728
>>>
>>>
>>> Participating hosts (10 -> 10)
>>> ------------------------------
>>>
>>>  No changes in participating hosts
>>>
>>>
>>> Build changes
>>> -------------
>>>
>>>  * Linux: CI_DRM_6242 -> Patchwork_13248
>>>
>>>  CI_DRM_6242: c12b829d81452b335fd986b93b2532001b93157e @
>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>  IGT_5051: 1f2acef836ffcbf5113df4ade8b587935c7d5868 @
>>> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>>>  Patchwork_13248: e8edff0dab0b809a88ec91e0f92ee66ac79fe4bf @
>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>>> git://anongit.freedesktop.org/piglit
>>>
>>> == Logs ==
>>>
>>> For more details see:
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13248/
>>> _______________________________________________
>>> Intel-gfx mailing list
>>> Intel-gfx@lists.freedesktop.org
>>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>

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

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

end of thread, other threads:[~2019-06-17  9:48 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-12  6:44 [v4 0/4] Enable Multi-segmented-gamma for ICL Uma Shankar
2019-06-12  6:44 ` [v4 1/4] drm/i915: Change gamma/degamma_lut_size data type to u32 Uma Shankar
2019-06-12  6:44 ` [v4 2/4] drm/i915/icl: Add register definitions for Multi Segmented gamma Uma Shankar
2019-06-12  6:44 ` [v4 3/4] drm/i915: Rename ivb_load_lut_10_max Uma Shankar
2019-06-12  6:45 ` [v4 4/4] drm/i915/icl: Add Multi-segmented gamma support Uma Shankar
2019-06-12  6:56 ` ✗ Fi.CI.BAT: failure for Enable Multi-segmented-gamma for ICL (rev4) Patchwork
2019-06-12  8:58   ` Shankar, Uma
2019-06-12 10:20     ` Peres, Martin
2019-06-12 12:04       ` Shankar, Uma
2019-06-12 12:35         ` Peres, Martin
2019-06-12 10:23 ` ✓ Fi.CI.BAT: success " Patchwork
2019-06-13  7:06 ` ✗ Fi.CI.IGT: failure " Patchwork
2019-06-13  7:39   ` Shankar, Uma
2019-06-14 13:22     ` Peres, Martin
2019-06-17  9:48       ` Shankar, Uma

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.