All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check
@ 2021-01-27 10:00 Anshuman Gupta
  2021-01-27 14:59 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Anshuman Gupta @ 2021-01-27 10:00 UTC (permalink / raw)
  To: intel-gfx; +Cc: Sean Paul

It requires to check streams type1 capability in mst topology
by checking Rxinfo instead connector HDCP2.x capability in
order to enforce type0 stream encryption in a mix of
HDCP {1.x,2.x} mst topology.
Rxcaps always shows HDCP 2.x capability of immediate downstream
connector. Let's use Rxinfo HDCP1_DEVICE_DOWNSTREAM bit to
detect a HDCP {1.x,2.x} mix mst topology.

Cc: Sean Paul <seanpaul@chromium.org>
Cc: Ramalingam C <ramalingam.c@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 .../drm/i915/display/intel_display_types.h    |  4 ++
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c  | 39 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_hdcp.c     | 17 +++++++-
 3 files changed, 59 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 39397748b4b0..cfc9ec82f117 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -373,6 +373,10 @@ struct intel_hdcp_shim {
 	int (*hdcp_2_2_capable)(struct intel_digital_port *dig_port,
 				bool *capable);
 
+	/* Detects whether a HDCP 1.4 sink connected in MST topology */
+	int (*streams_type1_capable)(struct intel_connector *connector,
+				     bool *capable);
+
 	/* Write HDCP2.2 messages */
 	int (*write_2_2_msg)(struct intel_digital_port *dig_port,
 			     void *buf, size_t size);
diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
index f372e25edab4..35e3b0e4c740 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
@@ -478,6 +478,23 @@ int intel_dp_hdcp2_write_msg(struct intel_digital_port *dig_port,
 	return size;
 }
 
+static int
+get_rxinfo_hdcp_1_dev_downstream(struct intel_digital_port *dig_port, bool *hdcp_1_x)
+{
+	u8 rx_info[HDCP_2_2_RXINFO_LEN];
+	int ret;
+
+	ret = drm_dp_dpcd_read(&dig_port->dp.aux,
+			       DP_HDCP_2_2_REG_RXINFO_OFFSET,
+			       (void *)rx_info, HDCP_2_2_RXINFO_LEN);
+
+	if (ret != HDCP_2_2_RXINFO_LEN)
+		return ret >= 0 ? -EIO : ret;
+
+	*hdcp_1_x = HDCP_2_2_HDCP1_DEVICE_CONNECTED(rx_info[1]) ? true : false;
+	return 0;
+}
+
 static
 ssize_t get_receiver_id_list_size(struct intel_digital_port *dig_port)
 {
@@ -626,6 +643,27 @@ int intel_dp_hdcp2_capable(struct intel_digital_port *dig_port,
 	return 0;
 }
 
+static
+int intel_dp_mst_streams_type1_capable(struct intel_connector *connector,
+				       bool *capable)
+{
+	struct intel_digital_port *dig_port = intel_attached_dig_port(connector);
+	struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev);
+	int ret;
+	bool hdcp_1_x;
+
+	ret = get_rxinfo_hdcp_1_dev_downstream(dig_port, &hdcp_1_x);
+	if (ret) {
+		drm_dbg_kms(&i915->drm,
+			    "[%s:%d] failed to read RxInfo ret=%d\n",
+			    connector->base.name, connector->base.base.id, ret);
+		return ret;
+	}
+
+	*capable = !hdcp_1_x;
+	return 0;
+}
+
 static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
 	.write_an_aksv = intel_dp_hdcp_write_an_aksv,
 	.read_bksv = intel_dp_hdcp_read_bksv,
@@ -813,6 +851,7 @@ static const struct intel_hdcp_shim intel_dp_mst_hdcp_shim = {
 	.stream_2_2_encryption = intel_dp_mst_hdcp2_stream_encryption,
 	.check_2_2_link = intel_dp_mst_hdcp2_check_link,
 	.hdcp_2_2_capable = intel_dp_hdcp2_capable,
+	.streams_type1_capable = intel_dp_mst_streams_type1_capable,
 	.protocol = HDCP_PROTOCOL_DP,
 };
 
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index ae1371c36a32..5b2e2625779b 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -32,6 +32,21 @@ static int intel_conn_to_vcpi(struct intel_connector *connector)
 	return connector->port	? connector->port->vcpi.vcpi : 0;
 }
 
