All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST
@ 2021-07-05 11:37 Anshuman Gupta
  2021-07-05 12:01 ` Jani Nikula
                   ` (6 more replies)
  0 siblings, 7 replies; 12+ messages in thread
From: Anshuman Gupta @ 2021-07-05 11:37 UTC (permalink / raw)
  To: intel-gfx

Adding HDCP support over DP MST for Display13 Platforms.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp_mst.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 70fe90beaf6c..15d90d9456dc 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -835,7 +835,7 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
 	intel_attach_force_audio_property(connector);
 	intel_attach_broadcast_rgb_property(connector);
 
-	if (DISPLAY_VER(dev_priv) <= 12) {
+	if (DISPLAY_VER(dev_priv) <= 13) {
 		ret = intel_dp_hdcp_init(dig_port, intel_connector);
 		if (ret)
 			drm_dbg_kms(&dev_priv->drm, "[%s:%d] HDCP MST init failed, skipping.\n",
-- 
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] 12+ messages in thread

* Re: [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
@ 2021-07-05 12:01 ` Jani Nikula
  2021-07-05 12:22 ` [Intel-gfx] [PATCH v2] drm/i915/hdcp: Nuke Platform check for mst hdcp init Anshuman Gupta
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2021-07-05 12:01 UTC (permalink / raw)
  To: Anshuman Gupta, intel-gfx

On Mon, 05 Jul 2021, Anshuman Gupta <anshuman.gupta@intel.com> wrote:
> Adding HDCP support over DP MST for Display13 Platforms.

Why do we have the condition at all? Usually we assume it'll work, and
we disable or change later when a platform shows up where it doesn't
work.

BR,
Jani.

>
> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp_mst.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 70fe90beaf6c..15d90d9456dc 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -835,7 +835,7 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
>  	intel_attach_force_audio_property(connector);
>  	intel_attach_broadcast_rgb_property(connector);
>  
> -	if (DISPLAY_VER(dev_priv) <= 12) {
> +	if (DISPLAY_VER(dev_priv) <= 13) {
>  		ret = intel_dp_hdcp_init(dig_port, intel_connector);
>  		if (ret)
>  			drm_dbg_kms(&dev_priv->drm, "[%s:%d] HDCP MST init failed, skipping.\n",

-- 
Jani Nikula, Intel Open Source Graphics Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [Intel-gfx] [PATCH v2] drm/i915/hdcp: Nuke Platform check for mst hdcp init
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
  2021-07-05 12:01 ` Jani Nikula
@ 2021-07-05 12:22 ` Anshuman Gupta
  2021-07-06  7:30   ` Jani Nikula
  2021-07-05 12:57 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST Patchwork
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 12+ messages in thread
From: Anshuman Gupta @ 2021-07-05 12:22 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula

Earlier HDCP over MST support was added for TGL Platform.
Extending it to all future platfroms.

v2:
- Remove the platform check and commit log changes. [Jani]

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp_mst.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 70fe90beaf6c..3661cd19ce48 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -835,13 +835,10 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
 	intel_attach_force_audio_property(connector);
 	intel_attach_broadcast_rgb_property(connector);
 
-	if (DISPLAY_VER(dev_priv) <= 12) {
-		ret = intel_dp_hdcp_init(dig_port, intel_connector);
-		if (ret)
-			drm_dbg_kms(&dev_priv->drm, "[%s:%d] HDCP MST init failed, skipping.\n",
-				    connector->name, connector->base.id);
-	}
-
+	ret = intel_dp_hdcp_init(dig_port, intel_connector);
+	if (ret)
+		drm_dbg_kms(&dev_priv->drm, "[%s:%d] HDCP MST init failed, skipping.\n",
+			    connector->name, connector->base.id);
 	/*
 	 * Reuse the prop from the SST connector because we're
 	 * not allowed to create new props after device registration.
-- 
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] 12+ messages in thread

* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
  2021-07-05 12:01 ` Jani Nikula
  2021-07-05 12:22 ` [Intel-gfx] [PATCH v2] drm/i915/hdcp: Nuke Platform check for mst hdcp init Anshuman Gupta
@ 2021-07-05 12:57 ` Patchwork
  2021-07-05 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2021-07-05 12:57 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: Dsiplay13 HDCP support over MST
URL   : https://patchwork.freedesktop.org/series/92202/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20529
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-bsw-kefka:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-kefka/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-bsw-kefka/igt@gem_exec_suspend@basic-s3.html

  
#### Suppressed ####

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

  * igt@gem_exec_parallel@engines@userptr:
    - {fi-hsw-gt1}:       [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-gt1/igt@gem_exec_parallel@engines@userptr.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-gt1/igt@gem_exec_parallel@engines@userptr.html
    - {fi-ehl-2}:         [PASS][5] -> [DMESG-WARN][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ehl-2/igt@gem_exec_parallel@engines@userptr.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-ehl-2/igt@gem_exec_parallel@engines@userptr.html

  * igt@i915_selftest@live@execlists:
    - {fi-tgl-1115g4}:    NOTRUN -> [DMESG-FAIL][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-tgl-1115g4/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@ring_submission:
    - {fi-jsl-1}:         [PASS][8] -> [DMESG-FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-jsl-1/igt@i915_selftest@live@ring_submission.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-jsl-1/igt@i915_selftest@live@ring_submission.html

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

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

### CI changes ###


### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-hsw-4770:        NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#109315]) +17 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@amdgpu/amd_basic@memory-alloc:
    - fi-cml-u2:          NOTRUN -> [SKIP][11] ([fdo#109315]) +17 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cml-u2/igt@amdgpu/amd_basic@memory-alloc.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-icl-y:           NOTRUN -> [SKIP][12] ([fdo#109315]) +17 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@amdgpu/amd_basic@semaphore.html
    - fi-bsw-nick:        NOTRUN -> [SKIP][13] ([fdo#109271]) +17 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

  * igt@amdgpu/amd_prime@amd-to-i915:
    - fi-kbl-x1275:       NOTRUN -> [SKIP][14] ([fdo#109271]) +26 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-x1275/igt@amdgpu/amd_prime@amd-to-i915.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-hsw-4770:        NOTRUN -> [WARN][15] ([i915#3718])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-apl-guc:         NOTRUN -> [SKIP][16] ([fdo#109271]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html

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

  * igt@gem_exec_parallel@engines@basic:
    - fi-bxt-dsi:         [PASS][18] -> [DMESG-WARN][19] ([i915#1610])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bxt-dsi/igt@gem_exec_parallel@engines@basic.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-bxt-dsi/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_parallel@engines@userptr:
    - fi-apl-guc:         NOTRUN -> [DMESG-WARN][20] ([i915#1610])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-apl-guc/igt@gem_exec_parallel@engines@userptr.html
    - fi-cfl-8700k:       [PASS][21] -> [DMESG-WARN][22] ([i915#1610])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cfl-8700k/igt@gem_exec_parallel@engines@userptr.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cfl-8700k/igt@gem_exec_parallel@engines@userptr.html
    - fi-kbl-guc:         [PASS][23] -> [DMESG-WARN][24] ([i915#1610])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-guc/igt@gem_exec_parallel@engines@userptr.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-guc/igt@gem_exec_parallel@engines@userptr.html

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

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][26] ([fdo#109271]) +4 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html
    - fi-glk-dsi:         NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#2190])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-glk-dsi/igt@gem_huc_copy@huc-copy.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#2190])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-x1275/igt@gem_huc_copy@huc-copy.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#2190])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
    - fi-icl-y:           NOTRUN -> [SKIP][30] ([i915#2190])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@gem_huc_copy@huc-copy.html

  * igt@i915_hangman@error-state-basic:
    - fi-cfl-8109u:       [PASS][31] -> [DMESG-WARN][32] ([i915#1610])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cfl-8109u/igt@i915_hangman@error-state-basic.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cfl-8109u/igt@i915_hangman@error-state-basic.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-hsw-4770:        NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3012])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@coherency:
    - fi-kbl-7567u:       [PASS][34] -> [DMESG-FAIL][35] ([i915#1610])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@i915_selftest@live@coherency.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-7567u/igt@i915_selftest@live@coherency.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-hsw-4770:        NOTRUN -> [SKIP][36] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-icl-y:           NOTRUN -> [SKIP][37] ([fdo#109284] / [fdo#111827]) +8 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_chamelium@dp-hpd-fast:
    - fi-cml-u2:          NOTRUN -> [SKIP][38] ([fdo#109284] / [fdo#111827]) +8 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cml-u2/igt@kms_chamelium@dp-hpd-fast.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - fi-kbl-x1275:       NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-x1275/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-glk-dsi:         NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-glk-dsi/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-cml-u2:          NOTRUN -> [SKIP][42] ([fdo#109285])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cml-u2/igt@kms_force_connector_basic@force-load-detect.html
    - fi-icl-y:           NOTRUN -> [SKIP][43] ([fdo#109285])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-hsw-4770:        NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#533])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-cml-u2:          NOTRUN -> [SKIP][45] ([fdo#109278] / [i915#533])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cml-u2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#533])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-x1275/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-glk-dsi:         NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#533])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-glk-dsi/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-icl-y:           NOTRUN -> [SKIP][48] ([fdo#109278])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#533])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@cursor_plane_move:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][50] ([fdo#109271]) +37 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-icl-y:           NOTRUN -> [SKIP][51] ([fdo#110189]) +3 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@kms_psr@primary_mmap_gtt.html
    - fi-hsw-4770:        NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#1072]) +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html

  * igt@kms_psr@primary_page_flip:
    - fi-glk-dsi:         NOTRUN -> [SKIP][53] ([fdo#109271]) +25 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-glk-dsi/igt@kms_psr@primary_page_flip.html

  * igt@prime_vgem@basic-userptr:
    - fi-icl-y:           NOTRUN -> [SKIP][54] ([i915#3301])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@prime_vgem@basic-userptr.html
    - fi-cml-u2:          NOTRUN -> [SKIP][55] ([i915#3301])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cml-u2/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-cfl-8700k:       NOTRUN -> [FAIL][56] ([i915#2426] / [i915#3363] / [i915#3364])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cfl-8700k/igt@runner@aborted.html
    - fi-cfl-8109u:       NOTRUN -> [FAIL][57] ([i915#2426] / [i915#3363])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cfl-8109u/igt@runner@aborted.html
    - fi-apl-guc:         NOTRUN -> [FAIL][58] ([i915#2426] / [i915#3363] / [i915#3364] / [i915#337])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-apl-guc/igt@runner@aborted.html
    - fi-kbl-guc:         NOTRUN -> [FAIL][59] ([i915#2426] / [i915#3363] / [i915#3364])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-guc/igt@runner@aborted.html
    - fi-bxt-dsi:         NOTRUN -> [FAIL][60] ([i915#2426] / [i915#3363] / [i915#3364])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-bxt-dsi/igt@runner@aborted.html
    - fi-kbl-7567u:       NOTRUN -> [FAIL][61] ([i915#1436] / [i915#2426] / [i915#3363])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-7567u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@engines@basic:
    - fi-glk-dsi:         [DMESG-WARN][62] ([i915#1610]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_exec_parallel@engines@basic.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-glk-dsi/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_parallel@engines@userptr:
    - fi-icl-y:           [DMESG-WARN][64] -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-hsw-4770:        [DMESG-WARN][66] -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_sync@basic-each:
    - fi-cml-u2:          [DMESG-WARN][68] ([i915#1610]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_sync@basic-each.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-cml-u2/igt@gem_sync@basic-each.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][70] ([i915#2782] / [i915#2940]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@kms_flip@basic-flip-vs-dpms@b-dp3:
    - {fi-tgl-1115g4}:    [DMESG-WARN][72] -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html

  
#### Warnings ####

  * igt@runner@aborted:
    - fi-bdw-5557u:       [FAIL][74] ([i915#2426]) -> [FAIL][75] ([i915#1602] / [i915#2029])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-bdw-5557u/igt@runner@aborted.html
    - fi-kbl-soraka:      [FAIL][76] ([i915#2426] / [i915#3363] / [i915#3364]) -> [FAIL][77] ([i915#1186] / [i915#2426] / [i915#3363])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-soraka/igt@runner@aborted.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20529/fi-kbl-soraka/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1186]: https://gitlab.freedesktop.org/drm/intel/issues/1186
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2788]: https://gitlab.freedesktop.org/drm/intel/issues/2788
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#2966]: https://gitlab.freedesktop.org/drm/intel/issues/2966
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3159]: https://gitlab.freedesktop.org/drm/intel/issues/3159
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3364]: https://gitlab.freedesktop.org/drm/intel/issues/3364
  [i915#337]: https://gitlab.freedesktop.org/drm/intel/issues/337
  [i915#3626]: https://gitlab.freedesktop.org/drm/intel/issues/3626
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#3717]: https://gitlab.freedesktop.org/drm/intel/issues/3717
  [i915#3718]: https://gitlab.freedesktop.org/drm/intel/issues/3718
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


Participating hosts (32 -> 32)
------------------------------

  Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050 
  Missing    (3): fi-hsw-4200u fi-bdw-samus fi-kbl-7500u 


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

  * Linux: CI_DRM_10305 -> Patchwork_20529

  CI-20190529: 20190529
  CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20529: e440f05b44b60082e4ea1cf3ac26a95bf8385752 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

e440f05b44b6 drm/i915/hdcp: Dsiplay13 HDCP support over MST

== Logs ==

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

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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
                   ` (2 preceding siblings ...)
  2021-07-05 12:57 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST Patchwork
@ 2021-07-05 13:32 ` Patchwork
  2021-07-06 14:50   ` Gupta, Anshuman
  2021-07-06 16:00 ` Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2021-07-05 13:32 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
URL   : https://patchwork.freedesktop.org/series/92202/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20530
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@basic-busy@vcs0:
    - fi-kbl-7567u:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html

  * igt@gem_exec_parallel@engines@basic:
    - fi-icl-y:           [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html

  * igt@i915_selftest@live@execlists:
    - fi-bdw-5557u:       NOTRUN -> [DMESG-FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html

  
#### Warnings ####

  * igt@i915_pm_rpm@module-reload:
    - fi-ivb-3770:        [SKIP][6] ([fdo#109271]) -> [FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html

  
#### Suppressed ####

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

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
    - {fi-tgl-1115g4}:    NOTRUN -> [DMESG-WARN][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-hsw-4770:        NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#109315]) +17 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][10] ([fdo#109271]) +17 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

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

  * igt@gem_close_race@basic-threads:
    - fi-glk-dsi:         [PASS][13] -> [DMESG-WARN][14] ([i915#1610])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_close_race@basic-threads.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@gem_close_race@basic-threads.html

  * igt@gem_exec_create@basic:
    - fi-kbl-x1275:       NOTRUN -> [DMESG-WARN][15] ([i915#1610])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@gem_exec_create@basic.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-apl-guc:         NOTRUN -> [SKIP][16] ([fdo#109271]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html

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

  * igt@gem_exec_parallel@engines@basic:
    - fi-apl-guc:         NOTRUN -> [DMESG-WARN][18] ([i915#1610])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_parallel@engines@userptr:
    - fi-cml-u2:          [PASS][19] -> [DMESG-WARN][20] ([i915#1610])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html

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

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][22] ([fdo#109271]) +4 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-hsw-4770:        NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3012])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-hsw-4770:        NOTRUN -> [SKIP][25] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html

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

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-hsw-4770:        NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#533])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#533])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@cursor_plane_move:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][30] ([fdo#109271]) +37 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html
    - fi-bdw-5557u:       NOTRUN -> [SKIP][31] ([fdo#109271]) +9 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-hsw-4770:        NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#1072]) +3 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html

  * igt@runner@aborted:
    - fi-kbl-x1275:       NOTRUN -> [FAIL][33] ([i915#2426] / [i915#3363])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@runner@aborted.html
    - fi-apl-guc:         NOTRUN -> [FAIL][34] ([i915#2426] / [i915#3363] / [i915#3364] / [i915#337])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@runner@aborted.html
    - fi-ivb-3770:        NOTRUN -> [FAIL][35] ([fdo#109271] / [i915#2426])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@runner@aborted.html
    - fi-kbl-7567u:       NOTRUN -> [FAIL][36] ([i915#3363])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@engines@userptr:
    - fi-icl-y:           [DMESG-WARN][37] -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-hsw-4770:        [DMESG-WARN][39] -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][41] ([i915#2782] / [i915#2940]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@kms_flip@basic-flip-vs-dpms@b-dp3:
    - {fi-tgl-1115g4}:    [DMESG-WARN][43] -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html

  
#### Warnings ####

  * igt@runner@aborted:
    - fi-glk-dsi:         [FAIL][45] ([i915#2426] / [i915#3363] / [i915#3364] / [k.org#202321]) -> [FAIL][46] ([i915#2426] / [i915#3363] / [k.org#202321])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@runner@aborted.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@runner@aborted.html
    - fi-bdw-5557u:       [FAIL][47] ([i915#2426]) -> [FAIL][48] ([i915#2426] / [i915#3462])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@runner@aborted.html
    - fi-cml-u2:          [FAIL][49] ([i915#2082] / [i915#2426] / [i915#3363]) -> [FAIL][50] ([i915#2082] / [i915#2426] / [i915#3363] / [i915#3364])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@runner@aborted.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2082]: https://gitlab.freedesktop.org/drm/intel/issues/2082
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3159]: https://gitlab.freedesktop.org/drm/intel/issues/3159
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3364]: https://gitlab.freedesktop.org/drm/intel/issues/3364
  [i915#337]: https://gitlab.freedesktop.org/drm/intel/issues/337
  [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#3718]: https://gitlab.freedesktop.org/drm/intel/issues/3718
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321


Participating hosts (32 -> 30)
------------------------------

  Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050 
  Missing    (5): fi-kbl-soraka fi-hsw-4200u fi-snb-2520m fi-kbl-7500u fi-bdw-samus 


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

  * Linux: CI_DRM_10305 -> Patchwork_20530

  CI-20190529: 20190529
  CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20530: c4c07a1edab790161772383707e20d486fb3c366 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

c4c07a1edab7 drm/i915/hdcp: Nuke Platform check for mst hdcp init

== Logs ==

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

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

* Re: [Intel-gfx] [PATCH v2] drm/i915/hdcp: Nuke Platform check for mst hdcp init
  2021-07-05 12:22 ` [Intel-gfx] [PATCH v2] drm/i915/hdcp: Nuke Platform check for mst hdcp init Anshuman Gupta
@ 2021-07-06  7:30   ` Jani Nikula
  0 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2021-07-06  7:30 UTC (permalink / raw)
  To: Anshuman Gupta, intel-gfx

On Mon, 05 Jul 2021, Anshuman Gupta <anshuman.gupta@intel.com> wrote:
> Earlier HDCP over MST support was added for TGL Platform.
> Extending it to all future platfroms.
>
> v2:
> - Remove the platform check and commit log changes. [Jani]
>
> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>

Reviewed-by: Jani Nikula <jani.nikula@intel.com>


> ---
>  drivers/gpu/drm/i915/display/intel_dp_mst.c | 11 ++++-------
>  1 file changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 70fe90beaf6c..3661cd19ce48 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -835,13 +835,10 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
>  	intel_attach_force_audio_property(connector);
>  	intel_attach_broadcast_rgb_property(connector);
>  
> -	if (DISPLAY_VER(dev_priv) <= 12) {
> -		ret = intel_dp_hdcp_init(dig_port, intel_connector);
> -		if (ret)
> -			drm_dbg_kms(&dev_priv->drm, "[%s:%d] HDCP MST init failed, skipping.\n",
> -				    connector->name, connector->base.id);
> -	}
> -
> +	ret = intel_dp_hdcp_init(dig_port, intel_connector);
> +	if (ret)
> +		drm_dbg_kms(&dev_priv->drm, "[%s:%d] HDCP MST init failed, skipping.\n",
> +			    connector->name, connector->base.id);
>  	/*
>  	 * Reuse the prop from the SST connector because we're
>  	 * not allowed to create new props after device registration.

-- 
Jani Nikula, Intel Open Source Graphics Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-05 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2) Patchwork
@ 2021-07-06 14:50   ` Gupta, Anshuman
  2021-07-06 16:42     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 12+ messages in thread
From: Gupta, Anshuman @ 2021-07-06 14:50 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: intel-gfx


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

Hi Lakshmi
Below BAT failures are not related to HDCP at all.


igt@gem_exec_fence@basic-busy@vcs0:
fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html>

igt@gem_exec_parallel@engines@basic:
fi-icl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html>

igt@i915_selftest@live@execlists:
fi-bdw-5557u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html>

Could you please rise the bug for above failures and re-report the results.

Thanks,
Anshuman Gupta.
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Monday, July 5, 2021 7:03 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

Patch Details
Series:

drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

URL:

https://patchwork.freedesktop.org/series/92202/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/index.html

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20530
Summary

FAILURE

Serious unknown changes coming with Patchwork_20530 absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in Patchwork_20530, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.

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

Possible new issues

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

IGT changes
Possible regressions

  *   igt@gem_exec_fence@basic-busy@vcs0:

     *   fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html>

  *   igt@gem_exec_parallel@engines@basic:

     *   fi-icl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html>

  *   igt@i915_selftest@live@execlists:

     *   fi-bdw-5557u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html>

Warnings

  *   igt@i915_pm_rpm@module-reload:

     *   fi-ivb-3770: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html>

Suppressed

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

  *   igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:

     *   {fi-tgl-1115g4}: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html>

Known issues

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

IGT changes
Issues hit

  *   igt@amdgpu/amd_basic@cs-gfx:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +17 similar issues

  *   igt@amdgpu/amd_basic@semaphore:

     *   fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +17 similar issues

  *   igt@core_hotunplug@unbind-rebind:

     *   fi-hsw-4770: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@core_hotunplug@unbind-rebind.html> (i915#3718<https://gitlab.freedesktop.org/drm/intel/issues/3718>)
     *   fi-bdw-5557u: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html> (i915#3718<https://gitlab.freedesktop.org/drm/intel/issues/3718>)

  *   igt@gem_close_race@basic-threads:

     *   fi-glk-dsi: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_close_race@basic-threads.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@gem_close_race@basic-threads.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_create@basic:

     *   fi-kbl-x1275: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@gem_exec_create@basic.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_fence@basic-busy@bcs0:

     *   fi-apl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue

  *   igt@gem_exec_gttfill@basic:

     *   fi-bsw-n3050: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-n3050/igt@gem_exec_gttfill@basic.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)

  *   igt@gem_exec_parallel@engines@basic:

     *   fi-apl-guc: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_parallel@engines@basic.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_parallel@engines@userptr:

     *   fi-cml-u2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_suspend@basic-s3:

     *   fi-bsw-n3050: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-n3050/igt@gem_exec_suspend@basic-s3.html> (i915#3159<https://gitlab.freedesktop.org/drm/intel/issues/3159>)

  *   igt@gem_huc_copy@huc-copy:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +4 similar issues
     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>)

  *   igt@i915_pm_backlight@basic-brightness:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3012<https://gitlab.freedesktop.org/drm/intel/issues/3012>)

  *   igt@kms_chamelium@common-hpd-after-suspend:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_chamelium@dp-crc-fast:

     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_chamelium@hdmi-edid-read:

     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)
     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)

  *   igt@kms_psr@cursor_plane_move:

     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +37 similar issues
     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +9 similar issues

  *   igt@kms_psr@primary_mmap_gtt:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +3 similar issues

  *   igt@runner@aborted:

     *   fi-kbl-x1275: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>)
     *   fi-apl-guc: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364> / i915#337<https://gitlab.freedesktop.org/drm/intel/issues/337>)
     *   fi-ivb-3770: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@runner@aborted.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426>)
     *   fi-kbl-7567u: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@runner@aborted.html> (i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>)

Possible fixes

  *   igt@gem_exec_parallel@engines@userptr:

     *   fi-icl-y: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html>

  *   igt@gem_exec_suspend@basic-s3:

     *   fi-hsw-4770: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html>

  *   igt@i915_selftest@live@execlists:

     *   fi-bsw-nick: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html> (i915#2782<https://gitlab.freedesktop.org/drm/intel/issues/2782> / i915#2940<https://gitlab.freedesktop.org/drm/intel/issues/2940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@i915_selftest@live@execlists.html>

  *   igt@kms_flip@basic-flip-vs-dpms@b-dp3:

     *   {fi-tgl-1115g4}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html>

Warnings

  *   igt@runner@aborted:

     *   fi-glk-dsi: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364> / k.org#202321<https://bugzilla.kernel.org/show_bug.cgi?id=202321>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / k.org#202321<https://bugzilla.kernel.org/show_bug.cgi?id=202321>)
     *   fi-bdw-5557u: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3462<https://gitlab.freedesktop.org/drm/intel/issues/3462>)
     *   fi-cml-u2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@runner@aborted.html> (i915#2082<https://gitlab.freedesktop.org/drm/intel/issues/2082> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@runner@aborted.html> (i915#2082<https://gitlab.freedesktop.org/drm/intel/issues/2082> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364>)

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

Participating hosts (32 -> 30)

Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050
Missing (5): fi-kbl-soraka fi-hsw-4200u fi-snb-2520m fi-kbl-7500u fi-bdw-samus

Build changes

  *   Linux: CI_DRM_10305 -> Patchwork_20530

CI-20190529: 20190529
CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_20530: c4c07a1edab790161772383707e20d486fb3c366 @ git://anongit.freedesktop.org/gfx-ci/linux

== Linux commits ==

c4c07a1edab7 drm/i915/hdcp: Nuke Platform check for mst hdcp init

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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
                   ` (3 preceding siblings ...)
  2021-07-05 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2) Patchwork
@ 2021-07-06 16:00 ` Patchwork
  2021-07-06 16:25 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
  2021-07-06 18:48 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2021-07-06 16:00 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
URL   : https://patchwork.freedesktop.org/series/92202/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20530
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@basic-busy@vcs0:
    - fi-kbl-7567u:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html

  * igt@gem_exec_parallel@engines@basic:
    - fi-icl-y:           [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html

  * igt@i915_selftest@live@execlists:
    - fi-bdw-5557u:       NOTRUN -> [DMESG-FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html

  
#### Warnings ####

  * igt@i915_pm_rpm@module-reload:
    - fi-ivb-3770:        [SKIP][6] ([fdo#109271]) -> [FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html

  
#### Suppressed ####

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

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
    - {fi-tgl-1115g4}:    NOTRUN -> [DMESG-WARN][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-hsw-4770:        NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#109315]) +17 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][10] ([fdo#109271]) +17 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

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

  * igt@gem_close_race@basic-threads:
    - fi-glk-dsi:         [PASS][13] -> [DMESG-WARN][14] ([i915#1610])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_close_race@basic-threads.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@gem_close_race@basic-threads.html

  * igt@gem_exec_create@basic:
    - fi-kbl-x1275:       NOTRUN -> [DMESG-WARN][15] ([i915#1610])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@gem_exec_create@basic.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-apl-guc:         NOTRUN -> [SKIP][16] ([fdo#109271]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html

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

  * igt@gem_exec_parallel@engines@basic:
    - fi-apl-guc:         NOTRUN -> [DMESG-WARN][18] ([i915#1610])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_parallel@engines@userptr:
    - fi-cml-u2:          [PASS][19] -> [DMESG-WARN][20] ([i915#1610])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html

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

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][22] ([fdo#109271]) +4 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-hsw-4770:        NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3012])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-hsw-4770:        NOTRUN -> [SKIP][25] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html

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

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-hsw-4770:        NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#533])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#533])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@cursor_plane_move:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][30] ([fdo#109271]) +37 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html
    - fi-bdw-5557u:       NOTRUN -> [SKIP][31] ([fdo#109271]) +9 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-hsw-4770:        NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#1072]) +3 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html

  * igt@runner@aborted:
    - fi-kbl-x1275:       NOTRUN -> [FAIL][33] ([i915#2426] / [i915#3363])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@runner@aborted.html
    - fi-apl-guc:         NOTRUN -> [FAIL][34] ([i915#2426] / [i915#3363] / [i915#3364] / [i915#337])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@runner@aborted.html
    - fi-ivb-3770:        NOTRUN -> [FAIL][35] ([fdo#109271] / [i915#2426])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@runner@aborted.html
    - fi-kbl-7567u:       NOTRUN -> [FAIL][36] ([i915#3363])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@engines@userptr:
    - fi-icl-y:           [DMESG-WARN][37] -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-hsw-4770:        [DMESG-WARN][39] -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][41] ([i915#2782] / [i915#2940]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@kms_flip@basic-flip-vs-dpms@b-dp3:
    - {fi-tgl-1115g4}:    [DMESG-WARN][43] -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html

  
#### Warnings ####

  * igt@runner@aborted:
    - fi-glk-dsi:         [FAIL][45] ([i915#2426] / [i915#3363] / [i915#3364] / [k.org#202321]) -> [FAIL][46] ([i915#2426] / [i915#3363] / [k.org#202321])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@runner@aborted.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@runner@aborted.html
    - fi-bdw-5557u:       [FAIL][47] ([i915#2426]) -> [FAIL][48] ([i915#2426] / [i915#3462])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@runner@aborted.html
    - fi-cml-u2:          [FAIL][49] ([i915#2082] / [i915#2426] / [i915#3363]) -> [FAIL][50] ([i915#2082] / [i915#2426] / [i915#3363] / [i915#3364])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@runner@aborted.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2082]: https://gitlab.freedesktop.org/drm/intel/issues/2082
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3159]: https://gitlab.freedesktop.org/drm/intel/issues/3159
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3364]: https://gitlab.freedesktop.org/drm/intel/issues/3364
  [i915#337]: https://gitlab.freedesktop.org/drm/intel/issues/337
  [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#3718]: https://gitlab.freedesktop.org/drm/intel/issues/3718
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321


Participating hosts (32 -> 30)
------------------------------

  Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050 
  Missing    (5): fi-kbl-soraka fi-hsw-4200u fi-snb-2520m fi-kbl-7500u fi-bdw-samus 


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

  * Linux: CI_DRM_10305 -> Patchwork_20530

  CI-20190529: 20190529
  CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20530: c4c07a1edab790161772383707e20d486fb3c366 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

c4c07a1edab7 drm/i915/hdcp: Nuke Platform check for mst hdcp init

== Logs ==

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
                   ` (4 preceding siblings ...)
  2021-07-06 16:00 ` Patchwork
@ 2021-07-06 16:25 ` Patchwork
  2021-07-06 18:48 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2021-07-06 16:25 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
URL   : https://patchwork.freedesktop.org/series/92202/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20530
====================================================

Summary
-------

  **WARNING**

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

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

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

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

### IGT changes ###

#### Warnings ####

  * igt@i915_pm_rpm@module-reload:
    - fi-ivb-3770:        [SKIP][1] ([fdo#109271]) -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-hsw-4770:        NOTRUN -> [SKIP][3] ([fdo#109271] / [fdo#109315]) +17 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][4] ([fdo#109271]) +17 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

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

  * igt@gem_close_race@basic-threads:
    - fi-glk-dsi:         [PASS][7] -> [DMESG-WARN][8] ([i915#1610])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_close_race@basic-threads.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@gem_close_race@basic-threads.html

  * igt@gem_exec_create@basic:
    - fi-kbl-x1275:       NOTRUN -> [DMESG-WARN][9] ([i915#1610])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@gem_exec_create@basic.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-apl-guc:         NOTRUN -> [SKIP][10] ([fdo#109271]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_exec_fence@basic-busy@vcs0:
    - fi-kbl-7567u:       [PASS][11] -> [DMESG-WARN][12] ([i915#3738])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html

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

  * igt@gem_exec_parallel@engines@basic:
    - fi-icl-y:           [PASS][14] -> [DMESG-WARN][15] ([i915#3738])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html
    - fi-apl-guc:         NOTRUN -> [DMESG-WARN][16] ([i915#1610])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_parallel@engines@userptr:
    - fi-cml-u2:          [PASS][17] -> [DMESG-WARN][18] ([i915#1610])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html

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

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][20] ([fdo#109271]) +4 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2190])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-hsw-4770:        NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3012])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@execlists:
    - fi-bdw-5557u:       NOTRUN -> [DMESG-FAIL][23] ([i915#3738])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-hsw-4770:        NOTRUN -> [SKIP][24] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html

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

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-hsw-4770:        NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#533])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#533])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@cursor_plane_move:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][29] ([fdo#109271]) +37 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html
    - fi-bdw-5557u:       NOTRUN -> [SKIP][30] ([fdo#109271]) +9 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-hsw-4770:        NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1072]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html

  * igt@runner@aborted:
    - fi-kbl-x1275:       NOTRUN -> [FAIL][32] ([i915#2426] / [i915#3363])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@runner@aborted.html
    - fi-apl-guc:         NOTRUN -> [FAIL][33] ([i915#2426] / [i915#3363] / [i915#3364] / [i915#337])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@runner@aborted.html
    - fi-ivb-3770:        NOTRUN -> [FAIL][34] ([fdo#109271] / [i915#2426])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@runner@aborted.html
    - fi-kbl-7567u:       NOTRUN -> [FAIL][35] ([i915#3363])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@engines@userptr:
    - fi-icl-y:           [DMESG-WARN][36] ([i915#3738]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-hsw-4770:        [DMESG-WARN][38] ([i915#3738]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][40] ([i915#2782] / [i915#2940]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@kms_flip@basic-flip-vs-dpms@b-dp3:
    - {fi-tgl-1115g4}:    [DMESG-WARN][42] ([i915#3738]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html

  
#### Warnings ####

  * igt@runner@aborted:
    - fi-glk-dsi:         [FAIL][44] ([i915#2426] / [i915#3363] / [i915#3364] / [k.org#202321]) -> [FAIL][45] ([i915#2426] / [i915#3363] / [k.org#202321])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@runner@aborted.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@runner@aborted.html
    - fi-bdw-5557u:       [FAIL][46] ([i915#2426]) -> [FAIL][47] ([i915#2426] / [i915#3462])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@runner@aborted.html
    - fi-cml-u2:          [FAIL][48] ([i915#2082] / [i915#2426] / [i915#3363]) -> [FAIL][49] ([i915#2082] / [i915#2426] / [i915#3363] / [i915#3364])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@runner@aborted.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2082]: https://gitlab.freedesktop.org/drm/intel/issues/2082
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3159]: https://gitlab.freedesktop.org/drm/intel/issues/3159
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3364]: https://gitlab.freedesktop.org/drm/intel/issues/3364
  [i915#337]: https://gitlab.freedesktop.org/drm/intel/issues/337
  [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#3718]: https://gitlab.freedesktop.org/drm/intel/issues/3718
  [i915#3738]: https://gitlab.freedesktop.org/drm/intel/issues/3738
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321


Participating hosts (32 -> 30)
------------------------------

  Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050 
  Missing    (5): fi-kbl-soraka fi-hsw-4200u fi-snb-2520m fi-kbl-7500u fi-bdw-samus 


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

  * Linux: CI_DRM_10305 -> Patchwork_20530

  CI-20190529: 20190529
  CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20530: c4c07a1edab790161772383707e20d486fb3c366 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

c4c07a1edab7 drm/i915/hdcp: Nuke Platform check for mst hdcp init

== Logs ==

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-06 14:50   ` Gupta, Anshuman
@ 2021-07-06 16:42     ` Vudum, Lakshminarayana
  2021-07-07 10:50       ` Gupta, Anshuman
  0 siblings, 1 reply; 12+ messages in thread
From: Vudum, Lakshminarayana @ 2021-07-06 16:42 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

Re-reported.

From: Gupta, Anshuman <anshuman.gupta@intel.com>
Sent: Tuesday, July 6, 2021 7:51 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

Hi Lakshmi
Below BAT failures are not related to HDCP at all.


igt@gem_exec_fence@basic-busy@vcs0:
fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html>

igt@gem_exec_parallel@engines@basic:
fi-icl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html>

igt@i915_selftest@live@execlists:
fi-bdw-5557u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html>

Could you please rise the bug for above failures and re-report the results.

Thanks,
Anshuman Gupta.
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Monday, July 5, 2021 7:03 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com<mailto:anshuman.gupta@intel.com>>
Cc: intel-gfx@lists.freedesktop.org<mailto:intel-gfx@lists.freedesktop.org>
Subject: ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

Patch Details
Series:

drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

URL:

https://patchwork.freedesktop.org/series/92202/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/index.html

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20530
Summary

FAILURE

Serious unknown changes coming with Patchwork_20530 absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in Patchwork_20530, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.

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

Possible new issues

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

IGT changes
Possible regressions

  *   igt@gem_exec_fence@basic-busy@vcs0:

     *   fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html>

  *   igt@gem_exec_parallel@engines@basic:

     *   fi-icl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html>

  *   igt@i915_selftest@live@execlists:

     *   fi-bdw-5557u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html>

Warnings

  *   igt@i915_pm_rpm@module-reload:

     *   fi-ivb-3770: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html>

Suppressed

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

  *   igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:

     *   {fi-tgl-1115g4}: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html>

Known issues

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

IGT changes
Issues hit

  *   igt@amdgpu/amd_basic@cs-gfx:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +17 similar issues

  *   igt@amdgpu/amd_basic@semaphore:

     *   fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +17 similar issues

  *   igt@core_hotunplug@unbind-rebind:

     *   fi-hsw-4770: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@core_hotunplug@unbind-rebind.html> (i915#3718<https://gitlab.freedesktop.org/drm/intel/issues/3718>)
     *   fi-bdw-5557u: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html> (i915#3718<https://gitlab.freedesktop.org/drm/intel/issues/3718>)

  *   igt@gem_close_race@basic-threads:

     *   fi-glk-dsi: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_close_race@basic-threads.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@gem_close_race@basic-threads.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_create@basic:

     *   fi-kbl-x1275: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@gem_exec_create@basic.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_fence@basic-busy@bcs0:

     *   fi-apl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue

  *   igt@gem_exec_gttfill@basic:

     *   fi-bsw-n3050: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-n3050/igt@gem_exec_gttfill@basic.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)

  *   igt@gem_exec_parallel@engines@basic:

     *   fi-apl-guc: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_parallel@engines@basic.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_parallel@engines@userptr:

     *   fi-cml-u2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_suspend@basic-s3:

     *   fi-bsw-n3050: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-n3050/igt@gem_exec_suspend@basic-s3.html> (i915#3159<https://gitlab.freedesktop.org/drm/intel/issues/3159>)

  *   igt@gem_huc_copy@huc-copy:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +4 similar issues
     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>)

  *   igt@i915_pm_backlight@basic-brightness:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3012<https://gitlab.freedesktop.org/drm/intel/issues/3012>)

  *   igt@kms_chamelium@common-hpd-after-suspend:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_chamelium@dp-crc-fast:

     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_chamelium@hdmi-edid-read:

     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)
     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)

  *   igt@kms_psr@cursor_plane_move:

     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +37 similar issues
     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +9 similar issues

  *   igt@kms_psr@primary_mmap_gtt:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +3 similar issues

  *   igt@runner@aborted:

     *   fi-kbl-x1275: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>)
     *   fi-apl-guc: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364> / i915#337<https://gitlab.freedesktop.org/drm/intel/issues/337>)
     *   fi-ivb-3770: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@runner@aborted.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426>)
     *   fi-kbl-7567u: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@runner@aborted.html> (i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>)

Possible fixes

  *   igt@gem_exec_parallel@engines@userptr:

     *   fi-icl-y: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html>

  *   igt@gem_exec_suspend@basic-s3:

     *   fi-hsw-4770: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html>

  *   igt@i915_selftest@live@execlists:

     *   fi-bsw-nick: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html> (i915#2782<https://gitlab.freedesktop.org/drm/intel/issues/2782> / i915#2940<https://gitlab.freedesktop.org/drm/intel/issues/2940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@i915_selftest@live@execlists.html>

  *   igt@kms_flip@basic-flip-vs-dpms@b-dp3:

     *   {fi-tgl-1115g4}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html>

Warnings

  *   igt@runner@aborted:

     *   fi-glk-dsi: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364> / k.org#202321<https://bugzilla.kernel.org/show_bug.cgi?id=202321>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / k.org#202321<https://bugzilla.kernel.org/show_bug.cgi?id=202321>)
     *   fi-bdw-5557u: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3462<https://gitlab.freedesktop.org/drm/intel/issues/3462>)
     *   fi-cml-u2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@runner@aborted.html> (i915#2082<https://gitlab.freedesktop.org/drm/intel/issues/2082> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@runner@aborted.html> (i915#2082<https://gitlab.freedesktop.org/drm/intel/issues/2082> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364>)

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

Participating hosts (32 -> 30)

Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050
Missing (5): fi-kbl-soraka fi-hsw-4200u fi-snb-2520m fi-kbl-7500u fi-bdw-samus

Build changes

  *   Linux: CI_DRM_10305 -> Patchwork_20530

CI-20190529: 20190529
CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_20530: c4c07a1edab790161772383707e20d486fb3c366 @ git://anongit.freedesktop.org/gfx-ci/linux

== Linux commits ==

c4c07a1edab7 drm/i915/hdcp: Nuke Platform check for mst hdcp init

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
                   ` (5 preceding siblings ...)
  2021-07-06 16:25 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2021-07-06 18:48 ` Patchwork
  6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2021-07-06 18:48 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: intel-gfx


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

== Series Details ==

Series: drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
URL   : https://patchwork.freedesktop.org/series/92202/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10305_full -> Patchwork_20530_full
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@mock@dmabuf:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][1] +18 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@i915_selftest@mock@dmabuf.html

  * igt@kms_cdclk@mode-transition:
    - shard-tglb:         NOTRUN -> [SKIP][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@kms_cdclk@mode-transition.html

  
#### Suppressed ####

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

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - {shard-rkl}:        NOTRUN -> [INCOMPLETE][3] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-6/igt@gem_exec_whisper@basic-contexts-priority-all.html

  * igt@gem_exec_whisper@basic-fds-all:
    - {shard-rkl}:        NOTRUN -> [DMESG-WARN][4] +3 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-5/igt@gem_exec_whisper@basic-fds-all.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - {shard-rkl}:        NOTRUN -> [FAIL][5] +9 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_flip_tiling@flip-changes-tiling:
    - {shard-rkl}:        NOTRUN -> [SKIP][6] +7 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-1/igt@kms_flip_tiling@flip-changes-tiling.html

  * igt@runner@aborted:
    - {shard-rkl}:        NOTRUN -> ([FAIL][7], [FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16]) ([i915#3002])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-5/igt@runner@aborted.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-1/igt@runner@aborted.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-2/igt@runner@aborted.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-5/igt@runner@aborted.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-6/igt@runner@aborted.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-5/igt@runner@aborted.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-1/igt@runner@aborted.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-1/igt@runner@aborted.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-1/igt@runner@aborted.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-rkl-6/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-noreloc-keep-cache-random:
    - shard-skl:          [PASS][17] -> [DMESG-WARN][18] ([i915#1610] / [i915#1982] / [i915#3738])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-skl9/igt@api_intel_bb@blit-noreloc-keep-cache-random.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl9/igt@api_intel_bb@blit-noreloc-keep-cache-random.html

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

  * igt@gem_ctx_persistence@engines-queued:
    - shard-snb:          NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-snb6/igt@gem_ctx_persistence@engines-queued.html

  * igt@gem_ctx_persistence@legacy-engines-hostile@bsd:
    - shard-glk:          [PASS][21] -> [FAIL][22] ([i915#2410])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-glk7/igt@gem_ctx_persistence@legacy-engines-hostile@bsd.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-glk4/igt@gem_ctx_persistence@legacy-engines-hostile@bsd.html

  * igt@gem_ctx_sseu@mmap-args@uc:
    - shard-iclb:         [PASS][23] -> [DMESG-WARN][24] ([i915#3738]) +5 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-iclb6/igt@gem_ctx_sseu@mmap-args@uc.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb2/igt@gem_ctx_sseu@mmap-args@uc.html

  * igt@gem_eio@reset-stress:
    - shard-tglb:         [PASS][25] -> [INCOMPLETE][26] ([i915#3738]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-tglb2/igt@gem_eio@reset-stress.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb6/igt@gem_eio@reset-stress.html
    - shard-iclb:         [PASS][27] -> [INCOMPLETE][28] ([i915#3738])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-iclb1/igt@gem_eio@reset-stress.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb4/igt@gem_eio@reset-stress.html

  * igt@gem_eio@suspend:
    - shard-iclb:         [PASS][29] -> [INCOMPLETE][30] ([i915#1185] / [i915#3738])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-iclb2/igt@gem_eio@suspend.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb3/igt@gem_eio@suspend.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][31] -> [INCOMPLETE][32] ([i915#2369] / [i915#2481] / [i915#3738])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-iclb1/igt@gem_eio@unwedge-stress.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb4/igt@gem_eio@unwedge-stress.html
    - shard-snb:          NOTRUN -> [FAIL][33] ([i915#3354])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-snb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][34] ([i915#2842])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][35] -> [FAIL][36] ([i915#2842]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-glk:          [PASS][37] -> [FAIL][38] ([i915#2842]) +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-glk7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-glk5/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][39] -> [FAIL][40] ([i915#2849])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_gttfill@all:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][41] ([i915#3738])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@gem_exec_gttfill@all.html

  * igt@gem_exec_gttfill@engines@bcs0:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][42] ([i915#3738])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl7/igt@gem_exec_gttfill@engines@bcs0.html

  * igt@gem_exec_parallel@userptr@bcs0:
    - shard-glk:          [PASS][43] -> [DMESG-WARN][44] ([i915#1610] / [i915#3738]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-glk9/igt@gem_exec_parallel@userptr@bcs0.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-glk8/igt@gem_exec_parallel@userptr@bcs0.html

  * igt@gem_exec_reloc@basic-wide-active@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][45] ([i915#3633])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html

  * igt@gem_exec_schedule@preempt-self@vecs0:
    - shard-apl:          [PASS][46] -> [DMESG-WARN][47] ([i915#1610] / [i915#3738])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-apl2/igt@gem_exec_schedule@preempt-self@vecs0.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl8/igt@gem_exec_schedule@preempt-self@vecs0.html

  * igt@gem_exec_whisper@basic-fds-priority-all:
    - shard-glk:          [PASS][48] -> [DMESG-WARN][49] ([i915#118] / [i915#95])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-glk2/igt@gem_exec_whisper@basic-fds-priority-all.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-glk2/igt@gem_exec_whisper@basic-fds-priority-all.html

  * igt@gem_huc_copy@huc-copy:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#2190])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_mmap_gtt@coherency:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111656])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@gem_mmap_gtt@coherency.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
    - shard-glk:          [PASS][52] -> [FAIL][53] ([i915#307] / [i915#3468])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-glk6/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][54] ([i915#2658])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl6/igt@gem_pread@exhaustion.html

  * igt@gem_userptr_blits@access-control:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#3297]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3323])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109289]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#112306])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#2856])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-apl:          NOTRUN -> [INCOMPLETE][60] ([i915#1373] / [i915#1982] / [i915#3738])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl6/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#1904])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-skl:          NOTRUN -> [SKIP][62] ([fdo#109271]) +29 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl9/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#109506] / [i915#2411])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@system-suspend-modeset:
    - shard-skl:          NOTRUN -> [INCOMPLETE][64] ([i915#151])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl9/igt@i915_pm_rpm@system-suspend-modeset.html

  * igt@i915_selftest@live@execlists:
    - shard-apl:          [PASS][65] -> [DMESG-FAIL][66] ([i915#1610] / [i915#3738])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-apl8/igt@i915_selftest@live@execlists.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl2/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_engines:
    - shard-tglb:         [PASS][67] -> [DMESG-FAIL][68] ([i915#2927] / [i915#3738])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-tglb7/igt@i915_selftest@live@gt_engines.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb6/igt@i915_selftest@live@gt_engines.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
    - shard-skl:          NOTRUN -> [DMESG-WARN][69] ([i915#1610] / [i915#3738]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([fdo#111614]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-iclb:         [PASS][72] -> [DMESG-WARN][73] ([i915#3621])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-iclb3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#111615]) +2 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#110723])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#3689]) +6 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-snb:          NOTRUN -> [SKIP][77] ([fdo#109271]) +213 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-snb6/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium@hdmi-hpd-after-suspend:
    - shard-skl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl9/igt@kms_chamelium@hdmi-hpd-after-suspend.html

  * igt@kms_chamelium@vga-hpd-fast:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#109284] / [fdo#111827]) +8 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_chamelium@vga-hpd-fast.html

  * igt@kms_color@pipe-d-ctm-negative:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109278] / [i915#1149])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_color@pipe-d-ctm-negative.html

  * igt@kms_color_chamelium@pipe-a-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +11 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl6/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-a-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][84] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl3/igt@kms_color_chamelium@pipe-a-ctm-negative.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          NOTRUN -> [TIMEOUT][85] ([i915#1319])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([i915#3116])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-kbl:          NOTRUN -> [TIMEOUT][87] ([i915#1319])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl1/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@srm:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#111828]) +2 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3319])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
    - shard-skl:          NOTRUN -> [FAIL][91] ([i915#3444])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x10-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#3359]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-32x10-sliding.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([fdo#109278]) +14 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-apl:          [PASS][94] -> [DMESG-WARN][95] ([i915#180])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271]) +197 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl3/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([fdo#109279] / [i915#3359]) +3 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][98] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [PASS][99] -> [FAIL][100] ([i915#72])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@all-pipes-torture-move:
    - shard-apl:          [PASS][101] -> [INCOMPLETE][102] ([i915#3738])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-apl8/igt@kms_cursor_legacy@all-pipes-torture-move.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl3/igt@kms_cursor_legacy@all-pipes-torture-move.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
    - shard-skl:          NOTRUN -> [DMESG-WARN][103] ([i915#1610] / [i915#1982] / [i915#3738])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@pipe-a-torture-bo:
    - shard-snb:          [PASS][104] -> [INCOMPLETE][105] ([i915#3738])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-snb5/igt@kms_cursor_legacy@pipe-a-torture-bo.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-snb7/igt@kms_cursor_legacy@pipe-a-torture-bo.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-skl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#533])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_dp_dsc@basic-dsc-enable-dp:
    - shard-tglb:         NOTRUN -> [SKIP][107] ([fdo#109349])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_dp_dsc@basic-dsc-enable-dp.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][108] ([i915#3528])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [PASS][109] -> [INCOMPLETE][110] ([i915#155] / [i915#180] / [i915#636])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109274])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-rmfb@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][112] ([i915#1610] / [i915#3738])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl6/igt@kms_flip@flip-vs-rmfb@a-dp1.html

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

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][115] ([fdo#109285])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][116] ([i915#3738])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
    - shard-tglb:         NOTRUN -> [SKIP][117] ([fdo#111825]) +30 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-kbl:          [PASS][118] -> [DMESG-WARN][119] ([i915#1610] / [i915#3738]) +4 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
    - shard-tglb:         [PASS][120] -> [DMESG-WARN][121] ([i915#3738]) +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109280]) +11 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#1839])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#533]) +1 similar issue
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl4/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
    - shard-skl:          NOTRUN -> [FAIL][125] ([fdo#108145] / [i915#265]) +1 similar issue
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl4/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-apl:          NOTRUN -> [FAIL][126] ([fdo#108145] / [i915#265]) +2 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_cursor@pipe-b-primary-size-128:
    - shard-skl:          [PASS][127] -> [DMESG-WARN][128] ([i915#1610] / [i915#3738]) +1 similar issue
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-skl2/igt@kms_plane_cursor@pipe-b-primary-size-128.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl7/igt@kms_plane_cursor@pipe-b-primary-size-128.html

  * igt@kms_plane_lowres@pipe-a-tiling-none:
    - shard-snb:          [PASS][129] -> [DMESG-WARN][130] ([i915#3738])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/shard-snb5/igt@kms_plane_lowres@pipe-a-tiling-none.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-snb6/igt@kms_plane_lowres@pipe-a-tiling-none.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][131] ([i915#3536])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][132] ([i915#3536])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
    - shard-kbl:          NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#658]) +2 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-apl:          NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#658]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-skl:          NOTRUN -> [SKIP][135] ([fdo#109271] / [i915#658]) +1 similar issue
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-skl9/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-tglb:         NOTRUN -> [SKIP][136] ([i915#2920]) +1 similar issue
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/shard-tglb3/igt@kms_psr

== Logs ==

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)
  2021-07-06 16:42     ` Vudum, Lakshminarayana
@ 2021-07-07 10:50       ` Gupta, Anshuman
  0 siblings, 0 replies; 12+ messages in thread
From: Gupta, Anshuman @ 2021-07-07 10:50 UTC (permalink / raw)
  To: Vudum, Lakshminarayana, intel-gfx


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

Thanks for re-reporting.
There were non related CI-IGT failures.
Pushed to drm-intel-next.
Thanks,
Anshuman Gupta.

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Sent: Tuesday, July 6, 2021 10:12 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

Re-reported.

From: Gupta, Anshuman <anshuman.gupta@intel.com<mailto:anshuman.gupta@intel.com>>
Sent: Tuesday, July 6, 2021 7:51 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: intel-gfx@lists.freedesktop.org<mailto:intel-gfx@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

Hi Lakshmi
Below BAT failures are not related to HDCP at all.


igt@gem_exec_fence@basic-busy@vcs0:
fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html>

igt@gem_exec_parallel@engines@basic:
fi-icl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html>

igt@i915_selftest@live@execlists:
fi-bdw-5557u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html>

Could you please rise the bug for above failures and re-report the results.

Thanks,
Anshuman Gupta.
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Monday, July 5, 2021 7:03 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com<mailto:anshuman.gupta@intel.com>>
Cc: intel-gfx@lists.freedesktop.org<mailto:intel-gfx@lists.freedesktop.org>
Subject: ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

Patch Details
Series:

drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2)

URL:

https://patchwork.freedesktop.org/series/92202/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/index.html

CI Bug Log - changes from CI_DRM_10305 -> Patchwork_20530
Summary

FAILURE

Serious unknown changes coming with Patchwork_20530 absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in Patchwork_20530, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.

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

Possible new issues

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

IGT changes
Possible regressions

  *   igt@gem_exec_fence@basic-busy@vcs0:

     *   fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vcs0.html>

  *   igt@gem_exec_parallel@engines@basic:

     *   fi-icl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@basic.html>

  *   igt@i915_selftest@live@execlists:

     *   fi-bdw-5557u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@i915_selftest@live@execlists.html>

Warnings

  *   igt@i915_pm_rpm@module-reload:

     *   fi-ivb-3770: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@i915_pm_rpm@module-reload.html>

Suppressed

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

  *   igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:

     *   {fi-tgl-1115g4}: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html>

Known issues

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

IGT changes
Issues hit

  *   igt@amdgpu/amd_basic@cs-gfx:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +17 similar issues

  *   igt@amdgpu/amd_basic@semaphore:

     *   fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +17 similar issues

  *   igt@core_hotunplug@unbind-rebind:

     *   fi-hsw-4770: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@core_hotunplug@unbind-rebind.html> (i915#3718<https://gitlab.freedesktop.org/drm/intel/issues/3718>)
     *   fi-bdw-5557u: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html> (i915#3718<https://gitlab.freedesktop.org/drm/intel/issues/3718>)

  *   igt@gem_close_race@basic-threads:

     *   fi-glk-dsi: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@gem_close_race@basic-threads.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@gem_close_race@basic-threads.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_create@basic:

     *   fi-kbl-x1275: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@gem_exec_create@basic.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_fence@basic-busy@bcs0:

     *   fi-apl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_fence@basic-busy@bcs0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue

  *   igt@gem_exec_gttfill@basic:

     *   fi-bsw-n3050: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-n3050/igt@gem_exec_gttfill@basic.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)

  *   igt@gem_exec_parallel@engines@basic:

     *   fi-apl-guc: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@gem_exec_parallel@engines@basic.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_parallel@engines@userptr:

     *   fi-cml-u2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@gem_exec_parallel@engines@userptr.html> (i915#1610<https://gitlab.freedesktop.org/drm/intel/issues/1610>)

  *   igt@gem_exec_suspend@basic-s3:

     *   fi-bsw-n3050: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-n3050/igt@gem_exec_suspend@basic-s3.html> (i915#3159<https://gitlab.freedesktop.org/drm/intel/issues/3159>)

  *   igt@gem_huc_copy@huc-copy:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +4 similar issues
     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>)

  *   igt@i915_pm_backlight@basic-brightness:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3012<https://gitlab.freedesktop.org/drm/intel/issues/3012>)

  *   igt@kms_chamelium@common-hpd-after-suspend:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_chamelium@dp-crc-fast:

     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_chamelium@hdmi-edid-read:

     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)
     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)

  *   igt@kms_psr@cursor_plane_move:

     *   fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +37 similar issues
     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +9 similar issues

  *   igt@kms_psr@primary_mmap_gtt:

     *   fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +3 similar issues

  *   igt@runner@aborted:

     *   fi-kbl-x1275: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-x1275/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>)
     *   fi-apl-guc: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-apl-guc/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364> / i915#337<https://gitlab.freedesktop.org/drm/intel/issues/337>)
     *   fi-ivb-3770: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-ivb-3770/igt@runner@aborted.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426>)
     *   fi-kbl-7567u: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-kbl-7567u/igt@runner@aborted.html> (i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>)

Possible fixes

  *   igt@gem_exec_parallel@engines@userptr:

     *   fi-icl-y: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-icl-y/igt@gem_exec_parallel@engines@userptr.html>

  *   igt@gem_exec_suspend@basic-s3:

     *   fi-hsw-4770: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-hsw-4770/igt@gem_exec_suspend@basic-s3.html>

  *   igt@i915_selftest@live@execlists:

     *   fi-bsw-nick: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bsw-nick/igt@i915_selftest@live@execlists.html> (i915#2782<https://gitlab.freedesktop.org/drm/intel/issues/2782> / i915#2940<https://gitlab.freedesktop.org/drm/intel/issues/2940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bsw-nick/igt@i915_selftest@live@execlists.html>

  *   igt@kms_flip@basic-flip-vs-dpms@b-dp3:

     *   {fi-tgl-1115g4}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-tgl-1115g4/igt@kms_flip@basic-flip-vs-dpms@b-dp3.html>

Warnings

  *   igt@runner@aborted:

     *   fi-glk-dsi: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-glk-dsi/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364> / k.org#202321<https://bugzilla.kernel.org/show_bug.cgi?id=202321>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-glk-dsi/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / k.org#202321<https://bugzilla.kernel.org/show_bug.cgi?id=202321>)
     *   fi-bdw-5557u: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-bdw-5557u/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-bdw-5557u/igt@runner@aborted.html> (i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3462<https://gitlab.freedesktop.org/drm/intel/issues/3462>)
     *   fi-cml-u2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10305/fi-cml-u2/igt@runner@aborted.html> (i915#2082<https://gitlab.freedesktop.org/drm/intel/issues/2082> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20530/fi-cml-u2/igt@runner@aborted.html> (i915#2082<https://gitlab.freedesktop.org/drm/intel/issues/2082> / i915#2426<https://gitlab.freedesktop.org/drm/intel/issues/2426> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#3364<https://gitlab.freedesktop.org/drm/intel/issues/3364>)

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

Participating hosts (32 -> 30)

Additional (3): fi-kbl-x1275 fi-apl-guc fi-bsw-n3050
Missing (5): fi-kbl-soraka fi-hsw-4200u fi-snb-2520m fi-kbl-7500u fi-bdw-samus

Build changes

  *   Linux: CI_DRM_10305 -> Patchwork_20530

CI-20190529: 20190529
CI_DRM_10305: fd899b57cb480c98e60ee842671bddd4759dfca3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6128: b24e5949af7e51f0af484d2ce4cb4c5a41ac5358 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_20530: c4c07a1edab790161772383707e20d486fb3c366 @ git://anongit.freedesktop.org/gfx-ci/linux

== Linux commits ==

c4c07a1edab7 drm/i915/hdcp: Nuke Platform check for mst hdcp init

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

end of thread, other threads:[~2021-07-07 10:50 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-05 11:37 [Intel-gfx] [PATCH] drm/i915/hdcp: Dsiplay13 HDCP support over MST Anshuman Gupta
2021-07-05 12:01 ` Jani Nikula
2021-07-05 12:22 ` [Intel-gfx] [PATCH v2] drm/i915/hdcp: Nuke Platform check for mst hdcp init Anshuman Gupta
2021-07-06  7:30   ` Jani Nikula
2021-07-05 12:57 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST Patchwork
2021-07-05 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/hdcp: Dsiplay13 HDCP support over MST (rev2) Patchwork
2021-07-06 14:50   ` Gupta, Anshuman
2021-07-06 16:42     ` Vudum, Lakshminarayana
2021-07-07 10:50       ` Gupta, Anshuman
2021-07-06 16:00 ` Patchwork
2021-07-06 16:25 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-07-06 18:48 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " 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.