Message ID | 20210421220224.200729-1-jose.souza@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/2] drm: Rename DP_PSR_SELECTIVE_UPDATE to better mach eDP spec | expand |
The changed name looks more accurate to the edp 1.4b spec. Looks good to me. Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> On Wed, 2021-04-21 at 15:02 -0700, José Roberto de Souza wrote: > DP_PSR_EN_CFG bit 5 aka "Selective Update Region Scan Line Capture > Indication" in eDP spec has a ambiguous name, so renaming to better > match specification. > > While at it, replacing bit shit by BIT() macro and adding the version > some registers were added to eDP specification. > > Cc: <dri-devel@lists.freedesktop.org> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Jani Nikula <jani.nikula@intel.com> > Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > Signed-off-by: José Roberto de Souza <jose.souza@intel.com> > --- > include/drm/drm_dp_helper.h | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h > index 1e85c2021f2f..d6f6a084a190 100644 > --- a/include/drm/drm_dp_helper.h > +++ b/include/drm/drm_dp_helper.h > @@ -687,14 +687,14 @@ struct drm_device; > #define DP_DSC_ENABLE 0x160 /* DP 1.4 */ > # define DP_DECOMPRESSION_EN (1 << 0) > > -#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ > -# define DP_PSR_ENABLE (1 << 0) > -# define DP_PSR_MAIN_LINK_ACTIVE (1 << 1) > -# define DP_PSR_CRC_VERIFICATION (1 << 2) > -# define DP_PSR_FRAME_CAPTURE (1 << 3) > -# define DP_PSR_SELECTIVE_UPDATE (1 << 4) > -# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS (1 << 5) > -# define DP_PSR_ENABLE_PSR2 (1 << 6) /* eDP 1.4a */ > +#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ > +# define DP_PSR_ENABLE BIT(0) > +# define DP_PSR_MAIN_LINK_ACTIVE BIT(1) > +# define DP_PSR_CRC_VERIFICATION BIT(2) > +# define DP_PSR_FRAME_CAPTURE BIT(3) > +# define DP_PSR_SU_REGION_SCANLINE_CAPTURE BIT(4) /* eDP 1.4a */ > +# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS BIT(5) /* eDP > 1.4a */ > +# define DP_PSR_ENABLE_PSR2 BIT(6) /* eDP 1.4a */ > > #define DP_ADAPTER_CTRL 0x1a0 > # define DP_ADAPTER_CTRL_FORCE_LOAD_SENSE (1 << 0)
Op 22-04-2021 om 13:00 schreef Mun, Gwan-gyeong: > The changed name looks more accurate to the edp 1.4b spec. > Looks good to me. > > Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > > On Wed, 2021-04-21 at 15:02 -0700, José Roberto de Souza wrote: >> DP_PSR_EN_CFG bit 5 aka "Selective Update Region Scan Line Capture >> Indication" in eDP spec has a ambiguous name, so renaming to better >> match specification. >> >> While at it, replacing bit shit by BIT() macro and adding the version >> some registers were added to eDP specification. >> >> Cc: <dri-devel@lists.freedesktop.org> >> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> >> Cc: Jani Nikula <jani.nikula@intel.com> >> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> >> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> >> --- >> include/drm/drm_dp_helper.h | 16 ++++++++-------- >> 1 file changed, 8 insertions(+), 8 deletions(-) >> >> diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h >> index 1e85c2021f2f..d6f6a084a190 100644 >> --- a/include/drm/drm_dp_helper.h >> +++ b/include/drm/drm_dp_helper.h >> @@ -687,14 +687,14 @@ struct drm_device; >> #define DP_DSC_ENABLE 0x160 /* DP 1.4 */ >> # define DP_DECOMPRESSION_EN (1 << 0) >> >> -#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ >> -# define DP_PSR_ENABLE (1 << 0) >> -# define DP_PSR_MAIN_LINK_ACTIVE (1 << 1) >> -# define DP_PSR_CRC_VERIFICATION (1 << 2) >> -# define DP_PSR_FRAME_CAPTURE (1 << 3) >> -# define DP_PSR_SELECTIVE_UPDATE (1 << 4) >> -# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS (1 << 5) >> -# define DP_PSR_ENABLE_PSR2 (1 << 6) /* eDP 1.4a */ >> +#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ >> +# define DP_PSR_ENABLE BIT(0) >> +# define DP_PSR_MAIN_LINK_ACTIVE BIT(1) >> +# define DP_PSR_CRC_VERIFICATION BIT(2) >> +# define DP_PSR_FRAME_CAPTURE BIT(3) >> +# define DP_PSR_SU_REGION_SCANLINE_CAPTURE BIT(4) /* eDP 1.4a */ >> +# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS BIT(5) /* eDP >> 1.4a */ >> +# define DP_PSR_ENABLE_PSR2 BIT(6) /* eDP 1.4a */ >> >> #define DP_ADAPTER_CTRL 0x1a0 >> # define DP_ADAPTER_CTRL_FORCE_LOAD_SENSE (1 << 0) > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx This should probably go throuh drm-misc-next, I don't see the next patch depending on this?
On Fri, 2021-04-23 at 12:25 +0200, Maarten Lankhorst wrote: > Op 22-04-2021 om 13:00 schreef Mun, Gwan-gyeong: > > The changed name looks more accurate to the edp 1.4b spec. > > Looks good to me. > > > > Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > > > > On Wed, 2021-04-21 at 15:02 -0700, José Roberto de Souza wrote: > > > DP_PSR_EN_CFG bit 5 aka "Selective Update Region Scan Line Capture > > > Indication" in eDP spec has a ambiguous name, so renaming to better > > > match specification. > > > > > > While at it, replacing bit shit by BIT() macro and adding the version > > > some registers were added to eDP specification. > > > > > > Cc: <dri-devel@lists.freedesktop.org> > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > > Cc: Jani Nikula <jani.nikula@intel.com> > > > Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> > > > Signed-off-by: José Roberto de Souza <jose.souza@intel.com> > > > --- > > > include/drm/drm_dp_helper.h | 16 ++++++++-------- > > > 1 file changed, 8 insertions(+), 8 deletions(-) > > > > > > diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h > > > index 1e85c2021f2f..d6f6a084a190 100644 > > > --- a/include/drm/drm_dp_helper.h > > > +++ b/include/drm/drm_dp_helper.h > > > @@ -687,14 +687,14 @@ struct drm_device; > > > #define DP_DSC_ENABLE 0x160 /* DP 1.4 */ > > > # define DP_DECOMPRESSION_EN (1 << 0) > > > > > > -#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ > > > -# define DP_PSR_ENABLE (1 << 0) > > > -# define DP_PSR_MAIN_LINK_ACTIVE (1 << 1) > > > -# define DP_PSR_CRC_VERIFICATION (1 << 2) > > > -# define DP_PSR_FRAME_CAPTURE (1 << 3) > > > -# define DP_PSR_SELECTIVE_UPDATE (1 << 4) > > > -# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS (1 << 5) > > > -# define DP_PSR_ENABLE_PSR2 (1 << 6) /* eDP 1.4a */ > > > +#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ > > > +# define DP_PSR_ENABLE BIT(0) > > > +# define DP_PSR_MAIN_LINK_ACTIVE BIT(1) > > > +# define DP_PSR_CRC_VERIFICATION BIT(2) > > > +# define DP_PSR_FRAME_CAPTURE BIT(3) > > > +# define DP_PSR_SU_REGION_SCANLINE_CAPTURE BIT(4) /* eDP 1.4a */ > > > +# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS BIT(5) /* eDP > > > 1.4a */ > > > +# define DP_PSR_ENABLE_PSR2 BIT(6) /* eDP 1.4a */ > > > > > > #define DP_ADAPTER_CTRL 0x1a0 > > > # define DP_ADAPTER_CTRL_FORCE_LOAD_SENSE (1 << 0) > > _______________________________________________ > > Intel-gfx mailing list > > Intel-gfx@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/intel-gfx > > This should probably go throuh drm-misc-next, I don't see the next patch depending on this? The patch depending on this change will be sent right after this one is merged. >
On Thu, 2021-04-22 at 09:28 +0000, Patchwork wrote: Patch Details Series: series starting with [1/2] drm: Rename DP_PSR_SELECTIVE_UPDATE to better mach eDP spec URL: https://patchwork.freedesktop.org/series/89328/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/index.html CI Bug Log - changes from CI_DRM_9995_full -> Patchwork_19969_full Summary FAILURE Serious unknown changes coming with Patchwork_19969_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_19969_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues Here are the unknown changes that may have been introduced in Patchwork_19969_full: IGT changes Possible regressions * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl4/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html> This changes are not affecting SKL. Pushed the second patch that can be merged to drm-intel-next. Waiting an ack from drm maintainers in the first one. Known issues Here are the changes found in Patchwork_19969_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_persistence@process: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-snb2/igt@gem_ctx_persistence@process.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue * igt@gem_eio@in-flight-1us: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl8/igt@gem_eio@in-flight-1us.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl1/igt@gem_eio@in-flight-1us.html> ([i915#3063]) * igt@gem_eio@unwedge-stress: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb3/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb3/igt@gem_eio@unwedge-stress.html> (i915#2369<https://gitlab.freedesktop.org/drm/intel/issues/2369> / i915#2481<https://gitlab.freedesktop.org/drm/intel/issues> / [i915#3070]) * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-snb6/igt@gem_eio@unwedge-stress.html> ([i915#3354]) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb3/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-pace@vecs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-tglb3/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html> ([i915#2842]) * igt@gem_exec_fair@basic-throttle@rcs0: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2849]) * igt@gem_exec_reloc@basic-wide-active@bcs0: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl8/igt@gem_exec_reloc@basic-wide-active@bcs0.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>) +3 similar issues * igt@gem_exec_reloc@basic-wide-active@vcs1: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>) * igt@gem_huc_copy@huc-copy: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) * igt@gem_userptr_blits@set-cache-level: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-snb5/igt@gem_userptr_blits@set-cache-level.html> ([i915#3324]) * igt@gem_userptr_blits@vma-merge: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-snb7/igt@gem_userptr_blits@vma-merge.html> ([i915#2724]) * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl8/igt@gem_userptr_blits@vma-merge.html> ([i915#3318]) * igt@gem_vm_create@destroy-race: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-tglb3/igt@gem_vm_create@destroy-race.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-tglb5/igt@gem_vm_create@destroy-race.html> ([i915#2795]) * igt@gen9_exec_parse@allowed-single: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl10/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl6/igt@gen9_exec_parse@allowed-single.html> (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / [i915#716]) * igt@gen9_exec_parse@bb-large: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl8/igt@gen9_exec_parse@bb-large.html> ([i915#3296]) * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl2/igt@gen9_exec_parse@bb-large.html> ([i915#3296]) * igt@i915_pm_rpm@modeset-pc8-residency-stress: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +257 similar issues * igt@kms_ccs@pipe-c-bad-rotation-90: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@kms_ccs@pipe-c-bad-rotation-90.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111304<https://bugs.freedesktop.org/show_bug.cgi?id=111304>) +1 similar issue * igt@kms_chamelium@hdmi-frame-dump: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-snb5/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +16 similar issues * igt@kms_chamelium@vga-hpd-for-each-pipe: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl8/igt@kms_chamelium@vga-hpd-for-each-pipe.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +7 similar issues * igt@kms_color_chamelium@pipe-a-ctm-limited-range: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +25 similar issues * igt@kms_color_chamelium@pipe-a-degamma: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl7/igt@kms_color_chamelium@pipe-a-degamma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_content_protection@atomic-dpms: * shard-apl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl2/igt@kms_content_protection@atomic-dpms.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319>) * igt@kms_content_protection@uevent: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@kms_content_protection@uevent.html> (i915#2105<https://gitlab.freedesktop.org/drm/intel/issues/2105>) * igt@kms_cursor_crc@pipe-c-cursor-256x256-onscreen: * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@kms_cursor_crc@pipe-c-cursor-256x256-onscreen.html> ([i915#54]) * igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl1/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl9/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) * igt@kms_fbcon_fbt@fbc-suspend: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / [i915#636]) * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1: * shard-skl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl6/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html> (i915#146<https://gitlab.freedesktop.org/drm/intel/issues/146> / i915#198<https://gitlab.freedesktop.org/drm/intel/issues/198>) * igt@kms_flip@flip-vs-suspend@c-dp1: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +3 similar issues * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1: * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl9/igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2672]) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2642]) +1 similar issue * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2672]) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +63 similar issues * igt@kms_frontbuffer_tracking@fbc-suspend: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155>) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-snb5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +335 similar issues * igt@kms_hdr@bpc-switch-dpms: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl4/igt@kms_hdr@bpc-switch-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl7/igt@kms_hdr@bpc-switch-dpms.html> (i915#1188<https://gitlab.freedesktop.org/drm/intel/issues/1188>) +2 similar issues * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl1/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) +1 similar issue * igt@kms_pipe_crc_basic@read-crc-pipe-d: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl9/igt@kms_pipe_crc_basic@read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) +2 similar issues * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html> ([i915#265]) * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: * shard-skl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) +2 similar issues * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658]) * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658]) +6 similar issues * igt@kms_psr2_su@page_flip: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl9/igt@kms_psr2_su@page_flip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658]) * igt@kms_psr@psr2_dpms: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb2/igt@kms_psr@psr2_dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb7/igt@kms_psr@psr2_dpms.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue * igt@kms_sysfs_edid_timing: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl3/igt@kms_sysfs_edid_timing.html> (IGT#2<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>) * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: * shard-skl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl10/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html> (i915#198<https://gitlab.freedesktop.org/drm/intel/issues/198>) * igt@kms_writeback@writeback-check-output: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl6/igt@kms_writeback@writeback-check-output.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>) +1 similar issue * igt@kms_writeback@writeback-fb-id: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@kms_writeback@writeback-fb-id.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>) * igt@nouveau_crc@pipe-d-ctx-flip-detection: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +74 similar issues * igt@perf@polling-parameterized: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-tglb6/igt@perf@polling-parameterized.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-tglb5/igt@perf@polling-parameterized.html> (i915#1542<https://gitlab.freedesktop.org/drm/intel/issues/1542>) * igt@sysfs_clients@busy: * shard-skl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@sysfs_clients@busy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2994]) +1 similar issue * igt@sysfs_clients@fair-1: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl6/igt@sysfs_clients@fair-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2994]) +2 similar issues * igt@sysfs_clients@recycle-many: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl7/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#2994]) Possible fixes * igt@gem_exec_fair@basic-deadline: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-glk5/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-glk3/igt@gem_exec_fair@basic-deadline.html> * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> * igt@gem_exec_suspend@basic-s3: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl2/igt@gem_exec_suspend@basic-s3.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl4/igt@gem_exec_suspend@basic-s3.html> +4 similar issues * igt@kms_color@pipe-c-ctm-0-5: * shard-skl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl1/igt@kms_color@pipe-c-ctm-0-5.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl8/igt@kms_color@pipe-c-ctm-0-5.html> * igt@kms_cursor_legacy@flip-vs-cursor-atomic: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> +1 similar issue * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html> ([i915#79]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html> * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1: * shard-skl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl4/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html> (i915#198<https://gitlab.freedesktop.org/drm/intel/issues/198>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl6/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html> * igt@kms_flip@plain-flip-fb-recreate@a-edp1: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl8/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html> * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl8/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / [i915#265]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html> +1 similar issue * igt@kms_psr@psr2_no_drrs: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb3/igt@kms_psr@psr2_no_drrs.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> * igt@perf@polling-parameterized: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl9/igt@perf@polling-parameterized.html> (i915#1542<https://gitlab.freedesktop.org/drm/intel/issues/1542>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl4/igt@perf@polling-parameterized.html> * igt@perf@polling-small-buf: * shard-skl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl1/igt@perf@polling-small-buf.html> (i915#1722<https://gitlab.freedesktop.org/drm/intel/issues/1722>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl1/igt@perf@polling-small-buf.html> Warnings * igt@gem_exec_fair@basic-none-rrul@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb4/igt@gem_exec_fair@basic-none-rrul@rcs0.html> ([i915#2852]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> ([i915#2842]) * igt@i915_pm_rc6_residency@rc6-fence: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb1/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681] / [i915#2684]) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb5/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2684]) * igt@i915_pm_rc6_residency@rc6-idle: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#1804<https://gitlab.freedesktop.org/drm/intel/issues/1804> / [i915#2684]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2680]) * igt@kms_psr2_sf@plane-move-sf-dmg-area-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html> ([i915#2920]) * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#2920]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html> ([i915#658]) +1 similar issue * igt@runner@aborted: * shard-kbl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-kbl4/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#2505] / [i915#3002] / [i915#602]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-kbl2/igt@runner@aborted.html>) (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / [i915#2505] / [i915#3002] / [i915#92]) * shard-skl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl10/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9995/shard-skl7/igt@runner@aborted.html>) ([i915#3002]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19969/shard-skl2/igt@runner@aborted.html>) (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / i915#2029<https://gitlab.freedesktop.org/drm/intel/issues/2029> / [i915#3002])
diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h index 1e85c2021f2f..d6f6a084a190 100644 --- a/include/drm/drm_dp_helper.h +++ b/include/drm/drm_dp_helper.h @@ -687,14 +687,14 @@ struct drm_device; #define DP_DSC_ENABLE 0x160 /* DP 1.4 */ # define DP_DECOMPRESSION_EN (1 << 0) -#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ -# define DP_PSR_ENABLE (1 << 0) -# define DP_PSR_MAIN_LINK_ACTIVE (1 << 1) -# define DP_PSR_CRC_VERIFICATION (1 << 2) -# define DP_PSR_FRAME_CAPTURE (1 << 3) -# define DP_PSR_SELECTIVE_UPDATE (1 << 4) -# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS (1 << 5) -# define DP_PSR_ENABLE_PSR2 (1 << 6) /* eDP 1.4a */ +#define DP_PSR_EN_CFG 0x170 /* XXX 1.2? */ +# define DP_PSR_ENABLE BIT(0) +# define DP_PSR_MAIN_LINK_ACTIVE BIT(1) +# define DP_PSR_CRC_VERIFICATION BIT(2) +# define DP_PSR_FRAME_CAPTURE BIT(3) +# define DP_PSR_SU_REGION_SCANLINE_CAPTURE BIT(4) /* eDP 1.4a */ +# define DP_PSR_IRQ_HPD_WITH_CRC_ERRORS BIT(5) /* eDP 1.4a */ +# define DP_PSR_ENABLE_PSR2 BIT(6) /* eDP 1.4a */ #define DP_ADAPTER_CTRL 0x1a0 # define DP_ADAPTER_CTRL_FORCE_LOAD_SENSE (1 << 0)
DP_PSR_EN_CFG bit 5 aka "Selective Update Region Scan Line Capture Indication" in eDP spec has a ambiguous name, so renaming to better match specification. While at it, replacing bit shit by BIT() macro and adding the version some registers were added to eDP specification. Cc: <dri-devel@lists.freedesktop.org> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: Jani Nikula <jani.nikula@intel.com> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> --- include/drm/drm_dp_helper.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)