intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH 1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
@ 2021-07-27 17:33 badal.nilawar
  2021-07-27 19:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/1] " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: badal.nilawar @ 2021-07-27 17:33 UTC (permalink / raw)
  To: intel-gfx, dri-devel

From: Badal Nilawar <badal.nilawar@intel.com>

In discrete cards, the graphics driver shouldn't proceed with the probe
or resume unless PCODE indicated everything is done, including memory
training and gt bring up.

For this reason, the driver probe and resume paths needs to be blocked
until PCODE indicates it is done. Also, it needs to aborted if the
notification never arrives.

In general, the few miliseconds would be enough and the regular PCODE
recommendation for the timeout was 10 seconds. However there are some
rare cases where this initialization can take up to 1 minute. So,
PCODE has increased the recommendation to 3 minutes so we don't fully
block the device utilization when something just got delayed for
whatever reason. To be on the safest side, let's accept this
recommendation, since on the regular case it won't delay or block the
driver initialization and resume flows

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
---
 drivers/gpu/drm/i915/i915_drv.c       |  8 +++++++-
 drivers/gpu/drm/i915/intel_sideband.c | 13 +++++++++----
 drivers/gpu/drm/i915/intel_sideband.h |  2 +-
 3 files changed, 17 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index c43b698bf0b97..59fb4c710c8ca 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -620,7 +620,9 @@ static int i915_driver_hw_probe(struct drm_i915_private *dev_priv)
 
 	intel_opregion_setup(dev_priv);
 
-	intel_pcode_init(dev_priv);
+	ret = intel_pcode_init(dev_priv);
+	if (ret)
+		goto err_msi;
 
 	/*
 	 * Fill the dram structure to get the system dram info. This will be
@@ -1231,6 +1233,10 @@ static int i915_drm_resume(struct drm_device *dev)
 
 	disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
 
+	ret = intel_pcode_init(dev_priv);
+	if (ret)
+		return ret;
+
 	sanitize_gpu(dev_priv);
 
 	ret = i915_ggtt_enable_hw(dev_priv);
diff --git a/drivers/gpu/drm/i915/intel_sideband.c b/drivers/gpu/drm/i915/intel_sideband.c
index f0a82b37bd1ac..e304bf44e1ff8 100644
--- a/drivers/gpu/drm/i915/intel_sideband.c
+++ b/drivers/gpu/drm/i915/intel_sideband.c
@@ -556,17 +556,22 @@ int skl_pcode_request(struct drm_i915_private *i915, u32 mbox, u32 request,
 #undef COND
 }
 
-void intel_pcode_init(struct drm_i915_private *i915)
+int intel_pcode_init(struct drm_i915_private *i915)
 {
-	int ret;
+	int ret = 0;
 
 	if (!IS_DGFX(i915))
-		return;
+		return ret;
 
 	ret = skl_pcode_request(i915, DG1_PCODE_STATUS,
 				DG1_UNCORE_GET_INIT_STATUS,
 				DG1_UNCORE_INIT_STATUS_COMPLETE,
-				DG1_UNCORE_INIT_STATUS_COMPLETE, 50);
+				DG1_UNCORE_INIT_STATUS_COMPLETE, 180000);
+
+	drm_dbg(&i915->drm, "PCODE init status %d\n", ret);
+
 	if (ret)
 		drm_err(&i915->drm, "Pcode did not report uncore initialization completion!\n");
+
+	return ret;
 }
diff --git a/drivers/gpu/drm/i915/intel_sideband.h b/drivers/gpu/drm/i915/intel_sideband.h
index 094c7b19c5d42..d1d14bcb8f56e 100644
--- a/drivers/gpu/drm/i915/intel_sideband.h
+++ b/drivers/gpu/drm/i915/intel_sideband.h
@@ -138,6 +138,6 @@ int sandybridge_pcode_write_timeout(struct drm_i915_private *i915, u32 mbox,
 int skl_pcode_request(struct drm_i915_private *i915, u32 mbox, u32 request,
 		      u32 reply_mask, u32 reply, int timeout_base_ms);
 
-void intel_pcode_init(struct drm_i915_private *i915);
+int intel_pcode_init(struct drm_i915_private *i915);
 
 #endif /* _INTEL_SIDEBAND_H */
-- 
2.25.1

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
  2021-07-27 17:33 [Intel-gfx] [PATCH 1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done badal.nilawar
@ 2021-07-27 19:22 ` Patchwork
  2021-07-28  5:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  2021-07-28 16:33 ` [Intel-gfx] [PATCH 1/1] " Rodrigo Vivi
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-07-27 19:22 UTC (permalink / raw)
  To: badal.nilawar; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 3311 bytes --]

== Series Details ==

