* [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
@ 2024-01-23 7:11 Jouni Högander
2024-01-23 7:41 ` Ville Syrjälä
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Jouni Högander @ 2024-01-23 7:11 UTC (permalink / raw)
To: intel-gfx
We want to request full modeset in initial fast check to force PSR state
computation. Otherwise PSR is not enabled on initial commit but on first
commit with modeset or fastset. With this change Initial commit will still
end up using fastset (unless something else requires full modeset) as PSR
parameters are not anymore part of intel_pipe_config_compare.
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Fixes: a480dd59fe25 ("drm/i915/display: No need for full modeset due to psr")
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
drivers/gpu/drm/i915/display/intel_psr.c | 3 ---
drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index ab415f41924d..143981b91e8b 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3326,6 +3326,14 @@ bool intel_dp_initial_fastset_check(struct intel_encoder *encoder,
fastset = false;
}
+ if (CAN_PSR(intel_dp)) {
+ drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] Forcing full modeset to compute PSR state\
+n",
+ encoder->base.base.id, encoder->base.name);
+ crtc_state->uapi.mode_changed = true;
+ fastset = false;
+ }
+
return fastset;
}
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 1010b8c405df..b6db7dbfaf1a 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -173,9 +173,6 @@
* irrelevant for normal operation.
*/
-#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
- (intel_dp)->psr.source_support)
-
#define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)->psr.sink_panel_replay_support && \
(intel_dp)->psr.source_panel_replay_support)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index cde781df84d5..3d9920ebafab 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -21,6 +21,9 @@ struct intel_encoder;
struct intel_plane;
struct intel_plane_state;
+#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
+ (intel_dp)->psr.source_support)
+
bool intel_encoder_can_psr(struct intel_encoder *encoder);
void intel_psr_init_dpcd(struct intel_dp *intel_dp);
void intel_psr_pre_plane_update(struct intel_atomic_state *state,
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 7:11 [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state Jouni Högander
@ 2024-01-23 7:41 ` Ville Syrjälä
2024-01-23 7:57 ` Hogander, Jouni
2024-01-23 7:55 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 10+ messages in thread
From: Ville Syrjälä @ 2024-01-23 7:41 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx
On Tue, Jan 23, 2024 at 09:11:03AM +0200, Jouni Högander wrote:
> We want to request full modeset in initial fast check to force PSR state
> computation. Otherwise PSR is not enabled on initial commit but on first
> commit with modeset or fastset. With this change Initial commit will still
> end up using fastset (unless something else requires full modeset) as PSR
> parameters are not anymore part of intel_pipe_config_compare.
I think I'd prefer to go the oppostie direction and try to get all
the full modeset stuff out from the initial commit. The only reason
the initial commit was introduced was to compute the plane states
due to lack of readout, and then it got extended due to various other
hacks. Our goal is to inherit the state from the BIOS so ideally
the whole initial_commit thing wouldn't even exist.
>
> Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
>
> Fixes: a480dd59fe25 ("drm/i915/display: No need for full modeset due to psr")
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
> drivers/gpu/drm/i915/display/intel_psr.c | 3 ---
> drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
> 3 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index ab415f41924d..143981b91e8b 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -3326,6 +3326,14 @@ bool intel_dp_initial_fastset_check(struct intel_encoder *encoder,
> fastset = false;
> }
>
> + if (CAN_PSR(intel_dp)) {
> + drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] Forcing full modeset to compute PSR state\
> +n",
> + encoder->base.base.id, encoder->base.name);
> + crtc_state->uapi.mode_changed = true;
> + fastset = false;
> + }
> +
> return fastset;
> }
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index 1010b8c405df..b6db7dbfaf1a 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -173,9 +173,6 @@
> * irrelevant for normal operation.
> */
>
> -#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> - (intel_dp)->psr.source_support)
> -
> #define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)->psr.sink_panel_replay_support && \
> (intel_dp)->psr.source_panel_replay_support)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
> index cde781df84d5..3d9920ebafab 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.h
> +++ b/drivers/gpu/drm/i915/display/intel_psr.h
> @@ -21,6 +21,9 @@ struct intel_encoder;
> struct intel_plane;
> struct intel_plane_state;
>
> +#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> + (intel_dp)->psr.source_support)
> +
> bool intel_encoder_can_psr(struct intel_encoder *encoder);
> void intel_psr_init_dpcd(struct intel_dp *intel_dp);
> void intel_psr_pre_plane_update(struct intel_atomic_state *state,
> --
> 2.34.1
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 7:11 [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state Jouni Högander
2024-01-23 7:41 ` Ville Syrjälä
@ 2024-01-23 7:55 ` Patchwork
2024-01-23 8:09 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-23 10:58 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-23 7:55 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/psr: Request modeset on initial commit to compute PSR state
URL : https://patchwork.freedesktop.org/series/129068/
State : warning
== Summary ==
Error: dim checkpatch failed
82ba3b886668 drm/i915/psr: Request modeset on initial commit to compute PSR state
-:30: WARNING:LINE_CONTINUATIONS: Avoid line continuations in quoted strings
#30: FILE: drivers/gpu/drm/i915/display/intel_dp.c:3330:
+ drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] Forcing full modeset to compute PSR state\
-:62: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'intel_dp' - possible side-effects?
#62: FILE: drivers/gpu/drm/i915/display/intel_psr.h:24:
+#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
+ (intel_dp)->psr.source_support)
total: 0 errors, 1 warnings, 1 checks, 32 lines checked
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 7:41 ` Ville Syrjälä
@ 2024-01-23 7:57 ` Hogander, Jouni
2024-01-23 8:07 ` Ville Syrjälä
0 siblings, 1 reply; 10+ messages in thread
From: Hogander, Jouni @ 2024-01-23 7:57 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com; +Cc: intel-gfx@lists.freedesktop.org
On Tue, 2024-01-23 at 09:41 +0200, Ville Syrjälä wrote:
> On Tue, Jan 23, 2024 at 09:11:03AM +0200, Jouni Högander wrote:
> > We want to request full modeset in initial fast check to force PSR
> > state
> > computation. Otherwise PSR is not enabled on initial commit but on
> > first
> > commit with modeset or fastset. With this change Initial commit
> > will still
> > end up using fastset (unless something else requires full modeset)
> > as PSR
> > parameters are not anymore part of intel_pipe_config_compare.
>
> I think I'd prefer to go the oppostie direction and try to get all
> the full modeset stuff out from the initial commit. The only reason
> the initial commit was introduced was to compute the plane states
> due to lack of readout, and then it got extended due to various other
> hacks. Our goal is to inherit the state from the BIOS so ideally
> the whole initial_commit thing wouldn't even exist.
Bios doesn't enable PSR. Do you think this would be better approach ?:
https://patchwork.freedesktop.org/patch/575368/?series=129023&rev=1
What we just need is something triggering intel_psr_compute_config +
psr enable. Maybe that could be separate function doing both and call
that from intel_initial_commit. If/when we get rid of that
intel_initial_commit: this function would be called by that new thing.
BR,
Jouni Högander
>
> >
> > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> >
> > Fixes: a480dd59fe25 ("drm/i915/display: No need for full modeset
> > due to psr")
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
> > drivers/gpu/drm/i915/display/intel_psr.c | 3 ---
> > drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
> > 3 files changed, 11 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index ab415f41924d..143981b91e8b 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -3326,6 +3326,14 @@ bool intel_dp_initial_fastset_check(struct
> > intel_encoder *encoder,
> > fastset = false;
> > }
> >
> > + if (CAN_PSR(intel_dp)) {
> > + drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] Forcing
> > full modeset to compute PSR state\
> > +n",
> > + encoder->base.base.id, encoder-
> > >base.name);
> > + crtc_state->uapi.mode_changed = true;
> > + fastset = false;
> > + }
> > +
> > return fastset;
> > }
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > b/drivers/gpu/drm/i915/display/intel_psr.c
> > index 1010b8c405df..b6db7dbfaf1a 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > @@ -173,9 +173,6 @@
> > * irrelevant for normal operation.
> > */
> >
> > -#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> > - (intel_dp)->psr.source_support)
> > -
> > #define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)-
> > >psr.sink_panel_replay_support && \
> > (intel_dp)-
> > >psr.source_panel_replay_support)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h
> > b/drivers/gpu/drm/i915/display/intel_psr.h
> > index cde781df84d5..3d9920ebafab 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.h
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.h
> > @@ -21,6 +21,9 @@ struct intel_encoder;
> > struct intel_plane;
> > struct intel_plane_state;
> >
> > +#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> > + (intel_dp)->psr.source_support)
> > +
> > bool intel_encoder_can_psr(struct intel_encoder *encoder);
> > void intel_psr_init_dpcd(struct intel_dp *intel_dp);
> > void intel_psr_pre_plane_update(struct intel_atomic_state *state,
> > --
> > 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 7:57 ` Hogander, Jouni
@ 2024-01-23 8:07 ` Ville Syrjälä
2024-01-23 8:17 ` Hogander, Jouni
2024-01-24 9:15 ` Jani Nikula
0 siblings, 2 replies; 10+ messages in thread
From: Ville Syrjälä @ 2024-01-23 8:07 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-gfx@lists.freedesktop.org
On Tue, Jan 23, 2024 at 07:57:00AM +0000, Hogander, Jouni wrote:
> On Tue, 2024-01-23 at 09:41 +0200, Ville Syrjälä wrote:
> > On Tue, Jan 23, 2024 at 09:11:03AM +0200, Jouni Högander wrote:
> > > We want to request full modeset in initial fast check to force PSR
> > > state
> > > computation. Otherwise PSR is not enabled on initial commit but on
> > > first
> > > commit with modeset or fastset. With this change Initial commit
> > > will still
> > > end up using fastset (unless something else requires full modeset)
> > > as PSR
> > > parameters are not anymore part of intel_pipe_config_compare.
> >
> > I think I'd prefer to go the oppostie direction and try to get all
> > the full modeset stuff out from the initial commit. The only reason
> > the initial commit was introduced was to compute the plane states
> > due to lack of readout, and then it got extended due to various other
> > hacks. Our goal is to inherit the state from the BIOS so ideally
> > the whole initial_commit thing wouldn't even exist.
>
> Bios doesn't enable PSR. Do you think this would be better approach ?:
>
> https://patchwork.freedesktop.org/patch/575368/?series=129023&rev=1
>
> What we just need is something triggering intel_psr_compute_config +
> psr enable. Maybe that could be separate function doing both and call
> that from intel_initial_commit. If/when we get rid of that
> intel_initial_commit: this function would be called by that new thing.
I don't think we should do anything at all. PSR will get enabled by the
first proper commit, if possible.
>
> BR,
>
> Jouni Högander
>
> >
> > >
> > > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> > >
> > > Fixes: a480dd59fe25 ("drm/i915/display: No need for full modeset
> > > due to psr")
> > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
> > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ---
> > > drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
> > > 3 files changed, 11 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > > b/drivers/gpu/drm/i915/display/intel_dp.c
> > > index ab415f41924d..143981b91e8b 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > > @@ -3326,6 +3326,14 @@ bool intel_dp_initial_fastset_check(struct
> > > intel_encoder *encoder,
> > > fastset = false;
> > > }
> > >
> > > + if (CAN_PSR(intel_dp)) {
> > > + drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] Forcing
> > > full modeset to compute PSR state\
> > > +n",
> > > + encoder->base.base.id, encoder-
> > > >base.name);
> > > + crtc_state->uapi.mode_changed = true;
> > > + fastset = false;
> > > + }
> > > +
> > > return fastset;
> > > }
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > > b/drivers/gpu/drm/i915/display/intel_psr.c
> > > index 1010b8c405df..b6db7dbfaf1a 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > > @@ -173,9 +173,6 @@
> > > * irrelevant for normal operation.
> > > */
> > >
> > > -#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> > > - (intel_dp)->psr.source_support)
> > > -
> > > #define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)-
> > > >psr.sink_panel_replay_support && \
> > > (intel_dp)-
> > > >psr.source_panel_replay_support)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h
> > > b/drivers/gpu/drm/i915/display/intel_psr.h
> > > index cde781df84d5..3d9920ebafab 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_psr.h
> > > +++ b/drivers/gpu/drm/i915/display/intel_psr.h
> > > @@ -21,6 +21,9 @@ struct intel_encoder;
> > > struct intel_plane;
> > > struct intel_plane_state;
> > >
> > > +#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> > > + (intel_dp)->psr.source_support)
> > > +
> > > bool intel_encoder_can_psr(struct intel_encoder *encoder);
> > > void intel_psr_init_dpcd(struct intel_dp *intel_dp);
> > > void intel_psr_pre_plane_update(struct intel_atomic_state *state,
> > > --
> > > 2.34.1
> >
>
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 7:11 [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state Jouni Högander
2024-01-23 7:41 ` Ville Syrjälä
2024-01-23 7:55 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2024-01-23 8:09 ` Patchwork
2024-01-23 10:58 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-23 8:09 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 2697 bytes --]
== Series Details ==
Series: drm/i915/psr: Request modeset on initial commit to compute PSR state
URL : https://patchwork.freedesktop.org/series/129068/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14160 -> Patchwork_129068v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/index.html
Participating hosts (39 -> 37)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in Patchwork_129068v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
#### Possible fixes ####
* igt@gem_exec_parallel@engines@fds:
- fi-kbl-7567u: [DMESG-WARN][3] -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/fi-kbl-7567u/igt@gem_exec_parallel@engines@fds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/fi-kbl-7567u/igt@gem_exec_parallel@engines@fds.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- fi-kbl-7567u: [DMESG-WARN][5] ([i915#1982]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/fi-kbl-7567u/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/fi-kbl-7567u/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* Linux: CI_DRM_14160 -> Patchwork_129068v1
CI-20190529: 20190529
CI_DRM_14160: 1cd8b030edf847fb2aaf5dae007e93eea64f704f @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7685: 7685
Patchwork_129068v1: 1cd8b030edf847fb2aaf5dae007e93eea64f704f @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
014ea2461dfb drm/i915/psr: Request modeset on initial commit to compute PSR state
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/index.html
[-- Attachment #2: Type: text/html, Size: 3301 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 8:07 ` Ville Syrjälä
@ 2024-01-23 8:17 ` Hogander, Jouni
2024-01-23 8:38 ` Ville Syrjälä
2024-01-24 9:15 ` Jani Nikula
1 sibling, 1 reply; 10+ messages in thread
From: Hogander, Jouni @ 2024-01-23 8:17 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com; +Cc: intel-gfx@lists.freedesktop.org
On Tue, 2024-01-23 at 10:07 +0200, Ville Syrjälä wrote:
> On Tue, Jan 23, 2024 at 07:57:00AM +0000, Hogander, Jouni wrote:
> > On Tue, 2024-01-23 at 09:41 +0200, Ville Syrjälä wrote:
> > > On Tue, Jan 23, 2024 at 09:11:03AM +0200, Jouni Högander wrote:
> > > > We want to request full modeset in initial fast check to force
> > > > PSR
> > > > state
> > > > computation. Otherwise PSR is not enabled on initial commit but
> > > > on
> > > > first
> > > > commit with modeset or fastset. With this change Initial commit
> > > > will still
> > > > end up using fastset (unless something else requires full
> > > > modeset)
> > > > as PSR
> > > > parameters are not anymore part of intel_pipe_config_compare.
> > >
> > > I think I'd prefer to go the oppostie direction and try to get
> > > all
> > > the full modeset stuff out from the initial commit. The only
> > > reason
> > > the initial commit was introduced was to compute the plane states
> > > due to lack of readout, and then it got extended due to various
> > > other
> > > hacks. Our goal is to inherit the state from the BIOS so ideally
> > > the whole initial_commit thing wouldn't even exist.
> >
> > Bios doesn't enable PSR. Do you think this would be better approach
> > ?:
> >
> > https://patchwork.freedesktop.org/patch/575368/?series=129023&rev=1
> >
> > What we just need is something triggering intel_psr_compute_config
> > +
> > psr enable. Maybe that could be separate function doing both and
> > call
> > that from intel_initial_commit. If/when we get rid of that
> > intel_initial_commit: this function would be called by that new
> > thing.
>
> I don't think we should do anything at all. PSR will get enabled by
> the
> first proper commit, if possible.
That means PSR is disabled until there is fastset or full modeset. Is
that ok? I.e. is there some usecase where either of these doesn't
happen?
Panel replay is also now coming to picture as it requires sink side
being enabled before link training. Maybe you have some advice on these
as well:
https://patchwork.freedesktop.org/patch/574966/?series=128156&rev=5
https://patchwork.freedesktop.org/patch/574979/?series=128156&rev=5
BR,
Jouni Högander
>
> >
> > BR,
> >
> > Jouni Högander
> >
> > >
> > > >
> > > > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> > > >
> > > > Fixes: a480dd59fe25 ("drm/i915/display: No need for full
> > > > modeset
> > > > due to psr")
> > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > > > ---
> > > > drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
> > > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ---
> > > > drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
> > > > 3 files changed, 11 insertions(+), 3 deletions(-)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > > > b/drivers/gpu/drm/i915/display/intel_dp.c
> > > > index ab415f41924d..143981b91e8b 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > > > @@ -3326,6 +3326,14 @@ bool
> > > > intel_dp_initial_fastset_check(struct
> > > > intel_encoder *encoder,
> > > > fastset = false;
> > > > }
> > > >
> > > > + if (CAN_PSR(intel_dp)) {
> > > > + drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s]
> > > > Forcing
> > > > full modeset to compute PSR state\
> > > > +n",
> > > > + encoder->base.base.id, encoder-
> > > > > base.name);
> > > > + crtc_state->uapi.mode_changed = true;
> > > > + fastset = false;
> > > > + }
> > > > +
> > > > return fastset;
> > > > }
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > > > b/drivers/gpu/drm/i915/display/intel_psr.c
> > > > index 1010b8c405df..b6db7dbfaf1a 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > > > @@ -173,9 +173,6 @@
> > > > * irrelevant for normal operation.
> > > > */
> > > >
> > > > -#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> > > > - (intel_dp)->psr.source_support)
> > > > -
> > > > #define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)-
> > > > > psr.sink_panel_replay_support && \
> > > > (intel_dp)-
> > > > > psr.source_panel_replay_support)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h
> > > > b/drivers/gpu/drm/i915/display/intel_psr.h
> > > > index cde781df84d5..3d9920ebafab 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_psr.h
> > > > +++ b/drivers/gpu/drm/i915/display/intel_psr.h
> > > > @@ -21,6 +21,9 @@ struct intel_encoder;
> > > > struct intel_plane;
> > > > struct intel_plane_state;
> > > >
> > > > +#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
> > > > + (intel_dp)->psr.source_support)
> > > > +
> > > > bool intel_encoder_can_psr(struct intel_encoder *encoder);
> > > > void intel_psr_init_dpcd(struct intel_dp *intel_dp);
> > > > void intel_psr_pre_plane_update(struct intel_atomic_state
> > > > *state,
> > > > --
> > > > 2.34.1
> > >
> >
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 8:17 ` Hogander, Jouni
@ 2024-01-23 8:38 ` Ville Syrjälä
0 siblings, 0 replies; 10+ messages in thread
From: Ville Syrjälä @ 2024-01-23 8:38 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-gfx@lists.freedesktop.org
On Tue, Jan 23, 2024 at 08:17:36AM +0000, Hogander, Jouni wrote:
> On Tue, 2024-01-23 at 10:07 +0200, Ville Syrjälä wrote:
> > On Tue, Jan 23, 2024 at 07:57:00AM +0000, Hogander, Jouni wrote:
> > > On Tue, 2024-01-23 at 09:41 +0200, Ville Syrjälä wrote:
> > > > On Tue, Jan 23, 2024 at 09:11:03AM +0200, Jouni Högander wrote:
> > > > > We want to request full modeset in initial fast check to force
> > > > > PSR
> > > > > state
> > > > > computation. Otherwise PSR is not enabled on initial commit but
> > > > > on
> > > > > first
> > > > > commit with modeset or fastset. With this change Initial commit
> > > > > will still
> > > > > end up using fastset (unless something else requires full
> > > > > modeset)
> > > > > as PSR
> > > > > parameters are not anymore part of intel_pipe_config_compare.
> > > >
> > > > I think I'd prefer to go the oppostie direction and try to get
> > > > all
> > > > the full modeset stuff out from the initial commit. The only
> > > > reason
> > > > the initial commit was introduced was to compute the plane states
> > > > due to lack of readout, and then it got extended due to various
> > > > other
> > > > hacks. Our goal is to inherit the state from the BIOS so ideally
> > > > the whole initial_commit thing wouldn't even exist.
> > >
> > > Bios doesn't enable PSR. Do you think this would be better approach
> > > ?:
> > >
> > > https://patchwork.freedesktop.org/patch/575368/?series=129023&rev=1
> > >
> > > What we just need is something triggering intel_psr_compute_config
> > > +
> > > psr enable. Maybe that could be separate function doing both and
> > > call
> > > that from intel_initial_commit. If/when we get rid of that
> > > intel_initial_commit: this function would be called by that new
> > > thing.
> >
> > I don't think we should do anything at all. PSR will get enabled by
> > the
> > first proper commit, if possible.
>
> That means PSR is disabled until there is fastset or full modeset. Is
> that ok? I.e. is there some usecase where either of these doesn't
> happen?
Shouldn't happen, unless there is no userspace/fbcon client at all.
But in that case we should just turn off the whole display and let
the device enter runtime suspend. I don't think we are doing that
atm. It should perhaps be done from eg. a work scheduled fairly
far into the future to give userspace/fbcon enough time to
initialize.
>
> Panel replay is also now coming to picture as it requires sink side
> being enabled before link training. Maybe you have some advice on these
> as well:
>
> https://patchwork.freedesktop.org/patch/574966/?series=128156&rev=5
> https://patchwork.freedesktop.org/patch/574979/?series=128156&rev=5
I'll have to think a bit about all of it. In general I think the
sink PSR enable/disable should be moved to the full modeset/fastset
sequence properly, same for most of the source side PSR setup. The
only thing we should be frobbing during any other kind of commit/etc.
is the control register enable bit (in case we need to actually toggle
PSR, as opposed to just forcing a temporary exit with the CURSURFLIVE
trick).
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 7:11 [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state Jouni Högander
` (2 preceding siblings ...)
2024-01-23 8:09 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-01-23 10:58 ` Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-23 10:58 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 80570 bytes --]
== Series Details ==
Series: drm/i915/psr: Request modeset on initial commit to compute PSR state
URL : https://patchwork.freedesktop.org/series/129068/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14160_full -> Patchwork_129068v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_129068v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_129068v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_129068v1/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_129068v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-9/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-snb: [PASS][3] -> [DMESG-WARN][4] +3 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb4/igt@gem_exec_suspend@basic-s3@smem.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb1/igt@gem_exec_suspend@basic-s3@smem.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab:
- shard-dg2: [PASS][5] -> [DMESG-WARN][6] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
- shard-rkl: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010:
- shard-tglu: [PASS][9] -> [DMESG-WARN][10] +1 other test dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010:
- shard-glk: [PASS][11] -> [DMESG-WARN][12] +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> ([FAIL][13], [FAIL][14])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk1/igt@runner@aborted.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk1/igt@runner@aborted.html
Known issues
------------
Here are the changes found in Patchwork_129068v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9318])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy-idle@vecs0:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@drm_fdinfo@busy-idle@vecs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +9 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][18] -> [FAIL][19] ([i915#7742])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_mm@drm_mm@drm_test_mm_init:
- shard-mtlp: NOTRUN -> [DMESG-WARN][20] ([i915#10140])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@drm_mm@drm_mm@drm_test_mm_init.html
* igt@fbdev@pan:
- shard-snb: [PASS][21] -> [FAIL][22] ([i915#4435])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb5/igt@fbdev@pan.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb7/igt@fbdev@pan.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4873])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_caching@read-writes.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#3555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][26] ([i915#7297])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][27] ([i915#6268])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1099])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#6334])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-glk: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk4/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][34] ([i915#9606])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglu: NOTRUN -> [FAIL][35] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-6/igt@gem_exec_fair@basic-none-vip@rcs0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [PASS][38] -> [FAIL][39] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@basic-read-write:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@gem_mmap_gtt@basic-read-write.html
* igt@gem_mmap_gtt@basic-write-gtt:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_mmap_gtt@basic-write-gtt.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: NOTRUN -> [SKIP][53] ([fdo#111656])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_partial_pwrite_pread@write.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [INCOMPLETE][59] ([i915#10042] / [i915#10137])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk1/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4270])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4079])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4885])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen7_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][68] ([fdo#109289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-rkl: NOTRUN -> [SKIP][69] ([fdo#109289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][70] -> [INCOMPLETE][71] ([i915#10137] / [i915#5566])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk9/igt@gen9_exec_parse@allowed-single.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][75] -> [ABORT][76] ([i915#9820])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [PASS][77] -> [INCOMPLETE][78] ([i915#10137] / [i915#9820] / [i915#9849])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#8399])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#109293]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#6245])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][82] ([fdo#109302])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@i915_query@query-topology-unsupported.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#7707])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4212])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#1769])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#5138])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [FAIL][89] ([i915#5138])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][90] ([fdo#111614]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][91] ([fdo#111614] / [i915#3638]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111614])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#3638])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#111615]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][98] ([fdo#110723])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][99] ([fdo#111615])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#2705])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-snb: NOTRUN -> [SKIP][101] ([fdo#109271]) +30 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb2/igt@kms_ccs@pipe-a-bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +7 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#5354] / [i915#6095]) +11 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_ccs@pipe-a-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#5354]) +10 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_ccs@pipe-a-missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5354] / [i915#6095]) +12 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) +21 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-17/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5354]) +15 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3742])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4087]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][110] ([fdo#111827]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-negative:
- shard-glk: NOTRUN -> [SKIP][111] ([fdo#109271]) +150 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk4/igt@kms_chamelium_color@ctm-negative.html
- shard-dg2: NOTRUN -> [SKIP][112] ([fdo#111827])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#7828]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#7828])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#7828]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#7828])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#7828]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#3116] / [i915#3299])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3299])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3299])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#6944] / [i915#9424])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#8814])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3359])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3359])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#9809]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: [PASS][126] -> [SKIP][127] ([fdo#109271] / [fdo#111767])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][128] ([fdo#109274] / [fdo#111767])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-glk: [PASS][129] -> [FAIL][130] ([i915#72])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][131] ([fdo#109274] / [i915#5354]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4213])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg1: NOTRUN -> [SKIP][133] ([fdo#111767] / [fdo#111825]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-14/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
- shard-snb: NOTRUN -> [SKIP][134] ([fdo#109271] / [fdo#111767])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#9723])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#9227])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][137] ([i915#9841]) +3 other tests fail
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3804])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3804])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3840])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#3840]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#1839])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#9337])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#658])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg1: NOTRUN -> [SKIP][146] ([fdo#111825]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#8381])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3637]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111825]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu: NOTRUN -> [SKIP][150] ([fdo#109274] / [i915#3637]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8810])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#2672])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#2672])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#2672])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/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-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#2587] / [i915#2672])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg1: NOTRUN -> [SKIP][156] ([fdo#109285])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#5274])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#8708]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [PASS][159] -> [SKIP][160] ([fdo#109271]) +15 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg1: [PASS][161] -> [DMESG-WARN][162] ([i915#4423])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#5439])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3458]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][165] ([fdo#110189]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#1825]) +20 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109280]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#10055])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#9766])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#8708]) +8 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3023]) +9 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3458]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#1825]) +10 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8228]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4070] / [i915#4816])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][177] ([i915#7862]) +1 other test fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3582]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3555]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-17/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][180] ([i915#8292])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#9423]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#9423]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#5176] / [i915#9423]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9423]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#5235] / [i915#9423]) +7 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#5235]) +11 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#5235]) +7 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#5235]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#5354])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9685])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9685]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][192] -> [SKIP][193] ([i915#9519])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][194] -> [SKIP][195] ([i915#9519]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9519])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@pm-tiling:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4077]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_pm_rpm@pm-tiling.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111068] / [i915#9683]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-rkl: [PASS][199] -> [ABORT][200] ([i915#8875] / [i915#9926])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-rkl: [PASS][201] -> [INCOMPLETE][202] ([i915#8875] / [i915#9569])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][204] ([fdo#109309])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][205] -> [FAIL][206] ([i915#9196])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][207] ([fdo#109271] / [i915#2437])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2437] / [i915#9412])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#2434])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#8850])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3708])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html
* igt@runner@aborted:
- shard-snb: NOTRUN -> [FAIL][212] ([i915#7812])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb4/igt@runner@aborted.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9917])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-rkl: NOTRUN -> [SKIP][214] ([fdo#109315]) +5 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][215] ([fdo#109315] / [i915#2575]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-extension:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2575]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@v3d/v3d_submit_csd@bad-extension.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#2575]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@v3d/v3d_wait_bo@used-bo:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2575]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@v3d/v3d_wait_bo@used-bo.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#7711]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#7711]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#7711])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#2575])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#7711]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][224] ([i915#7742]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][226] ([i915#7297]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][228] ([i915#6268]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][230] ([i915#2842]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-8/igt@gem_exec_fair@basic-none-share@rcs0.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: [FAIL][232] ([i915#2842]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][234] ([i915#9275]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][236] ([i915#10131] / [i915#9820]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][238] ([i915#3743]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-tglu: [DMESG-WARN][240] ([i915#1982]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-10/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: [INCOMPLETE][242] -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][244] ([fdo#109271]) -> [PASS][245] +12 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][246] ([i915#4281]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][248] ([i915#9519]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-tglu: [ABORT][250] -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-9/igt@kms_pm_rpm@system-suspend-modeset.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-rkl: [ABORT][252] ([i915#8875]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-rkl: [DMESG-WARN][254] -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-tglu: [DMESG-WARN][256] -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab:
- shard-glk: [DMESG-WARN][258] -> [PASS][259] +1 other test pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010:
- shard-dg2: [DMESG-WARN][260] -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888:
- shard-snb: [DMESG-WARN][262] -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][264] ([i915#9196]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][266] ([i915#4349]) -> [PASS][267] +3 other tests pass
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][268] ([i915#9408] / [i915#9618]) -> [INCOMPLETE][269] ([i915#10137] / [i915#9408] / [i915#9618])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html
* igt@gem_pread@exhaustion:
- shard-tglu: [INCOMPLETE][270] ([i915#10042]) -> [INCOMPLETE][271] ([i915#10042] / [i915#10137]) +1 other test incomplete
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-8/igt@gem_pread@exhaustion.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-2/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: [INCOMPLETE][272] ([i915#10042]) -> [INCOMPLETE][273] ([i915#10042] / [i915#10137])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk8/igt@gem_pwrite@basic-exhaustion.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk4/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][274] ([i915#9200]) -> [INCOMPLETE][275] ([i915#10137] / [i915#9200])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-dg1: [SKIP][276] ([i915#5354] / [i915#6095]) -> [SKIP][277] ([i915#4423] / [i915#5354] / [i915#6095])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg1-13/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-13/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [INCOMPLETE][278] ([i915#8816]) -> [SKIP][279] ([fdo#109271])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb7/igt@kms_content_protection@atomic-dpms.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][280] ([i915#9433]) -> [SKIP][281] ([i915#4423] / [i915#9433])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-snb: [SKIP][282] ([fdo#109271]) -> [INCOMPLETE][283] ([i915#8816])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb5/igt@kms_content_protection@uevent.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb7/igt@kms_content_protection@uevent.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][284] ([i915#4281]) -> [SKIP][285] ([i915#3361])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-rkl: [DMESG-FAIL][286] -> [FAIL][287] ([i915#10136])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-dg1: [FAIL][288] -> [FAIL][289] ([i915#10136])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-snb: [FAIL][290] -> [FAIL][291] ([i915#10136])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-snb4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-tglu: [FAIL][292] -> [FAIL][293] ([i915#10136])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-tglu-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-tglu-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-glk: [FAIL][294] -> [FAIL][295] ([i915#10136])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-dg2: [FAIL][296] -> [FAIL][297] ([i915#10136])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14160/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.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
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10140]: https://gitlab.freedesktop.org/drm/intel/issues/10140
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9841]: https://gitlab.freedesktop.org/drm/intel/issues/9841
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9926]: https://gitlab.freedesktop.org/drm/intel/issues/9926
Build changes
-------------
* Linux: CI_DRM_14160 -> Patchwork_129068v1
CI-20190529: 20190529
CI_DRM_14160: 1cd8b030edf847fb2aaf5dae007e93eea64f704f @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7685: 7685
Patchwork_129068v1: 1cd8b030edf847fb2aaf5dae007e93eea64f704f @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129068v1/index.html
[-- Attachment #2: Type: text/html, Size: 95716 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state
2024-01-23 8:07 ` Ville Syrjälä
2024-01-23 8:17 ` Hogander, Jouni
@ 2024-01-24 9:15 ` Jani Nikula
1 sibling, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2024-01-24 9:15 UTC (permalink / raw)
To: Ville Syrjälä, Hogander, Jouni; +Cc: intel-gfx@lists.freedesktop.org
On Tue, 23 Jan 2024, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Tue, Jan 23, 2024 at 07:57:00AM +0000, Hogander, Jouni wrote:
>> On Tue, 2024-01-23 at 09:41 +0200, Ville Syrjälä wrote:
>> > On Tue, Jan 23, 2024 at 09:11:03AM +0200, Jouni Högander wrote:
>> > > We want to request full modeset in initial fast check to force PSR
>> > > state
>> > > computation. Otherwise PSR is not enabled on initial commit but on
>> > > first
>> > > commit with modeset or fastset. With this change Initial commit
>> > > will still
>> > > end up using fastset (unless something else requires full modeset)
>> > > as PSR
>> > > parameters are not anymore part of intel_pipe_config_compare.
>> >
>> > I think I'd prefer to go the oppostie direction and try to get all
>> > the full modeset stuff out from the initial commit. The only reason
>> > the initial commit was introduced was to compute the plane states
>> > due to lack of readout, and then it got extended due to various other
>> > hacks. Our goal is to inherit the state from the BIOS so ideally
>> > the whole initial_commit thing wouldn't even exist.
>>
>> Bios doesn't enable PSR. Do you think this would be better approach ?:
>>
>> https://patchwork.freedesktop.org/patch/575368/?series=129023&rev=1
>>
>> What we just need is something triggering intel_psr_compute_config +
>> psr enable. Maybe that could be separate function doing both and call
>> that from intel_initial_commit. If/when we get rid of that
>> intel_initial_commit: this function would be called by that new thing.
>
> I don't think we should do anything at all. PSR will get enabled by the
> first proper commit, if possible.
In general, I'm leaning the same way. Priorities:
1) Avoid full modeset at probe if at all possible.
2) Taking the above into account, enable as many power saving
etc. features as possible at probe.
3) If a system needs more power savings (or other fancy features
enabled), a) have them enabled by BIOS/GOP, or b) have the userspace
do a modeset post-probe according to its policy. Don't force that
policy on the kernel.
4) *Maybe* provide a way to force full modeset at probe as a policy
option.
BR,
Jani.
>
>>
>> BR,
>>
>> Jouni Högander
>>
>> >
>> > >
>> > > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
>> > >
>> > > Fixes: a480dd59fe25 ("drm/i915/display: No need for full modeset
>> > > due to psr")
>> > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
>> > > ---
>> > > drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
>> > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ---
>> > > drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
>> > > 3 files changed, 11 insertions(+), 3 deletions(-)
>> > >
>> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
>> > > b/drivers/gpu/drm/i915/display/intel_dp.c
>> > > index ab415f41924d..143981b91e8b 100644
>> > > --- a/drivers/gpu/drm/i915/display/intel_dp.c
>> > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
>> > > @@ -3326,6 +3326,14 @@ bool intel_dp_initial_fastset_check(struct
>> > > intel_encoder *encoder,
>> > > fastset = false;
>> > > }
>> > >
>> > > + if (CAN_PSR(intel_dp)) {
>> > > + drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] Forcing
>> > > full modeset to compute PSR state\
>> > > +n",
>> > > + encoder->base.base.id, encoder-
>> > > >base.name);
>> > > + crtc_state->uapi.mode_changed = true;
>> > > + fastset = false;
>> > > + }
>> > > +
>> > > return fastset;
>> > > }
>> > >
>> > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
>> > > b/drivers/gpu/drm/i915/display/intel_psr.c
>> > > index 1010b8c405df..b6db7dbfaf1a 100644
>> > > --- a/drivers/gpu/drm/i915/display/intel_psr.c
>> > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
>> > > @@ -173,9 +173,6 @@
>> > > * irrelevant for normal operation.
>> > > */
>> > >
>> > > -#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
>> > > - (intel_dp)->psr.source_support)
>> > > -
>> > > #define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)-
>> > > >psr.sink_panel_replay_support && \
>> > > (intel_dp)-
>> > > >psr.source_panel_replay_support)
>> > >
>> > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h
>> > > b/drivers/gpu/drm/i915/display/intel_psr.h
>> > > index cde781df84d5..3d9920ebafab 100644
>> > > --- a/drivers/gpu/drm/i915/display/intel_psr.h
>> > > +++ b/drivers/gpu/drm/i915/display/intel_psr.h
>> > > @@ -21,6 +21,9 @@ struct intel_encoder;
>> > > struct intel_plane;
>> > > struct intel_plane_state;
>> > >
>> > > +#define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \
>> > > + (intel_dp)->psr.source_support)
>> > > +
>> > > bool intel_encoder_can_psr(struct intel_encoder *encoder);
>> > > void intel_psr_init_dpcd(struct intel_dp *intel_dp);
>> > > void intel_psr_pre_plane_update(struct intel_atomic_state *state,
>> > > --
>> > > 2.34.1
>> >
>>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-01-24 9:15 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-23 7:11 [PATCH] drm/i915/psr: Request modeset on initial commit to compute PSR state Jouni Högander
2024-01-23 7:41 ` Ville Syrjälä
2024-01-23 7:57 ` Hogander, Jouni
2024-01-23 8:07 ` Ville Syrjälä
2024-01-23 8:17 ` Hogander, Jouni
2024-01-23 8:38 ` Ville Syrjälä
2024-01-24 9:15 ` Jani Nikula
2024-01-23 7:55 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2024-01-23 8:09 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-23 10:58 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).