* [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms
@ 2023-06-16 22:50 Matt Roper
2023-06-22 10:54 ` Kalvala, Haridhar
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Matt Roper @ 2023-06-16 22:50 UTC (permalink / raw)
To: intel-gfx; +Cc: matthew.d.roper
This workaround was already implemented for DG2, PVC, and some steppings
of MTL, but the workaround database has now been updated to extend this
workaround to TGL, RKL, DG1, and ADL.
v2:
- Skip readback verification for these extra gen12lp platforms. On
some of the platforms, the firmware locks this register, preventing
the driver from making any modifications. We should still try to
apply the workaround, but if the register is locked and the value
doesn't stick, that's semi-expected and not something we want to flag
as a driver error on debug builds.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/i915/gt/intel_workarounds.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
index 4d2dece96011..4bb83c435a70 100644
--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
@@ -1485,6 +1485,18 @@ gen12_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal)
/* Wa_14011059788:tgl,rkl,adl-s,dg1,adl-p */
wa_mcr_write_or(wal, GEN10_DFR_RATIO_EN_AND_CHICKEN, DFR_DISABLE);
+
+ /*
+ * Wa_14015795083
+ *
+ * Firmware on some gen12 platforms locks the MISCCPCTL register,
+ * preventing i915 from modifying it for this workaround. Skip the
+ * readback verification for this workaround on debug builds; if the
+ * workaround doesn't stick due to firmware behavior, it's not an error
+ * that we want CI to flag.
+ */
+ wa_add(wal, GEN7_MISCCPCTL, GEN12_DOP_CLOCK_GATE_RENDER_ENABLE,
+ 0, 0, false);
}
static void
--
2.40.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms 2023-06-16 22:50 [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms Matt Roper @ 2023-06-22 10:54 ` Kalvala, Haridhar 2023-06-23 23:32 ` Matt Roper 2023-06-23 7:17 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev3) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Kalvala, Haridhar @ 2023-06-22 10:54 UTC (permalink / raw) To: Matt Roper, intel-gfx On 6/17/2023 4:20 AM, Matt Roper wrote: > This workaround was already implemented for DG2, PVC, and some steppings > of MTL, but the workaround database has now been updated to extend this > workaround to TGL, RKL, DG1, and ADL. > > v2: > - Skip readback verification for these extra gen12lp platforms. On > some of the platforms, the firmware locks this register, preventing > the driver from making any modifications. We should still try to > apply the workaround, but if the register is locked and the value > doesn't stick, that's semi-expected and not something we want to flag > as a driver error on debug builds. Hi Matt, Looks good to me. Reviewed-by: Haridhar Kalvala <haridhar.kalvala@intel.com> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > --- > drivers/gpu/drm/i915/gt/intel_workarounds.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c > index 4d2dece96011..4bb83c435a70 100644 > --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c > +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c > @@ -1485,6 +1485,18 @@ gen12_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) > > /* Wa_14011059788:tgl,rkl,adl-s,dg1,adl-p */ > wa_mcr_write_or(wal, GEN10_DFR_RATIO_EN_AND_CHICKEN, DFR_DISABLE); > + > + /* > + * Wa_14015795083 > + * > + * Firmware on some gen12 platforms locks the MISCCPCTL register, > + * preventing i915 from modifying it for this workaround. Skip the > + * readback verification for this workaround on debug builds; if the > + * workaround doesn't stick due to firmware behavior, it's not an error > + * that we want CI to flag. > + */ > + wa_add(wal, GEN7_MISCCPCTL, GEN12_DOP_CLOCK_GATE_RENDER_ENABLE, > + 0, 0, false); > } > > static void -- Regards, Haridhar Kalvala ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms 2023-06-22 10:54 ` Kalvala, Haridhar @ 2023-06-23 23:32 ` Matt Roper 0 siblings, 0 replies; 7+ messages in thread From: Matt Roper @ 2023-06-23 23:32 UTC (permalink / raw) To: Kalvala, Haridhar; +Cc: intel-gfx On Thu, Jun 22, 2023 at 04:24:49PM +0530, Kalvala, Haridhar wrote: > > On 6/17/2023 4:20 AM, Matt Roper wrote: > > This workaround was already implemented for DG2, PVC, and some steppings > > of MTL, but the workaround database has now been updated to extend this > > workaround to TGL, RKL, DG1, and ADL. > > > > v2: > > - Skip readback verification for these extra gen12lp platforms. On > > some of the platforms, the firmware locks this register, preventing > > the driver from making any modifications. We should still try to > > apply the workaround, but if the register is locked and the value > > doesn't stick, that's semi-expected and not something we want to flag > > as a driver error on debug builds. > > Hi Matt, > > Looks good to me. > > Reviewed-by: Haridhar Kalvala <haridhar.kalvala@intel.com> Applied to drm-intel-gt-next. Thanks for the review. Matt > > > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > > --- > > drivers/gpu/drm/i915/gt/intel_workarounds.c | 12 ++++++++++++ > > 1 file changed, 12 insertions(+) > > > > diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c > > index 4d2dece96011..4bb83c435a70 100644 > > --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c > > +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c > > @@ -1485,6 +1485,18 @@ gen12_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) > > /* Wa_14011059788:tgl,rkl,adl-s,dg1,adl-p */ > > wa_mcr_write_or(wal, GEN10_DFR_RATIO_EN_AND_CHICKEN, DFR_DISABLE); > > + > > + /* > > + * Wa_14015795083 > > + * > > + * Firmware on some gen12 platforms locks the MISCCPCTL register, > > + * preventing i915 from modifying it for this workaround. Skip the > > + * readback verification for this workaround on debug builds; if the > > + * workaround doesn't stick due to firmware behavior, it's not an error > > + * that we want CI to flag. > > + */ > > + wa_add(wal, GEN7_MISCCPCTL, GEN12_DOP_CLOCK_GATE_RENDER_ENABLE, > > + 0, 0, false); > > } > > static void > > -- > Regards, > Haridhar Kalvala > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev3) 2023-06-16 22:50 [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms Matt Roper 2023-06-22 10:54 ` Kalvala, Haridhar @ 2023-06-23 7:17 ` Patchwork 2023-06-23 15:56 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev4) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-06-23 7:17 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4829 bytes --] == Series Details == Series: drm/i915: Extend Wa_14015795083 platforms (rev3) URL : https://patchwork.freedesktop.org/series/118805/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13309 -> Patchwork_118805v3 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_118805v3 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_118805v3, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_118805v3: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@basic-rte: - bat-mtlp-8: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13309/bat-mtlp-8/igt@i915_pm_rpm@basic-rte.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-mtlp-8/igt@i915_pm_rpm@basic-rte.html New tests --------- New tests have been introduced between CI_DRM_13309 and Patchwork_118805v3: ### New IGT tests (2) ### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_118805v3 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@mman: - bat-rpls-2: [PASS][3] -> [TIMEOUT][4] ([i915#6794] / [i915#7392]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13309/bat-rpls-2/igt@i915_selftest@live@mman.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][5] -> [DMESG-WARN][6] ([i915#6367]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13309/bat-rpls-1/igt@i915_selftest@live@slpc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: NOTRUN -> [ABORT][7] ([i915#6687] / [i915#8668]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#7828]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_selftest@live@requests: - bat-dg2-11: [ABORT][9] ([i915#7913]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13309/bat-dg2-11/igt@i915_selftest@live@requests.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-dg2-11/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][11] ([i915#6763]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13309/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * Linux: CI_DRM_13309 -> Patchwork_118805v3 CI-20190529: 20190529 CI_DRM_13309: af67b02abf56a5018cd885c94d7611241052e98f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7346: 29302a0d57bcf10cb553f5d7ff5bb99166a19bba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_118805v3: af67b02abf56a5018cd885c94d7611241052e98f @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 848d614ad4d3 drm/i915: Extend Wa_14015795083 platforms == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v3/index.html [-- Attachment #2: Type: text/html, Size: 5680 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev4) 2023-06-16 22:50 [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms Matt Roper 2023-06-22 10:54 ` Kalvala, Haridhar 2023-06-23 7:17 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev3) Patchwork @ 2023-06-23 15:56 ` Patchwork 2023-06-23 19:45 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Extend Wa_14015795083 platforms (rev5) Patchwork 2023-06-23 23:16 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-06-23 15:56 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 8560 bytes --] == Series Details == Series: drm/i915: Extend Wa_14015795083 platforms (rev4) URL : https://patchwork.freedesktop.org/series/118805/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13314 -> Patchwork_118805v4 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_118805v4 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_118805v4, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/index.html Participating hosts (40 -> 39) ------------------------------ Additional (1): fi-kbl-soraka Missing (2): fi-tgl-1115g4 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_118805v4: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-apl-guc: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/fi-apl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/fi-apl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html Known issues ------------ Here are the changes found in Patchwork_118805v4 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: [PASS][3] -> [ABORT][4] ([i915#8011]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-adlp-11/igt@core_auth@basic-auth.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-adlp-11/igt@core_auth@basic-auth.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_module_load@load: - bat-adlp-11: [PASS][7] -> [DMESG-WARN][8] ([i915#4423]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-adlp-11/igt@i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][10] -> [DMESG-WARN][11] ([i915#7699]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-dg2-11/igt@i915_selftest@live@migrate.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-dg2-11/igt@i915_selftest@live@migrate.html - bat-mtlp-6: [PASS][12] -> [DMESG-FAIL][13] ([i915#7699]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-mtlp-6/igt@i915_selftest@live@migrate.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-mtlp-6/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [PASS][14] -> [DMESG-FAIL][15] ([i915#7269]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-mtlp-6/igt@i915_selftest@live@requests.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][16] -> [DMESG-WARN][17] ([i915#6367]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-rpls-1/igt@i915_selftest@live@slpc.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_frames@hdmi-crc-fast: - fi-kbl-soraka: NOTRUN -> [SKIP][18] ([fdo#109271]) +14 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#7828]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#1845] / [i915#5354]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_setmode@basic-clone-single-crtc: - fi-kbl-soraka: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4579]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-11: [ABORT][22] ([i915#6311] / [i915#8011]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [DMESG-FAIL][24] ([i915#8497]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-mtlp-8/igt@i915_selftest@live@requests.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: [DMESG-WARN][26] ([i915#6367]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-mtlp-8/igt@i915_selftest@live@slpc.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1: - bat-dg2-8: [FAIL][28] ([i915#7932]) -> [PASS][29] +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13314/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 Build changes ------------- * Linux: CI_DRM_13314 -> Patchwork_118805v4 CI-20190529: 20190529 CI_DRM_13314: 22ac33c60319609aa9eaf8f7f21a3f349af191d9 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7347: 621c2d3115d40a1ba0b53668413ea21edf03a5ff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_118805v4: 22ac33c60319609aa9eaf8f7f21a3f349af191d9 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 7dbec0095c61 drm/i915: Extend Wa_14015795083 platforms == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v4/index.html [-- Attachment #2: Type: text/html, Size: 10024 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Extend Wa_14015795083 platforms (rev5) 2023-06-16 22:50 [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms Matt Roper ` (2 preceding siblings ...) 2023-06-23 15:56 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev4) Patchwork @ 2023-06-23 19:45 ` Patchwork 2023-06-23 23:16 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-06-23 19:45 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 10140 bytes --] == Series Details == Series: drm/i915: Extend Wa_14015795083 platforms (rev5) URL : https://patchwork.freedesktop.org/series/118805/ State : success == Summary == CI Bug Log - changes from CI_DRM_13315 -> Patchwork_118805v5 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/index.html Participating hosts (40 -> 39) ------------------------------ Additional (1): fi-pnv-d510 Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_118805v5 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-2: NOTRUN -> [FAIL][1] ([fdo#103375]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][2] -> [ABORT][3] ([i915#7911] / [i915#7913]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#7059]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html - bat-mtlp-6: [PASS][6] -> [DMESG-FAIL][7] ([i915#7059]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: [PASS][8] -> [DMESG-FAIL][9] ([i915#4258] / [i915#7913]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-dg2-11: [PASS][10] -> [ABORT][11] ([i915#7913] / [i915#7979]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-dg2-11/igt@i915_selftest@live@hangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-dg2-11/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@migrate: - bat-rpls-2: [PASS][12] -> [DMESG-FAIL][13] ([i915#7699] / [i915#7913]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-rpls-2/igt@i915_selftest@live@migrate.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-2/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][14] -> [DMESG-FAIL][15] ([i915#7269]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-8/igt@i915_selftest@live@requests.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-mtlp-6: [PASS][16] -> [DMESG-FAIL][17] ([i915#7269]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-6/igt@i915_selftest@live@requests.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][18] -> [ABORT][19] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-rpls-1/igt@i915_selftest@live@reset.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [PASS][20] -> [DMESG-WARN][21] ([i915#6367]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-6/igt@i915_selftest@live@slpc.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-6/igt@i915_selftest@live@slpc.html - bat-mtlp-8: [PASS][22] -> [DMESG-WARN][23] ([i915#6367]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-8/igt@i915_selftest@live@slpc.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][24] -> [DMESG-FAIL][25] ([i915#6763]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-rpls-2: NOTRUN -> [SKIP][26] ([i915#7828]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1: - bat-dg2-8: [PASS][27] -> [FAIL][28] ([i915#7932]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][29] ([i915#1845] / [i915#5354]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-2: NOTRUN -> [SKIP][30] ([i915#1845]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][31] ([fdo#109271]) +37 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-pnv-d510: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4579]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/fi-pnv-d510/igt@kms_setmode@basic-clone-single-crtc.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][33] ([i915#4423]) -> [ABORT][34] ([i915#4423]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-adlp-11/igt@i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: [ABORT][35] ([i915#6687] / [i915#8668]) -> [FAIL][36] ([fdo#103375]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [SKIP][37] ([i915#3555] / [i915#4579]) -> [ABORT][38] ([i915#4579] / [i915#8260]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [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#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7979]: https://gitlab.freedesktop.org/drm/intel/issues/7979 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * Linux: CI_DRM_13315 -> Patchwork_118805v5 CI-20190529: 20190529 CI_DRM_13315: 6035969d9948cb6faa60b09dca2150d0efbfcd90 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7347: 621c2d3115d40a1ba0b53668413ea21edf03a5ff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_118805v5: 6035969d9948cb6faa60b09dca2150d0efbfcd90 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits ea45360bad39 drm/i915: Extend Wa_14015795083 platforms == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/index.html [-- Attachment #2: Type: text/html, Size: 12060 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Extend Wa_14015795083 platforms (rev5) 2023-06-16 22:50 [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms Matt Roper ` (3 preceding siblings ...) 2023-06-23 19:45 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Extend Wa_14015795083 platforms (rev5) Patchwork @ 2023-06-23 23:16 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-06-23 23:16 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 22095 bytes --] == Series Details == Series: drm/i915: Extend Wa_14015795083 platforms (rev5) URL : https://patchwork.freedesktop.org/series/118805/ State : success == Summary == CI Bug Log - changes from CI_DRM_13315_full -> Patchwork_118805v5_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_118805v5_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - {shard-dg2}: NOTRUN -> [FAIL][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html New tests --------- New tests have been introduced between CI_DRM_13315_full and Patchwork_118805v5_full: ### New IGT tests (2) ### * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_118805v5_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][2] -> [FAIL][3] ([i915#7742]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: NOTRUN -> [FAIL][4] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][5] -> [FAIL][6] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#4613]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk2/igt@gem_lmem_swapping@smem-oom.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][12] -> [ABORT][13] ([i915#5566]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-apl3/igt@gen9_exec_parse@allowed-single.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][14] -> [FAIL][15] ([fdo#103375]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271]) +23 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk2/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#3886]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2346]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [PASS][20] -> [FAIL][21] ([i915#4767]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#79]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][24] -> [FAIL][25] ([i915#79]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@plain-flip-ts-check@a-hdmi-a1: - shard-glk: [PASS][26] -> [FAIL][27] ([i915#2122]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk3/igt@kms_flip@plain-flip-ts-check@a-hdmi-a1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk9/igt@kms_flip@plain-flip-ts-check@a-hdmi-a1.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#4579]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][29] ([fdo#109271]) +24 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-snb5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4579]) +13 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-snb1/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#5176]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4579] / [i915#5176]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#5235]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/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-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4579] / [i915#5235]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#658]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#2437]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk4/igt@kms_writeback@writeback-invalid-parameters.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][37] ([i915#6268]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_balancer@full-pulse: - {shard-dg2}: [FAIL][39] ([i915#6032]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg2-10/igt@gem_exec_balancer@full-pulse.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg2-5/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][41] ([i915#2842]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-1/igt@gem_exec_fair@basic-none@vecs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-apl: [FAIL][43] ([i915#2842]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-apl1/igt@gem_exec_fair@basic-pace-share@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-apl6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg2}: [TIMEOUT][45] ([i915#5493]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg2-12/igt@gem_lmem_swapping@smem-oom@lmem0.html - {shard-dg1}: [TIMEOUT][47] ([i915#5493]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][49] ([i915#5566]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk8/igt@gen9_exec_parse@allowed-single.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][51] ([i915#4281]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-dg1}: [SKIP][53] ([i915#1937] / [i915#4579]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg1-13/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][55] ([i915#1397]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][57] ([i915#1397]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-dg2}: [SKIP][59] ([i915#1397]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][61] ([i915#4258]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-6/igt@i915_selftest@live@gt_pm.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3: - {shard-dg2}: [FAIL][63] ([fdo#103375]) -> [PASS][64] +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-dg2-3/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][65] ([i915#2346]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@pipe-b: - shard-rkl: [INCOMPLETE][67] ([i915#8011]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-7/igt@kms_cursor_legacy@single-move@pipe-b.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-6/igt@kms_cursor_legacy@single-move@pipe-b.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][69] ([i915#79]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [ABORT][71] ([i915#5213] / [i915#7941]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-glk1/igt@perf@stress-open-close@0-rcs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-glk4/igt@perf@stress-open-close@0-rcs0.html #### Warnings #### * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][73] ([fdo#109285]) -> [SKIP][74] ([fdo#109285] / [i915#4098]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13315/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_118805v5/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [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#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 Build changes ------------- * Linux: CI_DRM_13315 -> Patchwork_118805v5 CI-20190529: 20190529 CI_DRM_13315: 6035969d9948cb6faa60b09dca2150d0efbfcd90 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7347: 621c2d3115d40a1ba0b53668413ea21edf03a5ff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_118805v5: 6035969d9948cb6faa60b09dca2150d0efbfcd90 @ 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_118805v5/index.html [-- Attachment #2: Type: text/html, Size: 22598 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-06-23 23:32 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-16 22:50 [Intel-gfx] [PATCH v2] drm/i915: Extend Wa_14015795083 platforms Matt Roper 2023-06-22 10:54 ` Kalvala, Haridhar 2023-06-23 23:32 ` Matt Roper 2023-06-23 7:17 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev3) Patchwork 2023-06-23 15:56 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Extend Wa_14015795083 platforms (rev4) Patchwork 2023-06-23 19:45 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Extend Wa_14015795083 platforms (rev5) Patchwork 2023-06-23 23:16 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox