All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check
@ 2021-07-15  6:47 Anshuman Gupta
  2021-07-15  7:13 ` Sharma, Swati2
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Anshuman Gupta @ 2021-07-15  6:47 UTC (permalink / raw)
  To: igt-dev

setup_dc_dpms() disables i915 runtime suspend to execute
dc{5,6}-dpms for the platforms has DC9 states to avoid
counter reset issue. With recent changes now AT_LEAST_GEN()
macro checks for grphics_ver, fix it with display_ver.

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

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 0301fecc..3fe40e9d 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -337,7 +337,7 @@ static void cleanup_dc_dpms(data_t *data)
 static void setup_dc_dpms(data_t *data)
 {
 	if (IS_BROXTON(data->devid) || IS_GEMINILAKE(data->devid) ||
-	    AT_LEAST_GEN(data->devid, 11)) {
+	    intel_display_ver(data->devid) >= 11) {
 		igt_disable_runtime_pm();
 		data->runtime_suspend_disabled = true;
 	} else {
-- 
2.26.2

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check
  2021-07-15  6:47 [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
@ 2021-07-15  7:13 ` Sharma, Swati2
  2021-07-15 13:35 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/i915_pm_dc: Fix platform version check (rev2) Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Sharma, Swati2 @ 2021-07-15  7:13 UTC (permalink / raw)
  To: Gupta, Anshuman, igt-dev

Reviewed-by: Swati Sharma <swati2.sharma@intel.com>

-----Original Message-----
From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Anshuman Gupta
Sent: Thursday, July 15, 2021 12:18 PM
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check