+static bool
+intel_streams_type1_capable(struct intel_connector *connector)
+{
+	const struct intel_hdcp_shim *shim = connector->hdcp.shim;
+	bool capable = false;
+
+	if (!shim)
+		return capable;
+
+	if (shim->streams_type1_capable)
+		shim->streams_type1_capable(connector, &capable);
+
+	return capable;
+}
+
 /*
  * intel_hdcp_required_content_stream selects the most highest common possible HDCP
  * content_type for all streams in DP MST topology because security f/w doesn't
@@ -70,7 +85,7 @@ intel_hdcp_required_content_stream(struct intel_digital_port *dig_port)
 		if (conn_dig_port != dig_port)
 			continue;
 
-		if (!enforce_type0 && !intel_hdcp2_capable(connector))
+		if (!enforce_type0 && !intel_streams_type1_capable(connector))
 			enforce_type0 = true;
 
 		data->streams[data->k].stream_id = intel_conn_to_vcpi(connector);
-- 
2.26.2

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/hdcp: mst streams type1 capability check
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
@ 2021-01-27 14:59 ` Patchwork
  2021-01-27 17:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2021-01-27 14:59 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: mst streams type1 capability check
URL   : https://patchwork.freedesktop.org/series/86345/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9687 -> Patchwork_19517
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

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

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

  * igt@gem_flink_basic@bad-flink:
    - fi-tgl-y:           [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/fi-tgl-y/igt@gem_flink_basic@bad-flink.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/fi-tgl-y/igt@gem_flink_basic@bad-flink.html

  * igt@i915_pm_rpm@module-reload:
    - fi-kbl-7500u:       [PASS][5] -> [DMESG-WARN][6] ([i915#2605])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/fi-kbl-7500u/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/fi-kbl-7500u/igt@i915_pm_rpm@module-reload.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html

  
#### Possible fixes ####

  * igt@kms_chamelium@dp-crc-fast:
    - fi-icl-u2:          [FAIL][8] ([i915#1161] / [i915#262]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html

  * igt@prime_vgem@basic-gtt:
    - fi-tgl-y:           [DMESG-WARN][10] ([i915#402]) -> [PASS][11] +2 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/fi-tgl-y/igt@prime_vgem@basic-gtt.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/fi-tgl-y/igt@prime_vgem@basic-gtt.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
  [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
  [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605
  [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402


Participating hosts (45 -> 39)
------------------------------

  Missing    (6): fi-jsl-1 fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus 


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

  * Linux: CI_DRM_9687 -> Patchwork_19517

  CI-20190529: 20190529
  CI_DRM_9687: 7b5229b02338bfb24c3db4e76abb328d1e9cf8f1 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5974: a85398dcae50930c0e27548cf8c9575ad0bf69d1 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_19517: ea0ed47d998c3704ead35b0a755a640fe6ca4616 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

ea0ed47d998c drm/i915/hdcp: mst streams type1 capability check

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 4738 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] 13+ messages in thread

* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/hdcp: mst streams type1 capability check
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
  2021-01-27 14:59 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-01-27 17:55 ` Patchwork
  2021-03-16 12:50 ` [Intel-gfx] [PATCH] " Nautiyal, Ankit K
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2021-01-27 17:55 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: mst streams type1 capability check
URL   : https://patchwork.freedesktop.org/series/86345/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9687_full -> Patchwork_19517_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@chamelium:
    - shard-iclb:         NOTRUN -> [SKIP][1] ([fdo#111827])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@feature_discovery@chamelium.html

  * igt@gem_ctx_persistence@clone:
    - shard-hsw:          NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1099])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-hsw2/igt@gem_ctx_persistence@clone.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][3] -> [FAIL][4] ([i915#2846])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          [PASS][5] -> [FAIL][6] ([i915#2846])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-glk6/igt@gem_exec_fair@basic-deadline.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-glk3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([i915#2842])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-kbl2/igt@gem_exec_fair@basic-none@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl6/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-apl:          [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842]) +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb3/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][14] -> [FAIL][15] ([i915#2849])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-many-active@vcs0:
    - shard-kbl:          NOTRUN -> [FAIL][16] ([i915#2389]) +4 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl7/igt@gem_exec_reloc@basic-many-active@vcs0.html

  * igt@gem_exec_schedule@u-fairslice@rcs0:
    - shard-tglb:         [PASS][17] -> [DMESG-WARN][18] ([i915#2803])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb2/igt@gem_exec_schedule@u-fairslice@rcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb7/igt@gem_exec_schedule@u-fairslice@rcs0.html

  * igt@gem_exec_schedule@u-fairslice@vcs0:
    - shard-iclb:         [PASS][19] -> [DMESG-WARN][20] ([i915#2803])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb6/igt@gem_exec_schedule@u-fairslice@vcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb7/igt@gem_exec_schedule@u-fairslice@vcs0.html

  * igt@gem_render_copy@yf-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][21] ([i915#768]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-linear.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([fdo#109312])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-iclb:         NOTRUN -> [SKIP][23] ([fdo#109289])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html

  * igt@i915_hangman@engine-error@vecs0:
    - shard-kbl:          NOTRUN -> [SKIP][24] ([fdo#109271]) +32 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html

  * igt@i915_selftest@live@hangcheck:
    - shard-hsw:          NOTRUN -> [INCOMPLETE][25] ([i915#2782])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-hsw2/igt@i915_selftest@live@hangcheck.html

  * igt@kms_ccs@pipe-c-crc-primary-basic:
    - shard-skl:          NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111304])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_ccs@pipe-c-crc-primary-basic.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-glk:          NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-glk3/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium@vga-hpd-enable-disable-mode:
    - shard-hsw:          NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-hsw2/igt@kms_chamelium@vga-hpd-enable-disable-mode.html

  * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
    - shard-kbl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl7/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-skl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109300] / [fdo#111066])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen:
    - shard-skl:          NOTRUN -> [FAIL][33] ([i915#54])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x42-random:
    - shard-skl:          [PASS][34] -> [FAIL][35] ([i915#54]) +2 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-random.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl4/igt@kms_cursor_crc@pipe-c-cursor-128x42-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-128x42-random:
    - shard-glk:          NOTRUN -> [SKIP][36] ([fdo#109271]) +3 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-glk3/igt@kms_cursor_crc@pipe-d-cursor-128x42-random.html

  * igt@kms_cursor_edge_walk@pipe-d-64x64-top-edge:
    - shard-hsw:          NOTRUN -> [SKIP][37] ([fdo#109271]) +14 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-hsw2/igt@kms_cursor_edge_walk@pipe-d-64x64-top-edge.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-hsw:          [PASS][38] -> [FAIL][39] ([i915#96])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109274] / [fdo#109278])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-tglb:         [PASS][41] -> [FAIL][42] ([i915#2598])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

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

  * igt@kms_flip@flip-vs-suspend@a-edp1:
    - shard-skl:          [PASS][45] -> [INCOMPLETE][46] ([i915#198]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl10/igt@kms_flip@flip-vs-suspend@a-edp1.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl3/igt@kms_flip@flip-vs-suspend@a-edp1.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-edp1:
    - shard-skl:          [PASS][47] -> [DMESG-WARN][48] ([i915#1982])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl10/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-edp1.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl9/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-edp1.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109280]) +3 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-skl:          [PASS][50] -> [INCOMPLETE][51] ([i915#123])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl9/igt@kms_frontbuffer_tracking@psr-suspend.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl1/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_hdr@bpc-switch:
    - shard-skl:          NOTRUN -> [FAIL][52] ([i915#1188])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_hdr@bpc-switch.html

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

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-skl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#533]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
    - shard-skl:          NOTRUN -> [FAIL][55] ([fdo#108145] / [i915#265])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [PASS][56] -> [FAIL][57] ([fdo#108145] / [i915#265]) +2 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_plane_cursor@pipe-d-viewport-size-64:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109278]) +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_plane_cursor@pipe-d-viewport-size-64.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109274]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([i915#658])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
    - shard-skl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#658])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-kbl:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#658])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [PASS][63] -> [SKIP][64] ([fdo#109642] / [fdo#111068] / [i915#658])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb3/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109441])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_psr@psr2_dpms.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [PASS][66] -> [SKIP][67] ([fdo#109441]) +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_psr@psr2_primary_page_flip.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-skl:          NOTRUN -> [SKIP][68] ([fdo#109271]) +35 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl7/igt@nouveau_crc@pipe-d-ctx-flip-detection.html
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278] / [i915#2530])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@sysfs_timeslice_duration@timeout@vecs0:
    - shard-skl:          [PASS][70] -> [FAIL][71] ([i915#2825])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl2/igt@sysfs_timeslice_duration@timeout@vecs0.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl4/igt@sysfs_timeslice_duration@timeout@vecs0.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@smoketest:
    - shard-iclb:         [FAIL][72] ([i915#2896]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb1/igt@gem_ctx_persistence@smoketest.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb3/igt@gem_ctx_persistence@smoketest.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][74] ([i915#2842]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [FAIL][76] ([i915#2842]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_whisper@basic-fds-priority:
    - shard-iclb:         [INCOMPLETE][78] ([i915#1394]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb7/igt@gem_exec_whisper@basic-fds-priority.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@gem_exec_whisper@basic-fds-priority.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [DMESG-WARN][80] ([i915#1436] / [i915#716]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-glk6/igt@gen9_exec_parse@allowed-all.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-glk3/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][82] ([i915#454]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb6/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_color@pipe-b-ctm-max:
    - shard-skl:          [DMESG-WARN][84] ([i915#1982]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl2/igt@kms_color@pipe-b-ctm-max.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl4/igt@kms_color@pipe-b-ctm-max.html

  * igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen:
    - shard-skl:          [FAIL][86] ([i915#54]) -> [PASS][87] +9 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl5/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl8/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-skl:          [FAIL][88] ([i915#79]) -> [PASS][89] +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          [DMESG-WARN][90] ([i915#180]) -> [PASS][91] +3 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a1:
    - shard-hsw:          [INCOMPLETE][92] ([i915#2055]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-hsw4/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-hsw5/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-skl:          [FAIL][94] ([i915#1188]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-skl1/igt@kms_hdr@bpc-switch-suspend.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-skl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][96] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb5/igt@kms_psr2_su@page_flip.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][98] ([fdo#109441]) -> [PASS][99] +2 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  * {igt@sysfs_clients@busy@vcs0}:
    - shard-kbl:          [FAIL][100] -> [PASS][101] +2 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-kbl3/igt@sysfs_clients@busy@vcs0.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-kbl1/igt@sysfs_clients@busy@vcs0.html

  * {igt@sysfs_clients@busy@vecs0}:
    - shard-apl:          [FAIL][102] -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-apl4/igt@sysfs_clients@busy@vecs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-apl8/igt@sysfs_clients@busy@vecs0.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-iclb:         [WARN][104] ([i915#2681] / [i915#2684]) -> [WARN][105] ([i915#1804] / [i915#2684])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb1/igt@i915_pm_rc6_residency@rc6-fence.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb4/igt@i915_pm_rc6_residency@rc6-fence.html

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

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [DMESG-WARN][108] ([i915#1226]) -> [SKIP][109] ([fdo#109349])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-iclb:         [SKIP][110] ([i915#2920]) -> [SKIP][111] ([i915#658])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-iclb:         [SKIP][112] ([i915#658]) -> [SKIP][113] ([i915#2920]) +2 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@runner@aborted:
    - shard-iclb:         ([FAIL][114], [FAIL][115], [FAIL][116]) ([i915#2295] / [i915#2724]) -> ([FAIL][117], [FAIL][118], [FAIL][119]) ([i915#2295] / [i915#2426] / [i915#2724])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb6/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb6/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-iclb5/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb6/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb7/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-iclb2/igt@runner@aborted.html
    - shard-tglb:         ([FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123]) ([i915#1602] / [i915#2295] / [i915#2667]) -> ([FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127]) ([i915#1602] / [i915#2295] / [i915#2426] / [i915#2667] / [i915#2803])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb1/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb2/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb7/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9687/shard-tglb1/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb7/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb7/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb2/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19517/shard-tglb1/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#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111304]: https://bugs.freedesktop.org/show_bug.cgi?id=111304
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
  [i915#123]: https://gitlab.freedesktop.org/drm/intel/issues/123
  [i915#1394]: https://gitlab.freedesktop.org/drm/intel/issues/1394
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
  [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2667]: https://gitlab.freedesktop.org/drm/intel/issues/2667
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2803]: https://gitlab.freedesktop.org/drm/intel/issues/2803
  [i915#2825]: https://gitlab.freedesktop.org/drm/intel/issues/2825
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2896]: https://gitlab.freedesktop.org/drm/intel/issues/2896
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96


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

  No changes in participating hosts


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

  * Linux: CI_DRM_9687 -> Patchwork_19517

  CI-20190529: 20190529
  CI_DRM_9687: 7b5229b02338bfb24c3db4e76abb328d1e9cf8f1 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5974: a85398dcae50930c0e27548cf8c9575ad0bf69d1 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_19517: ea0ed47d998c3704ead35b0a755a640fe6ca4616 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 36246 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] 13+ messages in thread

* Re: [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
  2021-01-27 14:59 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
  2021-01-27 17:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
@ 2021-03-16 12:50 ` Nautiyal, Ankit K
  2021-03-16 13:06   ` Nautiyal, Ankit K
  2021-03-19  9:17 ` Anshuman Gupta
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 13+ messages in thread
From: Nautiyal, Ankit K @ 2021-03-16 12:50 UTC (permalink / raw)
  To: Anshuman Gupta, intel-gfx; +Cc: Sean Paul

Hi Anshuman,

I agree with the patch. Overall looks good.

There is a correction suggested below:

On 1/27/2021 3:30 PM, Anshuman Gupta wrote:
> It requires to check streams type1 capability in mst topology
> by checking Rxinfo instead connector HDCP2.x capability in
> order to enforce type0 stream encryption in a mix of
> HDCP {1.x,2.x} mst topology.
> Rxcaps always shows HDCP 2.x capability of immediate downstream
> connector. Let's use Rxinfo HDCP1_DEVICE_DOWNSTREAM bit to
> detect a HDCP {1.x,2.x} mix mst topology.
>
> Cc: Sean Paul <seanpaul@chromium.org>
> Cc: Ramalingam C <ramalingam.c@intel.com>
> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
> ---
>   .../drm/i915/display/intel_display_types.h    |  4 ++
>   drivers/gpu/drm/i915/display/intel_dp_hdcp.c  | 39 +++++++++++++++++++
>   drivers/gpu/drm/i915/display/intel_hdcp.c     | 17 +++++++-
>   3 files changed, 59 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
> index 39397748b4b0..cfc9ec82f117 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -373,6 +373,10 @@ struct intel_hdcp_shim {
>   	int (*hdcp_2_2_capable)(struct intel_digital_port *dig_port,
>   				bool *capable);
>   
> +	/* Detects whether a HDCP 1.4 sink connected in MST topology */
> +	int (*streams_type1_capable)(struct intel_connector *connector,
> +				     bool *capable);
> +
>   	/* Write HDCP2.2 messages */
>   	int (*write_2_2_msg)(struct intel_digital_port *dig_port,
>   			     void *buf, size_t size);
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> index f372e25edab4..35e3b0e4c740 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> @@ -478,6 +478,23 @@ int intel_dp_hdcp2_write_msg(struct intel_digital_port *dig_port,
>   	return size;
>   }
>   
> +static int
> +get_rxinfo_hdcp_1_dev_downstream(struct intel_digital_port *dig_port, bool *hdcp_1_x)
> +{
> +	u8 rx_info[HDCP_2_2_RXINFO_LEN];
> +	int ret;
> +
> +	ret = drm_dp_dpcd_read(&dig_port->dp.aux,
> +			       DP_HDCP_2_2_REG_RXINFO_OFFSET,
> +			       (void *)rx_info, HDCP_2_2_RXINFO_LEN);
> +
> +	if (ret != HDCP_2_2_RXINFO_LEN)
> +		return ret >= 0 ? -EIO : ret;
> +
> +	*hdcp_1_x = HDCP_2_2_HDCP1_DEVICE_CONNECTED(rx_info[1]) ? true : false;

I think this should be rx_info[0] as we are checking for bit 0 of the 
first byte as per rxInfo bit field definitions.

Regards,

Ankit


> +	return 0;
> +}
> +
>   static
>   ssize_t get_receiver_id_list_size(struct intel_digital_port *dig_port)
>   {
> @@ -626,6 +643,27 @@ int intel_dp_hdcp2_capable(struct intel_digital_port *dig_port,
>   	return 0;
>   }
>   
> +static
> +int intel_dp_mst_streams_type1_capable(struct intel_connector *connector,
> +				       bool *capable)
> +{
> +	struct intel_digital_port *dig_port = intel_attached_dig_port(connector);
> +	struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev);
> +	int ret;
> +	bool hdcp_1_x;
> +
> +	ret = get_rxinfo_hdcp_1_dev_downstream(dig_port, &hdcp_1_x);
> +	if (ret) {
> +		drm_dbg_kms(&i915->drm,
> +			    "[%s:%d] failed to read RxInfo ret=%d\n",
> +			    connector->base.name, connector->base.base.id, ret);
> +		return ret;
> +	}
> +
> +	*capable = !hdcp_1_x;
> +	return 0;
> +}
> +
>   static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
>   	.write_an_aksv = intel_dp_hdcp_write_an_aksv,
>   	.read_bksv = intel_dp_hdcp_read_bksv,
> @@ -813,6 +851,7 @@ static const struct intel_hdcp_shim intel_dp_mst_hdcp_shim = {
>   	.stream_2_2_encryption = intel_dp_mst_hdcp2_stream_encryption,
>   	.check_2_2_link = intel_dp_mst_hdcp2_check_link,
>   	.hdcp_2_2_capable = intel_dp_hdcp2_capable,
> +	.streams_type1_capable = intel_dp_mst_streams_type1_capable,
>   	.protocol = HDCP_PROTOCOL_DP,
>   };
>   
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
> index ae1371c36a32..5b2e2625779b 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
> @@ -32,6 +32,21 @@ static int intel_conn_to_vcpi(struct intel_connector *connector)
>   	return connector->port	? connector->port->vcpi.vcpi : 0;
>   }
>   
> +static bool
> +intel_streams_type1_capable(struct intel_connector *connector)
> +{
> +	const struct intel_hdcp_shim *shim = connector->hdcp.shim;
> +	bool capable = false;
> +
> +	if (!shim)
> +		return capable;
> +
> +	if (shim->streams_type1_capable)
> +		shim->streams_type1_capable(connector, &capable);
> +
> +	return capable;
> +}
> +
>   /*
>    * intel_hdcp_required_content_stream selects the most highest common possible HDCP
>    * content_type for all streams in DP MST topology because security f/w doesn't
> @@ -70,7 +85,7 @@ intel_hdcp_required_content_stream(struct intel_digital_port *dig_port)
>   		if (conn_dig_port != dig_port)
>   			continue;
>   
> -		if (!enforce_type0 && !intel_hdcp2_capable(connector))
> +		if (!enforce_type0 && !intel_streams_type1_capable(connector))
>   			enforce_type0 = true;
>   
>   		data->streams[data->k].stream_id = intel_conn_to_vcpi(connector);
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check
  2021-03-16 12:50 ` [Intel-gfx] [PATCH] " Nautiyal, Ankit K
@ 2021-03-16 13:06   ` Nautiyal, Ankit K
  0 siblings, 0 replies; 13+ messages in thread
From: Nautiyal, Ankit K @ 2021-03-16 13:06 UTC (permalink / raw)
  To: Anshuman Gupta, intel-gfx; +Cc: Sean Paul

Sorry my mistake, I did not take into account the endianness.

Patch looks good to me.

Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>


On 3/16/2021 6:20 PM, Nautiyal, Ankit K wrote:
> Hi Anshuman,
>
> I agree with the patch. Overall looks good.
>
> There is a correction suggested below:
>
> On 1/27/2021 3:30 PM, Anshuman Gupta wrote:
>> It requires to check streams type1 capability in mst topology
>> by checking Rxinfo instead connector HDCP2.x capability in
>> order to enforce type0 stream encryption in a mix of
>> HDCP {1.x,2.x} mst topology.
>> Rxcaps always shows HDCP 2.x capability of immediate downstream
>> connector. Let's use Rxinfo HDCP1_DEVICE_DOWNSTREAM bit to
>> detect a HDCP {1.x,2.x} mix mst topology.
>>
>> Cc: Sean Paul <seanpaul@chromium.org>
>> Cc: Ramalingam C <ramalingam.c@intel.com>
>> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
>> ---
>>   .../drm/i915/display/intel_display_types.h    |  4 ++
>>   drivers/gpu/drm/i915/display/intel_dp_hdcp.c  | 39 +++++++++++++++++++
>>   drivers/gpu/drm/i915/display/intel_hdcp.c     | 17 +++++++-
>>   3 files changed, 59 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h 
>> b/drivers/gpu/drm/i915/display/intel_display_types.h
>> index 39397748b4b0..cfc9ec82f117 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
>> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
>> @@ -373,6 +373,10 @@ struct intel_hdcp_shim {
>>       int (*hdcp_2_2_capable)(struct intel_digital_port *dig_port,
>>                   bool *capable);
>>   +    /* Detects whether a HDCP 1.4 sink connected in MST topology */
>> +    int (*streams_type1_capable)(struct intel_connector *connector,
>> +                     bool *capable);
>> +
>>       /* Write HDCP2.2 messages */
>>       int (*write_2_2_msg)(struct intel_digital_port *dig_port,
>>                    void *buf, size_t size);
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c 
>> b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
>> index f372e25edab4..35e3b0e4c740 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
>> @@ -478,6 +478,23 @@ int intel_dp_hdcp2_write_msg(struct 
>> intel_digital_port *dig_port,
>>       return size;
>>   }
>>   +static int
>> +get_rxinfo_hdcp_1_dev_downstream(struct intel_digital_port 
>> *dig_port, bool *hdcp_1_x)
>> +{
>> +    u8 rx_info[HDCP_2_2_RXINFO_LEN];
>> +    int ret;
>> +
>> +    ret = drm_dp_dpcd_read(&dig_port->dp.aux,
>> +                   DP_HDCP_2_2_REG_RXINFO_OFFSET,
>> +                   (void *)rx_info, HDCP_2_2_RXINFO_LEN);
>> +
>> +    if (ret != HDCP_2_2_RXINFO_LEN)
>> +        return ret >= 0 ? -EIO : ret;
>> +
>> +    *hdcp_1_x = HDCP_2_2_HDCP1_DEVICE_CONNECTED(rx_info[1]) ? true : 
>> false;
>
> I think this should be rx_info[0] as we are checking for bit 0 of the 
> first byte as per rxInfo bit field definitions.
>
> Regards,
>
> Ankit
>
>
>> +    return 0;
>> +}
>> +
>>   static
>>   ssize_t get_receiver_id_list_size(struct intel_digital_port *dig_port)
>>   {
>> @@ -626,6 +643,27 @@ int intel_dp_hdcp2_capable(struct 
>> intel_digital_port *dig_port,
>>       return 0;
>>   }
>>   +static
>> +int intel_dp_mst_streams_type1_capable(struct intel_connector 
>> *connector,
>> +                       bool *capable)
>> +{
>> +    struct intel_digital_port *dig_port = 
>> intel_attached_dig_port(connector);
>> +    struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev);
>> +    int ret;
>> +    bool hdcp_1_x;
>> +
>> +    ret = get_rxinfo_hdcp_1_dev_downstream(dig_port, &hdcp_1_x);
>> +    if (ret) {
>> +        drm_dbg_kms(&i915->drm,
>> +                "[%s:%d] failed to read RxInfo ret=%d\n",
>> +                connector->base.name, connector->base.base.id, ret);
>> +        return ret;
>> +    }
>> +
>> +    *capable = !hdcp_1_x;
>> +    return 0;
>> +}
>> +
>>   static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
>>       .write_an_aksv = intel_dp_hdcp_write_an_aksv,
>>       .read_bksv = intel_dp_hdcp_read_bksv,
>> @@ -813,6 +851,7 @@ static const struct intel_hdcp_shim 
>> intel_dp_mst_hdcp_shim = {
>>       .stream_2_2_encryption = intel_dp_mst_hdcp2_stream_encryption,
>>       .check_2_2_link = intel_dp_mst_hdcp2_check_link,
>>       .hdcp_2_2_capable = intel_dp_hdcp2_capable,
>> +    .streams_type1_capable = intel_dp_mst_streams_type1_capable,
>>       .protocol = HDCP_PROTOCOL_DP,
>>   };
>>   diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c 
>> b/drivers/gpu/drm/i915/display/intel_hdcp.c
>> index ae1371c36a32..5b2e2625779b 100644
>> --- a/drivers/gpu/drm/i915/display/intel_hdcp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
>> @@ -32,6 +32,21 @@ static int intel_conn_to_vcpi(struct 
>> intel_connector *connector)
>>       return connector->port    ? connector->port->vcpi.vcpi : 0;
>>   }
>>   +static bool
>> +intel_streams_type1_capable(struct intel_connector *connector)
>> +{
>> +    const struct intel_hdcp_shim *shim = connector->hdcp.shim;
>> +    bool capable = false;
>> +
>> +    if (!shim)
>> +        return capable;
>> +
>> +    if (shim->streams_type1_capable)
>> +        shim->streams_type1_capable(connector, &capable);
>> +
>> +    return capable;
>> +}
>> +
>>   /*
>>    * intel_hdcp_required_content_stream selects the most highest 
>> common possible HDCP
>>    * content_type for all streams in DP MST topology because security 
>> f/w doesn't
>> @@ -70,7 +85,7 @@ intel_hdcp_required_content_stream(struct 
>> intel_digital_port *dig_port)
>>           if (conn_dig_port != dig_port)
>>               continue;
>>   -        if (!enforce_type0 && !intel_hdcp2_capable(connector))
>> +        if (!enforce_type0 && !intel_streams_type1_capable(connector))
>>               enforce_type0 = true;
>>             data->streams[data->k].stream_id = 
>> intel_conn_to_vcpi(connector);
> _______________________________________________
> 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] 13+ messages in thread

* [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
                   ` (2 preceding siblings ...)
  2021-03-16 12:50 ` [Intel-gfx] [PATCH] " Nautiyal, Ankit K
@ 2021-03-19  9:17 ` Anshuman Gupta
  2021-03-19 10:55 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1 capability check (rev2) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Anshuman Gupta @ 2021-03-19  9:17 UTC (permalink / raw)
  To: intel-gfx; +Cc: Sean Paul

It requires to check streams type1 capability in mst topology
by checking Rxinfo instead connector HDCP2.x capability in
order to enforce type0 stream encryption in a mix of
HDCP {1.x,2.x} mst topology.
Rxcaps always shows HDCP 2.x capability of immediate downstream
connector. Let's use Rxinfo HDCP1_DEVICE_DOWNSTREAM bit to
detect a HDCP {1.x,2.x} mix mst topology.

Cc: Sean Paul <seanpaul@chromium.org>
Cc: Ramalingam C <ramalingam.c@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 .../drm/i915/display/intel_display_types.h    |  4 ++
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c  | 39 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_hdcp.c     | 17 +++++++-
 3 files changed, 59 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 8d9113fa82c7..6a0274d6a106 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -380,6 +380,10 @@ struct intel_hdcp_shim {
 	int (*hdcp_2_2_capable)(struct intel_digital_port *dig_port,
 				bool *capable);
 
+	/* Detects whether a HDCP 1.4 sink connected in MST topology */
+	int (*streams_type1_capable)(struct intel_connector *connector,
+				     bool *capable);
+
 	/* Write HDCP2.2 messages */
 	int (*write_2_2_msg)(struct intel_digital_port *dig_port,
 			     void *buf, size_t size);
diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
index 40c516e90193..d8b2960578ba 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
@@ -478,6 +478,23 @@ int intel_dp_hdcp2_write_msg(struct intel_digital_port *dig_port,
 	return size;
 }
 
+static int
+get_rxinfo_hdcp_1_dev_downstream(struct intel_digital_port *dig_port, bool *hdcp_1_x)
+{
+	u8 rx_info[HDCP_2_2_RXINFO_LEN];
+	int ret;
+
+	ret = drm_dp_dpcd_read(&dig_port->dp.aux,
+			       DP_HDCP_2_2_REG_RXINFO_OFFSET,
+			       (void *)rx_info, HDCP_2_2_RXINFO_LEN);
+
+	if (ret != HDCP_2_2_RXINFO_LEN)
+		return ret >= 0 ? -EIO : ret;
+
+	*hdcp_1_x = HDCP_2_2_HDCP1_DEVICE_CONNECTED(rx_info[1]) ? true : false;
+	return 0;
+}
+
 static
 ssize_t get_receiver_id_list_size(struct intel_digital_port *dig_port)
 {
@@ -626,6 +643,27 @@ int intel_dp_hdcp2_capable(struct intel_digital_port *dig_port,
 	return 0;
 }
 
+static
+int intel_dp_mst_streams_type1_capable(struct intel_connector *connector,
+				       bool *capable)
+{
+	struct intel_digital_port *dig_port = intel_attached_dig_port(connector);
+	struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev);
+	int ret;
+	bool hdcp_1_x;
+
+	ret = get_rxinfo_hdcp_1_dev_downstream(dig_port, &hdcp_1_x);
+	if (ret) {
+		drm_dbg_kms(&i915->drm,
+			    "[%s:%d] failed to read RxInfo ret=%d\n",
+			    connector->base.name, connector->base.base.id, ret);
+		return ret;
+	}
+
+	*capable = !hdcp_1_x;
+	return 0;
+}
+
 static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
 	.write_an_aksv = intel_dp_hdcp_write_an_aksv,
 	.read_bksv = intel_dp_hdcp_read_bksv,
@@ -774,6 +812,7 @@ static const struct intel_hdcp_shim intel_dp_mst_hdcp_shim = {
 	.stream_2_2_encryption = intel_dp_mst_hdcp2_stream_encryption,
 	.check_2_2_link = intel_dp_mst_hdcp2_check_link,
 	.hdcp_2_2_capable = intel_dp_hdcp2_capable,
+	.streams_type1_capable = intel_dp_mst_streams_type1_capable,
 	.protocol = HDCP_PROTOCOL_DP,
 };
 
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index ae1371c36a32..5b2e2625779b 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -32,6 +32,21 @@ static int intel_conn_to_vcpi(struct intel_connector *connector)
 	return connector->port	? connector->port->vcpi.vcpi : 0;
 }
 
