* [Intel-gfx] [PATCH 0/1] HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK
@ 2023-06-27 15:34 Mitul Golani
2023-06-27 15:34 ` [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps " Mitul Golani
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Mitul Golani @ 2023-06-27 15:34 UTC (permalink / raw)
To: intel-gfx
When doing type-C PHY voltage swing programming for HDMI and DP 1.62Gbps,
program DKLP_PCS_GLUE_TX_DPCNTL2[loadgen_sharing_pmd_disable] to '1'.
For other DP frequencies, program DKLP_PCS_GLUE_TX_DPCNTL2[loadgen_sharing_pmd_disable]
to '0'.
This Workaround is specific to Display Version 13
Wa_15010727533
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
Mitul Golani (1):
drm/i915/display: HDMI2.0/DP1p62Gbps skew violation when there is skew
between DL PCLK
drivers/gpu/drm/i915/display/intel_ddi.c | 13 +++++++++++++
drivers/gpu/drm/i915/i915_reg.h | 6 ++++++
2 files changed, 19 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps skew violation when there is skew between DL PCLK 2023-06-27 15:34 [Intel-gfx] [PATCH 0/1] HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK Mitul Golani @ 2023-06-27 15:34 ` Mitul Golani 2023-06-27 18:12 ` Imre Deak 2023-06-27 22:00 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for HDMI 2.0/DP1p62Gbps " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Mitul Golani @ 2023-06-27 15:34 UTC (permalink / raw) To: intel-gfx When doing type-C PHY voltage swing programming for HDMI and DP 1.62Gbps, program DKLP_PCS_GLUE_TX_DPCNTL2[loadgen_sharing_pmd_disable] to '1'. For other DP frequencies, program DKLP_PCS_GLUE_TX_DPCNTL2[loadgen_sharing_pmd_disable] to '0'. This Workaround is specific to Display Version 13 Wa_15010727533 Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> --- drivers/gpu/drm/i915/display/intel_ddi.c | 13 +++++++++++++ drivers/gpu/drm/i915/i915_reg.h | 6 ++++++ 2 files changed, 19 insertions(+) diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c index 61722556bb47..5a6f048f4f1c 100644 --- a/drivers/gpu/drm/i915/display/intel_ddi.c +++ b/drivers/gpu/drm/i915/display/intel_ddi.c @@ -1362,6 +1362,19 @@ static void tgl_dkl_phy_set_signal_levels(struct intel_encoder *encoder, intel_dkl_phy_rmw(dev_priv, DKL_TX_DPCNTL2(tc_port, ln), DKL_TX_DP20BITMODE, 0); + if (DISPLAY_VER(dev_priv) == 13) { + if ((crtc_state->port_clock == 594000 && + intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI)) || + (crtc_state->port_clock == 162000 && + intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DP))) { + intel_de_rmw(dev_priv, DKLP_TX_DPCNTL2(tc_port), + LOADGEN_SHARING_PMD_DISABLE, 1); + } else { + intel_de_rmw(dev_priv, DKLP_TX_DPCNTL2(tc_port), + LOADGEN_SHARING_PMD_DISABLE, 0); + } + } + if (IS_ALDERLAKE_P(dev_priv)) { u32 val; diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index dcf64e32cd54..5487301d4ad3 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h @@ -6663,4 +6663,10 @@ enum skl_power_gate { #define MTL_MEDIA_GSI_BASE 0x380000 +#define _DKLP_PCS_GLUE_TX_DPCNTL2 0xB68 +#define LOADGEN_SHARING_PMD_DISABLE REG_BIT(2) +#define DKLP_TX_DPCNTL2(tc_port) _MMIO(_PORT(tc_port, \ + _DKL_PHY1_BASE, \ + _DKL_PHY2_BASE) + \ + _DKLP_PCS_GLUE_TX_DPCNTL2) #endif /* _I915_REG_H_ */ -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps skew violation when there is skew between DL PCLK 2023-06-27 15:34 ` [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps " Mitul Golani @ 2023-06-27 18:12 ` Imre Deak 0 siblings, 0 replies; 6+ messages in thread From: Imre Deak @ 2023-06-27 18:12 UTC (permalink / raw) To: Mitul Golani; +Cc: intel-gfx On Tue, Jun 27, 2023 at 09:04:51PM +0530, Mitul Golani wrote: > When doing type-C PHY voltage swing programming for HDMI and > DP 1.62Gbps, program DKLP_PCS_GLUE_TX_DPCNTL2[loadgen_sharing_pmd_disable] > to '1'. For other DP frequencies, program > DKLP_PCS_GLUE_TX_DPCNTL2[loadgen_sharing_pmd_disable] to '0'. > > This Workaround is specific to Display Version 13 > > Wa_15010727533 > > Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> > --- > drivers/gpu/drm/i915/display/intel_ddi.c | 13 +++++++++++++ > drivers/gpu/drm/i915/i915_reg.h | 6 ++++++ > 2 files changed, 19 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c > index 61722556bb47..5a6f048f4f1c 100644 > --- a/drivers/gpu/drm/i915/display/intel_ddi.c > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c > @@ -1362,6 +1362,19 @@ static void tgl_dkl_phy_set_signal_levels(struct intel_encoder *encoder, > intel_dkl_phy_rmw(dev_priv, DKL_TX_DPCNTL2(tc_port, ln), > DKL_TX_DP20BITMODE, 0); > > + if (DISPLAY_VER(dev_priv) == 13) { The above check here is equivalent to IS_ALDERLAKE_P(), so the programming should be done under that condition below, along with the other bits in DKL_TX_DPCNTL2. Also the WA is limited to STEP_A0 .. STEP_C0. > + if ((crtc_state->port_clock == 594000 && > + intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI)) || > + (crtc_state->port_clock == 162000 && > + intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DP))) { > + intel_de_rmw(dev_priv, DKLP_TX_DPCNTL2(tc_port), > + LOADGEN_SHARING_PMD_DISABLE, 1); Must use intel_dkl_phy_rmw() with DKL regs. > + } else { > + intel_de_rmw(dev_priv, DKLP_TX_DPCNTL2(tc_port), > + LOADGEN_SHARING_PMD_DISABLE, 0); > + } > + } > + > if (IS_ALDERLAKE_P(dev_priv)) { > u32 val; > > diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h > index dcf64e32cd54..5487301d4ad3 100644 > --- a/drivers/gpu/drm/i915/i915_reg.h > +++ b/drivers/gpu/drm/i915/i915_reg.h > @@ -6663,4 +6663,10 @@ enum skl_power_gate { > > #define MTL_MEDIA_GSI_BASE 0x380000 > > +#define _DKLP_PCS_GLUE_TX_DPCNTL2 0xB68 These registers are defined in intel_dkl_phy_regs.h. Not sure about the above offset. There's been updates to the spec and I think the last known good value is 0x02c8 defined at Bspec 49295 That is just the already defined DKL_TX_DPCNTL2. > +#define LOADGEN_SHARING_PMD_DISABLE REG_BIT(2) This doesn't seem to match either bspec 55359, where bit 2 is cfg_dp20bitmode and bit 12 is loadgen_sharing_pmd_disable. > +#define DKLP_TX_DPCNTL2(tc_port) _MMIO(_PORT(tc_port, \ > + _DKL_PHY1_BASE, \ > + _DKL_PHY2_BASE) + \ > + _DKLP_PCS_GLUE_TX_DPCNTL2) > #endif /* _I915_REG_H_ */ > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK 2023-06-27 15:34 [Intel-gfx] [PATCH 0/1] HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK Mitul Golani 2023-06-27 15:34 ` [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps " Mitul Golani @ 2023-06-27 22:00 ` Patchwork 2023-06-27 22:13 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-06-28 16:42 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-06-27 22:00 UTC (permalink / raw) To: Mitul Golani; +Cc: intel-gfx == Series Details == Series: HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK URL : https://patchwork.freedesktop.org/series/119934/ State : warning == Summary == Error: dim checkpatch failed 9bc5743dec81 drm/i915/display: HDMI2.0/DP1p62Gbps skew violation when there is skew between DL PCLK -:28: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis #28: FILE: drivers/gpu/drm/i915/display/intel_ddi.c:1367: + if ((crtc_state->port_clock == 594000 && + intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI)) || total: 0 errors, 0 warnings, 1 checks, 29 lines checked ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK 2023-06-27 15:34 [Intel-gfx] [PATCH 0/1] HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK Mitul Golani 2023-06-27 15:34 ` [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps " Mitul Golani 2023-06-27 22:00 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for HDMI 2.0/DP1p62Gbps " Patchwork @ 2023-06-27 22:13 ` Patchwork 2023-06-28 16:42 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-06-27 22:13 UTC (permalink / raw) To: Mitul Golani; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4961 bytes --] == Series Details == Series: HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK URL : https://patchwork.freedesktop.org/series/119934/ State : success == Summary == CI Bug Log - changes from CI_DRM_13328 -> Patchwork_119934v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/index.html Participating hosts (40 -> 41) ------------------------------ Additional (2): fi-apl-guc fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_119934v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-apl-guc: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#4613]) +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/fi-apl-guc/igt@gem_lmem_swapping@basic.html * igt@i915_module_load@load: - bat-adlp-11: [PASS][2] -> [ABORT][3] ([i915#4423]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-adlp-11/igt@i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][4] -> [ABORT][5] ([i915#7982]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-8/igt@i915_selftest@live@requests.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@kms_chamelium_hpd@vga-hpd-fast: - fi-apl-guc: NOTRUN -> [SKIP][6] ([fdo#109271]) +21 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/fi-apl-guc/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#8442]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][8] ([fdo#109271]) +37 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-apl-guc: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4579]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/fi-apl-guc/igt@kms_setmode@basic-clone-single-crtc.html - fi-pnv-d510: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4579]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/fi-pnv-d510/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - bat-rpls-2: [DMESG-FAIL][11] ([i915#4258] / [i915#7913]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/bat-rpls-2/igt@i915_selftest@live@gt_pm.html #### Warnings #### * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [ABORT][13] ([i915#8712]) -> [SKIP][14] ([i915#1072]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 Build changes ------------- * Linux: CI_DRM_13328 -> Patchwork_119934v1 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7351: d8dc96b95c60e4737fdfa1664ce9b1dcebfdef60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_119934v1: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 1aed4bc699f2 drm/i915/display: HDMI2.0/DP1p62Gbps skew violation when there is skew between DL PCLK == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/index.html [-- Attachment #2: Type: text/html, Size: 6134 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK 2023-06-27 15:34 [Intel-gfx] [PATCH 0/1] HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK Mitul Golani ` (2 preceding siblings ...) 2023-06-27 22:13 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-06-28 16:42 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-06-28 16:42 UTC (permalink / raw) To: Golani, Mitulkumar Ajitkumar; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 49165 bytes --] == Series Details == Series: HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK URL : https://patchwork.freedesktop.org/series/119934/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13328_full -> Patchwork_119934v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_119934v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_119934v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_119934v1_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@mman: - shard-dg2: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-6/igt@i915_selftest@live@mman.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-2/igt@i915_selftest@live@mman.html #### Warnings #### * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-mtlp: [SKIP][3] ([i915#3282]) -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html New tests --------- New tests have been introduced between CI_DRM_13328_full and Patchwork_119934v1_full: ### New IGT tests (1) ### * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_119934v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_create@create-ext-set-pat: - shard-glk: NOTRUN -> [FAIL][7] ([i915#8621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8555]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#5882]) +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs3: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#4579] / [i915#5882]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs3.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#4812]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4771]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-6/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#3539]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3281]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3281]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][21] -> [DMESG-WARN][22] ([i915#4936] / [i915#5493]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4083]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_mmap@bad-offset.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4083]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4270]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#5190]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3297]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3297]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][29] ([i915#3318]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#2856]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gen9_exec_parse@basic-rejected.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][31] -> [ABORT][32] ([i915#8489]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][33] -> [FAIL][34] ([i915#8691]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: NOTRUN -> [SKIP][35] ([fdo#109289] / [i915#8403]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][36] -> [SKIP][37] ([i915#1397]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][38] -> [SKIP][39] ([i915#1397]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][40] -> [FAIL][41] ([fdo#103375]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][42] ([i915#8247]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][43] ([fdo#111614]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][44] -> [FAIL][45] ([i915#5138]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][46] ([fdo#111615] / [i915#5286]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][47] ([fdo#111614]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][48] -> [FAIL][49] ([i915#3743]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][50] ([fdo#111615]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4538] / [i915#5190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#3689] / [i915#5354] / [i915#6095]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#6095]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3689] / [i915#5354]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3886]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][56] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#5354] / [i915#6095]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271]) +48 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4087]) +6 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4087] / [i915#4579]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-75: - shard-tglu: NOTRUN -> [SKIP][61] ([fdo#111827]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][62] ([fdo#111827]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#7828]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][64] ([i915#7173]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4579] / [i915#7118]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3359]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4579]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3546]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109274] / [i915#5354]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][70] ([i915#2346]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [PASS][71] -> [DMESG-WARN][72] ([i915#2017]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-5/igt@kms_cursor_legacy@single-bo@all-pipes.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-mtlp: [PASS][73] -> [FAIL][74] ([i915#4767]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-5/igt@kms_fbcon_fbt@fbc-suspend.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][75] ([fdo#109274] / [i915#3637]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-edp1: - shard-mtlp: [PASS][76] -> [DMESG-WARN][77] ([i915#1982]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-edp1.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-5/igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1: - shard-glk: [PASS][78] -> [FAIL][79] ([i915#2122]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk7/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk7/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#4579]) +3 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#2672] / [i915#4579]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8708]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][83] -> [FAIL][84] ([i915#6880]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5354]) +7 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#110189]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1825]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#8708]) +4 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3458]) +2 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][90] ([fdo#109280]) +3 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3555] / [i915#4579]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3555] / [i915#4579]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-dg2: NOTRUN -> [SKIP][93] ([fdo#109289]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][94] ([i915#4573]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4579]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#5176]) +5 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#4579] / [i915#5176]) +5 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4579] / [i915#5176]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][99] ([fdo#109271]) +16 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5176]) +5 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#5235]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#4579]) +11 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-snb4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#4579] / [i915#5235]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5235]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4579] / [i915#5235]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-dp-4.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6524] / [i915#6805]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_prime@d3hot.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1072]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][108] ([i915#5465]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-dg2: [PASS][109] -> [FAIL][110] ([fdo#103375]) +5 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-11/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-9/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [PASS][111] -> [FAIL][112] ([i915#8724]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@perf@enable-disable@0-rcs0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2436]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][114] -> [FAIL][115] ([i915#7484]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@ccs3: - shard-dg2: [PASS][116] -> [FAIL][117] ([i915#4349]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@perf_pmu@busy-double-start@ccs3.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@perf_pmu@busy-double-start@ccs3.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-rkl: [PASS][118] -> [FAIL][119] ([i915#4349]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-3/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@sysfs_heartbeat_interval@nopreempt@rcs0: - shard-mtlp: [PASS][120] -> [FAIL][121] ([i915#6015]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@rcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@rcs0.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#109315] / [i915#2575]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#2575]) +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-7/igt@v3d/v3d_perfmon@create-single-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#2575]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#7711]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@vc4/vc4_wait_bo@bad-pad.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][126] ([i915#6268]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@hibernate: - shard-dg2: [ABORT][128] ([i915#7975] / [i915#8213]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-12/igt@gem_eio@hibernate.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][130] ([i915#2842]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][132] ([i915#2842]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][134] ([i915#7975] / [i915#8213]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-normal-all: - shard-mtlp: [FAIL][136] ([i915#6363]) -> [PASS][137] +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@gem_exec_whisper@basic-normal-all.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-7/igt@gem_exec_whisper@basic-normal-all.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][138] ([i915#5493]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_workarounds@suspend-resume: - {shard-dg1}: [FAIL][140] ([fdo#103375]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-19/igt@gem_workarounds@suspend-resume.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg1-19/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - {shard-dg1}: [FAIL][142] ([i915#3591]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-lpsp: - {shard-dg1}: [SKIP][144] ([i915#1397]) -> [PASS][145] +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-12/igt@i915_pm_rpm@dpms-lpsp.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][146] ([i915#1397]) -> [PASS][147] +2 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-rkl: [SKIP][148] ([i915#1397]) -> [PASS][149] +2 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][150] ([i915#7059]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@i915_selftest@live@gt_mocs.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][152] ([i915#3743]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][154] ([i915#72]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [FAIL][156] ([i915#79]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][158] ([i915#6880]) -> [PASS][159] +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][160] ([fdo#103375]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-mtlp: [FAIL][162] ([fdo#103375]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-suspend.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][164] ([IGT#2]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@kms_sysfs_edid_timing.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@perf_pmu@busy-double-start@ccs1: - shard-dg2: [FAIL][166] ([i915#4349]) -> [PASS][167] +8 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@perf_pmu@busy-double-start@ccs1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-11/igt@perf_pmu@busy-double-start@ccs1.html * igt@perf_pmu@busy-double-start@vecs0: - {shard-dg1}: [FAIL][168] ([i915#4349]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-16/igt@perf_pmu@busy-double-start@vecs0.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg1-18/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - {shard-dg1}: [FAIL][170] ([i915#5234]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@bcs0.html #### Warnings #### * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [DMESG-FAIL][172] ([i915#8561]) -> [FAIL][173] ([i915#8247]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-2/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][174] ([i915#4579] / [i915#7118] / [i915#7162]) -> [SKIP][175] ([i915#4579] / [i915#7118]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-11/igt@kms_content_protection@mei_interface.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-dg2-5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][176] ([i915#5954]) -> [FAIL][177] ([i915#2346]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][178] ([i915#3955]) -> [SKIP][179] ([fdo#110189] / [i915#3955]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][180] ([fdo#110189] / [i915#3955]) -> [SKIP][181] ([i915#3955]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][182] ([i915#4070] / [i915#4816]) -> [SKIP][183] ([i915#4816]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_vblank@pipe-c-wait-busy-hang: - shard-mtlp: [DMESG-WARN][184] -> [DMESG-WARN][185] ([i915#2017]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@kms_vblank@pipe-c-wait-busy-hang.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/shard-mtlp-4/igt@kms_vblank@pipe-c-wait-busy-hang.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8621]: https://gitlab.freedesktop.org/drm/intel/issues/8621 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 Build changes ------------- * Linux: CI_DRM_13328 -> Patchwork_119934v1 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7351: d8dc96b95c60e4737fdfa1664ce9b1dcebfdef60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_119934v1: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_119934v1/index.html [-- Attachment #2: Type: text/html, Size: 58194 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-06-28 16:42 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-27 15:34 [Intel-gfx] [PATCH 0/1] HDMI 2.0/DP1p62Gbps skew violation when there is skew between DL PCLK Mitul Golani 2023-06-27 15:34 ` [Intel-gfx] [PATCH 1/1] drm/i915/display: HDMI2.0/DP1p62Gbps " Mitul Golani 2023-06-27 18:12 ` Imre Deak 2023-06-27 22:00 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for HDMI 2.0/DP1p62Gbps " Patchwork 2023-06-27 22:13 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-06-28 16:42 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox