Message ID | 20221122121343.18136-1-gustavo.sousa@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] drm/i915/dmc: Update DG2 DMC version to v2.08 | expand |
> -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of > Gustavo Sousa > Sent: Tuesday, November 22, 2022 4:14 AM > To: intel-gfx@lists.freedesktop.org > Subject: [Intel-gfx] [PATCH v2] drm/i915/dmc: Update DG2 DMC version to > v2.08 > > Release notes: > > 1. Fixes for Register noclaims and few restore. > > Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> > --- > > v2: > - Use correct numbering for the minor version (8 instead of the > invalid octal 08). > > drivers/gpu/drm/i915/display/intel_dmc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c > b/drivers/gpu/drm/i915/display/intel_dmc.c > index 081a4d0083b1..eff3add70611 100644 > --- a/drivers/gpu/drm/i915/display/intel_dmc.c > +++ b/drivers/gpu/drm/i915/display/intel_dmc.c > @@ -52,8 +52,8 @@ > > #define DISPLAY_VER12_DMC_MAX_FW_SIZE ICL_DMC_MAX_FW_SIZE > > -#define DG2_DMC_PATH DMC_PATH(dg2, 2, 07) > -#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 07) > +#define DG2_DMC_PATH DMC_PATH(dg2, 2, 08) > +#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 8) ^^^^^this should be (2,08) Anusha > MODULE_FIRMWARE(DG2_DMC_PATH); > > #define ADLP_DMC_PATH DMC_PATH(adlp, 2, 16) > -- > 2.38.1
Hi, Anusha. On Tue, Nov 22, 2022 at 02:27:05PM -0300, Srivatsa, Anusha wrote: > > > > -----Original Message----- > > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of > > Gustavo Sousa > > Sent: Tuesday, November 22, 2022 4:14 AM > > To: intel-gfx@lists.freedesktop.org > > Subject: [Intel-gfx] [PATCH v2] drm/i915/dmc: Update DG2 DMC version to > > v2.08 > > > > Release notes: > > > > 1. Fixes for Register noclaims and few restore. > > > > Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> > > --- > > > > v2: > > - Use correct numbering for the minor version (8 instead of the > > invalid octal 08). > > > > drivers/gpu/drm/i915/display/intel_dmc.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c > > b/drivers/gpu/drm/i915/display/intel_dmc.c > > index 081a4d0083b1..eff3add70611 100644 > > --- a/drivers/gpu/drm/i915/display/intel_dmc.c > > +++ b/drivers/gpu/drm/i915/display/intel_dmc.c > > @@ -52,8 +52,8 @@ > > > > #define DISPLAY_VER12_DMC_MAX_FW_SIZE ICL_DMC_MAX_FW_SIZE > > > > -#define DG2_DMC_PATH DMC_PATH(dg2, 2, 07) > > -#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 07) > > +#define DG2_DMC_PATH DMC_PATH(dg2, 2, 08) > > +#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 8) > ^^^^^this should be (2,08) The v1 was using 08, but the problem is that this value is interpreted as a bad octal, and that caused the compiler to rightfully complain about it :-). While the path should contain the "08", I believe the version required must contain valid numbers and we should represent them in the decimal base. There are other similar examples in this file. -- Gustavo Sousa
Thanks, looked at the rest of the platforms in the file and the changes look good. Reviewed-by: Anusha Srivatsa <anusha.srivatsa@intel.com> > -----Original Message----- > From: Sousa, Gustavo <gustavo.sousa@intel.com> > Sent: Tuesday, November 22, 2022 10:06 AM > To: Srivatsa, Anusha <anusha.srivatsa@intel.com>; intel- > gfx@lists.freedesktop.org > Subject: Re: [Intel-gfx] [PATCH v2] drm/i915/dmc: Update DG2 DMC version > to v2.08 > > Hi, Anusha. > > On Tue, Nov 22, 2022 at 02:27:05PM -0300, Srivatsa, Anusha wrote: > > > > > > > -----Original Message----- > > > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf > > > Of Gustavo Sousa > > > Sent: Tuesday, November 22, 2022 4:14 AM > > > To: intel-gfx@lists.freedesktop.org > > > Subject: [Intel-gfx] [PATCH v2] drm/i915/dmc: Update DG2 DMC version > > > to > > > v2.08 > > > > > > Release notes: > > > > > > 1. Fixes for Register noclaims and few restore. > > > > > > Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> > > > --- > > > > > > v2: > > > - Use correct numbering for the minor version (8 instead of the > > > invalid octal 08). > > > > > > drivers/gpu/drm/i915/display/intel_dmc.c | 4 ++-- > > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c > > > b/drivers/gpu/drm/i915/display/intel_dmc.c > > > index 081a4d0083b1..eff3add70611 100644 > > > --- a/drivers/gpu/drm/i915/display/intel_dmc.c > > > +++ b/drivers/gpu/drm/i915/display/intel_dmc.c > > > @@ -52,8 +52,8 @@ > > > > > > #define DISPLAY_VER12_DMC_MAX_FW_SIZE > ICL_DMC_MAX_FW_SIZE > > > > > > -#define DG2_DMC_PATH DMC_PATH(dg2, 2, 07) > > > -#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 07) > > > +#define DG2_DMC_PATH DMC_PATH(dg2, 2, 08) > > > +#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 8) > > ^^^^^this should be > (2,08) > > The v1 was using 08, but the problem is that this value is interpreted as a bad > octal, and that caused the compiler to rightfully complain about it :-). > > While the path should contain the "08", I believe the version required must > contain valid numbers and we should represent them in the decimal base. > There are other similar examples in this file. > > -- > Gustavo Sousa
I replied on v1 of this patch before realizing there was a v2 here. See https://lists.freedesktop.org/archives/intel-gfx/2022-November/313046.html for my feedback. Matt On Tue, Nov 22, 2022 at 06:17:15PM +0000, Srivatsa, Anusha wrote: > Thanks, looked at the rest of the platforms in the file and the changes look good. > > Reviewed-by: Anusha Srivatsa <anusha.srivatsa@intel.com> > > > > > -----Original Message----- > > From: Sousa, Gustavo <gustavo.sousa@intel.com> > > Sent: Tuesday, November 22, 2022 10:06 AM > > To: Srivatsa, Anusha <anusha.srivatsa@intel.com>; intel- > > gfx@lists.freedesktop.org > > Subject: Re: [Intel-gfx] [PATCH v2] drm/i915/dmc: Update DG2 DMC version > > to v2.08 > > > > Hi, Anusha. > > > > On Tue, Nov 22, 2022 at 02:27:05PM -0300, Srivatsa, Anusha wrote: > > > > > > > > > > -----Original Message----- > > > > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf > > > > Of Gustavo Sousa > > > > Sent: Tuesday, November 22, 2022 4:14 AM > > > > To: intel-gfx@lists.freedesktop.org > > > > Subject: [Intel-gfx] [PATCH v2] drm/i915/dmc: Update DG2 DMC version > > > > to > > > > v2.08 > > > > > > > > Release notes: > > > > > > > > 1. Fixes for Register noclaims and few restore. > > > > > > > > Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> > > > > --- > > > > > > > > v2: > > > > - Use correct numbering for the minor version (8 instead of the > > > > invalid octal 08). > > > > > > > > drivers/gpu/drm/i915/display/intel_dmc.c | 4 ++-- > > > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c > > > > b/drivers/gpu/drm/i915/display/intel_dmc.c > > > > index 081a4d0083b1..eff3add70611 100644 > > > > --- a/drivers/gpu/drm/i915/display/intel_dmc.c > > > > +++ b/drivers/gpu/drm/i915/display/intel_dmc.c > > > > @@ -52,8 +52,8 @@ > > > > > > > > #define DISPLAY_VER12_DMC_MAX_FW_SIZE > > ICL_DMC_MAX_FW_SIZE > > > > > > > > -#define DG2_DMC_PATH DMC_PATH(dg2, 2, 07) > > > > -#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 07) > > > > +#define DG2_DMC_PATH DMC_PATH(dg2, 2, 08) > > > > +#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 8) > > > ^^^^^this should be > > (2,08) > > > > The v1 was using 08, but the problem is that this value is interpreted as a bad > > octal, and that caused the compiler to rightfully complain about it :-). > > > > While the path should contain the "08", I believe the version required must > > contain valid numbers and we should represent them in the decimal base. > > There are other similar examples in this file. > > > > -- > > Gustavo Sousa
On Wed, Nov 23, 2022 at 05:58:38AM +0000, Patchwork wrote: > == Series Details == > > Series: drm/i915/dmc: Update DG2 DMC version to v2.08 (rev2) > URL : https://patchwork.freedesktop.org/series/111164/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_12418_full -> Patchwork_111164v2_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_111164v2_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_111164v2_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Participating hosts (11 -> 11) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_111164v2_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_universal_plane@cursor-fb-leak-pipe-c: > - shard-iclb: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-iclb1/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb5/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html Not related to this patch, since the update is for DG2. The error is very similar to https://gitlab.freedesktop.org/drm/intel/-/issues/7586. > > > Known issues > ------------ > > Here are the changes found in Patchwork_111164v2_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@fbdev@unaligned-write: > - shard-skl: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl4/igt@fbdev@unaligned-write.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl9/igt@fbdev@unaligned-write.html > > * igt@gem_huc_copy@huc-copy: > - shard-tglb: [PASS][5] -> [SKIP][6] ([i915#2190]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-tglb5/igt@gem_huc_copy@huc-copy.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb7/igt@gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@heavy-multi: > - shard-apl: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@gem_lmem_swapping@heavy-multi.html > > * igt@gem_lmem_swapping@heavy-verify-random-ccs: > - shard-tglb: NOTRUN -> [SKIP][8] ([i915#4613]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html > > * igt@gem_pread@exhaustion: > - shard-skl: NOTRUN -> [INCOMPLETE][9] ([i915#7248]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@gem_pread@exhaustion.html > > * igt@gem_pwrite@basic-exhaustion: > - shard-apl: NOTRUN -> [INCOMPLETE][10] ([i915#7248]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@gem_pwrite@basic-exhaustion.html > > * igt@gem_userptr_blits@dmabuf-sync: > - shard-skl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3323]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@gem_userptr_blits@dmabuf-sync.html > > * igt@i915_module_load@resize-bar: > - shard-tglb: NOTRUN -> [SKIP][12] ([i915#6412]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb6/igt@i915_module_load@resize-bar.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-apl: NOTRUN -> [FAIL][13] ([i915#7036]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_backlight@fade-with-dpms: > - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271]) +37 similar issues > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl6/igt@i915_pm_backlight@fade-with-dpms.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-skl: NOTRUN -> [FAIL][15] ([i915#3989] / [i915#454]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_selftest@live@gt_heartbeat: > - shard-apl: [PASS][16] -> [DMESG-FAIL][17] ([i915#5334]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: > - shard-skl: [PASS][18] -> [FAIL][19] ([i915#2521]) +1 similar issue > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl10/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > > * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-2: > - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#5584]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-2.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > - shard-tglb: [PASS][21] -> [FAIL][22] ([i915#3743]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-tglb5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > - shard-skl: NOTRUN -> [FAIL][23] ([i915#3763]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: > - shard-skl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +2 similar issues > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglb: NOTRUN -> [SKIP][25] ([i915#6095]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb6/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > - shard-tglb: NOTRUN -> [SKIP][26] ([i915#3689] / [i915#3886]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs: > - shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#3886]) +4 similar issues > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_chamelium@hdmi-hpd-storm-disable: > - shard-skl: NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +2 similar issues > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_chamelium@hdmi-hpd-storm-disable.html > > * igt@kms_color_chamelium@ctm-limited-range: > - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109284] / [fdo#111827]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb5/igt@kms_color_chamelium@ctm-limited-range.html > - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [fdo#111827]) +1 similar issue > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@kms_color_chamelium@ctm-limited-range.html > > * igt@kms_cursor_crc@cursor-offscreen-32x10: > - shard-skl: NOTRUN -> [SKIP][31] ([fdo#109271]) +75 similar issues > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_cursor_crc@cursor-offscreen-32x10.html > > * igt@kms_cursor_crc@cursor-rapid-movement-max-size: > - shard-tglb: NOTRUN -> [SKIP][32] ([i915#3555]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html > > * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2: > - shard-glk: [PASS][33] -> [FAIL][34] ([i915#79]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: > - shard-skl: [PASS][35] -> [FAIL][36] ([i915#79]) > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html > > * igt@kms_flip@flip-vs-suspend@b-edp1: > - shard-skl: [PASS][37] -> [INCOMPLETE][38] ([i915#4839]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl4/igt@kms_flip@flip-vs-suspend@b-edp1.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl6/igt@kms_flip@flip-vs-suspend@b-edp1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: > - shard-iclb: NOTRUN -> [SKIP][39] ([i915#2587] / [i915#2672]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> [SKIP][40] ([i915#2672]) +4 similar issues > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: > - shard-tglb: NOTRUN -> [SKIP][41] ([i915#2587] / [i915#2672]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: > - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109280]) +1 similar issue > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: > - shard-iclb: [PASS][43] -> [FAIL][44] ([i915#2546]) > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-iclb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html > > * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-edp-1: > - shard-skl: NOTRUN -> [FAIL][45] ([i915#4573]) +2 similar issues > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-edp-1.html > > * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: > - shard-skl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#658]) > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html > > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > - shard-iclb: [PASS][47] -> [SKIP][48] ([i915#5519]) > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-iclb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > > * igt@kms_writeback@writeback-invalid-parameters: > - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2437]) > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html > - shard-iclb: NOTRUN -> [SKIP][50] ([i915#2437]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb5/igt@kms_writeback@writeback-invalid-parameters.html > > * igt@kms_writeback@writeback-pixel-formats: > - shard-skl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#2437]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl7/igt@kms_writeback@writeback-pixel-formats.html > > * igt@perf_pmu@interrupts: > - shard-skl: [PASS][52] -> [FAIL][53] ([i915#7318]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl10/igt@perf_pmu@interrupts.html > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl6/igt@perf_pmu@interrupts.html > > * igt@sysfs_clients@recycle-many: > - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#2994]) > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@sysfs_clients@recycle-many.html > > > #### Possible fixes #### > > * igt@fbdev@write: > - {shard-rkl}: [SKIP][55] ([i915#2582]) -> [PASS][56] > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-4/igt@fbdev@write.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-6/igt@fbdev@write.html > > * igt@gem_exec_balancer@fairslice: > - {shard-rkl}: [SKIP][57] ([i915#6259]) -> [PASS][58] > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-5/igt@gem_exec_balancer@fairslice.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-4/igt@gem_exec_balancer@fairslice.html > > * igt@gem_exec_balancer@parallel-keep-submit-fence: > - shard-iclb: [SKIP][59] ([i915#4525]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-iclb8/igt@gem_exec_balancer@parallel-keep-submit-fence.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html > > * igt@gem_exec_fair@basic-flow@rcs0: > - shard-tglb: [FAIL][61] ([i915#2842]) -> [PASS][62] +1 similar issue > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html > > * igt@gem_exec_fair@basic-pace@rcs0: > - shard-glk: [FAIL][63] ([i915#2842]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-glk1/igt@gem_exec_fair@basic-pace@rcs0.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html > > * igt@gem_exec_reloc@basic-wc-read-noreloc: > - {shard-rkl}: [SKIP][65] ([i915#3281]) -> [PASS][66] +6 similar issues > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html > > * igt@gem_partial_pwrite_pread@write-uncached: > - {shard-rkl}: [SKIP][67] ([i915#3282]) -> [PASS][68] +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-3/igt@gem_partial_pwrite_pread@write-uncached.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html > > * igt@gen9_exec_parse@batch-without-end: > - {shard-rkl}: [SKIP][69] ([i915#2527]) -> [PASS][70] > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-3/igt@gen9_exec_parse@batch-without-end.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html > > * igt@i915_hangman@gt-engine-error@bcs0: > - {shard-rkl}: [SKIP][71] ([i915#6258]) -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-4/igt@i915_hangman@gt-engine-error@bcs0.html > > * igt@i915_pm_rpm@fences-dpms: > - {shard-rkl}: [SKIP][73] ([i915#1849]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-4/igt@i915_pm_rpm@fences-dpms.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-6/igt@i915_pm_rpm@fences-dpms.html > > * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: > - shard-glk: [INCOMPLETE][75] ([i915#5584]) -> [PASS][76] > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: > - {shard-rkl}: [SKIP][77] ([i915#1845] / [i915#4098]) -> [PASS][78] +28 similar issues > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-5/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_color@ctm-green-to-red@pipe-c-edp-1: > - shard-skl: [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl1/igt@kms_color@ctm-green-to-red@pipe-c-edp-1.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl1/igt@kms_color@ctm-green-to-red@pipe-c-edp-1.html > > * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: > - shard-iclb: [FAIL][81] ([i915#2346]) -> [PASS][82] > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-iclb3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html > > * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: > - shard-glk: [FAIL][83] ([i915#2346]) -> [PASS][84] > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2: > - shard-glk: [FAIL][85] ([i915#79]) -> [PASS][86] > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html > > * igt@kms_flip@flip-vs-expired-vblank@a-edp1: > - shard-skl: [FAIL][87] ([i915#79]) -> [PASS][88] +1 similar issue > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-skl4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-skl9/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html > > * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: > - shard-apl: [DMESG-WARN][89] ([i915#180]) -> [PASS][90] > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html > > * igt@kms_flip@flip-vs-suspend@b-edp1: > - shard-tglb: [DMESG-WARN][91] ([i915#2411] / [i915#2867]) -> [PASS][92] > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-tglb3/igt@kms_flip@flip-vs-suspend@b-edp1.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb1/igt@kms_flip@flip-vs-suspend@b-edp1.html > > * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: > - {shard-rkl}: [SKIP][93] ([i915#1849] / [i915#4098]) -> [PASS][94] +24 similar issues > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > > * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: > - shard-glk: [FAIL][95] ([i915#2546]) -> [PASS][96] > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-glk2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-glk5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html > > * igt@kms_plane@plane-position-hole-dpms@pipe-b-planes: > - {shard-rkl}: [SKIP][97] ([i915#3558]) -> [PASS][98] +1 similar issue > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-4/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html > > * igt@kms_psr@sprite_mmap_gtt: > - {shard-rkl}: [SKIP][99] ([i915#1072]) -> [PASS][100] +1 similar issue > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-3/igt@kms_psr@sprite_mmap_gtt.html > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html > > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > - shard-tglb: [SKIP][101] ([i915#5519]) -> [PASS][102] > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-tglb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > > * igt@perf@gen12-unprivileged-single-ctx-counters: > - {shard-rkl}: [SKIP][103] ([fdo#109289]) -> [PASS][104] > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-5/igt@perf@gen12-unprivileged-single-ctx-counters.html > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-4/igt@perf@gen12-unprivileged-single-ctx-counters.html > > * igt@perf@mi-rpc: > - {shard-rkl}: [SKIP][105] ([i915#2434]) -> [PASS][106] > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-3/igt@perf@mi-rpc.html > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-5/igt@perf@mi-rpc.html > > * igt@prime_vgem@basic-read: > - {shard-rkl}: [SKIP][107] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][108] > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-rkl-3/igt@prime_vgem@basic-read.html > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-rkl-5/igt@prime_vgem@basic-read.html > > > #### Warnings #### > > * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: > - shard-apl: [DMESG-FAIL][109] ([IGT#6]) -> [FAIL][110] ([i915#4573]) +1 similar issue > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html > > * igt@runner@aborted: > - shard-apl: ([FAIL][111], [FAIL][112], [FAIL][113]) ([i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][114], [FAIL][115]) ([i915#3002] / [i915#4312]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-apl1/igt@runner@aborted.html > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-apl7/igt@runner@aborted.html > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12418/shard-apl6/igt@runner@aborted.html > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl1/igt@runner@aborted.html > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111164v2/shard-apl8/igt@runner@aborted.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 > [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 > [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 > [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 > [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 > [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 > [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 > [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 > [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#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3692]: https://gitlab.freedesktop.org/drm/intel/issues/3692 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 > [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 > [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 > [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 > [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 > [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 > [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 > [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 > [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 > [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 > [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 > [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 > [i915#7318]: https://gitlab.freedesktop.org/drm/intel/issues/7318 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > > > Build changes > ------------- > > * Linux: CI_DRM_12418 -> Patchwork_111164v2 > > CI-20190529: 20190529 > CI_DRM_12418: 22789b788bcaf35826550836b0ad6872d6e85ca6 @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_7071: 0801475083ccb938b1d3b358502ff97fdb435585 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_111164v2: 22789b788bcaf35826550836b0ad6872d6e85ca6 @ 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_111164v2/index.html
diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c index 081a4d0083b1..eff3add70611 100644 --- a/drivers/gpu/drm/i915/display/intel_dmc.c +++ b/drivers/gpu/drm/i915/display/intel_dmc.c @@ -52,8 +52,8 @@ #define DISPLAY_VER12_DMC_MAX_FW_SIZE ICL_DMC_MAX_FW_SIZE -#define DG2_DMC_PATH DMC_PATH(dg2, 2, 07) -#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 07) +#define DG2_DMC_PATH DMC_PATH(dg2, 2, 08) +#define DG2_DMC_VERSION_REQUIRED DMC_VERSION(2, 8) MODULE_FIRMWARE(DG2_DMC_PATH); #define ADLP_DMC_PATH DMC_PATH(adlp, 2, 16)
Release notes: 1. Fixes for Register noclaims and few restore. Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> --- v2: - Use correct numbering for the minor version (8 instead of the invalid octal 08). drivers/gpu/drm/i915/display/intel_dmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)