+static bool
+intel_streams_type1_capable(struct intel_connector *connector)
+{
+	const struct intel_hdcp_shim *shim = connector->hdcp.shim;
+	bool capable = false;
+
+	if (!shim)
+		return capable;
+
+	if (shim->streams_type1_capable)
+		shim->streams_type1_capable(connector, &capable);
+
+	return capable;
+}
+
 /*
  * intel_hdcp_required_content_stream selects the most highest common possible HDCP
  * content_type for all streams in DP MST topology because security f/w doesn't
@@ -70,7 +85,7 @@ intel_hdcp_required_content_stream(struct intel_digital_port *dig_port)
 		if (conn_dig_port != dig_port)
 			continue;
 
-		if (!enforce_type0 && !intel_hdcp2_capable(connector))
+		if (!enforce_type0 && !intel_streams_type1_capable(connector))
 			enforce_type0 = true;
 
 		data->streams[data->k].stream_id = intel_conn_to_vcpi(connector);
-- 
2.26.2

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

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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
                   ` (3 preceding siblings ...)
  2021-03-19  9:17 ` Anshuman Gupta
@ 2021-03-19 10:55 ` Patchwork
  2021-03-22  5:05   ` Gupta, Anshuman
  2021-03-19 11:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2021-03-19 10:55 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
URL   : https://patchwork.freedesktop.org/series/86345/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
bb93c668b788 drm/i915/hdcp: mst streams type1 capability check
-:18: WARNING:BAD_SIGN_OFF: Duplicate signature
#18: 
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>

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


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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
                   ` (4 preceding siblings ...)
  2021-03-19 10:55 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1 capability check (rev2) Patchwork
@ 2021-03-19 11:24 ` Patchwork
  2021-03-19 13:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  2021-03-22 16:13 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2021-03-19 11:24 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
URL   : https://patchwork.freedesktop.org/series/86345/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9874 -> Patchwork_19809
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_gttfill@basic:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][1] ([fdo#109271])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-bsw-n3050/igt@gem_exec_gttfill@basic.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-bsw-n3050:       NOTRUN -> [INCOMPLETE][2] ([i915#3159])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-bsw-n3050/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_pm_rpm@module-reload:
    - fi-kbl-guc:         [PASS][3] -> [SKIP][4] ([fdo#109271])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [PASS][5] -> [INCOMPLETE][6] ([i915#2940])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@runner@aborted:
    - fi-bsw-nick:        NOTRUN -> [FAIL][7] ([i915#1436] / [i915#2722])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-bsw-nick/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s0:
    - fi-tgl-u2:          [FAIL][8] ([i915#1888]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_linear_blits@basic:
    - fi-kbl-8809g:       [TIMEOUT][10] ([i915#2502] / [i915#3145]) -> [PASS][11] +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/fi-kbl-8809g/igt@gem_linear_blits@basic.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/fi-kbl-8809g/igt@gem_linear_blits@basic.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2502]: https://gitlab.freedesktop.org/drm/intel/issues/2502
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145
  [i915#3159]: https://gitlab.freedesktop.org/drm/intel/issues/3159


Participating hosts (43 -> 40)
------------------------------

  Additional (1): fi-bsw-n3050 
  Missing    (4): fi-ilk-m540 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u 


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

  * Linux: CI_DRM_9874 -> Patchwork_19809

  CI-20190529: 20190529
  CI_DRM_9874: f558775d4112feb4ce86f9ef4c6eba8ef32a0f2c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6039: 8c4a2cda2a92bdd87797969ef299ad7f6e8e993b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_19809: bb93c668b7887a187dc8e31df18d3f3311f30597 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

bb93c668b788 drm/i915/hdcp: mst streams type1 capability check

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 4697 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] 13+ messages in thread

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
                   ` (5 preceding siblings ...)
  2021-03-19 11:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2021-03-19 13:26 ` Patchwork
  2021-03-22  5:19   ` Anshuman Gupta
  2021-03-22 16:13 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2021-03-19 13:26 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
URL   : https://patchwork.freedesktop.org/series/86345/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_9874_full -> Patchwork_19809_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c:
    - shard-skl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c.html

  

### Piglit changes ###

#### Possible regressions ####

  * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position (NEW):
    - {pig-icl-1065g7}:   NOTRUN -> [CRASH][2] +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g7/spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position.html

  * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3 (NEW):
    - {pig-icl-1065g7}:   NOTRUN -> [INCOMPLETE][3] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g7/spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3.html

  
New tests
---------

  New tests have been introduced between CI_DRM_9874_full and Patchwork_19809_full:

### New Piglit tests (6) ###

  * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat2x3-position-double_dvec3:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position:
    - Statuses : 1 crash(s)
    - Exec time: [1.02] s

  * spec@glsl-4.20@execution@vs_in@vs-input-float_float-position-double_dvec3:
    - Statuses : 1 crash(s)
    - Exec time: [1.06] s

  * spec@glsl-4.20@execution@vs_in@vs-input-position-int_ivec4_array3-double_dvec2_array2:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec3-short_int-position-double_dvec4:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@chamelium:
    - shard-iclb:         NOTRUN -> [SKIP][4] ([fdo#111827])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@feature_discovery@chamelium.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@clone:
    - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +6 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_ctx_persistence@clone.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-kbl:          NOTRUN -> [SKIP][7] ([fdo#109271]) +11 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-tglb:         [PASS][8] -> [TIMEOUT][9] ([i915#3063])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb7/igt@gem_eio@in-flight-contexts-10ms.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb1/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-skl:          NOTRUN -> [FAIL][10] ([i915#2846])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][15] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][16] ([fdo#109283])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-iclb:         NOTRUN -> [SKIP][17] ([fdo#112283])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_params@secure-non-root.html

  * igt@gem_exec_reloc@basic-parallel:
    - shard-skl:          NOTRUN -> [TIMEOUT][18] ([i915#3183])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@gem_exec_reloc@basic-parallel.html
    - shard-apl:          NOTRUN -> [TIMEOUT][19] ([i915#3183])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@gem_exec_reloc@basic-parallel.html

  * igt@gem_exec_schedule@u-fairslice@vcs0:
    - shard-tglb:         [PASS][20] -> [DMESG-WARN][21] ([i915#2803])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb5/igt@gem_exec_schedule@u-fairslice@vcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/igt@gem_exec_schedule@u-fairslice@vcs0.html

  * igt@gem_exec_whisper@basic-fds-priority-all:
    - shard-glk:          [PASS][22] -> [DMESG-WARN][23] ([i915#118] / [i915#95]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk8/igt@gem_exec_whisper@basic-fds-priority-all.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html

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

  * igt@gem_mmap_gtt@big-copy-odd:
    - shard-skl:          [PASS][25] -> [FAIL][26] ([i915#307])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@gem_mmap_gtt@big-copy-odd.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@gem_mmap_gtt@big-copy-odd.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][27] ([i915#2658])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_pwrite@basic-exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][28] ([i915#2658])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][29] ([i915#3002])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@gem_userptr_blits@input-checking.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][30] ([i915#3002])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
    - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1699]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@gem_userptr_blits@process-exit-mmap-busy@wc.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-apl:          NOTRUN -> [INCOMPLETE][32] ([i915#2502] / [i915#2667])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-skl:          [PASS][33] -> [DMESG-WARN][34] ([i915#1436] / [i915#716])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl4/igt@gen9_exec_parse@allowed-single.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-skl:          NOTRUN -> [FAIL][35] ([i915#454])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271]) +180 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@i915_selftest@live@gt_pm:
    - shard-skl:          NOTRUN -> [DMESG-FAIL][37] ([i915#1886] / [i915#2291])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-kbl:          [PASS][38] -> [DMESG-WARN][39] ([i915#180])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl3/igt@i915_suspend@fence-restore-untiled.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_joiner@basic:
    - shard-apl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#2705]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_big_joiner@basic.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +19 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - shard-skl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-5:
    - shard-glk:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_color_chamelium@pipe-b-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

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

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][47] ([i915#1319]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_content_protection@lic.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
    - shard-skl:          [PASS][48] -> [FAIL][49] ([i915#54])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen:
    - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271]) +25 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109278]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-random.html

  * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
    - shard-snb:          NOTRUN -> [SKIP][53] ([fdo#109271]) +367 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html

  * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
    - shard-apl:          NOTRUN -> [DMESG-FAIL][54] ([IGT#6])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#533]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html
    - shard-skl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#533])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][57] -> [INCOMPLETE][58] ([i915#180])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109274])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [PASS][60] -> [DMESG-WARN][61] ([i915#180])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1:
    - shard-glk:          [PASS][62] -> [FAIL][63] ([i915#2122])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-glk:          NOTRUN -> [FAIL][64] ([i915#2628])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
    - shard-skl:          NOTRUN -> [SKIP][65] ([fdo#109271]) +80 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +5 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          NOTRUN -> [DMESG-WARN][67] ([i915#180])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

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

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-skl:          NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
    - shard-glk:          NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +3 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-skl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [PASS][74] -> [SKIP][75] ([fdo#109642] / [fdo#111068] / [i915#658])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][76] -> [SKIP][77] ([fdo#109441]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][78] ([i915#180] / [i915#295])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2437])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@polling-parameterized:
    - shard-skl:          [PASS][80] -> [FAIL][81] ([i915#1542])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@perf@polling-parameterized.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@perf@polling-parameterized.html

  * igt@prime_nv_test@i915_import_pread_pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109291])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@prime_nv_test@i915_import_pread_pwrite.html

  * igt@sysfs_clients@recycle:
    - shard-kbl:          [PASS][83] -> [FAIL][84] ([i915#3028]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@sysfs_clients@recycle.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@sysfs_clients@recycle.html

  * igt@sysfs_clients@recycle-many:
    - shard-snb:          NOTRUN -> [FAIL][85] ([i915#3028])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@sema-10@vcs0:
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#3026]) +2 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/igt@sysfs_clients@sema-10@vcs0.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@hang:
    - shard-iclb:         [INCOMPLETE][87] ([i915#1895] / [i915#3031]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@gem_exec_balancer@hang.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_balancer@hang.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90] +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk9/igt@gem_exec_fair@basic-none@vecs0.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_schedule@u-fairslice@rcs0:
    - shard-tglb:         [DMESG-WARN][91] ([i915#2803]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb5/igt@gem_exec_schedule@u-fairslice@rcs0.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/igt@gem_exec_schedule@u-fairslice@rcs0.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b:
    - shard-kbl:          [FAIL][93] ([i915#3168]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl6/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.html

  * igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen:
    - shard-skl:          [FAIL][95] ([i915#54]) -> [PASS][96] +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html

  * igt@kms_flip@basic-plain-flip@a-edp1:
    - shard-skl:          [DMESG-WARN][97] ([i915#1982]) -> [PASS][98] +2 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@kms_flip@basic-plain-flip@a-edp1.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@kms_flip@basic-plain-flip@a-edp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +2 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-skl:          [FAIL][101] ([i915#1188]) -> [PASS][102] +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@kms_hdr@bpc-switch-dpms.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [FAIL][103] ([fdo#108145] / [i915#265]) -> [PASS][104] +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][105] ([fdo#109441]) -> [PASS][106] +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb3/igt@kms_psr@psr2_basic.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/igt@kms_psr@psr2_basic.html

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

  * igt@sysfs_clients@busy@vecs0:
    - shard-skl:          [FAIL][109] ([i915#3019]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl10/igt@sysfs_clients@busy@vecs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl4/igt@sysfs_clients@busy@vecs0.html
    - shard-kbl:          [FAIL][111] ([i915#3009]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl2/igt@sysfs_clients@busy@vecs0.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl1/igt@sysfs_clients@busy@vecs0.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         [FAIL][113] ([i915#3028]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb6/igt@sysfs_clients@recycle-many.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb6/igt@sysfs_clients@recycle-many.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][115] ([i915#588]) -> [SKIP][116] ([i915#658])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-iclb:         [SKIP][117] ([fdo#109300] / [fdo#111066]) -> [FAIL][118] ([i915#3137]) +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb6/igt@kms_content_protection@atomic-dpms.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb1/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-iclb:         [FAIL][119] ([i915#3137]) -> [SKIP][120] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb1/igt@kms_content_protection@legacy.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb8/igt@kms_content_protection@legacy.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][121] ([i915#2920]) -> [SKIP][122] ([i915#658]) +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][123] ([i915#658]) -> [SKIP][124] ([i915#2920])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#2724] / [i915#3002]) -> ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131]) ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002]) -> ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142]) ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl3/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl6/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl2/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@runner@ab

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 34154 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] 13+ messages in thread

* Re: [Intel-gfx]  ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-03-19 10:55 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1 capability check (rev2) Patchwork
@ 2021-03-22  5:05   ` Gupta, Anshuman
  0 siblings, 0 replies; 13+ messages in thread
From: Gupta, Anshuman @ 2021-03-22  5:05 UTC (permalink / raw)
  To: intel-gfx



> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Friday, March 19, 2021 4:25 PM
> To: Gupta, Anshuman <anshuman.gupta@intel.com>
> Cc: intel-gfx@lists.freedesktop.org
> Subject: ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1
> capability check (rev2)
> 
> == Series Details ==
> 
> Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
> URL   : https://patchwork.freedesktop.org/series/86345/
> State : warning
> 
> == Summary ==
> 
> $ dim checkpatch origin/drm-tip
> bb93c668b788 drm/i915/hdcp: mst streams type1 capability check
> -:18: WARNING:BAD_SIGN_OFF: Duplicate signature
> #18:
> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
duplicated signature get added by mistake while floating the rebased patch, I will remove the duplicate signature while pushing this patch.
Thanks,
Anshuman Gupta.
> 
> total: 0 errors, 1 warnings, 0 checks, 96 lines checked
> 

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-03-19 13:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-03-22  5:19   ` Anshuman Gupta
  2021-03-22  6:43     ` Gupta, Anshuman
  0 siblings, 1 reply; 13+ messages in thread
From: Anshuman Gupta @ 2021-03-22  5:19 UTC (permalink / raw)
  To: intel-gfx, lakshminarayana.vudum

On 2021-03-19 at 13:26:16 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
> URL   : https://patchwork.freedesktop.org/series/86345/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_9874_full -> Patchwork_19809_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Patchwork_19809_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_19809_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_19809_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c:
>     - shard-skl:          NOTRUN -> [FAIL][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c.html
Hi Lakshmi ,
Above CI-IGT failures are not related to this patch, this patch is just a rebase and CI results were green at Rev1.
https://patchwork.freedesktop.org/series/86345/#rev1
Could please raise the issue for above failure and re-report the result.

Thanks,
Anshuman Gupta.
> 
>   
> 
> ### Piglit changes ###
> 
> #### Possible regressions ####
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position (NEW):
>     - {pig-icl-1065g7}:   NOTRUN -> [CRASH][2] +1 similar issue
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g7/spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position.html
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3 (NEW):
>     - {pig-icl-1065g7}:   NOTRUN -> [INCOMPLETE][3] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g7/spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_9874_full and Patchwork_19809_full:
> 
> ### New Piglit tests (6) ###
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat2x3-position-double_dvec3:
>     - Statuses : 1 incomplete(s)
>     - Exec time: [0.0] s
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position:
>     - Statuses : 1 crash(s)
>     - Exec time: [1.02] s
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-float_float-position-double_dvec3:
>     - Statuses : 1 crash(s)
>     - Exec time: [1.06] s
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-position-int_ivec4_array3-double_dvec2_array2:
>     - Statuses : 1 incomplete(s)
>     - Exec time: [0.0] s
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec3-short_int-position-double_dvec4:
>     - Statuses : 1 incomplete(s)
>     - Exec time: [0.0] s
> 
>   * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3:
>     - Statuses : 1 incomplete(s)
>     - Exec time: [0.0] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_19809_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@feature_discovery@chamelium:
>     - shard-iclb:         NOTRUN -> [SKIP][4] ([fdo#111827])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@feature_discovery@chamelium.html
> 
>   * igt@gem_create@create-massive:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_persistence@clone:
>     - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +6 similar issues
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_ctx_persistence@clone.html
> 
>   * igt@gem_ctx_sseu@mmap-args:
>     - shard-kbl:          NOTRUN -> [SKIP][7] ([fdo#109271]) +11 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@gem_ctx_sseu@mmap-args.html
> 
>   * igt@gem_eio@in-flight-contexts-10ms:
>     - shard-tglb:         [PASS][8] -> [TIMEOUT][9] ([i915#3063])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb7/igt@gem_eio@in-flight-contexts-10ms.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb1/igt@gem_eio@in-flight-contexts-10ms.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-skl:          NOTRUN -> [FAIL][10] ([i915#2846])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-glk:          NOTRUN -> [FAIL][15] ([i915#2842])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_exec_params@no-vebox:
>     - shard-iclb:         NOTRUN -> [SKIP][16] ([fdo#109283])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_params@no-vebox.html
> 
>   * igt@gem_exec_params@secure-non-root:
>     - shard-iclb:         NOTRUN -> [SKIP][17] ([fdo#112283])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_params@secure-non-root.html
> 
>   * igt@gem_exec_reloc@basic-parallel:
>     - shard-skl:          NOTRUN -> [TIMEOUT][18] ([i915#3183])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@gem_exec_reloc@basic-parallel.html
>     - shard-apl:          NOTRUN -> [TIMEOUT][19] ([i915#3183])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@gem_exec_reloc@basic-parallel.html
> 
>   * igt@gem_exec_schedule@u-fairslice@vcs0:
>     - shard-tglb:         [PASS][20] -> [DMESG-WARN][21] ([i915#2803])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb5/igt@gem_exec_schedule@u-fairslice@vcs0.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/igt@gem_exec_schedule@u-fairslice@vcs0.html
> 
>   * igt@gem_exec_whisper@basic-fds-priority-all:
>     - shard-glk:          [PASS][22] -> [DMESG-WARN][23] ([i915#118] / [i915#95]) +1 similar issue
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk8/igt@gem_exec_whisper@basic-fds-priority-all.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#2190])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_mmap_gtt@big-copy-odd:
>     - shard-skl:          [PASS][25] -> [FAIL][26] ([i915#307])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@gem_mmap_gtt@big-copy-odd.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@gem_mmap_gtt@big-copy-odd.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-snb:          NOTRUN -> [WARN][27] ([i915#2658])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_pwrite@basic-exhaustion.html
>     - shard-glk:          NOTRUN -> [WARN][28] ([i915#2658])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_userptr_blits@input-checking:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][29] ([i915#3002])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@gem_userptr_blits@input-checking.html
>     - shard-snb:          NOTRUN -> [DMESG-WARN][30] ([i915#3002])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_userptr_blits@input-checking.html
> 
>   * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
>     - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1699]) +3 similar issues
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@gem_userptr_blits@process-exit-mmap-busy@wc.html
> 
>   * igt@gem_userptr_blits@vma-merge:
>     - shard-apl:          NOTRUN -> [INCOMPLETE][32] ([i915#2502] / [i915#2667])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@gem_userptr_blits@vma-merge.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-skl:          [PASS][33] -> [DMESG-WARN][34] ([i915#1436] / [i915#716])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl4/igt@gen9_exec_parse@allowed-single.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@gen9_exec_parse@allowed-single.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-skl:          NOTRUN -> [FAIL][35] ([i915#454])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>     - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271]) +180 similar issues
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
> 
>   * igt@i915_selftest@live@gt_pm:
>     - shard-skl:          NOTRUN -> [DMESG-FAIL][37] ([i915#1886] / [i915#2291])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@i915_selftest@live@gt_pm.html
> 
>   * igt@i915_suspend@fence-restore-untiled:
>     - shard-kbl:          [PASS][38] -> [DMESG-WARN][39] ([i915#180])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl3/igt@i915_suspend@fence-restore-untiled.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@i915_suspend@fence-restore-untiled.html
> 
>   * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
>     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
> 
>   * igt@kms_big_joiner@basic:
>     - shard-apl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#2705]) +1 similar issue
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_big_joiner@basic.html
> 
>   * igt@kms_chamelium@dp-mode-timings:
>     - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +19 similar issues
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_chamelium@dp-mode-timings.html
> 
>   * igt@kms_chamelium@hdmi-crc-fast:
>     - shard-skl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +5 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_chamelium@hdmi-crc-fast.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-0-5:
>     - shard-glk:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +2 similar issues
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-0-25:
>     - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +3 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
>     - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +20 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html
> 
>   * igt@kms_content_protection@lic:
>     - shard-apl:          NOTRUN -> [TIMEOUT][47] ([i915#1319]) +3 similar issues
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_content_protection@lic.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
>     - shard-skl:          [PASS][48] -> [FAIL][49] ([i915#54])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen:
>     - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271]) +25 similar issues
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
>     - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278] / [fdo#109279]) +1 similar issue
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-512x512-random:
>     - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109278]) +1 similar issue
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-random.html
> 
>   * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
>     - shard-snb:          NOTRUN -> [SKIP][53] ([fdo#109271]) +367 similar issues
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
>     - shard-apl:          NOTRUN -> [DMESG-FAIL][54] ([IGT#6])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> 
>   * igt@kms_cursor_legacy@pipe-d-torture-bo:
>     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#533]) +1 similar issue
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html
>     - shard-skl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#533])
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-apl:          [PASS][57] -> [INCOMPLETE][58] ([i915#180])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_flip@2x-flip-vs-panning-vs-hang:
>     - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109274])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
>     - shard-apl:          [PASS][60] -> [DMESG-WARN][61] ([i915#180])
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
> 
>   * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1:
>     - shard-glk:          [PASS][62] -> [FAIL][63] ([i915#2122])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
>     - shard-glk:          NOTRUN -> [FAIL][64] ([i915#2628])
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
>     - shard-skl:          NOTRUN -> [SKIP][65] ([fdo#109271]) +80 similar issues
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
>     - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +5 similar issues
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][67] ([i915#180])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][68] ([i915#265])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>     - shard-skl:          NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +1 similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
>     - shard-apl:          NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) +2 similar issues
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
>     - shard-glk:          NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +3 similar issues
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
>     - shard-skl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
> 
>   * igt@kms_psr2_su@frontbuffer:
>     - shard-iclb:         [PASS][74] -> [SKIP][75] ([fdo#109642] / [fdo#111068] / [i915#658])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr2_su@frontbuffer.html
> 
>   * igt@kms_psr@psr2_sprite_plane_move:
>     - shard-iclb:         [PASS][76] -> [SKIP][77] ([fdo#109441]) +1 similar issue
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][78] ([i915#180] / [i915#295])
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> 
>   * igt@kms_writeback@writeback-pixel-formats:
>     - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2437])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html
> 
>   * igt@perf@polling-parameterized:
>     - shard-skl:          [PASS][80] -> [FAIL][81] ([i915#1542])
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@perf@polling-parameterized.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@perf@polling-parameterized.html
> 
>   * igt@prime_nv_test@i915_import_pread_pwrite:
>     - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109291])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@prime_nv_test@i915_import_pread_pwrite.html
> 
>   * igt@sysfs_clients@recycle:
>     - shard-kbl:          [PASS][83] -> [FAIL][84] ([i915#3028]) +1 similar issue
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@sysfs_clients@recycle.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@sysfs_clients@recycle.html
> 
>   * igt@sysfs_clients@recycle-many:
>     - shard-snb:          NOTRUN -> [FAIL][85] ([i915#3028])
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/igt@sysfs_clients@recycle-many.html
> 
>   * igt@sysfs_clients@sema-10@vcs0:
>     - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#3026]) +2 similar issues
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/igt@sysfs_clients@sema-10@vcs0.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_balancer@hang:
>     - shard-iclb:         [INCOMPLETE][87] ([i915#1895] / [i915#3031]) -> [PASS][88]
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@gem_exec_balancer@hang.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_balancer@hang.html
> 
>   * igt@gem_exec_fair@basic-none@vecs0:
>     - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90] +1 similar issue
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk9/igt@gem_exec_fair@basic-none@vecs0.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html
> 
>   * igt@gem_exec_schedule@u-fairslice@rcs0:
>     - shard-tglb:         [DMESG-WARN][91] ([i915#2803]) -> [PASS][92]
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb5/igt@gem_exec_schedule@u-fairslice@rcs0.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/igt@gem_exec_schedule@u-fairslice@rcs0.html
> 
>   * igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b:
>     - shard-kbl:          [FAIL][93] ([i915#3168]) -> [PASS][94]
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl6/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen:
>     - shard-skl:          [FAIL][95] ([i915#54]) -> [PASS][96] +1 similar issue
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
> 
>   * igt@kms_flip@basic-plain-flip@a-edp1:
>     - shard-skl:          [DMESG-WARN][97] ([i915#1982]) -> [PASS][98] +2 similar issues
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@kms_flip@basic-plain-flip@a-edp1.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@kms_flip@basic-plain-flip@a-edp1.html
> 
>   * igt@kms_flip@flip-vs-suspend@c-dp1:
>     - shard-kbl:          [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +2 similar issues
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@kms_flip@flip-vs-suspend@c-dp1.html
> 
>   * igt@kms_hdr@bpc-switch-dpms:
>     - shard-skl:          [FAIL][101] ([i915#1188]) -> [PASS][102] +1 similar issue
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@kms_hdr@bpc-switch-dpms.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@kms_hdr@bpc-switch-dpms.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
>     - shard-skl:          [FAIL][103] ([fdo#108145] / [i915#265]) -> [PASS][104] +1 similar issue
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> 
>   * igt@kms_psr@psr2_basic:
>     - shard-iclb:         [SKIP][105] ([fdo#109441]) -> [PASS][106] +1 similar issue
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb3/igt@kms_psr@psr2_basic.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/igt@kms_psr@psr2_basic.html
> 
>   * igt@perf@polling-small-buf:
>     - shard-skl:          [FAIL][107] ([i915#1722]) -> [PASS][108]
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl1/igt@perf@polling-small-buf.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl9/igt@perf@polling-small-buf.html
> 
>   * igt@sysfs_clients@busy@vecs0:
>     - shard-skl:          [FAIL][109] ([i915#3019]) -> [PASS][110]
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl10/igt@sysfs_clients@busy@vecs0.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl4/igt@sysfs_clients@busy@vecs0.html
>     - shard-kbl:          [FAIL][111] ([i915#3009]) -> [PASS][112]
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl2/igt@sysfs_clients@busy@vecs0.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl1/igt@sysfs_clients@busy@vecs0.html
> 
>   * igt@sysfs_clients@recycle-many:
>     - shard-iclb:         [FAIL][113] ([i915#3028]) -> [PASS][114]
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb6/igt@sysfs_clients@recycle-many.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb6/igt@sysfs_clients@recycle-many.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-iclb:         [SKIP][115] ([i915#588]) -> [SKIP][116] ([i915#658])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-iclb:         [SKIP][117] ([fdo#109300] / [fdo#111066]) -> [FAIL][118] ([i915#3137]) +1 similar issue
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb6/igt@kms_content_protection@atomic-dpms.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb1/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-iclb:         [FAIL][119] ([i915#3137]) -> [SKIP][120] ([fdo#109300] / [fdo#111066]) +1 similar issue
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb1/igt@kms_content_protection@legacy.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb8/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
>     - shard-iclb:         [SKIP][121] ([i915#2920]) -> [SKIP][122] ([i915#658]) +1 similar issue
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         [SKIP][123] ([i915#658]) -> [SKIP][124] ([i915#2920])
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#2724] / [i915#3002]) -> ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131]) ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@runner@aborted.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@runner@aborted.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@runner@aborted.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@runner@aborted.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@runner@aborted.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@runner@aborted.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@runner@aborted.html
>     - shard-apl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002]) -> ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142]) ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl3/igt@runner@aborted.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl6/igt@runner@aborted.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl7/igt@runner@aborted.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl2/igt@runner@aborted.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@runner@aborted.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@runner@aborted.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/igt@runner@aborted.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@runner@ab
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-03-22  5:19   ` Anshuman Gupta
@ 2021-03-22  6:43     ` Gupta, Anshuman
  0 siblings, 0 replies; 13+ messages in thread
From: Gupta, Anshuman @ 2021-03-22  6:43 UTC (permalink / raw)
  To: intel-gfx; +Cc: Vudum, Lakshminarayana

Below CI-IGT failures are unrelated
Pushed to drm-intel-next.

> -----Original Message-----
> From: Anshuman Gupta <anshuman.gupta@intel.com>
> Sent: Monday, March 22, 2021 10:49 AM
> To: intel-gfx@lists.freedesktop.org; Vudum, Lakshminarayana
> <lakshminarayana.vudum@intel.com>
> Subject: Re: ✗ Fi.CI.IGT: failure for drm/i915/hdcp: mst streams type1 capability
> check (rev2)
> 
> On 2021-03-19 at 13:26:16 +0000, Patchwork wrote:
> > == Series Details ==
> >
> > Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
> > URL   : https://patchwork.freedesktop.org/series/86345/
> > State : failure
> >
> > == Summary ==
> >
> > CI Bug Log - changes from CI_DRM_9874_full -> Patchwork_19809_full
> > ====================================================
> >
> > Summary
> > -------
> >
> >   **FAILURE**
> >
> >   Serious unknown changes coming with Patchwork_19809_full absolutely
> need to be
> >   verified manually.
> >
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in Patchwork_19809_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_19809_full:
> >
> > ### IGT changes ###
> >
> > #### Possible regressions ####
> >
> >   * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c:
> >     - shard-skl:          NOTRUN -> [FAIL][1]
> >    [1]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/ig
> > t@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c.html
> Hi Lakshmi ,
> Above CI-IGT failures are not related to this patch, this patch is just a rebase and
> CI results were green at Rev1.
> https://patchwork.freedesktop.org/series/86345/#rev1
> Could please raise the issue for above failure and re-report the result.
> 
> Thanks,
> Anshuman Gupta.
> >
> >
> >
> > ### Piglit changes ###
> >
> > #### Possible regressions ####
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-
> uint_uvec3_array3-position (NEW):
> >     - {pig-icl-1065g7}:   NOTRUN -> [CRASH][2] +1 similar issue
> >    [2]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g
> > 7/spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-
> uint_uvec3_arra
> > y3-position.html
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-
> position-double_dmat3 (NEW):
> >     - {pig-icl-1065g7}:   NOTRUN -> [INCOMPLETE][3] +3 similar issues
> >    [3]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g
> > 7/spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-posi
> > tion-double_dmat3.html
> >
> >
> > New tests
> > ---------
> >
> >   New tests have been introduced between CI_DRM_9874_full and
> Patchwork_19809_full:
> >
> > ### New Piglit tests (6) ###
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat2x3-position-
> double_dvec3:
> >     - Statuses : 1 incomplete(s)
> >     - Exec time: [0.0] s
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-
> uint_uvec3_array3-position:
> >     - Statuses : 1 crash(s)
> >     - Exec time: [1.02] s
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-float_float-position-
> double_dvec3:
> >     - Statuses : 1 crash(s)
> >     - Exec time: [1.06] s
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-position-int_ivec4_array3-
> double_dvec2_array2:
> >     - Statuses : 1 incomplete(s)
> >     - Exec time: [0.0] s
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec3-short_int-
> position-double_dvec4:
> >     - Statuses : 1 incomplete(s)
> >     - Exec time: [0.0] s
> >
> >   * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-
> position-double_dmat3:
> >     - Statuses : 1 incomplete(s)
> >     - Exec time: [0.0] s
> >
> >
> >
> > Known issues
> > ------------
> >
> >   Here are the changes found in Patchwork_19809_full that come from known
> issues:
> >
> > ### IGT changes ###
> >
> > #### Issues hit ####
> >
> >   * igt@feature_discovery@chamelium:
> >     - shard-iclb:         NOTRUN -> [SKIP][4] ([fdo#111827])
> >    [4]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@feature_discovery@chamelium.html
> >
> >   * igt@gem_create@create-massive:
> >     - shard-kbl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
> >    [5]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/ig
> > t@gem_create@create-massive.html
> >
> >   * igt@gem_ctx_persistence@clone:
> >     - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +6
> similar issues
> >    [6]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/ig
> > t@gem_ctx_persistence@clone.html
> >
> >   * igt@gem_ctx_sseu@mmap-args:
> >     - shard-kbl:          NOTRUN -> [SKIP][7] ([fdo#109271]) +11 similar issues
> >    [7]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/ig
> > t@gem_ctx_sseu@mmap-args.html
> >
> >   * igt@gem_eio@in-flight-contexts-10ms:
> >     - shard-tglb:         [PASS][8] -> [TIMEOUT][9] ([i915#3063])
> >    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> tglb7/igt@gem_eio@in-flight-contexts-10ms.html
> >    [9]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb1/i
> > gt@gem_eio@in-flight-contexts-10ms.html
> >
> >   * igt@gem_exec_fair@basic-deadline:
> >     - shard-skl:          NOTRUN -> [FAIL][10] ([i915#2846])
> >    [10]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/ig
> > t@gem_exec_fair@basic-deadline.html
> >
> >   * igt@gem_exec_fair@basic-none-share@rcs0:
> >     - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842])
> >    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html
> >    [12]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb2/i
> > gt@gem_exec_fair@basic-none-share@rcs0.html
> >
> >   * igt@gem_exec_fair@basic-none@vcs0:
> >     - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
> >    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl6/igt@gem_exec_fair@basic-none@vcs0.html
> >    [14]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/ig
> > t@gem_exec_fair@basic-none@vcs0.html
> >
> >   * igt@gem_exec_fair@basic-throttle@rcs0:
> >     - shard-glk:          NOTRUN -> [FAIL][15] ([i915#2842])
> >    [15]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@gem_exec_fair@basic-throttle@rcs0.html
> >
> >   * igt@gem_exec_params@no-vebox:
> >     - shard-iclb:         NOTRUN -> [SKIP][16] ([fdo#109283])
> >    [16]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@gem_exec_params@no-vebox.html
> >
> >   * igt@gem_exec_params@secure-non-root:
> >     - shard-iclb:         NOTRUN -> [SKIP][17] ([fdo#112283])
> >    [17]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@gem_exec_params@secure-non-root.html
> >
> >   * igt@gem_exec_reloc@basic-parallel:
> >     - shard-skl:          NOTRUN -> [TIMEOUT][18] ([i915#3183])
> >    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> skl6/igt@gem_exec_reloc@basic-parallel.html
> >     - shard-apl:          NOTRUN -> [TIMEOUT][19] ([i915#3183])
> >    [19]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/ig
> > t@gem_exec_reloc@basic-parallel.html
> >
> >   * igt@gem_exec_schedule@u-fairslice@vcs0:
> >     - shard-tglb:         [PASS][20] -> [DMESG-WARN][21] ([i915#2803])
> >    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> tglb5/igt@gem_exec_schedule@u-fairslice@vcs0.html
> >    [21]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/i
> > gt@gem_exec_schedule@u-fairslice@vcs0.html
> >
> >   * igt@gem_exec_whisper@basic-fds-priority-all:
> >     - shard-glk:          [PASS][22] -> [DMESG-WARN][23] ([i915#118] / [i915#95])
> +1 similar issue
> >    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> glk8/igt@gem_exec_whisper@basic-fds-priority-all.html
> >    [23]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk9/ig
> > t@gem_exec_whisper@basic-fds-priority-all.html
> >
> >   * igt@gem_huc_copy@huc-copy:
> >     - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#2190])
> >    [24]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/ig
> > t@gem_huc_copy@huc-copy.html
> >
> >   * igt@gem_mmap_gtt@big-copy-odd:
> >     - shard-skl:          [PASS][25] -> [FAIL][26] ([i915#307])
> >    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl9/igt@gem_mmap_gtt@big-copy-odd.html
> >    [26]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/ig
> > t@gem_mmap_gtt@big-copy-odd.html
> >
> >   * igt@gem_pwrite@basic-exhaustion:
> >     - shard-snb:          NOTRUN -> [WARN][27] ([i915#2658])
> >    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> snb5/igt@gem_pwrite@basic-exhaustion.html
> >     - shard-glk:          NOTRUN -> [WARN][28] ([i915#2658])
> >    [28]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@gem_pwrite@basic-exhaustion.html
> >
> >   * igt@gem_userptr_blits@input-checking:
> >     - shard-apl:          NOTRUN -> [DMESG-WARN][29] ([i915#3002])
> >    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl2/igt@gem_userptr_blits@input-checking.html
> >     - shard-snb:          NOTRUN -> [DMESG-WARN][30] ([i915#3002])
> >    [30]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/ig
> > t@gem_userptr_blits@input-checking.html
> >
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
> >     - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1699]) +3
> similar issues
> >    [31]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@gem_userptr_blits@process-exit-mmap-busy@wc.html
> >
> >   * igt@gem_userptr_blits@vma-merge:
> >     - shard-apl:          NOTRUN -> [INCOMPLETE][32] ([i915#2502] / [i915#2667])
> >    [32]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@gem_userptr_blits@vma-merge.html
> >
> >   * igt@gen9_exec_parse@allowed-single:
> >     - shard-skl:          [PASS][33] -> [DMESG-WARN][34] ([i915#1436] /
> [i915#716])
> >    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl4/igt@gen9_exec_parse@allowed-single.html
> >    [34]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/ig
> > t@gen9_exec_parse@allowed-single.html
> >
> >   * igt@i915_pm_dc@dc6-psr:
> >     - shard-skl:          NOTRUN -> [FAIL][35] ([i915#454])
> >    [35]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/ig
> > t@i915_pm_dc@dc6-psr.html
> >
> >   * igt@i915_pm_rpm@modeset-pc8-residency-stress:
> >     - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271]) +180 similar issues
> >    [36]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@i915_pm_rpm@modeset-pc8-residency-stress.html
> >
> >   * igt@i915_selftest@live@gt_pm:
> >     - shard-skl:          NOTRUN -> [DMESG-FAIL][37] ([i915#1886] / [i915#2291])
> >    [37]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/ig
> > t@i915_selftest@live@gt_pm.html
> >
> >   * igt@i915_suspend@fence-restore-untiled:
> >     - shard-kbl:          [PASS][38] -> [DMESG-WARN][39] ([i915#180])
> >    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl3/igt@i915_suspend@fence-restore-untiled.html
> >    [39]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/ig
> > t@i915_suspend@fence-restore-untiled.html
> >
> >   * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
> >     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
> >    [40]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
> >
> >   * igt@kms_big_joiner@basic:
> >     - shard-apl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#2705]) +1
> similar issue
> >    [41]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@kms_big_joiner@basic.html
> >
> >   * igt@kms_chamelium@dp-mode-timings:
> >     - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +19
> similar issues
> >    [42]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/ig
> > t@kms_chamelium@dp-mode-timings.html
> >
> >   * igt@kms_chamelium@hdmi-crc-fast:
> >     - shard-skl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +5
> similar issues
> >    [43]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/ig
> > t@kms_chamelium@hdmi-crc-fast.html
> >
> >   * igt@kms_color_chamelium@pipe-b-ctm-0-5:
> >     - shard-glk:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +2
> similar issues
> >    [44]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@kms_color_chamelium@pipe-b-ctm-0-5.html
> >
> >   * igt@kms_color_chamelium@pipe-c-ctm-0-25:
> >     - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +3
> similar issues
> >    [45]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_color_chamelium@pipe-c-ctm-0-25.html
> >
> >   * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
> >     - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +20
> similar issues
> >    [46]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/ig
> > t@kms_color_chamelium@pipe-c-ctm-red-to-blue.html
> >
> >   * igt@kms_content_protection@lic:
> >     - shard-apl:          NOTRUN -> [TIMEOUT][47] ([i915#1319]) +3 similar issues
> >    [47]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@kms_content_protection@lic.html
> >
> >   * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
> >     - shard-skl:          [PASS][48] -> [FAIL][49] ([i915#54])
> >    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
> >    [49]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl9/ig
> > t@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen:
> >     - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271]) +25 similar issues
> >    [50]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
> >     - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278] / [fdo#109279]) +1
> similar issue
> >    [51]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_cursor_crc@pipe-b-cursor-512x512-random.html
> >
> >   * igt@kms_cursor_crc@pipe-d-cursor-512x512-random:
> >     - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109278]) +1 similar issue
> >    [52]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_cursor_crc@pipe-d-cursor-512x512-random.html
> >
> >   * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
> >     - shard-snb:          NOTRUN -> [SKIP][53] ([fdo#109271]) +367 similar issues
> >    [53]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/ig
> > t@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
> >
> >   * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
> >     - shard-apl:          NOTRUN -> [DMESG-FAIL][54] ([IGT#6])
> >    [54]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/ig
> > t@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> >
> >   * igt@kms_cursor_legacy@pipe-d-torture-bo:
> >     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#533]) +1
> similar issue
> >    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html
> >     - shard-skl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#533])
> >    [56]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/ig
> > t@kms_cursor_legacy@pipe-d-torture-bo.html
> >
> >   * igt@kms_fbcon_fbt@fbc-suspend:
> >     - shard-apl:          [PASS][57] -> [INCOMPLETE][58] ([i915#180])
> >    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> apl2/igt@kms_fbcon_fbt@fbc-suspend.html
> >    [58]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@kms_fbcon_fbt@fbc-suspend.html
> >
> >   * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> >     - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109274])
> >    [59]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_flip@2x-flip-vs-panning-vs-hang.html
> >
> >   * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> >     - shard-apl:          [PASS][60] -> [DMESG-WARN][61] ([i915#180])
> >    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
> >    [61]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/ig
> > t@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
> >
> >   * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1:
> >     - shard-glk:          [PASS][62] -> [FAIL][63] ([i915#2122])
> >    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> glk9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
> >    [63]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/ig
> > t@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
> >
> >   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
> >     - shard-glk:          NOTRUN -> [FAIL][64] ([i915#2628])
> >    [64]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html
> >
> >   * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
> >     - shard-skl:          NOTRUN -> [SKIP][65] ([fdo#109271]) +80 similar issues
> >    [65]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/ig
> > t@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
> >
> >   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
> >     - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +5 similar issues
> >    [66]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
> >
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
> >     - shard-apl:          NOTRUN -> [DMESG-WARN][67] ([i915#180])
> >    [67]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/ig
> > t@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
> >     - shard-apl:          NOTRUN -> [FAIL][68] ([i915#265])
> >    [68]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/ig
> > t@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
> >     - shard-skl:          NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +1
> similar issue
> >    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> skl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
> >     - shard-apl:          NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) +2
> similar issues
> >    [70]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/ig
> > t@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
> >
> >   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
> >     - shard-glk:          NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658])
> >    [71]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html
> >
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
> >     - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +3
> similar issues
> >    [72]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/ig
> > t@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> >
> >   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
> >     - shard-skl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658])
> >    [73]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/ig
> > t@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
> >
> >   * igt@kms_psr2_su@frontbuffer:
> >     - shard-iclb:         [PASS][74] -> [SKIP][75] ([fdo#109642] / [fdo#111068] /
> [i915#658])
> >    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb2/igt@kms_psr2_su@frontbuffer.html
> >    [75]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_psr2_su@frontbuffer.html
> >
> >   * igt@kms_psr@psr2_sprite_plane_move:
> >     - shard-iclb:         [PASS][76] -> [SKIP][77] ([fdo#109441]) +1 similar issue
> >    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> >    [77]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_psr@psr2_sprite_plane_move.html
> >
> >   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
> >     - shard-apl:          NOTRUN -> [DMESG-WARN][78] ([i915#180] / [i915#295])
> >    [78]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/ig
> > t@kms_vblank@pipe-a-ts-continuation-suspend.html
> >
> >   * igt@kms_writeback@writeback-pixel-formats:
> >     - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2437])
> >    [79]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/ig
> > t@kms_writeback@writeback-pixel-formats.html
> >
> >   * igt@perf@polling-parameterized:
> >     - shard-skl:          [PASS][80] -> [FAIL][81] ([i915#1542])
> >    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl7/igt@perf@polling-parameterized.html
> >    [81]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/ig
> > t@perf@polling-parameterized.html
> >
> >   * igt@prime_nv_test@i915_import_pread_pwrite:
> >     - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109291])
> >    [82]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@prime_nv_test@i915_import_pread_pwrite.html
> >
> >   * igt@sysfs_clients@recycle:
> >     - shard-kbl:          [PASS][83] -> [FAIL][84] ([i915#3028]) +1 similar issue
> >    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl6/igt@sysfs_clients@recycle.html
> >    [84]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/ig
> > t@sysfs_clients@recycle.html
> >
> >   * igt@sysfs_clients@recycle-many:
> >     - shard-snb:          NOTRUN -> [FAIL][85] ([i915#3028])
> >    [85]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/ig
> > t@sysfs_clients@recycle-many.html
> >
> >   * igt@sysfs_clients@sema-10@vcs0:
> >     - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#3026]) +2
> similar issues
> >    [86]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/ig
> > t@sysfs_clients@sema-10@vcs0.html
> >
> >
> > #### Possible fixes ####
> >
> >   * igt@gem_exec_balancer@hang:
> >     - shard-iclb:         [INCOMPLETE][87] ([i915#1895] / [i915#3031]) ->
> [PASS][88]
> >    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb2/igt@gem_exec_balancer@hang.html
> >    [88]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@gem_exec_balancer@hang.html
> >
> >   * igt@gem_exec_fair@basic-none@vecs0:
> >     - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90] +1 similar issue
> >    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> glk9/igt@gem_exec_fair@basic-none@vecs0.html
> >    [90]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/ig
> > t@gem_exec_fair@basic-none@vecs0.html
> >
> >   * igt@gem_exec_schedule@u-fairslice@rcs0:
> >     - shard-tglb:         [DMESG-WARN][91] ([i915#2803]) -> [PASS][92]
> >    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> tglb5/igt@gem_exec_schedule@u-fairslice@rcs0.html
> >    [92]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/i
> > gt@gem_exec_schedule@u-fairslice@rcs0.html
> >
> >   * igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-
> b:
> >     - shard-kbl:          [FAIL][93] ([i915#3168]) -> [PASS][94]
> >    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl4/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-
> b.html
> >    [94]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl6/ig
> > t@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.h
> > tml
> >
> >   * igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen:
> >     - shard-skl:          [FAIL][95] ([i915#54]) -> [PASS][96] +1 similar issue
> >    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl9/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
> >    [96]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/ig
> > t@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
> >
> >   * igt@kms_flip@basic-plain-flip@a-edp1:
> >     - shard-skl:          [DMESG-WARN][97] ([i915#1982]) -> [PASS][98] +2 similar
> issues
> >    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl7/igt@kms_flip@basic-plain-flip@a-edp1.html
> >    [98]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/ig
> > t@kms_flip@basic-plain-flip@a-edp1.html
> >
> >   * igt@kms_flip@flip-vs-suspend@c-dp1:
> >     - shard-kbl:          [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +2 similar
> issues
> >    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
> >    [100]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/ig
> > t@kms_flip@flip-vs-suspend@c-dp1.html
> >
> >   * igt@kms_hdr@bpc-switch-dpms:
> >     - shard-skl:          [FAIL][101] ([i915#1188]) -> [PASS][102] +1 similar issue
> >    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl7/igt@kms_hdr@bpc-switch-dpms.html
> >    [102]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/ig
> > t@kms_hdr@bpc-switch-dpms.html
> >
> >   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
> >     - shard-skl:          [FAIL][103] ([fdo#108145] / [i915#265]) -> [PASS][104] +1
> similar issue
> >    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> >    [104]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/ig
> > t@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> >
> >   * igt@kms_psr@psr2_basic:
> >     - shard-iclb:         [SKIP][105] ([fdo#109441]) -> [PASS][106] +1 similar issue
> >    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb3/igt@kms_psr@psr2_basic.html
> >    [106]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/i
> > gt@kms_psr@psr2_basic.html
> >
> >   * igt@perf@polling-small-buf:
> >     - shard-skl:          [FAIL][107] ([i915#1722]) -> [PASS][108]
> >    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl1/igt@perf@polling-small-buf.html
> >    [108]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl9/ig
> > t@perf@polling-small-buf.html
> >
> >   * igt@sysfs_clients@busy@vecs0:
> >     - shard-skl:          [FAIL][109] ([i915#3019]) -> [PASS][110]
> >    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> skl10/igt@sysfs_clients@busy@vecs0.html
> >    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> skl4/igt@sysfs_clients@busy@vecs0.html
> >     - shard-kbl:          [FAIL][111] ([i915#3009]) -> [PASS][112]
> >    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl2/igt@sysfs_clients@busy@vecs0.html
> >    [112]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl1/ig
> > t@sysfs_clients@busy@vecs0.html
> >
> >   * igt@sysfs_clients@recycle-many:
> >     - shard-iclb:         [FAIL][113] ([i915#3028]) -> [PASS][114]
> >    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb6/igt@sysfs_clients@recycle-many.html
> >    [114]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb6/i
> > gt@sysfs_clients@recycle-many.html
> >
> >
> > #### Warnings ####
> >
> >   * igt@i915_pm_dc@dc3co-vpb-simulation:
> >     - shard-iclb:         [SKIP][115] ([i915#588]) -> [SKIP][116] ([i915#658])
> >    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
> >    [116]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@i915_pm_dc@dc3co-vpb-simulation.html
> >
> >   * igt@kms_content_protection@atomic-dpms:
> >     - shard-iclb:         [SKIP][117] ([fdo#109300] / [fdo#111066]) -> [FAIL][118]
> ([i915#3137]) +1 similar issue
> >    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb6/igt@kms_content_protection@atomic-dpms.html
> >    [118]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb1/i
> > gt@kms_content_protection@atomic-dpms.html
> >
> >   * igt@kms_content_protection@legacy:
> >     - shard-iclb:         [FAIL][119] ([i915#3137]) -> [SKIP][120] ([fdo#109300] /
> [fdo#111066]) +1 similar issue
> >    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb1/igt@kms_content_protection@legacy.html
> >    [120]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb8/i
> > gt@kms_content_protection@legacy.html
> >
> >   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
> >     - shard-iclb:         [SKIP][121] ([i915#2920]) -> [SKIP][122] ([i915#658]) +1
> similar issue
> >    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
> >    [122]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/i
> > gt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
> >
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> >     - shard-iclb:         [SKIP][123] ([i915#658]) -> [SKIP][124] ([i915#2920])
> >    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> >    [124]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/i
> > gt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> >
> >   * igt@runner@aborted:
> >     - shard-kbl:          ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#180] /
> [i915#1814] / [i915#2505] / [i915#2724] / [i915#3002]) -> ([FAIL][128],
> [FAIL][129], [FAIL][130], [FAIL][131]) ([i915#180] / [i915#1814] / [i915#2724] /
> [i915#3002])
> >    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl4/igt@runner@aborted.html
> >    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl4/igt@runner@aborted.html
> >    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> kbl6/igt@runner@aborted.html
> >    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> kbl2/igt@runner@aborted.html
> >    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> kbl4/igt@runner@aborted.html
> >    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> kbl4/igt@runner@aborted.html
> >    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> kbl7/igt@runner@aborted.html
> >     - shard-apl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135])
> ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002]) -> ([FAIL][136],
> [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142])
> ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
> >    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> apl3/igt@runner@aborted.html
> >    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> apl6/igt@runner@aborted.html
> >    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> apl7/igt@runner@aborted.html
> >    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-
> apl2/igt@runner@aborted.html
> >    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl1/igt@runner@aborted.html
> >    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl3/igt@runner@aborted.html
> >    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl6/igt@runner@aborted.html
> >    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl2/igt@runner@aborted.html
> >    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl2/igt@runner@aborted.html
> >    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-
> apl2/igt@runner@aborted.html
> >    [142]:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/ig
> > t@runner@ab
> >
> > == Logs ==
> >
> > For more details see:
> > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/hdcp: mst streams type1 capability check (rev2)
  2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
                   ` (6 preceding siblings ...)
  2021-03-19 13:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-03-22 16:13 ` Patchwork
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2021-03-22 16:13 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: mst streams type1 capability check (rev2)
URL   : https://patchwork.freedesktop.org/series/86345/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9874_full -> Patchwork_19809_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

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

### Piglit changes ###

#### Possible regressions ####

  * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position (NEW):
    - {pig-icl-1065g7}:   NOTRUN -> [CRASH][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g7/spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position.html

  * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3 (NEW):
    - {pig-icl-1065g7}:   NOTRUN -> [INCOMPLETE][2] +3 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/pig-icl-1065g7/spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3.html

  
New tests
---------

  New tests have been introduced between CI_DRM_9874_full and Patchwork_19809_full:

### New Piglit tests (6) ###

  * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat2x3-position-double_dvec3:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * spec@glsl-4.20@execution@vs_in@vs-input-double_dmat3-uint_uvec3_array3-position:
    - Statuses : 1 crash(s)
    - Exec time: [1.02] s

  * spec@glsl-4.20@execution@vs_in@vs-input-float_float-position-double_dvec3:
    - Statuses : 1 crash(s)
    - Exec time: [1.06] s

  * spec@glsl-4.20@execution@vs_in@vs-input-position-int_ivec4_array3-double_dvec2_array2:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec3-short_int-position-double_dvec4:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * spec@glsl-4.20@execution@vs_in@vs-input-ubyte_uvec4-short_ivec4-position-double_dmat3:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@chamelium:
    - shard-iclb:         NOTRUN -> [SKIP][3] ([fdo#111827])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@feature_discovery@chamelium.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][4] ([i915#3002])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@clone:
    - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +6 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_ctx_persistence@clone.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-kbl:          NOTRUN -> [SKIP][6] ([fdo#109271]) +11 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-tglb:         [PASS][7] -> [TIMEOUT][8] ([i915#3063])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb7/igt@gem_eio@in-flight-contexts-10ms.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb1/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-skl:          NOTRUN -> [FAIL][9] ([i915#2846])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][12] -> [FAIL][13] ([i915#2842]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][14] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][15] ([fdo#109283])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-iclb:         NOTRUN -> [SKIP][16] ([fdo#112283])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_params@secure-non-root.html

  * igt@gem_exec_reloc@basic-parallel:
    - shard-skl:          NOTRUN -> [TIMEOUT][17] ([i915#3183])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@gem_exec_reloc@basic-parallel.html
    - shard-apl:          NOTRUN -> [TIMEOUT][18] ([i915#3183])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@gem_exec_reloc@basic-parallel.html

  * igt@gem_exec_schedule@u-fairslice@vcs0:
    - shard-tglb:         [PASS][19] -> [DMESG-WARN][20] ([i915#2803])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb5/igt@gem_exec_schedule@u-fairslice@vcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/igt@gem_exec_schedule@u-fairslice@vcs0.html

  * igt@gem_exec_whisper@basic-fds-priority-all:
    - shard-glk:          [PASS][21] -> [DMESG-WARN][22] ([i915#118] / [i915#95]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk8/igt@gem_exec_whisper@basic-fds-priority-all.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html

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

  * igt@gem_mmap_gtt@big-copy-odd:
    - shard-skl:          [PASS][24] -> [FAIL][25] ([i915#307])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@gem_mmap_gtt@big-copy-odd.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@gem_mmap_gtt@big-copy-odd.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][26] ([i915#2658])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_pwrite@basic-exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][27] ([i915#2658])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][28] ([i915#3002])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@gem_userptr_blits@input-checking.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][29] ([i915#3002])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb5/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
    - shard-apl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#1699]) +3 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@gem_userptr_blits@process-exit-mmap-busy@wc.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-apl:          NOTRUN -> [INCOMPLETE][31] ([i915#2502] / [i915#2667])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-skl:          [PASS][32] -> [DMESG-WARN][33] ([i915#1436] / [i915#716])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl4/igt@gen9_exec_parse@allowed-single.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-skl:          NOTRUN -> [FAIL][34] ([i915#454])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271]) +180 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@i915_selftest@live@gt_pm:
    - shard-skl:          NOTRUN -> [DMESG-FAIL][36] ([i915#1886] / [i915#2291])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl7/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-kbl:          [PASS][37] -> [DMESG-WARN][38] ([i915#180])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl3/igt@i915_suspend@fence-restore-untiled.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#110723])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_joiner@basic:
    - shard-apl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#2705]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_big_joiner@basic.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-apl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +19 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - shard-skl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-5:
    - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_color_chamelium@pipe-b-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

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

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][46] ([i915#1319]) +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_content_protection@lic.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
    - shard-skl:          [PASS][47] -> [FAIL][48] ([i915#54])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen:
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271]) +25 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278]) +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-random.html

  * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
    - shard-snb:          NOTRUN -> [SKIP][52] ([fdo#109271]) +367 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html

  * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
    - shard-apl:          NOTRUN -> [DMESG-FAIL][53] ([IGT#6])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#533]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html
    - shard-skl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#533])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][56] -> [INCOMPLETE][57] ([i915#180])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109274])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [PASS][59] -> [DMESG-WARN][60] ([i915#180])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1:
    - shard-glk:          [PASS][61] -> [FAIL][62] ([i915#2122])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-glk:          NOTRUN -> [FAIL][63] ([i915#2628])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

  * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c:
    - shard-skl:          NOTRUN -> [FAIL][64] ([i915#2767])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
    - shard-skl:          NOTRUN -> [SKIP][65] ([fdo#109271]) +80 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +5 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          NOTRUN -> [DMESG-WARN][67] ([i915#180])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

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

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-skl:          NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
    - shard-glk:          NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +3 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-skl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [PASS][74] -> [SKIP][75] ([fdo#109642] / [fdo#111068] / [i915#658])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][76] -> [SKIP][77] ([fdo#109441]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][78] ([i915#180] / [i915#295])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2437])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@polling-parameterized:
    - shard-skl:          [PASS][80] -> [FAIL][81] ([i915#1542])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@perf@polling-parameterized.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@perf@polling-parameterized.html

  * igt@prime_nv_test@i915_import_pread_pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109291])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@prime_nv_test@i915_import_pread_pwrite.html

  * igt@sysfs_clients@recycle:
    - shard-kbl:          [PASS][83] -> [FAIL][84] ([i915#3028]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@sysfs_clients@recycle.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@sysfs_clients@recycle.html

  * igt@sysfs_clients@recycle-many:
    - shard-snb:          NOTRUN -> [FAIL][85] ([i915#3028])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-snb7/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@sema-10@vcs0:
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#3026]) +2 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl7/igt@sysfs_clients@sema-10@vcs0.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@hang:
    - shard-iclb:         [INCOMPLETE][87] ([i915#1895] / [i915#3031]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@gem_exec_balancer@hang.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@gem_exec_balancer@hang.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90] +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-glk9/igt@gem_exec_fair@basic-none@vecs0.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_schedule@u-fairslice@rcs0:
    - shard-tglb:         [DMESG-WARN][91] ([i915#2803]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-tglb5/igt@gem_exec_schedule@u-fairslice@rcs0.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-tglb7/igt@gem_exec_schedule@u-fairslice@rcs0.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b:
    - shard-kbl:          [FAIL][93] ([i915#3168]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl6/igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b.html

  * igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen:
    - shard-skl:          [FAIL][95] ([i915#54]) -> [PASS][96] +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html

  * igt@kms_flip@basic-plain-flip@a-edp1:
    - shard-skl:          [DMESG-WARN][97] ([i915#1982]) -> [PASS][98] +2 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@kms_flip@basic-plain-flip@a-edp1.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@kms_flip@basic-plain-flip@a-edp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +2 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-skl:          [FAIL][101] ([i915#1188]) -> [PASS][102] +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl7/igt@kms_hdr@bpc-switch-dpms.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl8/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [FAIL][103] ([fdo#108145] / [i915#265]) -> [PASS][104] +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][105] ([fdo#109441]) -> [PASS][106] +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb3/igt@kms_psr@psr2_basic.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/igt@kms_psr@psr2_basic.html

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

  * igt@sysfs_clients@busy@vecs0:
    - shard-skl:          [FAIL][109] ([i915#3019]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-skl10/igt@sysfs_clients@busy@vecs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-skl4/igt@sysfs_clients@busy@vecs0.html
    - shard-kbl:          [FAIL][111] ([i915#3009]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl2/igt@sysfs_clients@busy@vecs0.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl1/igt@sysfs_clients@busy@vecs0.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         [FAIL][113] ([i915#3028]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb6/igt@sysfs_clients@recycle-many.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb6/igt@sysfs_clients@recycle-many.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][115] ([i915#588]) -> [SKIP][116] ([i915#658])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-iclb:         [SKIP][117] ([fdo#109300] / [fdo#111066]) -> [FAIL][118] ([i915#3137]) +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb6/igt@kms_content_protection@atomic-dpms.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb1/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-iclb:         [FAIL][119] ([i915#3137]) -> [SKIP][120] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb1/igt@kms_content_protection@legacy.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb8/igt@kms_content_protection@legacy.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][121] ([i915#2920]) -> [SKIP][122] ([i915#658]) +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][123] ([i915#658]) -> [SKIP][124] ([i915#2920])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][125], [FAIL][126], [FAIL][127]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#2724] / [i915#3002]) -> ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131]) ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl6/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-kbl4/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl2/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl7/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-kbl4/igt@runner@aborted.html
    - shard-apl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002]) -> ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142]) ([i915#180] / [i915#1814] / [i915#2724] / [i915#3002])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl6/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl3/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9874/shard-apl2/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl3/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl2/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl6/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19809/shard-apl1/igt@runner@aborted.html
    - shard-skl:          ([FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146]) ([i915#1814] / [i915#2029] / [i915#2724] / [i915#3002]) -> ([FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151], [FAIL][152]) ([i915#1436] / [i915#1814] / [i915#2029] / [i915#2724] / [i915#3002])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DR

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 34147 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] 13+ messages in thread

end of thread, other threads:[~2021-03-22 16:13 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-27 10:00 [Intel-gfx] [PATCH] drm/i915/hdcp: mst streams type1 capability check Anshuman Gupta
2021-01-27 14:59 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2021-01-27 17:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2021-03-16 12:50 ` [Intel-gfx] [PATCH] " Nautiyal, Ankit K
2021-03-16 13:06   ` Nautiyal, Ankit K
2021-03-19  9:17 ` Anshuman Gupta
2021-03-19 10:55 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/hdcp: mst streams type1 capability check (rev2) Patchwork
2021-03-22  5:05   ` Gupta, Anshuman
2021-03-19 11:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-03-19 13:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-03-22  5:19   ` Anshuman Gupta
2021-03-22  6:43     ` Gupta, Anshuman
2021-03-22 16:13 ` [Intel-gfx] ✓ Fi.CI.IGT: success " 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.