All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/3] tests/kms_available_modes_crc: Remove C8 test
@ 2019-05-16 16:59 Ville Syrjala
  2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Add support for C8 pixel format Ville Syrjala
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Ville Syrjala @ 2019-05-16 16:59 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

The test is not setting up the legacy LUT for C8 as the kernel
expects. Since I'm going to add rudimentary C8 support to igt_fb
and kms_plane anyway let's just drop it from here.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/kms_available_modes_crc.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/kms_available_modes_crc.c b/tests/kms_available_modes_crc.c
index 50b5522afe44..077727677b70 100644
--- a/tests/kms_available_modes_crc.c
+++ b/tests/kms_available_modes_crc.c
@@ -127,7 +127,6 @@ static const struct {
 				BYTES_PP_4 = 4} bpp;
 	uint32_t	value;
 } fillers[] = {
-	{ DRM_FORMAT_C8, 0, BYTES_PP_1, 0xff},
 	{ DRM_FORMAT_XBGR2101010, 0, BYTES_PP_4, 0xffffffff},
 	{ 0, 0, 0, 0 }
 };
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Add support for C8 pixel format
  2019-05-16 16:59 [igt-dev] [PATCH i-g-t 1/3] tests/kms_available_modes_crc: Remove C8 test Ville Syrjala
@ 2019-05-16 16:59 ` Ville Syrjala
  2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane: Test " Ville Syrjala
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Ville Syrjala @ 2019-05-16 16:59 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Expose C8 support by utilizing pixman's rgb332 support.
By using rgb332 we don't have to worry too much about
how to populate the LUT, though for now we still leave
that responsibility to individual tests. If desired we
could make igt_kms generate a suitable LUT when the test
itself didn't bother. But meh for now.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 lib/igt_fb.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index c6e18397b754..9d4f905e169e 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -98,6 +98,12 @@ static const struct format_desc_struct {
 	  .num_planes = 1, .plane_bpp = { 16, },
 	  .hsub = 1, .vsub = 1,
 	},
+	{ .name = "C8", .depth = -1, .drm_id = DRM_FORMAT_C8,
+	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_r3g3b2,
+	  .num_planes = 1, .plane_bpp = { 8, },
+	  .hsub = 1, .vsub = 1,
+	},
 	{ .name = "XRGB1555", .depth = -1, .drm_id = DRM_FORMAT_XRGB1555,
 	  .cairo_id = CAIRO_FORMAT_INVALID,
 	  .pixman_id = PIXMAN_x1r5g5b5,
@@ -3233,6 +3239,15 @@ bool igt_fb_supported_format(uint32_t drm_format)
 {
 	const struct format_desc_struct *f;
 
+	/*
+	 * C8 needs a LUT which (at least for the time being)
+	 * is the responsibility of each test. Not all tests
+	 * have the required code so let's keep C8 hidden from
+	 * most eyes.
+	 */
+	if (drm_format == DRM_FORMAT_C8)
+		return false;
+
 	for_each_format(f)
 		if (f->drm_id == drm_format)
 			return (f->cairo_id != CAIRO_FORMAT_INVALID) ||
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane: Test C8 pixel format
  2019-05-16 16:59 [igt-dev] [PATCH i-g-t 1/3] tests/kms_available_modes_crc: Remove C8 test Ville Syrjala
  2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Add support for C8 pixel format Ville Syrjala
@ 2019-05-16 16:59 ` Ville Syrjala
  2019-05-28 10:59   ` Maarten Lankhorst
  2019-05-16 17:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test Patchwork
  2019-05-16 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  3 siblings, 1 reply; 7+ messages in thread
From: Ville Syrjala @ 2019-05-16 16:59 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Now that igt_fb has rudimentary C8 support let's test it.
We have to generate a custom palette for it of course.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/kms_plane.c | 45 +++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 43 insertions(+), 2 deletions(-)

diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 471bcbeb8f77..6f30a95efc7a 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -389,6 +389,39 @@ static void set_legacy_lut(data_t *data, enum pipe pipe,
 	free(lut);
 }
 
+static bool set_c8_legacy_lut(data_t *data, enum pipe pipe,
+			      uint16_t mask)
+{
+	igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
+	drmModeCrtc *crtc;
+	uint16_t *r, *g, *b;
+	int i, lut_size;
+
+	crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
+	lut_size = crtc->gamma_size;
+	drmModeFreeCrtc(crtc);
+
+	if (lut_size != 256)
+		return false;
+
+	r = malloc(sizeof(uint16_t) * 3 * lut_size);
+	g = r + lut_size;
+	b = g + lut_size;
+
+	/* igt_fb uses RGB332 for C8 */
+	for (i = 0; i < lut_size; i++) {
+		r[i] = (((i & 0xe0) >> 5) * 0xffff / 0x7) & mask;
+		g[i] = (((i & 0x1c) >> 2) * 0xffff / 0x7) & mask;
+		b[i] = (((i & 0x03) >> 0) * 0xffff / 0x3) & mask;
+	}
+
+	igt_assert_eq(drmModeCrtcSetGamma(data->drm_fd, pipe_obj->crtc_id,
+					  lut_size, r, g, b), 0);
+
+	free(r);
+
+	return true;
+}
 
 static void test_format_plane_color(data_t *data, enum pipe pipe,
 				    igt_plane_t *plane,
@@ -532,8 +565,13 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
 		    modifier == ref_modifier)
 			continue;
 
-		if (!igt_fb_supported_format(format))
-			continue;
+		if (format == DRM_FORMAT_C8) {
+			if (!set_c8_legacy_lut(data, pipe, 0xfc00))
+				continue;
+		} else {
+			if (!igt_fb_supported_format(format))
+				continue;
+		}
 
 		igt_info("Testing format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n",
 			 IGT_FORMAT_ARGS(format), modifier,
@@ -552,6 +590,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
 			}
 		}
 
+		if (format == DRM_FORMAT_C8)
+			set_legacy_lut(data, pipe, 0xfc00);
+
 		if (crc_mismatch_count)
 			igt_warn("CRC mismatches with format " IGT_FORMAT_FMT " on %s.%u with %d/%d solid colors tested (0x%X)\n",
 				 IGT_FORMAT_ARGS(format), kmstest_pipe_name(pipe),
-- 
2.21.0

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test
  2019-05-16 16:59 [igt-dev] [PATCH i-g-t 1/3] tests/kms_available_modes_crc: Remove C8 test Ville Syrjala
  2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Add support for C8 pixel format Ville Syrjala
  2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane: Test " Ville Syrjala
@ 2019-05-16 17:25 ` Patchwork
  2019-05-16 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-05-16 17:25 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test
