All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_getfb: Add support for GEN12 CCS render compression
@ 2019-11-21 11:14 Mika Kahola
  2019-11-21 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mika Kahola @ 2019-11-21 11:14 UTC (permalink / raw)
  To: igt-dev

GEN12 CCS render compression support is missing from the test.
This causes a SKIP when executing a subtest 'getfb-reject-ccs'.

For TGL the main surface is 4x4 tiles aligned. Therefore, the
pitch for 32bpp is 4*4*32 bytes and the height is 4 rows aligned.

The CCS surface is 64 bytes, which corresponds to 4 tiles on the
main surface. The height of the CCS surface is aligned by 4 rows.

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 tests/kms_getfb.c | 39 ++++++++++++++++++++++++++++++++-------
 1 file changed, 32 insertions(+), 7 deletions(-)

diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
index ca0b01c0..2fb49e96 100644
--- a/tests/kms_getfb.c
+++ b/tests/kms_getfb.c
@@ -91,13 +91,38 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
 	igt_require(has_addfb2_iface(fd));
 	igt_require_intel(fd);
 
-	/* An explanation of the magic numbers can be found in kms_ccs.c. */
-	add.pitches[0] = ALIGN(add.width * 4, 128);
-	add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
-	add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
-
-	size = add.offsets[1];
-	size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
+	if ((intel_gen(intel_get_drm_devid(fd))) >= 12) {
+                add.modifier[0] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
+                add.modifier[1] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
+
+		/* The main surface for TGL is 4x4 tiles aligned
+		 * For 32bpp the pitch is 4*4*32 bytes i.e. 512 bytes
+		 */
+		add.pitches[0] = ALIGN(add.width * 4, 4 * 4 * 32);
+
+		/* The main surface height is 4 rows aligned */
+		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 4 * 32);
+
+		/* CCS surface pitch is 64 bytes which corresponds to
+		 * 4 tiles on the main surface
+		 */
+		add.pitches[1] = DIV_ROUND_UP(add.width, 4 * 32) * 64;
+
+		size = add.offsets[1];
+		/* CCS surface height is 4 rows aligned */
+		size += add.pitches[1] * DIV_ROUND_UP(add.height, 4 * 32) * 4 * 64;
+
+		/* GEM object is page size aligned */
+		size = ALIGN(size, 4096);
+	} else {
+		/* An explanation of the magic numbers can be found in kms_ccs.c. */
+		add.pitches[0] = ALIGN(add.width * 4, 128);
+		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
+		add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
+
+		size = add.offsets[1];
+		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
+	}
 
 	add.handles[0] = gem_create(fd, size);
 	igt_require(add.handles[0] != 0);
-- 
2.17.1

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_getfb: Add support for GEN12 CCS render compression
  2019-11-21 11:14 [igt-dev] [PATCH i-g-t] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
@ 2019-11-21 12:14 ` Patchwork
  2019-11-21 12:56 ` [igt-dev] [PATCH i-g-t] " Kahola, Mika
  2019-11-22 15:17 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-11-21 12:14 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: tests/kms_getfb: Add support for GEN12 CCS render compression