Series: series starting with [1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
URL   : https://patchwork.freedesktop.org/series/93075/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10405 -> Patchwork_20720
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][1] ([fdo#109271]) +25 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-bdw-5557u:       NOTRUN -> [WARN][2] ([i915#3718])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-bdw-5557u:       NOTRUN -> [FAIL][3] ([i915#579])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/fi-bdw-5557u/igt@i915_pm_rpm@basic-rte.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@migrate:
    - {fi-hsw-gt1}:       [FAIL][4] -> [PASS][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/fi-hsw-gt1/igt@i915_selftest@live@migrate.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/fi-hsw-gt1/igt@i915_selftest@live@migrate.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       [FAIL][6] ([i915#1372]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#1372]: https://gitlab.freedesktop.org/drm/intel/issues/1372
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#3718]: https://gitlab.freedesktop.org/drm/intel/issues/3718
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
  [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379


Participating hosts (41 -> 35)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan bat-adlp-4 fi-bdw-samus bat-jsl-1 


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

  * Linux: CI_DRM_10405 -> Patchwork_20720

  CI-20190529: 20190529
  CI_DRM_10405: 6db19b5e1fac016d9dffa6ce54aa21f3200c5c8d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6153: a5dffe7499a2f7189718ddf1ccf49060b7c1529d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20720: 073d8955a1b057132f5d1f8a4343f1f703865ea0 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

073d8955a1b0 drm/i915: dgfx cards need to wait on pcode's uncore init done

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/index.html

[-- Attachment #1.2: Type: text/html, Size: 3843 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

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

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
  2021-07-27 17:33 [Intel-gfx] [PATCH 1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done badal.nilawar
  2021-07-27 19:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/1] " Patchwork
@ 2021-07-28  5:10 ` Patchwork
  2021-07-28 16:38   ` Rodrigo Vivi
  2021-07-28 16:33 ` [Intel-gfx] [PATCH 1/1] " Rodrigo Vivi
  2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2021-07-28  5:10 UTC (permalink / raw)
  To: badal.nilawar; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 30311 bytes --]

== Series Details ==

Series: series starting with [1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
URL   : https://patchwork.freedesktop.org/series/93075/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10405_full -> Patchwork_20720_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_selftest@all@damage_iter_no_damage:
    - shard-apl:          NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_selftest@all@damage_iter_no_damage.html

  
#### Suppressed ####

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

  * igt@kms_busy@basic-hang:
    - {shard-rkl}:        NOTRUN -> [SKIP][2] +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-1/igt@kms_busy@basic-hang.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - {shard-rkl}:        [SKIP][3] ([i915#1849]) -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [PASS][5] -> [SKIP][6] ([i915#658])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@feature_discovery@psr2.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@feature_discovery@psr2.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-kbl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
    - shard-apl:          NOTRUN -> [DMESG-WARN][9] ([i915#180]) +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@process:
    - shard-snb:          NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1099]) +4 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb2/igt@gem_ctx_persistence@process.html

  * igt@gem_ctx_shared@q-in-order:
    - shard-snb:          NOTRUN -> [SKIP][11] ([fdo#109271]) +209 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb2/igt@gem_ctx_shared@q-in-order.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842] / [i915#3468])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2851])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         [PASS][16] -> [FAIL][17] ([i915#2842]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_whisper@basic-contexts-forked-all:
    - shard-glk:          [PASS][20] -> [DMESG-WARN][21] ([i915#118] / [i915#95]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk3/igt@gem_exec_whisper@basic-contexts-forked-all.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#2190])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@gem_huc_copy@huc-copy.html

  * igt@gem_mmap_offset@clear:
    - shard-skl:          [PASS][23] -> [FAIL][24] ([i915#1888] / [i915#3160])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl4/igt@gem_mmap_offset@clear.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl7/igt@gem_mmap_offset@clear.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-snb:          NOTRUN -> [FAIL][26] ([i915#2724])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb5/igt@gem_userptr_blits@vma-merge.html

  * igt@i915_pm_rpm@fences:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#579])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-tglb5/igt@i915_pm_rpm@fences.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#3777]) +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +30 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_chamelium@hdmi-edid-change-during-suspend.html

  * igt@kms_color@pipe-a-legacy-gamma:
    - shard-skl:          [PASS][30] -> [DMESG-WARN][31] ([i915#1982])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl9/igt@kms_color@pipe-a-legacy-gamma.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl4/igt@kms_color@pipe-a-legacy-gamma.html

  * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
    - shard-snb:          NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-invalid-gamma-lut-sizes:
    - shard-skl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [fdo#111827])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl7/igt@kms_color_chamelium@pipe-invalid-gamma-lut-sizes.html

  * igt@kms_content_protection@legacy:
    - shard-apl:          NOTRUN -> [TIMEOUT][34] ([i915#1319])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][35] ([i915#2105])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-d-cursor-128x128-offscreen:
    - shard-kbl:          NOTRUN -> [SKIP][36] ([fdo#109271])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-128x128-offscreen.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#111825])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-tglb5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-skl:          [PASS][38] -> [FAIL][39] ([i915#79])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@b-dp1:
    - shard-apl:          NOTRUN -> [FAIL][40] ([i915#79])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html

  * igt@kms_flip@plain-flip-ts-check@a-edp1:
    - shard-skl:          [PASS][41] -> [FAIL][42] ([i915#2122])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl1/igt@kms_flip@plain-flip-ts-check@a-edp1.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#533]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][44] ([i915#265])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
    - shard-apl:          NOTRUN -> [FAIL][45] ([fdo#108145] / [i915#265]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant:
    - shard-iclb:         [PASS][46] -> [SKIP][47] ([fdo#109278])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb8/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#2733])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl6/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#658]) +7 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [PASS][50] -> [SKIP][51] ([fdo#109441]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#2437])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@nouveau_crc@pipe-a-source-outp-inactive:
    - shard-skl:          NOTRUN -> [SKIP][53] ([fdo#109271]) +3 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl7/igt@nouveau_crc@pipe-a-source-outp-inactive.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271]) +354 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@sysfs_clients@fair-1:
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2994]) +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@sysfs_clients@fair-1.html

  
#### Possible fixes ####

  * igt@fbdev@nullptr:
    - {shard-rkl}:        [SKIP][56] ([i915#2582]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@fbdev@nullptr.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@fbdev@nullptr.html

  * igt@gem_ctx_persistence@engines-hang@bcs0:
    - {shard-rkl}:        [FAIL][58] ([i915#2410]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-2/igt@gem_ctx_persistence@engines-hang@bcs0.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-1/igt@gem_ctx_persistence@engines-hang@bcs0.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][60] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb4/igt@gem_eio@unwedge-stress.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb5/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [FAIL][62] ([i915#2842]) -> [PASS][63] +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl1/igt@gem_exec_fair@basic-none@vecs0.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         [FAIL][64] ([i915#2842]) -> [PASS][65] +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-tglb2/igt@gem_exec_fair@basic-pace@bcs0.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
    - shard-iclb:         [FAIL][66] ([i915#307]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][68] ([i915#644]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_workarounds@suspend-resume:
    - shard-apl:          [DMESG-WARN][70] ([i915#180]) -> [PASS][71] +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl7/igt@gem_workarounds@suspend-resume.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@gem_workarounds@suspend-resume.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          [DMESG-WARN][72] ([i915#118] / [i915#95]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk1/igt@kms_big_fb@linear-32bpp-rotate-0.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - {shard-rkl}:        [SKIP][74] ([i915#3638]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
    - {shard-rkl}:        [SKIP][76] ([i915#3721]) -> [PASS][77] +2 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs:
    - {shard-rkl}:        [FAIL][78] ([i915#3678]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html

  * igt@kms_color@pipe-a-ctm-0-75:
    - {shard-rkl}:        [SKIP][80] ([i915#1149] / [i915#1849]) -> [PASS][81] +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_color@pipe-a-ctm-0-75.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html

  * igt@kms_color@pipe-b-ctm-negative:
    - shard-skl:          [DMESG-WARN][82] ([i915#1982]) -> [PASS][83] +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl5/igt@kms_color@pipe-b-ctm-negative.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl10/igt@kms_color@pipe-b-ctm-negative.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
    - {shard-rkl}:        [SKIP][84] ([fdo#112022]) -> [PASS][85] +8 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-skl:          [FAIL][86] ([i915#2346]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
    - {shard-rkl}:        [SKIP][88] ([fdo#111825]) -> [PASS][89] +2 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html

  * igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled:
    - {shard-rkl}:        [SKIP][90] ([fdo#111314]) -> [PASS][91] +4 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - {shard-rkl}:        [SKIP][92] ([i915#1849]) -> [PASS][93] +21 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-skl:          [FAIL][94] ([i915#1188]) -> [PASS][95] +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl4/igt@kms_hdr@bpc-switch-suspend.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane@plane-panning-bottom-right@pipe-b-planes:
    - {shard-rkl}:        [SKIP][96] ([i915#3558]) -> [PASS][97] +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-skl:          [FAIL][98] ([fdo#108145] / [i915#265]) -> [PASS][99] +2 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  * igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
    - {shard-rkl}:        [SKIP][100] ([i915#1849] / [i915#3558]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html

  * igt@kms_psr@primary_mmap_cpu:
    - {shard-rkl}:        [SKIP][102] ([i915#1072]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_psr@primary_mmap_cpu.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_psr@primary_mmap_cpu.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [SKIP][104] ([fdo#109441]) -> [PASS][105] +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb8/igt@kms_psr@psr2_primary_page_flip.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_vblank@pipe-a-ts-continuation-modeset:
    - {shard-rkl}:        [SKIP][106] ([i915#1845]) -> [PASS][107] +10 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_vblank@pipe-a-ts-continuation-modeset.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset.html

  * igt@perf@polling-small-buf:
    - shard-skl:          [FAIL][108] ([i915#1722]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl9/igt@perf@polling-small-buf.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl4/igt@perf@polling-small-buf.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][110] ([i915#2842]) -> [FAIL][111] ([i915#2852])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_mmap_gtt@cpuset-medium-copy:
    - shard-iclb:         [FAIL][112] ([i915#2428]) -> [FAIL][113] ([i915#307])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb1/igt@gem_mmap_gtt@cpuset-medium-copy.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][114] ([i915#1804] / [i915#2684]) -> [WARN][115] ([i915#2684])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-skl:          [FAIL][116] ([i915#3743]) -> [FAIL][117] ([i915#3722])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][118] ([i915#2920]) -> [SKIP][119] ([i915#658]) +2 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-iclb:         [SKIP][120] ([i915#658]) -> [SKIP][121] ([i915#2920]) +2 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][122], [FAIL][123]) ([i915#2426] / [i915#3002] / [i915#3363]) -> ([FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2426] / [i915#2505] / [i915#3002] / [i915#3363])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl4/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl4/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl1/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl1/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl7/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl6/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][129], [FAIL][130], [FAIL][131]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][132], [FAIL][133], [FAIL][134]) ([i915#180] / [i915#2426] / [i915#3363])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl3/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl7/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl6/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@runner@aborted.html

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

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2428]: https://gitlab.freedesktop.org/drm/intel/issues/2428
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2481]: https://gitlab.freedesktop.org/drm/intel/issues/2481
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issu

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/index.html

[-- Attachment #1.2: Type: text/html, Size: 34962 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

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

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

* Re: [Intel-gfx] [PATCH 1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
  2021-07-27 17:33 [Intel-gfx] [PATCH 1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done badal.nilawar
  2021-07-27 19:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/1] " Patchwork
  2021-07-28  5:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-07-28 16:33 ` Rodrigo Vivi
  2 siblings, 0 replies; 5+ messages in thread
From: Rodrigo Vivi @ 2021-07-28 16:33 UTC (permalink / raw)
  To: badal.nilawar; +Cc: intel-gfx, dri-devel

On Tue, Jul 27, 2021 at 11:03:38PM +0530, badal.nilawar@intel.com wrote:
> From: Badal Nilawar <badal.nilawar@intel.com>
> 
> In discrete cards, the graphics driver shouldn't proceed with the probe
> or resume unless PCODE indicated everything is done, including memory
> training and gt bring up.
> 
> For this reason, the driver probe and resume paths needs to be blocked
> until PCODE indicates it is done. Also, it needs to aborted if the
> notification never arrives.
> 
> In general, the few miliseconds would be enough and the regular PCODE
> recommendation for the timeout was 10 seconds. However there are some
> rare cases where this initialization can take up to 1 minute. So,
> PCODE has increased the recommendation to 3 minutes so we don't fully
> block the device utilization when something just got delayed for
> whatever reason. To be on the safest side, let's accept this
> recommendation, since on the regular case it won't delay or block the
> driver initialization and resume flows
> 
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> ---
>  drivers/gpu/drm/i915/i915_drv.c       |  8 +++++++-
>  drivers/gpu/drm/i915/intel_sideband.c | 13 +++++++++----
>  drivers/gpu/drm/i915/intel_sideband.h |  2 +-
>  3 files changed, 17 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index c43b698bf0b97..59fb4c710c8ca 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -620,7 +620,9 @@ static int i915_driver_hw_probe(struct drm_i915_private *dev_priv)
>  
>  	intel_opregion_setup(dev_priv);
>  
> -	intel_pcode_init(dev_priv);
> +	ret = intel_pcode_init(dev_priv);
> +	if (ret)
> +		goto err_msi;
>  
>  	/*
>  	 * Fill the dram structure to get the system dram info. This will be
> @@ -1231,6 +1233,10 @@ static int i915_drm_resume(struct drm_device *dev)
>  
>  	disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
>  
> +	ret = intel_pcode_init(dev_priv);
> +	if (ret)
> +		return ret;
> +
>  	sanitize_gpu(dev_priv);
>  
>  	ret = i915_ggtt_enable_hw(dev_priv);
> diff --git a/drivers/gpu/drm/i915/intel_sideband.c b/drivers/gpu/drm/i915/intel_sideband.c
> index f0a82b37bd1ac..e304bf44e1ff8 100644
> --- a/drivers/gpu/drm/i915/intel_sideband.c
> +++ b/drivers/gpu/drm/i915/intel_sideband.c
> @@ -556,17 +556,22 @@ int skl_pcode_request(struct drm_i915_private *i915, u32 mbox, u32 request,
>  #undef COND
>  }
>  
> -void intel_pcode_init(struct drm_i915_private *i915)
> +int intel_pcode_init(struct drm_i915_private *i915)
>  {
> -	int ret;
> +	int ret = 0;
>  
>  	if (!IS_DGFX(i915))
> -		return;
> +		return ret;
>  
>  	ret = skl_pcode_request(i915, DG1_PCODE_STATUS,
>  				DG1_UNCORE_GET_INIT_STATUS,
>  				DG1_UNCORE_INIT_STATUS_COMPLETE,
> -				DG1_UNCORE_INIT_STATUS_COMPLETE, 50);
> +				DG1_UNCORE_INIT_STATUS_COMPLETE, 180000);
> +
> +	drm_dbg(&i915->drm, "PCODE init status %d\n", ret);
> +
>  	if (ret)
>  		drm_err(&i915->drm, "Pcode did not report uncore initialization completion!\n");
> +
> +	return ret;
>  }
> diff --git a/drivers/gpu/drm/i915/intel_sideband.h b/drivers/gpu/drm/i915/intel_sideband.h
> index 094c7b19c5d42..d1d14bcb8f56e 100644
> --- a/drivers/gpu/drm/i915/intel_sideband.h
> +++ b/drivers/gpu/drm/i915/intel_sideband.h
> @@ -138,6 +138,6 @@ int sandybridge_pcode_write_timeout(struct drm_i915_private *i915, u32 mbox,
>  int skl_pcode_request(struct drm_i915_private *i915, u32 mbox, u32 request,
>  		      u32 reply_mask, u32 reply, int timeout_base_ms);
>  
> -void intel_pcode_init(struct drm_i915_private *i915);
> +int intel_pcode_init(struct drm_i915_private *i915);
>  
>  #endif /* _INTEL_SIDEBAND_H */
> -- 
> 2.25.1
> 
> _______________________________________________
> 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] 5+ messages in thread

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for series starting with [1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done
  2021-07-28  5:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-07-28 16:38   ` Rodrigo Vivi
  0 siblings, 0 replies; 5+ messages in thread
From: Rodrigo Vivi @ 2021-07-28 16:38 UTC (permalink / raw)
  To: intel-gfx

On Wed, Jul 28, 2021 at 05:10:01AM -0000, Patchwork wrote:
>    Patch Details
> 
>    Series: series starting with [1/1] drm/i915: dgfx cards need to wait on
>    pcode's uncore init done
>    URL: [1]https://patchwork.freedesktop.org/series/93075/
>    State: failure
>    Details:
>    [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/index.html
> 
>       CI Bug Log - changes from CI_DRM_10405_full -> Patchwork_20720_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with Patchwork_20720_full absolutely
>    need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in Patchwork_20720_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_20720_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@kms_selftest@all@damage_iter_no_damage:
>           + shard-apl: NOTRUN -> [3]INCOMPLETE

This is not related.
Well, I should have triggered a CI re-run, for cleaning this up, but I ended up
pushing it :/ Bad example, sorry yall.

But yeap, patch is merged. Thanks for the patch.

> 
>     Suppressed
> 
>    The following results come from untrusted machines, tests, or statuses.
>    They do not affect the overall result.
>      * igt@kms_busy@basic-hang:
>           + {shard-rkl}: NOTRUN -> [4]SKIP +1 similar issue
>      * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
>           + {shard-rkl}: [5]SKIP ([6]i915#1849) -> [7]DMESG-WARN
> 
> Known issues
> 
>    Here are the changes found in Patchwork_20720_full that come from known
>    issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@feature_discovery@psr2:
>           + shard-iclb: [8]PASS -> [9]SKIP ([i915#658])
>      * igt@gem_ctx_isolation@preservation-s3@bcs0:
>           + shard-kbl: [10]PASS -> [11]DMESG-WARN ([12]i915#180) +2
>             similar issues
>           + shard-apl: NOTRUN -> [13]DMESG-WARN ([14]i915#180) +3 similar
>             issues
>      * igt@gem_ctx_persistence@process:
>           + shard-snb: NOTRUN -> [15]SKIP ([16]fdo#109271 / [17]i915#1099)
>             +4 similar issues
>      * igt@gem_ctx_shared@q-in-order:
>           + shard-snb: NOTRUN -> [18]SKIP ([19]fdo#109271) +209 similar
>             issues
>      * igt@gem_exec_fair@basic-none@vecs0:
>           + shard-glk: [20]PASS -> [21]FAIL ([i915#2842] / [i915#3468])
>      * igt@gem_exec_fair@basic-pace@rcs0:
>           + shard-kbl: [22]PASS -> [23]FAIL ([i915#2851])
>      * igt@gem_exec_fair@basic-pace@vcs0:
>           + shard-iclb: [24]PASS -> [25]FAIL ([i915#2842]) +1 similar
>             issue
>      * igt@gem_exec_fair@basic-throttle@rcs0:
>           + shard-glk: [26]PASS -> [27]FAIL ([i915#2842]) +2 similar
>             issues
>      * igt@gem_exec_whisper@basic-contexts-forked-all:
>           + shard-glk: [28]PASS -> [29]DMESG-WARN ([30]i915#118 /
>             [i915#95]) +1 similar issue
>      * igt@gem_huc_copy@huc-copy:
>           + shard-apl: NOTRUN -> [31]SKIP ([32]fdo#109271 / [33]i915#2190)
>      * igt@gem_mmap_offset@clear:
>           + shard-skl: [34]PASS -> [35]FAIL ([36]i915#1888 / [i915#3160])
>      * igt@gem_pwrite@basic-exhaustion:
>           + shard-apl: NOTRUN -> [37]WARN ([i915#2658])
>      * igt@gem_userptr_blits@vma-merge:
>           + shard-snb: NOTRUN -> [38]FAIL ([i915#2724])
>      * igt@i915_pm_rpm@fences:
>           + shard-tglb: NOTRUN -> [39]SKIP ([i915#579])
>      * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>           + shard-apl: NOTRUN -> [40]SKIP ([41]fdo#109271 / [i915#3777])
>             +2 similar issues
>      * igt@kms_chamelium@hdmi-edid-change-during-suspend:
>           + shard-apl: NOTRUN -> [42]SKIP ([43]fdo#109271 /
>             [44]fdo#111827) +30 similar issues
>      * igt@kms_color@pipe-a-legacy-gamma:
>           + shard-skl: [45]PASS -> [46]DMESG-WARN ([47]i915#1982)
>      * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
>           + shard-snb: NOTRUN -> [48]SKIP ([49]fdo#109271 /
>             [50]fdo#111827) +9 similar issues
>      * igt@kms_color_chamelium@pipe-invalid-gamma-lut-sizes:
>           + shard-skl: NOTRUN -> [51]SKIP ([52]fdo#109271 /
>             [53]fdo#111827)
>      * igt@kms_content_protection@legacy:
>           + shard-apl: NOTRUN -> [54]TIMEOUT ([55]i915#1319)
>      * igt@kms_content_protection@uevent:
>           + shard-apl: NOTRUN -> [56]FAIL ([57]i915#2105)
>      * igt@kms_cursor_crc@pipe-d-cursor-128x128-offscreen:
>           + shard-kbl: NOTRUN -> [58]SKIP ([59]fdo#109271)
>      * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
>           + shard-tglb: NOTRUN -> [60]SKIP ([61]fdo#111825)
>      * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
>           + shard-skl: [62]PASS -> [63]FAIL ([i915#79])
>      * igt@kms_flip@flip-vs-expired-vblank@b-dp1:
>           + shard-apl: NOTRUN -> [64]FAIL ([i915#79])
>      * igt@kms_flip@plain-flip-ts-check@a-edp1:
>           + shard-skl: [65]PASS -> [66]FAIL ([67]i915#2122)
>      * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>           + shard-apl: NOTRUN -> [68]SKIP ([69]fdo#109271 / [i915#533]) +1
>             similar issue
>      * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>           + shard-apl: NOTRUN -> [70]FAIL ([i915#265])
>      * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
>           + shard-apl: NOTRUN -> [71]FAIL ([72]fdo#108145 / [i915#265]) +2
>             similar issues
>      * igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant:
>           + shard-iclb: [73]PASS -> [74]SKIP ([75]fdo#109278)
>      * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-w
>        ith-clipping-clamping:
>           + shard-apl: NOTRUN -> [76]SKIP ([77]fdo#109271 / [i915#2733])
>      * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
>           + shard-apl: NOTRUN -> [78]SKIP ([79]fdo#109271 / [i915#658]) +7
>             similar issues
>      * igt@kms_psr@psr2_cursor_render:
>           + shard-iclb: [80]PASS -> [81]SKIP ([82]fdo#109441) +2 similar
>             issues
>      * igt@kms_writeback@writeback-invalid-parameters:
>           + shard-apl: NOTRUN -> [83]SKIP ([84]fdo#109271 / [85]i915#2437)
>      * igt@nouveau_crc@pipe-a-source-outp-inactive:
>           + shard-skl: NOTRUN -> [86]SKIP ([87]fdo#109271) +3 similar
>             issues
>      * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
>           + shard-apl: NOTRUN -> [88]SKIP ([89]fdo#109271) +354 similar
>             issues
>      * igt@sysfs_clients@fair-1:
>           + shard-apl: NOTRUN -> [90]SKIP ([91]fdo#109271 / [i915#2994])
>             +4 similar issues
> 
>     Possible fixes
> 
>      * igt@fbdev@nullptr:
>           + {shard-rkl}: [92]SKIP ([i915#2582]) -> [93]PASS
>      * igt@gem_ctx_persistence@engines-hang@bcs0:
>           + {shard-rkl}: [94]FAIL ([95]i915#2410) -> [96]PASS
>      * igt@gem_eio@unwedge-stress:
>           + shard-iclb: [97]TIMEOUT ([98]i915#2369 / [99]i915#2481 /
>             [i915#3070]) -> [100]PASS
>      * igt@gem_exec_fair@basic-none@vecs0:
>           + shard-kbl: [101]FAIL ([i915#2842]) -> [102]PASS +1 similar
>             issue
>      * igt@gem_exec_fair@basic-pace@bcs0:
>           + shard-tglb: [103]FAIL ([i915#2842]) -> [104]PASS +2 similar
>             issues
>      * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
>           + shard-iclb: [105]FAIL ([i915#307]) -> [106]PASS
>      * igt@gem_ppgtt@flink-and-close-vma-leak:
>           + shard-glk: [107]FAIL ([i915#644]) -> [108]PASS
>      * igt@gem_workarounds@suspend-resume:
>           + shard-apl: [109]DMESG-WARN ([110]i915#180) -> [111]PASS +1
>             similar issue
>      * igt@kms_big_fb@linear-32bpp-rotate-0:
>           + shard-glk: [112]DMESG-WARN ([113]i915#118 / [i915#95]) ->
>             [114]PASS
>      * igt@kms_big_fb@linear-8bpp-rotate-180:
>           + {shard-rkl}: [115]SKIP ([i915#3638]) -> [116]PASS
>      * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
>           + {shard-rkl}: [117]SKIP ([i915#3721]) -> [118]PASS +2 similar
>             issues
>      * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs:
>           + {shard-rkl}: [119]FAIL ([i915#3678]) -> [120]PASS
>      * igt@kms_color@pipe-a-ctm-0-75:
>           + {shard-rkl}: [121]SKIP ([122]i915#1149 / [123]i915#1849) ->
>             [124]PASS +1 similar issue
>      * igt@kms_color@pipe-b-ctm-negative:
>           + shard-skl: [125]DMESG-WARN ([126]i915#1982) -> [127]PASS +1
>             similar issue
>      * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
>           + {shard-rkl}: [128]SKIP ([129]fdo#112022) -> [130]PASS +8
>             similar issues
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>           + shard-skl: [131]FAIL ([132]i915#2346) -> [133]PASS
>      * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
>           + {shard-rkl}: [134]SKIP ([135]fdo#111825) -> [136]PASS +2
>             similar issues
>      * igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled:
>           + {shard-rkl}: [137]SKIP ([138]fdo#111314) -> [139]PASS +4
>             similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap
>        -wc:
>           + {shard-rkl}: [140]SKIP ([141]i915#1849) -> [142]PASS +21
>             similar issues
>      * igt@kms_hdr@bpc-switch-suspend:
>           + shard-skl: [143]FAIL ([144]i915#1188) -> [145]PASS +1 similar
>             issue
>      * igt@kms_plane@plane-panning-bottom-right@pipe-b-planes:
>           + {shard-rkl}: [146]SKIP ([i915#3558]) -> [147]PASS +1 similar
>             issue
>      * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
>           + shard-skl: [148]FAIL ([149]fdo#108145 / [i915#265]) ->
>             [150]PASS +2 similar issues
>      * igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
>           + {shard-rkl}: [151]SKIP ([152]i915#1849 / [i915#3558]) ->
>             [153]PASS
>      * igt@kms_psr@primary_mmap_cpu:
>           + {shard-rkl}: [154]SKIP ([155]i915#1072) -> [156]PASS
>      * igt@kms_psr@psr2_primary_page_flip:
>           + shard-iclb: [157]SKIP ([158]fdo#109441) -> [159]PASS +1
>             similar issue
>      * igt@kms_vblank@pipe-a-ts-continuation-modeset:
>           + {shard-rkl}: [160]SKIP ([161]i915#1845) -> [162]PASS +10
>             similar issues
>      * igt@perf@polling-small-buf:
>           + shard-skl: [163]FAIL ([164]i915#1722) -> [165]PASS
> 
>     Warnings
> 
>      * igt@gem_exec_fair@basic-none-rrul@rcs0:
>           + shard-iclb: [166]FAIL ([i915#2842]) -> [167]FAIL ([i915#2852])
>      * igt@gem_mmap_gtt@cpuset-medium-copy:
>           + shard-iclb: [168]FAIL ([169]i915#2428) -> [170]FAIL
>             ([i915#307])
>      * igt@i915_pm_rc6_residency@rc6-idle:
>           + shard-iclb: [171]WARN ([172]i915#1804 / [i915#2684]) ->
>             [173]WARN ([i915#2684])
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>           + shard-skl: [174]FAIL ([i915#3743]) -> [175]FAIL ([i915#3722])
>      * igt@kms_psr2_sf@cursor-plane-update-sf:
>           + shard-iclb: [176]SKIP ([i915#2920]) -> [177]SKIP ([i915#658])
>             +2 similar issues
>      * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
>           + shard-iclb: [178]SKIP ([i915#658]) -> [179]SKIP ([i915#2920])
>             +2 similar issues
>      * igt@runner@aborted:
>           + shard-kbl: ([180]FAIL, [181]FAIL) ([182]i915#2426 /
>             [i915#3002] / [i915#3363]) -> ([183]FAIL, [184]FAIL,
>             [185]FAIL, [186]FAIL, [187]FAIL) ([188]i915#1436 /
>             [189]i915#180 / [190]i915#1814 / [191]i915#2426 /
>             [192]i915#2505 / [i915#3002] / [i915#3363])
>           + shard-apl: ([193]FAIL, [194]FAIL, [195]FAIL) ([196]fdo#109271
>             / [197]i915#180 / [198]i915#1814 / [i915#3002] / [i915#3363])
>             -> ([199]FAIL, [200]FAIL, [201]FAIL) ([202]i915#180 /
>             [203]i915#2426 / [i915#3363])
> 
>    {name}: This element is suppressed. This means it is ignored when
>    computing
>    the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> References
> 
>    1. https://patchwork.freedesktop.org/series/93075/
>    2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/index.html
>    3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_selftest@all@damage_iter_no_damage.html
>    4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-1/igt@kms_busy@basic-hang.html
>    5. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
>    6. https://gitlab.freedesktop.org/drm/intel/issues/1849
>    7. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
>    8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@feature_discovery@psr2.html
>    9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@feature_discovery@psr2.html
>   10. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
>   11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
>   12. https://gitlab.freedesktop.org/drm/intel/issues/180
>   13. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@gem_ctx_isolation@preservation-s3@bcs0.html
>   14. https://gitlab.freedesktop.org/drm/intel/issues/180
>   15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb2/igt@gem_ctx_persistence@process.html
>   16. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   17. https://gitlab.freedesktop.org/drm/intel/issues/1099
>   18. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb2/igt@gem_ctx_shared@q-in-order.html
>   19. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   20. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html
>   21. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html
>   22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html
>   23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html
>   24. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html
>   25. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@gem_exec_fair@basic-pace@vcs0.html
>   26. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
>   27. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html
>   28. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk3/igt@gem_exec_whisper@basic-contexts-forked-all.html
>   29. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html
>   30. https://gitlab.freedesktop.org/drm/intel/issues/118
>   31. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@gem_huc_copy@huc-copy.html
>   32. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   33. https://gitlab.freedesktop.org/drm/intel/issues/2190
>   34. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl4/igt@gem_mmap_offset@clear.html
>   35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl7/igt@gem_mmap_offset@clear.html
>   36. https://gitlab.freedesktop.org/drm/intel/issues/1888
>   37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@gem_pwrite@basic-exhaustion.html
>   38. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb5/igt@gem_userptr_blits@vma-merge.html
>   39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-tglb5/igt@i915_pm_rpm@fences.html
>   40. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>   41. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   42. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_chamelium@hdmi-edid-change-during-suspend.html
>   43. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   44. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   45. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl9/igt@kms_color@pipe-a-legacy-gamma.html
>   46. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl4/igt@kms_color@pipe-a-legacy-gamma.html
>   47. https://gitlab.freedesktop.org/drm/intel/issues/1982
>   48. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html
>   49. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   50. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl7/igt@kms_color_chamelium@pipe-invalid-gamma-lut-sizes.html
>   52. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   53. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   54. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@kms_content_protection@legacy.html
>   55. https://gitlab.freedesktop.org/drm/intel/issues/1319
>   56. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl1/igt@kms_content_protection@uevent.html
>   57. https://gitlab.freedesktop.org/drm/intel/issues/2105
>   58. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-128x128-offscreen.html
>   59. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-tglb5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
>   61. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   62. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
>   63. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
>   64. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
>   65. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
>   66. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
>   67. https://gitlab.freedesktop.org/drm/intel/issues/2122
>   68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
>   69. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
>   71. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html
>   72. https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   73. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb8/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html
>   74. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant.html
>   75. https://bugs.freedesktop.org/show_bug.cgi?id=109278
>   76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl6/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
>   77. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   78. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
>   79. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   80. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
>   81. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@kms_psr@psr2_cursor_render.html
>   82. https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   83. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@kms_writeback@writeback-invalid-parameters.html
>   84. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   85. https://gitlab.freedesktop.org/drm/intel/issues/2437
>   86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl7/igt@nouveau_crc@pipe-a-source-outp-inactive.html
>   87. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html
>   89. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@sysfs_clients@fair-1.html
>   91. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   92. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@fbdev@nullptr.html
>   93. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@fbdev@nullptr.html
>   94. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-2/igt@gem_ctx_persistence@engines-hang@bcs0.html
>   95. https://gitlab.freedesktop.org/drm/intel/issues/2410
>   96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-1/igt@gem_ctx_persistence@engines-hang@bcs0.html
>   97. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb4/igt@gem_eio@unwedge-stress.html
>   98. https://gitlab.freedesktop.org/drm/intel/issues/2369
>   99. https://gitlab.freedesktop.org/drm/intel/issues/2481
>  100. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb5/igt@gem_eio@unwedge-stress.html
>  101. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl1/igt@gem_exec_fair@basic-none@vecs0.html
>  102. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html
>  103. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-tglb2/igt@gem_exec_fair@basic-pace@bcs0.html
>  104. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
>  105. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
>  106. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
>  107. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
>  108. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html
>  109. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl7/igt@gem_workarounds@suspend-resume.html
>  110. https://gitlab.freedesktop.org/drm/intel/issues/180
>  111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl3/igt@gem_workarounds@suspend-resume.html
>  112. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-glk1/igt@kms_big_fb@linear-32bpp-rotate-0.html
>  113. https://gitlab.freedesktop.org/drm/intel/issues/118
>  114. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-0.html
>  115. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
>  116. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-180.html
>  117. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
>  118. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
>  119. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html
>  120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html
>  121. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_color@pipe-a-ctm-0-75.html
>  122. https://gitlab.freedesktop.org/drm/intel/issues/1149
>  123. https://gitlab.freedesktop.org/drm/intel/issues/1849
>  124. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html
>  125. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl5/igt@kms_color@pipe-b-ctm-negative.html
>  126. https://gitlab.freedesktop.org/drm/intel/issues/1982
>  127. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl10/igt@kms_color@pipe-b-ctm-negative.html
>  128. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>  129. https://bugs.freedesktop.org/show_bug.cgi?id=112022
>  130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
>  131. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>  132. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  133. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>  134. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
>  135. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>  136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
>  137. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html
>  138. https://bugs.freedesktop.org/show_bug.cgi?id=111314
>  139. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb8888-blt-ytiled.html
>  140. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
>  141. https://gitlab.freedesktop.org/drm/intel/issues/1849
>  142. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
>  143. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl4/igt@kms_hdr@bpc-switch-suspend.html
>  144. https://gitlab.freedesktop.org/drm/intel/issues/1188
>  145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl1/igt@kms_hdr@bpc-switch-suspend.html
>  146. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html
>  147. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html
>  148. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
>  149. https://bugs.freedesktop.org/show_bug.cgi?id=108145
>  150. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
>  151. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html
>  152. https://gitlab.freedesktop.org/drm/intel/issues/1849
>  153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html
>  154. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_psr@primary_mmap_cpu.html
>  155. https://gitlab.freedesktop.org/drm/intel/issues/1072
>  156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_psr@primary_mmap_cpu.html
>  157. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb8/igt@kms_psr@psr2_primary_page_flip.html
>  158. https://bugs.freedesktop.org/show_bug.cgi?id=109441
>  159. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
>  160. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-rkl-5/igt@kms_vblank@pipe-a-ts-continuation-modeset.html
>  161. https://gitlab.freedesktop.org/drm/intel/issues/1845
>  162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset.html
>  163. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl9/igt@perf@polling-small-buf.html
>  164. https://gitlab.freedesktop.org/drm/intel/issues/1722
>  165. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl4/igt@perf@polling-small-buf.html
>  166. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
>  167. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@gem_exec_fair@basic-none-rrul@rcs0.html
>  168. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb1/igt@gem_mmap_gtt@cpuset-medium-copy.html
>  169. https://gitlab.freedesktop.org/drm/intel/issues/2428
>  170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy.html
>  171. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html
>  172. https://gitlab.freedesktop.org/drm/intel/issues/1804
>  173. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
>  174. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-skl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>  175. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-skl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>  176. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
>  177. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html
>  178. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
>  179. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
>  180. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl4/igt@runner@aborted.html
>  181. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-kbl4/igt@runner@aborted.html
>  182. https://gitlab.freedesktop.org/drm/intel/issues/2426
>  183. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl1/igt@runner@aborted.html
>  184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl1/igt@runner@aborted.html
>  185. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl7/igt@runner@aborted.html
>  186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl6/igt@runner@aborted.html
>  187. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-kbl7/igt@runner@aborted.html
>  188. https://gitlab.freedesktop.org/drm/intel/issues/1436
>  189. https://gitlab.freedesktop.org/drm/intel/issues/180
>  190. https://gitlab.freedesktop.org/drm/intel/issues/1814
>  191. https://gitlab.freedesktop.org/drm/intel/issues/2426
>  192. https://gitlab.freedesktop.org/drm/intel/issu
>  193. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl3/igt@runner@aborted.html
>  194. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl7/igt@runner@aborted.html
>  195. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10405/shard-apl6/igt@runner@aborted.html
>  196. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  197. https://gitlab.freedesktop.org/drm/intel/issues/180
>  198. https://gitlab.freedesktop.org/drm/intel/issues/1814
>  199. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl2/igt@runner@aborted.html
>  200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@runner@aborted.html
>  201. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20720/shard-apl8/igt@runner@aborted.html
>  202. https://gitlab.freedesktop.org/drm/intel/issues/180
>  203. https://gitlab.freedesktop.org/drm/intel/issues/2426

> _______________________________________________
> 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] 5+ messages in thread

end of thread, other threads:[~2021-07-28 16:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-27 17:33 [Intel-gfx] [PATCH 1/1] drm/i915: dgfx cards need to wait on pcode's uncore init done badal.nilawar
2021-07-27 19:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/1] " Patchwork
2021-07-28  5:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-07-28 16:38   ` Rodrigo Vivi
2021-07-28 16:33 ` [Intel-gfx] [PATCH 1/1] " Rodrigo Vivi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).