setup_dc_dpms() disables i915 runtime suspend to execute dc{5,6}-dpms for the platforms has DC9 states to avoid counter reset issue. With recent changes now AT_LEAST_GEN() macro checks for grphics_ver, fix it with display_ver.

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

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c index 0301fecc..3fe40e9d 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -337,7 +337,7 @@ static void cleanup_dc_dpms(data_t *data)  static void setup_dc_dpms(data_t *data)  {
 	if (IS_BROXTON(data->devid) || IS_GEMINILAKE(data->devid) ||
-	    AT_LEAST_GEN(data->devid, 11)) {
+	    intel_display_ver(data->devid) >= 11) {
 		igt_disable_runtime_pm();
 		data->runtime_suspend_disabled = true;
 	} else {
--
2.26.2

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

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

* [igt-dev] ✗ Fi.CI.BUILD: failure for tests/i915_pm_dc: Fix platform version check (rev2)
  2021-07-15  6:47 [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
  2021-07-15  7:13 ` Sharma, Swati2
@ 2021-07-15 13:35 ` Patchwork
  2021-07-19 12:06 ` [igt-dev] [REBASED] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2021-07-15 13:35 UTC (permalink / raw)
  To: Sharma, Swati2; +Cc: igt-dev

== Series Details ==

Series: tests/i915_pm_dc: Fix platform version check (rev2)
URL   : https://patchwork.freedesktop.org/series/92563/
State : failure

== Summary ==

Applying: tests/i915_pm_dc: Fix platform version check
Patch failed at 0001 tests/i915_pm_dc: Fix platform version check
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".


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

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

* [igt-dev] [REBASED] tests/i915_pm_dc: Fix platform version check
  2021-07-15  6:47 [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
  2021-07-15  7:13 ` Sharma, Swati2
  2021-07-15 13:35 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/i915_pm_dc: Fix platform version check (rev2) Patchwork
@ 2021-07-19 12:06 ` Anshuman Gupta
  2021-07-19 13:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915_pm_dc: Fix platform version check (rev3) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Anshuman Gupta @ 2021-07-19 12:06 UTC (permalink / raw)
  To: igt-dev

setup_dc_dpms() disables i915 runtime suspend to execute
dc{5,6}-dpms for the platforms has DC9 states to avoid
counter reset issue. With recent changes now AT_LEAST_GEN()
macro checks for grphics_ver, fix it with display_ver.

Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_dc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 53840579..9d0a15d8 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -337,7 +337,7 @@ static void cleanup_dc_dpms(data_t *data)
 static void setup_dc_dpms(data_t *data)
 {
 	if (IS_BROXTON(data->devid) || IS_GEMINILAKE(data->devid) ||
-	    AT_LEAST_GEN(data->devid, 11)) {
+	    intel_display_ver(data->devid) >= 11) {
 		igt_disable_runtime_pm();
 		data->runtime_suspend_disabled = true;
 	} else {
-- 
2.26.2

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915_pm_dc: Fix platform version check (rev3)
  2021-07-15  6:47 [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
                   ` (2 preceding siblings ...)
  2021-07-19 12:06 ` [igt-dev] [REBASED] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
@ 2021-07-19 13:05 ` Patchwork
       [not found] ` <162671450262.8480.1915025964453256974@emeril.freedesktop.org>
  2021-07-22 16:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2021-07-19 13:05 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev


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

== Series Details ==

Series: tests/i915_pm_dc: Fix platform version check (rev3)
URL   : https://patchwork.freedesktop.org/series/92563/
State : success

== Summary ==

CI Bug Log - changes from IGT_6145 -> IGTPW_6035
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][1] ([fdo#109271]) +24 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][3] ([i915#1886] / [i915#2291])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

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

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#533])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-u2:          [FAIL][6] ([i915#1888]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


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

  Additional (1): fi-kbl-soraka 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-bwr-2160 fi-ctg-p8600 fi-tgl-y fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6145 -> IGTPW_6035

  CI-20190529: 20190529
  CI_DRM_10350: 0da7e60301374bc5d2d53573b061cad7f6e2959e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6035: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/index.html
  IGT_6145: e93b651b955c44a6ebd53368faec1d856a8df3a1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915_pm_dc: Fix platform version check (rev3)
       [not found] ` <162671450262.8480.1915025964453256974@emeril.freedesktop.org>
@ 2021-07-22 11:28   ` Gupta, Anshuman
  2021-07-22 17:18     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 8+ messages in thread
From: Gupta, Anshuman @ 2021-07-22 11:28 UTC (permalink / raw)
  To: Vudum, Lakshminarayana, Sharma, Swati2; +Cc: igt-dev

Hi Lakshmi,
Below failures is not related to DC states.
Could you please re-report the CI-Results. 

 igt@kms_frontbuffer_tracking@fbc-badstride:
 shard-apl: PASS -> FAIL

Hi Swati,
Could you please help to merge this patch.
Thanks,
Anshuman Gupta. 

From: Patchwork <patchwork@emeril.freedesktop.org> 
Sent: Monday, July 19, 2021 10:38 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for tests/i915_pm_dc: Fix platform version check (rev3)

Patch Details 
Series:
tests/i915_pm_dc: Fix platform version check (rev3)
URL:
https://patchwork.freedesktop.org/series/92563/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/index.html
CI Bug Log - changes from IGT_6145_full -> IGTPW_6035_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_6035_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6035_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/index.html
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_6035_full:
IGT changes
Possible regressions
• igt@kms_frontbuffer_tracking@fbc-badstride:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl6/igt@kms_frontbuffer_tracking@fbc-badstride.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl2/igt@kms_frontbuffer_tracking@fbc-badstride.html
Known issues
Here are the changes found in IGTPW_6035_full that come from known issues:
IGT changes
Issues hit
• igt@gem_ctx_isolation@preservation-s3@bcs0:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html ([i915#180]) +1 similar issue
• igt@gem_ctx_param@set-priority-not-supported:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html ([fdo#109314])
• igt@gem_ctx_persistence@engines-mixed-process:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb5/igt@gem_ctx_persistence@engines-mixed-process.html ([fdo#109271] / [i915#1099]) +5 similar issues
• igt@gem_eio@kms:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk1/igt@gem_eio@kms.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@gem_eio@kms.html ([i915#3115])
• igt@gem_eio@unwedge-stress:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-tglb5/igt@gem_eio@unwedge-stress.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@gem_eio@unwedge-stress.html ([i915#2369] / [i915#3063] / [i915#3648])
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb5/igt@gem_eio@unwedge-stress.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@gem_eio@unwedge-stress.html ([i915#2369] / [i915#2481] / [i915#3070])
• igt@gem_exec_fair@basic-none@vcs0:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html ([i915#2842]) +3 similar issues
• igt@gem_exec_fair@basic-pace-share@rcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html ([i915#2842]) +1 similar issue
• igt@gem_exec_fair@basic-pace@bcs0:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@gem_exec_fair@basic-pace@bcs0.html ([i915#2842]) +4 similar issues
• igt@gem_exec_fair@basic-pace@vcs0:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html ([i915#2842]) +3 similar issues
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html ([i915#2842])
• igt@gem_exec_schedule@u-independent@vecs0:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb2/igt@gem_exec_schedule@u-independent@vecs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_exec_schedule@u-independent@vecs0.html ([i915#3795])
• igt@gem_huc_copy@huc-copy:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@gem_huc_copy@huc-copy.html ([fdo#109271] / [i915#2190])
• igt@gem_pread@exhaustion:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@gem_pread@exhaustion.html ([i915#2658])
• igt@gem_pwrite@basic-exhaustion:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb2/igt@gem_pwrite@basic-exhaustion.html ([i915#2658]) +1 similar issue
• igt@gem_render_copy@linear-to-vebox-yf-tiled:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@gem_render_copy@linear-to-vebox-yf-tiled.html ([i915#768])
• igt@gem_userptr_blits@input-checking:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@gem_userptr_blits@input-checking.html ([i915#3002])
• igt@gem_userptr_blits@invalid-mmap-offset-unsync:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html ([i915#3297]) +1 similar issue
• igt@gem_userptr_blits@readonly-unsync:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html ([i915#3297]) +1 similar issue
• igt@gem_userptr_blits@vma-merge:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb7/igt@gem_userptr_blits@vma-merge.html ([i915#2724])
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl2/igt@gem_userptr_blits@vma-merge.html ([i915#3318])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_userptr_blits@vma-merge.html ([i915#3318])
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@gem_userptr_blits@vma-merge.html ([i915#3318])
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@gem_userptr_blits@vma-merge.html ([i915#3318])
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@gem_userptr_blits@vma-merge.html ([i915#3318])
• igt@gen9_exec_parse@basic-rejected-ctx-param:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@gen9_exec_parse@basic-rejected-ctx-param.html ([i915#2856])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@gen9_exec_parse@basic-rejected-ctx-param.html ([i915#2856]) +1 similar issue
• igt@i915_pm_rc6_residency@rc6-idle:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@i915_pm_rc6_residency@rc6-idle.html ([i915#2681] / [i915#2684])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html ([i915#2684])
• igt@i915_pm_rpm@modeset-lpsp-stress:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@i915_pm_rpm@modeset-lpsp-stress.html ([fdo#109271]) +281 similar issues
• igt@i915_pm_sseu@full-enable:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@i915_pm_sseu@full-enable.html ([fdo#109288])
• igt@i915_query@query-topology-known-pci-ids:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html ([fdo#109303])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@i915_query@query-topology-known-pci-ids.html ([fdo#109303])
• igt@i915_query@query-topology-unsupported:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@i915_query@query-topology-unsupported.html ([fdo#109302])
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb7/igt@i915_query@query-topology-unsupported.html ([fdo#109302])
• igt@i915_selftest@mock@dmabuf:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@i915_selftest@mock@dmabuf.html ([i915#3746]) +17 similar issues
• igt@i915_selftest@mock@evict:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@i915_selftest@mock@evict.html ([i915#3746]) +5 similar issues
• igt@i915_selftest@mock@objects:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@i915_selftest@mock@objects.html ([i915#3746]) +17 similar issues
• igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html ([fdo#109271] / [i915#3777]) +2 similar issues
• igt@kms_big_fb@y-tiled-8bpp-rotate-270:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html ([fdo#111614])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html ([fdo#110725] / [fdo#111614])
• igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html ([i915#3621]) +1 similar issue
• igt@kms_big_fb@yf-tiled-addfb-size-overflow:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html ([fdo#111615]) +3 similar issues
• igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html ([fdo#109271]) +110 similar issues
• igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html ([i915#3689]) +7 similar issues
• igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-tglb6/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html ([i915#3746])
• igt@kms_chamelium@dp-frame-dump:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html ([fdo#109284] / [fdo#111827]) +5 similar issues
• igt@kms_chamelium@dp-hpd-with-enabled-mode:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk4/igt@kms_chamelium@dp-hpd-with-enabled-mode.html ([fdo#109271] / [fdo#111827]) +4 similar issues
• igt@kms_chamelium@vga-edid-read:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_chamelium@vga-edid-read.html ([fdo#109271] / [fdo#111827]) +22 similar issues
• igt@kms_color@pipe-d-ctm-0-25:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_color@pipe-d-ctm-0-25.html ([fdo#109278] / [i915#1149])
• igt@kms_color_chamelium@pipe-b-ctm-0-25:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@kms_color_chamelium@pipe-b-ctm-0-25.html ([fdo#109271] / [fdo#111827]) +5 similar issues
• igt@kms_color_chamelium@pipe-c-degamma:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@kms_color_chamelium@pipe-c-degamma.html ([fdo#109284] / [fdo#111827]) +4 similar issues
• igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html ([fdo#109278] / [fdo#109284] / [fdo#111827])
• igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html ([fdo#109271] / [fdo#111827]) +23 similar issues
• igt@kms_content_protection@lic:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl1/igt@kms_content_protection@lic.html ([i915#1319]) +2 similar issues
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb1/igt@kms_content_protection@lic.html ([fdo#111828])
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_content_protection@lic.html ([i915#1319])
• igt@kms_content_protection@mei_interface:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_content_protection@mei_interface.html ([fdo#109300] / [fdo#111066]) +1 similar issue
• igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html ([fdo#109278] / [fdo#109279]) +3 similar issues
• igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html ([i915#3359]) +2 similar issues
• igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html ([fdo#109279] / [i915#3359]) +3 similar issues
• igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html ([fdo#109274] / [fdo#109278]) +1 similar issue
• igt@kms_flip@2x-nonexisting-fb-interruptible:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@kms_flip@2x-nonexisting-fb-interruptible.html ([fdo#109274]) +3 similar issues
• igt@kms_flip@2x-plain-flip-fb-recreate:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@kms_flip@2x-plain-flip-fb-recreate.html ([fdo#111825]) +13 similar issues
• igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html ([i915#2122])
• igt@kms_flip@flip-vs-suspend@a-dp1:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html ([i915#180]) +2 similar issues
• igt@kms_frontbuffer_tracking@fbc-badstride:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_frontbuffer_tracking@fbc-badstride.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_frontbuffer_tracking@fbc-badstride.html ([i915#2546])
• igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html ([fdo#109271]) +67 similar issues
• igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html ([fdo#109271]) +381 similar issues
• igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html ([fdo#109280]) +12 similar issues
• igt@kms_hdr@bpc-switch-suspend:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@kms_hdr@bpc-switch-suspend.html ([i915#180]) +1 similar issue
• igt@kms_hdr@static-toggle:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_hdr@static-toggle.html ([i915#1187])
• igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html ([fdo#109289]) +3 similar issues
• igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html ([fdo#109278]) +30 similar issues
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html ([fdo#109271] / [i915#533])
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html ([fdo#109271] / [i915#533])
• igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html ([fdo#109271] / [i915#533]) +1 similar issue
• igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html ([fdo#108145] / [i915#265]) +3 similar issues
• igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html ([i915#265]) +1 similar issue
• igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html ([fdo#108145] / [i915#265]) +2 similar issues
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html ([fdo#108145] / [i915#265]) +1 similar issue
• igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html ([fdo#109271] / [i915#2733])
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html ([fdo#109271] / [i915#2733])
• igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html ([fdo#109271] / [i915#658]) +1 similar issue
• igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html ([i915#658])
• igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html ([fdo#109271] / [i915#658])
• igt@kms_psr2_su@page_flip:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl3/igt@kms_psr2_su@page_flip.html ([fdo#109271] / [i915#658]) +4 similar issues
• igt@kms_psr@psr2_sprite_mmap_gtt:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_gtt.html ([fdo#109441]) +3 similar issues
• igt@kms_setmode@basic:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb7/igt@kms_setmode@basic.html ([i915#31])
• igt@kms_vrr@flip-basic:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@kms_vrr@flip-basic.html ([fdo#109502])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_vrr@flip-basic.html ([fdo#109502])
• igt@kms_writeback@writeback-invalid-parameters:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@kms_writeback@writeback-invalid-parameters.html ([i915#2437])
• igt@nouveau_crc@pipe-a-source-outp-inactive:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@nouveau_crc@pipe-a-source-outp-inactive.html ([i915#2530])
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-inactive.html ([i915#2530]) +1 similar issue
• igt@perf@polling-parameterized:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@perf@polling-parameterized.html ([i915#1542])
• igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html ([fdo#109291]) +3 similar issues
• igt@prime_nv_test@nv_write_i915_gtt_mmap_read:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@prime_nv_test@nv_write_i915_gtt_mmap_read.html ([fdo#109291]) +1 similar issue
• igt@sysfs_clients@recycle-many:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl8/igt@sysfs_clients@recycle-many.html ([fdo#109271] / [i915#2994]) +3 similar issues
• igt@sysfs_clients@split-25:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@sysfs_clients@split-25.html ([fdo#109271] / [i915#2994]) +1 similar issue
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@sysfs_clients@split-25.html ([i915#2994])
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@sysfs_clients@split-25.html ([i915#2994])
• igt@sysfs_heartbeat_interval@precise@vecs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk8/igt@sysfs_heartbeat_interval@precise@vecs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk3/igt@sysfs_heartbeat_interval@precise@vecs0.html ([i915#1755])
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@sysfs_heartbeat_interval@precise@vecs0.html ([i915#1755])
Possible fixes
• igt@gem_exec_fair@basic-none-share@rcs0:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html ([i915#2842]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html
• igt@gem_mmap_gtt@cpuset-big-copy-odd:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html ([i915#307]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
• igt@gem_workarounds@suspend-resume-fd:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html ([i915#180]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@gem_workarounds@suspend-resume-fd.html
• igt@i915_pm_dc@dc6-psr:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb8/igt@i915_pm_dc@dc6-psr.html ([i915#3698]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@i915_pm_dc@dc6-psr.html
• igt@kms_big_fb@linear-32bpp-rotate-0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-0.html ([i915#118] / [i915#95]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk7/igt@kms_big_fb@linear-32bpp-rotate-0.html
• igt@kms_cursor_crc@pipe-a-cursor-suspend:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html ([i915#155] / [i915#2828]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
• igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html ([i915#2122]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
• igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html ([i915#180]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html +2 similar issues
• igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-t ([i915#3746]) -> [PASS][137]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915_pm_dc: Fix platform version check (rev3)
  2021-07-15  6:47 [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
                   ` (4 preceding siblings ...)
       [not found] ` <162671450262.8480.1915025964453256974@emeril.freedesktop.org>
@ 2021-07-22 16:03 ` Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2021-07-22 16:03 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: igt-dev


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

== Series Details ==

Series: tests/i915_pm_dc: Fix platform version check (rev3)
URL   : https://patchwork.freedesktop.org/series/92563/
State : success

== Summary ==

CI Bug Log - changes from IGT_6145_full -> IGTPW_6035_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][1] ([i915#180]) +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][2] ([fdo#109314])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html

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

  * igt@gem_eio@kms:
    - shard-glk:          [PASS][4] -> [FAIL][5] ([i915#3115])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk1/igt@gem_eio@kms.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@gem_eio@kms.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][6] -> [TIMEOUT][7] ([i915#2369] / [i915#3063] / [i915#3648])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-tglb5/igt@gem_eio@unwedge-stress.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@gem_eio@unwedge-stress.html
    - shard-iclb:         [PASS][8] -> [TIMEOUT][9] ([i915#2369] / [i915#2481] / [i915#3070])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb5/igt@gem_eio@unwedge-stress.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][10] -> [FAIL][11] ([i915#2842]) +3 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         NOTRUN -> [FAIL][14] ([i915#2842]) +4 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         NOTRUN -> [FAIL][15] ([i915#2842]) +3 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
    - shard-kbl:          NOTRUN -> [FAIL][16] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_schedule@u-independent@vecs0:
    - shard-iclb:         [PASS][17] -> [FAIL][18] ([i915#3795])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb2/igt@gem_exec_schedule@u-independent@vecs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_exec_schedule@u-independent@vecs0.html

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

  * igt@gem_pread@exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][20] ([i915#2658])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][21] ([i915#2658]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb2/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@linear-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#768])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@gem_render_copy@linear-to-vebox-yf-tiled.html

  * igt@gem_userptr_blits@input-checking:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][23] ([i915#3002])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#3297]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#3297]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-snb:          NOTRUN -> [FAIL][26] ([i915#2724])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb7/igt@gem_userptr_blits@vma-merge.html
    - shard-apl:          NOTRUN -> [FAIL][27] ([i915#3318])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl2/igt@gem_userptr_blits@vma-merge.html
    - shard-iclb:         NOTRUN -> [FAIL][28] ([i915#3318])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_userptr_blits@vma-merge.html
    - shard-glk:          NOTRUN -> [FAIL][29] ([i915#3318])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@gem_userptr_blits@vma-merge.html
    - shard-kbl:          NOTRUN -> [FAIL][30] ([i915#3318])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@gem_userptr_blits@vma-merge.html
    - shard-tglb:         NOTRUN -> [FAIL][31] ([i915#3318])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@gem_userptr_blits@vma-merge.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#2856])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@gen9_exec_parse@basic-rejected-ctx-param.html
    - shard-iclb:         NOTRUN -> [SKIP][33] ([i915#2856]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglb:         NOTRUN -> [WARN][34] ([i915#2681] / [i915#2684])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@i915_pm_rc6_residency@rc6-idle.html
    - shard-iclb:         NOTRUN -> [WARN][35] ([i915#2684])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html

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

  * igt@i915_pm_sseu@full-enable:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#109288])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#109303])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109303])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_query@query-topology-unsupported:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109302])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@i915_query@query-topology-unsupported.html
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109302])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb7/igt@i915_query@query-topology-unsupported.html

  * igt@i915_selftest@mock@dmabuf:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][42] ([i915#3746]) +17 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@i915_selftest@mock@dmabuf.html

  * igt@i915_selftest@mock@evict:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][43] ([i915#3746]) +5 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@i915_selftest@mock@evict.html

  * igt@i915_selftest@mock@objects:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][44] ([i915#3746]) +17 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@i915_selftest@mock@objects.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3777]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111614])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#110725] / [fdo#111614])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-iclb:         [PASS][48] -> [DMESG-WARN][49] ([i915#3621]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#111615]) +3 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271]) +110 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#3689]) +7 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-tglb:         [PASS][53] -> [DMESG-WARN][54] ([i915#3746])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-tglb6/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_chamelium@dp-hpd-with-enabled-mode:
    - shard-glk:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk4/igt@kms_chamelium@dp-hpd-with-enabled-mode.html

  * igt@kms_chamelium@vga-edid-read:
    - shard-apl:          NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +22 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_color@pipe-d-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109278] / [i915#1149])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_color@pipe-d-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-25:
    - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@kms_color_chamelium@pipe-b-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-c-degamma:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@kms_color_chamelium@pipe-c-degamma.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][63] ([i915#1319]) +2 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl1/igt@kms_content_protection@lic.html
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111828])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb1/igt@kms_content_protection@lic.html
    - shard-kbl:          NOTRUN -> [TIMEOUT][65] ([i915#1319])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@mei_interface:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109278] / [fdo#109279]) +3 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#3359]) +2 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([fdo#109279] / [i915#3359]) +3 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109274]) +3 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#111825]) +13 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][73] -> [FAIL][74] ([i915#2122])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          [PASS][75] -> [DMESG-WARN][76] ([i915#180]) +2 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-badstride:
    - shard-glk:          [PASS][77] -> [FAIL][78] ([i915#2546])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_frontbuffer_tracking@fbc-badstride.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_frontbuffer_tracking@fbc-badstride.html
    - shard-apl:          [PASS][79] -> [FAIL][80] ([i915#2546])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl6/igt@kms_frontbuffer_tracking@fbc-badstride.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl2/igt@kms_frontbuffer_tracking@fbc-badstride.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-glk:          NOTRUN -> [SKIP][81] ([fdo#109271]) +67 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-snb:          NOTRUN -> [SKIP][82] ([fdo#109271]) +381 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

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

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][84] -> [DMESG-WARN][85] ([i915#180]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@static-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([i915#1187])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([fdo#109289]) +3 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109278]) +30 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
    - shard-glk:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#533])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
    - shard-kbl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#533])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#533]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][92] ([fdo#108145] / [i915#265]) +3 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][93] ([i915#265]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][94] ([fdo#108145] / [i915#265]) +2 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
    - shard-kbl:          NOTRUN -> [FAIL][95] ([fdo#108145] / [i915#265]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

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

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

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-iclb:         NOTRUN -> [SKIP][99] ([i915#658])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-glk:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#658])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_su@page_flip:
    - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#658]) +4 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl3/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][102] -> [SKIP][103] ([fdo#109441]) +3 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_setmode@basic:
    - shard-snb:          NOTRUN -> [FAIL][104] ([i915#31])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb7/igt@kms_setmode@basic.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([fdo#109502])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@kms_vrr@flip-basic.html
    - shard-iclb:         NOTRUN -> [SKIP][106] ([fdo#109502])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_vrr@flip-basic.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-iclb:         NOTRUN -> [SKIP][107] ([i915#2437])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@nouveau_crc@pipe-a-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([i915#2530])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@nouveau_crc@pipe-a-source-outp-inactive.html
    - shard-tglb:         NOTRUN -> [SKIP][109] ([i915#2530]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-inactive.html

  * igt@perf@polling-parameterized:
    - shard-iclb:         NOTRUN -> [FAIL][110] ([i915#1542])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@perf@polling-parameterized.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109291]) +3 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@prime_nv_test@nv_write_i915_gtt_mmap_read:
    - shard-tglb:         NOTRUN -> [SKIP][112] ([fdo#109291]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@prime_nv_test@nv_write_i915_gtt_mmap_read.html

  * igt@sysfs_clients@recycle-many:
    - shard-apl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2994]) +3 similar issues
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl8/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@split-25:
    - shard-kbl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2994]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@sysfs_clients@split-25.html
    - shard-tglb:         NOTRUN -> [SKIP][115] ([i915#2994])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@sysfs_clients@split-25.html
    - shard-iclb:         NOTRUN -> [SKIP][116] ([i915#2994])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@sysfs_clients@split-25.html

  * igt@sysfs_heartbeat_interval@precise@vecs0:
    - shard-glk:          [PASS][117] -> [FAIL][118] ([i915#1755])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk8/igt@sysfs_heartbeat_interval@precise@vecs0.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk3/igt@sysfs_heartbeat_interval@precise@vecs0.html
    - shard-apl:          NOTRUN -> [FAIL][119] ([i915#1755])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@sysfs_heartbeat_interval@precise@vecs0.html

  
#### Possible fixes ####

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][120] ([i915#2842]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-iclb:         [FAIL][122] ([i915#307]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][124] ([i915#180]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [DMESG-WARN][126] ([i915#3698]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb8/igt@i915_pm_dc@dc6-psr.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          [DMESG-WARN][128] ([i915#118] / [i915#95]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-0.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk7/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [INCOMPLETE][130] ([i915#155] / [i915#2828]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][132] ([i915#2122]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [DMESG-WARN][134] ([i915#180]) -> [PASS][135] +2 similar issues
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-glk:          [DMESG-WARN][136] ([i915#3746]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
    - shard-snb:          [DMESG-WARN][138] ([i915#3746]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-snb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IG

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915_pm_dc: Fix platform version check (rev3)
  2021-07-22 11:28   ` [igt-dev] ✗ Fi.CI.IGT: failure " Gupta, Anshuman
@ 2021-07-22 17:18     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 8+ messages in thread
From: Vudum, Lakshminarayana @ 2021-07-22 17:18 UTC (permalink / raw)
  To: Gupta, Anshuman, Sharma, Swati2; +Cc: igt-dev

@Gupta, Anshuman Re-reported 😊.

-----Original Message-----
From: Gupta, Anshuman <anshuman.gupta@intel.com> 
Sent: Thursday, July 22, 2021 4:28 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; Sharma, Swati2 <swati2.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.IGT: failure for tests/i915_pm_dc: Fix platform version check (rev3)

Hi Lakshmi,
Below failures is not related to DC states.
Could you please re-report the CI-Results. 

 igt@kms_frontbuffer_tracking@fbc-badstride:
 shard-apl: PASS -> FAIL

Hi Swati,
Could you please help to merge this patch.
Thanks,
Anshuman Gupta. 

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Monday, July 19, 2021 10:38 PM
To: Gupta, Anshuman <anshuman.gupta@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for tests/i915_pm_dc: Fix platform version check (rev3)

Patch Details
Series:
tests/i915_pm_dc: Fix platform version check (rev3)
URL:
https://patchwork.freedesktop.org/series/92563/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/index.html
CI Bug Log - changes from IGT_6145_full -> IGTPW_6035_full Summary FAILURE Serious unknown changes coming with IGTPW_6035_full absolutely need to be verified manually.
If you think the reported changes have nothing to do with the changes introduced in IGTPW_6035_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/index.html
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_6035_full:
IGT changes
Possible regressions
• igt@kms_frontbuffer_tracking@fbc-badstride:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl6/igt@kms_frontbuffer_tracking@fbc-badstride.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl2/igt@kms_frontbuffer_tracking@fbc-badstride.html
Known issues
Here are the changes found in IGTPW_6035_full that come from known issues:
IGT changes
Issues hit
• igt@gem_ctx_isolation@preservation-s3@bcs0:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html ([i915#180]) +1 similar issue • igt@gem_ctx_param@set-priority-not-supported:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html ([fdo#109314]) • igt@gem_ctx_persistence@engines-mixed-process:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb5/igt@gem_ctx_persistence@engines-mixed-process.html ([fdo#109271] / [i915#1099]) +5 similar issues • igt@gem_eio@kms:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk1/igt@gem_eio@kms.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@gem_eio@kms.html ([i915#3115]) • igt@gem_eio@unwedge-stress:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-tglb5/igt@gem_eio@unwedge-stress.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@gem_eio@unwedge-stress.html ([i915#2369] / [i915#3063] / [i915#3648]) o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb5/igt@gem_eio@unwedge-stress.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@gem_eio@unwedge-stress.html ([i915#2369] / [i915#2481] / [i915#3070]) • igt@gem_exec_fair@basic-none@vcs0:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html ([i915#2842]) +3 similar issues • igt@gem_exec_fair@basic-pace-share@rcs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html ([i915#2842]) +1 similar issue • igt@gem_exec_fair@basic-pace@bcs0:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@gem_exec_fair@basic-pace@bcs0.html ([i915#2842]) +4 similar issues • igt@gem_exec_fair@basic-pace@vcs0:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html ([i915#2842]) +3 similar issues o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html ([i915#2842]) • igt@gem_exec_schedule@u-independent@vecs0:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb2/igt@gem_exec_schedule@u-independent@vecs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_exec_schedule@u-independent@vecs0.html ([i915#3795]) • igt@gem_huc_copy@huc-copy:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@gem_huc_copy@huc-copy.html ([fdo#109271] / [i915#2190]) • igt@gem_pread@exhaustion:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@gem_pread@exhaustion.html ([i915#2658]) • igt@gem_pwrite@basic-exhaustion:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb2/igt@gem_pwrite@basic-exhaustion.html ([i915#2658]) +1 similar issue • igt@gem_render_copy@linear-to-vebox-yf-tiled:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@gem_render_copy@linear-to-vebox-yf-tiled.html ([i915#768]) • igt@gem_userptr_blits@input-checking:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@gem_userptr_blits@input-checking.html ([i915#3002]) • igt@gem_userptr_blits@invalid-mmap-offset-unsync:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html ([i915#3297]) +1 similar issue • igt@gem_userptr_blits@readonly-unsync:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html ([i915#3297]) +1 similar issue • igt@gem_userptr_blits@vma-merge:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb7/igt@gem_userptr_blits@vma-merge.html ([i915#2724]) o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl2/igt@gem_userptr_blits@vma-merge.html ([i915#3318]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_userptr_blits@vma-merge.html ([i915#3318]) o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@gem_userptr_blits@vma-merge.html ([i915#3318]) o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@gem_userptr_blits@vma-merge.html ([i915#3318]) o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@gem_userptr_blits@vma-merge.html ([i915#3318]) • igt@gen9_exec_parse@basic-rejected-ctx-param:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@gen9_exec_parse@basic-rejected-ctx-param.html ([i915#2856]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@gen9_exec_parse@basic-rejected-ctx-param.html ([i915#2856]) +1 similar issue • igt@i915_pm_rc6_residency@rc6-idle:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@i915_pm_rc6_residency@rc6-idle.html ([i915#2681] / [i915#2684]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html ([i915#2684]) • igt@i915_pm_rpm@modeset-lpsp-stress:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@i915_pm_rpm@modeset-lpsp-stress.html ([fdo#109271]) +281 similar issues • igt@i915_pm_sseu@full-enable:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@i915_pm_sseu@full-enable.html ([fdo#109288]) • igt@i915_query@query-topology-known-pci-ids:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html ([fdo#109303]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@i915_query@query-topology-known-pci-ids.html ([fdo#109303]) • igt@i915_query@query-topology-unsupported:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@i915_query@query-topology-unsupported.html ([fdo#109302]) o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb7/igt@i915_query@query-topology-unsupported.html ([fdo#109302]) • igt@i915_selftest@mock@dmabuf:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@i915_selftest@mock@dmabuf.html ([i915#3746]) +17 similar issues • igt@i915_selftest@mock@evict:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@i915_selftest@mock@evict.html ([i915#3746]) +5 similar issues • igt@i915_selftest@mock@objects:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@i915_selftest@mock@objects.html ([i915#3746]) +17 similar issues • igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html ([fdo#109271] / [i915#3777]) +2 similar issues • igt@kms_big_fb@y-tiled-8bpp-rotate-270:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html ([fdo#111614]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html ([fdo#110725] / [fdo#111614]) • igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html ([i915#3621]) +1 similar issue • igt@kms_big_fb@yf-tiled-addfb-size-overflow:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html ([fdo#111615]) +3 similar issues • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html ([fdo#109271]) +110 similar issues • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html ([i915#3689]) +7 similar issues • igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
o shard-tglb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-tglb6/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html ([i915#3746]) • igt@kms_chamelium@dp-frame-dump:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html ([fdo#109284] / [fdo#111827]) +5 similar issues • igt@kms_chamelium@dp-hpd-with-enabled-mode:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk4/igt@kms_chamelium@dp-hpd-with-enabled-mode.html ([fdo#109271] / [fdo#111827]) +4 similar issues • igt@kms_chamelium@vga-edid-read:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_chamelium@vga-edid-read.html ([fdo#109271] / [fdo#111827]) +22 similar issues • igt@kms_color@pipe-d-ctm-0-25:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_color@pipe-d-ctm-0-25.html ([fdo#109278] / [i915#1149]) • igt@kms_color_chamelium@pipe-b-ctm-0-25:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl1/igt@kms_color_chamelium@pipe-b-ctm-0-25.html ([fdo#109271] / [fdo#111827]) +5 similar issues • igt@kms_color_chamelium@pipe-c-degamma:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@kms_color_chamelium@pipe-c-degamma.html ([fdo#109284] / [fdo#111827]) +4 similar issues • igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html ([fdo#109278] / [fdo#109284] / [fdo#111827]) • igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html ([fdo#109271] / [fdo#111827]) +23 similar issues • igt@kms_content_protection@lic:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl1/igt@kms_content_protection@lic.html ([i915#1319]) +2 similar issues o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb1/igt@kms_content_protection@lic.html ([fdo#111828]) o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_content_protection@lic.html ([i915#1319]) • igt@kms_content_protection@mei_interface:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_content_protection@mei_interface.html ([fdo#109300] / [fdo#111066]) +1 similar issue • igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html ([fdo#109278] / [fdo#109279]) +3 similar issues • igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html ([i915#3359]) +2 similar issues • igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html ([fdo#109279] / [i915#3359]) +3 similar issues • igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html ([fdo#109274] / [fdo#109278]) +1 similar issue • igt@kms_flip@2x-nonexisting-fb-interruptible:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb7/igt@kms_flip@2x-nonexisting-fb-interruptible.html ([fdo#109274]) +3 similar issues • igt@kms_flip@2x-plain-flip-fb-recreate:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@kms_flip@2x-plain-flip-fb-recreate.html ([fdo#111825]) +13 similar issues • igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html ([i915#2122]) • igt@kms_flip@flip-vs-suspend@a-dp1:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html ([i915#180]) +2 similar issues • igt@kms_frontbuffer_tracking@fbc-badstride:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_frontbuffer_tracking@fbc-badstride.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_frontbuffer_tracking@fbc-badstride.html ([i915#2546]) • igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html ([fdo#109271]) +67 similar issues • igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html ([fdo#109271]) +381 similar issues • igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html ([fdo#109280]) +12 similar issues • igt@kms_hdr@bpc-switch-suspend:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl4/igt@kms_hdr@bpc-switch-suspend.html ([i915#180]) +1 similar issue • igt@kms_hdr@static-toggle:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_hdr@static-toggle.html ([i915#1187]) • igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html ([fdo#109289]) +3 similar issues • igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html ([fdo#109278]) +30 similar issues o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html ([fdo#109271] / [i915#533]) o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html ([fdo#109271] / [i915#533]) • igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html ([fdo#109271] / [i915#533]) +1 similar issue • igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html ([fdo#108145] / [i915#265]) +3 similar issues • igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html ([i915#265]) +1 similar issue • igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html ([fdo#108145] / [i915#265]) +2 similar issues o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html ([fdo#108145] / [i915#265]) +1 similar issue • igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl7/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html ([fdo#109271] / [i915#2733]) o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html ([fdo#109271] / [i915#2733]) • igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html ([fdo#109271] / [i915#658]) +1 similar issue • igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html ([i915#658]) • igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
o shard-glk: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html ([fdo#109271] / [i915#658]) • igt@kms_psr2_su@page_flip:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl3/igt@kms_psr2_su@page_flip.html ([fdo#109271] / [i915#658]) +4 similar issues • igt@kms_psr@psr2_sprite_mmap_gtt:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_gtt.html ([fdo#109441]) +3 similar issues • igt@kms_setmode@basic:
o shard-snb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-snb7/igt@kms_setmode@basic.html ([i915#31]) • igt@kms_vrr@flip-basic:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb6/igt@kms_vrr@flip-basic.html ([fdo#109502]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@kms_vrr@flip-basic.html ([fdo#109502]) • igt@kms_writeback@writeback-invalid-parameters:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb1/igt@kms_writeback@writeback-invalid-parameters.html ([i915#2437]) • igt@nouveau_crc@pipe-a-source-outp-inactive:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb2/igt@nouveau_crc@pipe-a-source-outp-inactive.html ([i915#2530]) o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-inactive.html ([i915#2530]) +1 similar issue • igt@perf@polling-parameterized:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@perf@polling-parameterized.html ([i915#1542]) • igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html ([fdo#109291]) +3 similar issues • igt@prime_nv_test@nv_write_i915_gtt_mmap_read:
o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb3/igt@prime_nv_test@nv_write_i915_gtt_mmap_read.html ([fdo#109291]) +1 similar issue • igt@sysfs_clients@recycle-many:
o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl8/igt@sysfs_clients@recycle-many.html ([fdo#109271] / [i915#2994]) +3 similar issues • igt@sysfs_clients@split-25:
o shard-kbl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl2/igt@sysfs_clients@split-25.html ([fdo#109271] / [i915#2994]) +1 similar issue o shard-tglb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-tglb2/igt@sysfs_clients@split-25.html ([i915#2994]) o shard-iclb: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@sysfs_clients@split-25.html ([i915#2994]) • igt@sysfs_heartbeat_interval@precise@vecs0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk8/igt@sysfs_heartbeat_interval@precise@vecs0.html -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk3/igt@sysfs_heartbeat_interval@precise@vecs0.html ([i915#1755]) o shard-apl: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl6/igt@sysfs_heartbeat_interval@precise@vecs0.html ([i915#1755]) Possible fixes • igt@gem_exec_fair@basic-none-share@rcs0:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html ([i915#2842]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html
• igt@gem_mmap_gtt@cpuset-big-copy-odd:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html ([i915#307]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
• igt@gem_workarounds@suspend-resume-fd:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html ([i915#180]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl3/igt@gem_workarounds@suspend-resume-fd.html
• igt@i915_pm_dc@dc6-psr:
o shard-iclb: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-iclb8/igt@i915_pm_dc@dc6-psr.html ([i915#3698]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-iclb8/igt@i915_pm_dc@dc6-psr.html
• igt@kms_big_fb@linear-32bpp-rotate-0:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-0.html ([i915#118] / [i915#95]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk7/igt@kms_big_fb@linear-32bpp-rotate-0.html
• igt@kms_cursor_crc@pipe-a-cursor-suspend:
o shard-kbl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html ([i915#155] / [i915#2828]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
• igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html ([i915#2122]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
• igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
o shard-apl: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6145/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html ([i915#180]) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6035/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html +2 similar issues • igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
o shard-glk: https://intel-gfx-ci.01.org/tree/drm-t ([i915#3746]) -> [PASS][137]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2021-07-22 17:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-15  6:47 [igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
2021-07-15  7:13 ` Sharma, Swati2
2021-07-15 13:35 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/i915_pm_dc: Fix platform version check (rev2) Patchwork
2021-07-19 12:06 ` [igt-dev] [REBASED] tests/i915_pm_dc: Fix platform version check Anshuman Gupta
2021-07-19 13:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915_pm_dc: Fix platform version check (rev3) Patchwork
     [not found] ` <162671450262.8480.1915025964453256974@emeril.freedesktop.org>
2021-07-22 11:28   ` [igt-dev] ✗ Fi.CI.IGT: failure " Gupta, Anshuman
2021-07-22 17:18     ` Vudum, Lakshminarayana
2021-07-22 16:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

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