URL   : https://patchwork.freedesktop.org/series/60729/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6091 -> IGTPW_2992
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_guc:
    - fi-apl-guc:         [PASS][1] -> [INCOMPLETE][2] ([fdo#103927])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/fi-apl-guc/igt@i915_selftest@live_guc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/fi-apl-guc/igt@i915_selftest@live_guc.html

  * igt@i915_selftest@live_hangcheck:
    - fi-apl-guc:         [PASS][3] -> [DMESG-FAIL][4] ([fdo#110620])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/fi-apl-guc/igt@i915_selftest@live_hangcheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/fi-apl-guc/igt@i915_selftest@live_hangcheck.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [FAIL][5] ([fdo#108511]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

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

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

  * igt@prime_vgem@basic-fence-flip:
    - fi-ilk-650:         [DMESG-WARN][11] ([fdo#106387]) -> [PASS][12] +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235
  [fdo#110620]: https://bugs.freedesktop.org/show_bug.cgi?id=110620


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

  Additional (2): fi-bsw-n3050 fi-pnv-d510 
  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
-------------

  * IGT: IGT_4994 -> IGTPW_2992

  CI_DRM_6091: 0ad895242a8e957336088625a9a6ba48ab838ec9 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2992: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/
  IGT_4994: 555019f862c35f1619627761d6da21385be40920 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test
  2019-05-16 16:59 [igt-dev] [PATCH i-g-t 1/3] tests/kms_available_modes_crc: Remove C8 test Ville Syrjala
                   ` (2 preceding siblings ...)
  2019-05-16 17:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test Patchwork
@ 2019-05-16 23:52 ` Patchwork
  2019-05-28 13:06   ` Ville Syrjälä
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2019-05-16 23:52 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test
URL   : https://patchwork.freedesktop.org/series/60729/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6091_full -> IGTPW_2992_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane@pixel-format-pipe-a-planes:
    - shard-iclb:         [PASS][1] -> [FAIL][2] +5 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb6/igt@kms_plane@pixel-format-pipe-a-planes.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb7/igt@kms_plane@pixel-format-pipe-a-planes.html

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-snb:          [PASS][3] -> [FAIL][4] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-snb7/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-snb6/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html

  * igt@kms_plane@pixel-format-pipe-b-planes:
    - shard-hsw:          [PASS][5] -> [FAIL][6] +5 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-hsw1/igt@kms_plane@pixel-format-pipe-b-planes.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-hsw7/igt@kms_plane@pixel-format-pipe-b-planes.html
    - shard-kbl:          [PASS][7] -> [FAIL][8] +5 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl6/igt@kms_plane@pixel-format-pipe-b-planes.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl3/igt@kms_plane@pixel-format-pipe-b-planes.html

  * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping:
    - shard-apl:          [PASS][9] -> [FAIL][10] +5 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl6/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl3/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html

  * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping:
    - shard-glk:          [PASS][11] -> [FAIL][12] +5 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-glk2/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-glk1/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [PASS][13] -> [FAIL][14] ([fdo#110667])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl1/igt@gem_eio@in-flight-suspend.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl2/igt@gem_eio@in-flight-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-glk:          [PASS][15] -> [FAIL][16] ([fdo#102887] / [fdo#105363])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-glk9/igt@kms_flip@flip-vs-expired-vblank.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-glk3/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-kbl:          [PASS][17] -> [INCOMPLETE][18] ([fdo#103665])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-kbl:          [PASS][19] -> [FAIL][20] ([fdo#103167])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
    - shard-apl:          [PASS][21] -> [FAIL][22] ([fdo#103167])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +4 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         [PASS][25] -> [FAIL][26] ([fdo#103166])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109441])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb8/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-kbl:          [PASS][29] -> [FAIL][30] ([fdo#109016])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_vblank@pipe-c-ts-continuation-suspend:
    - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([fdo#108566]) +6 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@gem-mmap-gtt:
    - shard-iclb:         [INCOMPLETE][33] ([fdo#107713] / [fdo#108840]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@i915_pm_rpm@gem-mmap-gtt.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb6/igt@i915_pm_rpm@gem-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][35] ([fdo#103167]) -> [PASS][36] +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - shard-apl:          [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - shard-kbl:          [INCOMPLETE][39] ([fdo#103665]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [DMESG-WARN][41] ([fdo#108566]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane_cursor@pipe-a-primary-size-64:
    - shard-iclb:         [INCOMPLETE][43] ([fdo#107713]) -> [PASS][44] +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb1/igt@kms_plane_cursor@pipe-a-primary-size-64.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_plane_cursor@pipe-a-primary-size-64.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][45] ([fdo#109642]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb3/igt@kms_psr2_su@frontbuffer.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][47] ([fdo#109441]) -> [PASS][48] +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb8/igt@kms_psr@psr2_basic.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_psr@psr2_basic.html

  * igt@kms_setmode@basic:
    - shard-hsw:          [FAIL][49] ([fdo#99912]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-hsw5/igt@kms_setmode@basic.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-hsw5/igt@kms_setmode@basic.html

  * igt@perf_pmu@rc6-runtime-pm-long:
    - shard-apl:          [FAIL][51] ([fdo#105010]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl2/igt@perf_pmu@rc6-runtime-pm-long.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl4/igt@perf_pmu@rc6-runtime-pm-long.html
    - shard-kbl:          [FAIL][53] ([fdo#105010]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl1/igt@perf_pmu@rc6-runtime-pm-long.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl3/igt@perf_pmu@rc6-runtime-pm-long.html

  
#### Warnings ####

  * igt@gem_mmap_gtt@forked-big-copy-odd:
    - shard-iclb:         [TIMEOUT][55] ([fdo#109673]) -> [INCOMPLETE][56] ([fdo#107713] / [fdo#109100])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb4/igt@gem_mmap_gtt@forked-big-copy-odd.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb4/igt@gem_mmap_gtt@forked-big-copy-odd.html

  * igt@gem_mmap_gtt@forked-big-copy-xy:
    - shard-iclb:         [INCOMPLETE][57] ([fdo#107713] / [fdo#109100]) -> [TIMEOUT][58] ([fdo#109673])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb3/igt@gem_mmap_gtt@forked-big-copy-xy.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb1/igt@gem_mmap_gtt@forked-big-copy-xy.html

  * igt@kms_chamelium@hdmi-hpd-after-suspend:
    - shard-iclb:         [INCOMPLETE][59] ([fdo#107713]) -> [SKIP][60] ([fdo#109284])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@kms_chamelium@hdmi-hpd-after-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb1/igt@kms_chamelium@hdmi-hpd-after-suspend.html

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

  [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887
  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
  [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
  [fdo#110667]: https://bugs.freedesktop.org/show_bug.cgi?id=110667
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


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

  Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 


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

  * IGT: IGT_4994 -> IGTPW_2992
  * Piglit: piglit_4509 -> None

  CI_DRM_6091: 0ad895242a8e957336088625a9a6ba48ab838ec9 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2992: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/
  IGT_4994: 555019f862c35f1619627761d6da21385be40920 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane: Test C8 pixel format
  2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane: Test " Ville Syrjala
@ 2019-05-28 10:59   ` Maarten Lankhorst
  0 siblings, 0 replies; 7+ messages in thread
From: Maarten Lankhorst @ 2019-05-28 10:59 UTC (permalink / raw)
  To: Ville Syrjala, igt-dev

Op 16-05-2019 om 18:59 schreef Ville Syrjala:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Now that igt_fb has rudimentary C8 support let's test it.
> We have to generate a custom palette for it of course.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  tests/kms_plane.c | 45 +++++++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 43 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> index 471bcbeb8f77..6f30a95efc7a 100644
> --- a/tests/kms_plane.c
> +++ b/tests/kms_plane.c
> @@ -389,6 +389,39 @@ static void set_legacy_lut(data_t *data, enum pipe pipe,
>  	free(lut);
>  }
>  
> +static bool set_c8_legacy_lut(data_t *data, enum pipe pipe,
> +			      uint16_t mask)
> +{
> +	igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
> +	drmModeCrtc *crtc;
> +	uint16_t *r, *g, *b;
> +	int i, lut_size;
> +
> +	crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
> +	lut_size = crtc->gamma_size;
> +	drmModeFreeCrtc(crtc);
> +
> +	if (lut_size != 256)
> +		return false;
> +
> +	r = malloc(sizeof(uint16_t) * 3 * lut_size);
> +	g = r + lut_size;
> +	b = g + lut_size;
> +
> +	/* igt_fb uses RGB332 for C8 */
> +	for (i = 0; i < lut_size; i++) {
> +		r[i] = (((i & 0xe0) >> 5) * 0xffff / 0x7) & mask;
> +		g[i] = (((i & 0x1c) >> 2) * 0xffff / 0x7) & mask;
> +		b[i] = (((i & 0x03) >> 0) * 0xffff / 0x3) & mask;
> +	}
> +
> +	igt_assert_eq(drmModeCrtcSetGamma(data->drm_fd, pipe_obj->crtc_id,
> +					  lut_size, r, g, b), 0);
> +
> +	free(r);
> +
> +	return true;
> +}
>  
>  static void test_format_plane_color(data_t *data, enum pipe pipe,
>  				    igt_plane_t *plane,
> @@ -532,8 +565,13 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
>  		    modifier == ref_modifier)
>  			continue;
>  
> -		if (!igt_fb_supported_format(format))
> -			continue;
> +		if (format == DRM_FORMAT_C8) {
> +			if (!set_c8_legacy_lut(data, pipe, 0xfc00))
> +				continue;
> +		} else {
> +			if (!igt_fb_supported_format(format))
> +				continue;
> +		}
>  
>  		igt_info("Testing format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n",
>  			 IGT_FORMAT_ARGS(format), modifier,
> @@ -552,6 +590,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
>  			}
>  		}
>  
> +		if (format == DRM_FORMAT_C8)
> +			set_legacy_lut(data, pipe, 0xfc00);

I guess this has to run on pre-gen5 as well, so we can't use our awesome atomic path for setting the prop blob.

For the series

Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>

>  		if (crc_mismatch_count)
>  			igt_warn("CRC mismatches with format " IGT_FORMAT_FMT " on %s.%u with %d/%d solid colors tested (0x%X)\n",
>  				 IGT_FORMAT_ARGS(format), kmstest_pipe_name(pipe),


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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test
  2019-05-16 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2019-05-28 13:06   ` Ville Syrjälä
  0 siblings, 0 replies; 7+ messages in thread
From: Ville Syrjälä @ 2019-05-28 13:06 UTC (permalink / raw)
  To: igt-dev

On Thu, May 16, 2019 at 11:52:13PM -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test
> URL   : https://patchwork.freedesktop.org/series/60729/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_6091_full -> IGTPW_2992_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_2992_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_2992_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://patchwork.freedesktop.org/api/1.0/series/60729/revisions/1/mbox/
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_2992_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_plane@pixel-format-pipe-a-planes:
>     - shard-iclb:         [PASS][1] -> [FAIL][2] +5 similar issues
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb6/igt@kms_plane@pixel-format-pipe-a-planes.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb7/igt@kms_plane@pixel-format-pipe-a-planes.html

Logs have disappeared, but I believe these were all due to the c8_planes
fail in the kernel. Fix for which is ready to land:
https://patchwork.freedesktop.org/series/60583/

> 
>   * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
>     - shard-snb:          [PASS][3] -> [FAIL][4] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-snb7/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-snb6/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
> 
>   * igt@kms_plane@pixel-format-pipe-b-planes:
>     - shard-hsw:          [PASS][5] -> [FAIL][6] +5 similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-hsw1/igt@kms_plane@pixel-format-pipe-b-planes.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-hsw7/igt@kms_plane@pixel-format-pipe-b-planes.html
>     - shard-kbl:          [PASS][7] -> [FAIL][8] +5 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl6/igt@kms_plane@pixel-format-pipe-b-planes.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl3/igt@kms_plane@pixel-format-pipe-b-planes.html
> 
>   * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping:
>     - shard-apl:          [PASS][9] -> [FAIL][10] +5 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl6/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl3/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html
> 
>   * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping:
>     - shard-glk:          [PASS][11] -> [FAIL][12] +5 similar issues
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-glk2/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-glk1/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_2992_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-kbl:          [PASS][13] -> [FAIL][14] ([fdo#110667])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl1/igt@gem_eio@in-flight-suspend.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl2/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank:
>     - shard-glk:          [PASS][15] -> [FAIL][16] ([fdo#102887] / [fdo#105363])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-glk9/igt@kms_flip@flip-vs-expired-vblank.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-glk3/igt@kms_flip@flip-vs-expired-vblank.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-kbl:          [PASS][17] -> [INCOMPLETE][18] ([fdo#103665])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
>     - shard-kbl:          [PASS][19] -> [FAIL][20] ([fdo#103167])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
>     - shard-apl:          [PASS][21] -> [FAIL][22] ([fdo#103167])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
>     - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +4 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
> 
>   * igt@kms_plane_lowres@pipe-a-tiling-y:
>     - shard-iclb:         [PASS][25] -> [FAIL][26] ([fdo#103166])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html
> 
>   * igt@kms_psr@psr2_no_drrs:
>     - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109441])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb8/igt@kms_psr@psr2_no_drrs.html
> 
>   * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
>     - shard-kbl:          [PASS][29] -> [FAIL][30] ([fdo#109016])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
> 
>   * igt@kms_vblank@pipe-c-ts-continuation-suspend:
>     - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([fdo#108566]) +6 similar issues
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@i915_pm_rpm@gem-mmap-gtt:
>     - shard-iclb:         [INCOMPLETE][33] ([fdo#107713] / [fdo#108840]) -> [PASS][34]
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@i915_pm_rpm@gem-mmap-gtt.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb6/igt@i915_pm_rpm@gem-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
>     - shard-iclb:         [FAIL][35] ([fdo#103167]) -> [PASS][36] +2 similar issues
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
>     - shard-apl:          [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38]
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
>     - shard-kbl:          [INCOMPLETE][39] ([fdo#103665]) -> [PASS][40]
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
>     - shard-kbl:          [DMESG-WARN][41] ([fdo#108566]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> 
>   * igt@kms_plane_cursor@pipe-a-primary-size-64:
>     - shard-iclb:         [INCOMPLETE][43] ([fdo#107713]) -> [PASS][44] +1 similar issue
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb1/igt@kms_plane_cursor@pipe-a-primary-size-64.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_plane_cursor@pipe-a-primary-size-64.html
> 
>   * igt@kms_psr2_su@frontbuffer:
>     - shard-iclb:         [SKIP][45] ([fdo#109642]) -> [PASS][46]
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb3/igt@kms_psr2_su@frontbuffer.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
> 
>   * igt@kms_psr@psr2_basic:
>     - shard-iclb:         [SKIP][47] ([fdo#109441]) -> [PASS][48] +3 similar issues
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb8/igt@kms_psr@psr2_basic.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb2/igt@kms_psr@psr2_basic.html
> 
>   * igt@kms_setmode@basic:
>     - shard-hsw:          [FAIL][49] ([fdo#99912]) -> [PASS][50]
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-hsw5/igt@kms_setmode@basic.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-hsw5/igt@kms_setmode@basic.html
> 
>   * igt@perf_pmu@rc6-runtime-pm-long:
>     - shard-apl:          [FAIL][51] ([fdo#105010]) -> [PASS][52]
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-apl2/igt@perf_pmu@rc6-runtime-pm-long.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-apl4/igt@perf_pmu@rc6-runtime-pm-long.html
>     - shard-kbl:          [FAIL][53] ([fdo#105010]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-kbl1/igt@perf_pmu@rc6-runtime-pm-long.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-kbl3/igt@perf_pmu@rc6-runtime-pm-long.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_mmap_gtt@forked-big-copy-odd:
>     - shard-iclb:         [TIMEOUT][55] ([fdo#109673]) -> [INCOMPLETE][56] ([fdo#107713] / [fdo#109100])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb4/igt@gem_mmap_gtt@forked-big-copy-odd.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb4/igt@gem_mmap_gtt@forked-big-copy-odd.html
> 
>   * igt@gem_mmap_gtt@forked-big-copy-xy:
>     - shard-iclb:         [INCOMPLETE][57] ([fdo#107713] / [fdo#109100]) -> [TIMEOUT][58] ([fdo#109673])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb3/igt@gem_mmap_gtt@forked-big-copy-xy.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb1/igt@gem_mmap_gtt@forked-big-copy-xy.html
> 
>   * igt@kms_chamelium@hdmi-hpd-after-suspend:
>     - shard-iclb:         [INCOMPLETE][59] ([fdo#107713]) -> [SKIP][60] ([fdo#109284])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6091/shard-iclb7/igt@kms_chamelium@hdmi-hpd-after-suspend.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/shard-iclb1/igt@kms_chamelium@hdmi-hpd-after-suspend.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887
>   [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010
>   [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
>   [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>   [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>   [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
>   [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016
>   [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
>   [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>   [fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
>   [fdo#110667]: https://bugs.freedesktop.org/show_bug.cgi?id=110667
>   [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
> 
> 
> Participating hosts (10 -> 6)
> ------------------------------
> 
>   Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * IGT: IGT_4994 -> IGTPW_2992
>   * Piglit: piglit_4509 -> None
> 
>   CI_DRM_6091: 0ad895242a8e957336088625a9a6ba48ab838ec9 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_2992: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/
>   IGT_4994: 555019f862c35f1619627761d6da21385be40920 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2992/

-- 
Ville Syrjälä
Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-05-28 13:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-16 16:59 [igt-dev] [PATCH i-g-t 1/3] tests/kms_available_modes_crc: Remove C8 test Ville Syrjala
2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_fb: Add support for C8 pixel format Ville Syrjala
2019-05-16 16:59 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane: Test " Ville Syrjala
2019-05-28 10:59   ` Maarten Lankhorst
2019-05-16 17:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_available_modes_crc: Remove C8 test Patchwork
2019-05-16 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2019-05-28 13:06   ` Ville Syrjälä

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.