URL   : https://patchwork.freedesktop.org/series/69822/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7398 -> IGTPW_3740
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-lmem:        [PASS][1] -> [DMESG-WARN][2] ([fdo#112261])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html

  
#### Possible fixes ####

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

  * igt@i915_selftest@live_blt:
    - fi-hsw-peppy:       [DMESG-FAIL][5] ([fdo#112147]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/fi-hsw-peppy/igt@i915_selftest@live_blt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/fi-hsw-peppy/igt@i915_selftest@live_blt.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-bsw-nick:        [INCOMPLETE][7] ([fdo# 111542]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/fi-bsw-nick/igt@i915_selftest@live_gem_contexts.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/fi-bsw-nick/igt@i915_selftest@live_gem_contexts.html

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

  [fdo# 111542]: https://bugs.freedesktop.org/show_bug.cgi?id= 111542
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#109964]: https://bugs.freedesktop.org/show_bug.cgi?id=109964
  [fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
  [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261
  [fdo#112298]: https://bugs.freedesktop.org/show_bug.cgi?id=112298


Participating hosts (50 -> 42)
------------------------------

  Missing    (8): fi-ilk-m540 fi-hsw-4200u fi-skl-guc fi-bsw-cyan fi-kbl-guc fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5299 -> IGTPW_3740

  CI-20190529: 20190529
  CI_DRM_7398: 1b4907894c189a4607bad6661d9f3073151c08ae @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3740: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/index.html
  IGT_5299: 65fed6a79adea14f7bef6d55530da47d7731d370 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_getfb: Add support for GEN12 CCS render compression
  2019-11-21 11:14 [igt-dev] [PATCH i-g-t] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
  2019-11-21 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-11-21 12:56 ` Kahola, Mika
  2019-11-22 15:17 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Kahola, Mika @ 2019-11-21 12:56 UTC (permalink / raw)
  To: igt-dev

Please ignore this patch. The patch has a bug which is fixed on version
v2.

On Thu, 2019-11-21 at 13:14 +0200, Mika Kahola wrote:
> GEN12 CCS render compression support is missing from the test.
> This causes a SKIP when executing a subtest 'getfb-reject-ccs'.
> 
> For TGL the main surface is 4x4 tiles aligned. Therefore, the
> pitch for 32bpp is 4*4*32 bytes and the height is 4 rows aligned.
> 
> The CCS surface is 64 bytes, which corresponds to 4 tiles on the
> main surface. The height of the CCS surface is aligned by 4 rows.
> 
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
>  tests/kms_getfb.c | 39 ++++++++++++++++++++++++++++++++-------
>  1 file changed, 32 insertions(+), 7 deletions(-)
> 
> diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
> index ca0b01c0..2fb49e96 100644
> --- a/tests/kms_getfb.c
> +++ b/tests/kms_getfb.c
> @@ -91,13 +91,38 @@ static void get_ccs_fb(int fd, struct
> drm_mode_fb_cmd2 *ret)
>  	igt_require(has_addfb2_iface(fd));
>  	igt_require_intel(fd);
>  
> -	/* An explanation of the magic numbers can be found in
> kms_ccs.c. */
> -	add.pitches[0] = ALIGN(add.width * 4, 128);
> -	add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
> -	add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
> -
> -	size = add.offsets[1];
> -	size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
> +	if ((intel_gen(intel_get_drm_devid(fd))) >= 12) {
> +                add.modifier[0] =
> I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
> +                add.modifier[1] =
> I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
> +
> +		/* The main surface for TGL is 4x4 tiles aligned
> +		 * For 32bpp the pitch is 4*4*32 bytes i.e. 512 bytes
> +		 */
> +		add.pitches[0] = ALIGN(add.width * 4, 4 * 4 * 32);
> +
> +		/* The main surface height is 4 rows aligned */
> +		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 4 *
> 32);
> +
> +		/* CCS surface pitch is 64 bytes which corresponds to
> +		 * 4 tiles on the main surface
> +		 */
> +		add.pitches[1] = DIV_ROUND_UP(add.width, 4 * 32) * 64;
> +
> +		size = add.offsets[1];
> +		/* CCS surface height is 4 rows aligned */
> +		size += add.pitches[1] * DIV_ROUND_UP(add.height, 4 *
> 32) * 4 * 64;
> +
> +		/* GEM object is page size aligned */
> +		size = ALIGN(size, 4096);
> +	} else {
> +		/* An explanation of the magic numbers can be found in
> kms_ccs.c. */
> +		add.pitches[0] = ALIGN(add.width * 4, 128);
> +		add.offsets[1] = add.pitches[0] * ALIGN(add.height,
> 32);
> +		add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32,
> 128);
> +
> +		size = add.offsets[1];
> +		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) /
> 16, 32);
> +	}
>  
>  	add.handles[0] = gem_create(fd, size);
>  	igt_require(add.handles[0] != 0);
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_getfb: Add support for GEN12 CCS render compression
  2019-11-21 11:14 [igt-dev] [PATCH i-g-t] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
  2019-11-21 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2019-11-21 12:56 ` [igt-dev] [PATCH i-g-t] " Kahola, Mika
@ 2019-11-22 15:17 ` Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-11-22 15:17 UTC (permalink / raw)
  To: Kahola, Mika; +Cc: igt-dev

== Series Details ==

Series: tests/kms_getfb: Add support for GEN12 CCS render compression
URL   : https://patchwork.freedesktop.org/series/69822/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7398_full -> IGTPW_3740_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_busy@extended-parallel-vcs1:
    - shard-iclb:         [PASS][1] -> [SKIP][2] ([fdo#112080]) +7 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb2/igt@gem_busy@extended-parallel-vcs1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb8/igt@gem_busy@extended-parallel-vcs1.html

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-kbl:          [PASS][3] -> [DMESG-WARN][4] ([fdo#108566]) +4 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-kbl1/igt@gem_ctx_isolation@rcs0-s3.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-kbl2/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_isolation@vecs0-s3:
    - shard-tglb:         [PASS][5] -> [INCOMPLETE][6] ([fdo#111832])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb2/igt@gem_ctx_isolation@vecs0-s3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb1/igt@gem_ctx_isolation@vecs0-s3.html

  * igt@gem_ctx_persistence@vcs1-mixed-process:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#109276] / [fdo#112080]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb2/igt@gem_ctx_persistence@vcs1-mixed-process.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#110841])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_switch@queue-light:
    - shard-tglb:         [PASS][11] -> [INCOMPLETE][12] ([fdo#111672])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb5/igt@gem_ctx_switch@queue-light.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb6/igt@gem_ctx_switch@queue-light.html

  * igt@gem_exec_schedule@preempt-bsd:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#112146]) +3 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb6/igt@gem_exec_schedule@preempt-bsd.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb2/igt@gem_exec_schedule@preempt-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd2:
    - shard-iclb:         [PASS][15] -> [SKIP][16] ([fdo#109276]) +15 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd2.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd2.html

  * igt@gem_sync@basic-store-all:
    - shard-tglb:         [PASS][17] -> [INCOMPLETE][18] ([fdo#111880])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb9/igt@gem_sync@basic-store-all.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb6/igt@gem_sync@basic-store-all.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-hsw:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-hsw6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][21] -> [DMESG-WARN][22] ([fdo#111870]) +2 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-snb7/igt@gem_userptr_blits@sync-unmap-cycles.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-snb6/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_selftest@live_execlists:
    - shard-glk:          [PASS][23] -> [INCOMPLETE][24] ([fdo#103359] / [fdo#112067] / [k.org#198133])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-glk4/igt@i915_selftest@live_execlists.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-glk5/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_hangcheck:
    - shard-hsw:          [PASS][25] -> [DMESG-FAIL][26] ([fdo#111991])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-hsw7/igt@i915_selftest@live_hangcheck.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-hsw1/igt@i915_selftest@live_hangcheck.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-hsw:          [PASS][27] -> [FAIL][28] ([fdo#102887])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-hsw7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-hsw4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-tglb:         [PASS][29] -> [INCOMPLETE][30] ([fdo#111832] / [fdo#111850] / [fdo#111884])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - shard-iclb:         [PASS][31] -> [FAIL][32] ([fdo#103167]) +7 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
    - shard-tglb:         [PASS][33] -> [FAIL][34] ([fdo#103167]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][35] -> [SKIP][36] ([fdo#109441]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_psr@suspend:
    - shard-tglb:         [PASS][37] -> [INCOMPLETE][38] ([fdo#111832] / [fdo#111850])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb1/igt@kms_psr@suspend.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb4/igt@kms_psr@suspend.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][39] -> [FAIL][40] ([fdo#99912])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-apl8/igt@kms_setmode@basic.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-apl8/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-d-ts-continuation-suspend:
    - shard-tglb:         [PASS][41] -> [INCOMPLETE][42] ([fdo#111850])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html

  
#### Possible fixes ####

  * igt@gem_busy@busy-vcs1:
    - shard-iclb:         [SKIP][43] ([fdo#112080]) -> [PASS][44] +13 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb3/igt@gem_busy@busy-vcs1.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb4/igt@gem_busy@busy-vcs1.html

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-tglb:         [INCOMPLETE][45] ([fdo#111832]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb8/igt@gem_ctx_isolation@rcs0-s3.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb5/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_isolation@vcs1-clean:
    - shard-iclb:         [SKIP][47] ([fdo#109276] / [fdo#112080]) -> [PASS][48] +2 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb3/igt@gem_ctx_isolation@vcs1-clean.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb2/igt@gem_ctx_isolation@vcs1-clean.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [SKIP][49] ([fdo#112146]) -> [PASS][50] +7 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [DMESG-WARN][51] ([fdo#111870]) -> [PASS][52] +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-snb1/igt@gem_userptr_blits@sync-unmap.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-snb5/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][53] ([fdo#111870]) -> [PASS][54] +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-hsw5/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_selftest@live_execlists:
    - shard-tglb:         [INCOMPLETE][55] ([fdo#112067]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb8/igt@i915_selftest@live_execlists.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb8/igt@i915_selftest@live_execlists.html

  * igt@i915_suspend@debugfs-reader:
    - shard-tglb:         [INCOMPLETE][57] ([fdo#111850]) -> [PASS][58] +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb7/igt@i915_suspend@debugfs-reader.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb5/igt@i915_suspend@debugfs-reader.html

  * igt@kms_atomic_transition@2x-modeset-transitions-nonblocking-fencing:
    - shard-hsw:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-hsw7/igt@kms_atomic_transition@2x-modeset-transitions-nonblocking-fencing.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-hsw1/igt@kms_atomic_transition@2x-modeset-transitions-nonblocking-fencing.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-glk:          [FAIL][61] ([fdo#105363]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-snb:          [INCOMPLETE][63] ([fdo#105411]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-snb1/igt@kms_flip@flip-vs-suspend.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-snb4/igt@kms_flip@flip-vs-suspend.html
    - shard-tglb:         [INCOMPLETE][65] ([fdo#111850] / [fdo#112031]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb8/igt@kms_flip@flip-vs-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-iclb:         [FAIL][67] ([fdo#103167]) -> [PASS][68] +6 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-glk:          [FAIL][69] ([fdo#103167]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-kbl:          [FAIL][71] ([fdo#103167]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
    - shard-apl:          [FAIL][73] ([fdo#103167]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-apl3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-apl3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [DMESG-WARN][75] ([fdo#108566]) -> [PASS][76] +3 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-tglb:         [FAIL][77] ([fdo#103167]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-tglb:         [INCOMPLETE][79] ([fdo#111832] / [fdo#111850]) -> [PASS][80] +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82] +2 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb1/igt@kms_psr@psr2_cursor_render.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [DMESG-WARN][83] ([fdo#108566]) -> [PASS][84] +5 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-kbl:          [INCOMPLETE][85] ([fdo#103665]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-kbl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][87] ([fdo#109276]) -> [PASS][88] +16 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb3/igt@prime_vgem@fence-wait-bsd2.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv-switch:
    - shard-iclb:         [SKIP][89] ([fdo#109276] / [fdo#112080]) -> [FAIL][90] ([fdo#111329])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html

  * igt@gem_exec_schedule@deep-bsd1:
    - shard-tglb:         [INCOMPLETE][91] ([fdo#111671]) -> [FAIL][92] ([fdo#111646])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb3/igt@gem_exec_schedule@deep-bsd1.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb6/igt@gem_exec_schedule@deep-bsd1.html

  * igt@gem_exec_schedule@deep-vebox:
    - shard-tglb:         [FAIL][93] ([fdo#111646]) -> [INCOMPLETE][94] ([fdo#111671])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb9/igt@gem_exec_schedule@deep-vebox.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb1/igt@gem_exec_schedule@deep-vebox.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglb:         [FAIL][95] ([fdo#111830 ]) -> [SKIP][96] ([fdo#111865])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-tglb3/igt@i915_pm_dc@dc6-dpms.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-tglb6/igt@i915_pm_dc@dc6-dpms.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [SKIP][97] ([fdo#109349]) -> [DMESG-WARN][98] ([fdo#107724])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7398/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3740/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.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#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
  [fdo#111672]: https://bugs.freedesktop.org/show_bug.cgi?id=111672
  [fdo#111830 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111830 
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111865]: https://bugs.freedesktop.org/show_bug.cgi?id=111865
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880
  [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
  [fdo#111991]: htt

== Logs ==

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

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

end of thread, other threads:[~2019-11-22 15:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-21 11:14 [igt-dev] [PATCH i-g-t] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
2019-11-21 12:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-11-21 12:56 ` [igt-dev] [PATCH i-g-t] " Kahola, Mika
2019-11-22 15:17 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork

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