drm/i915/psr: Disable PSR before modesets turn off all planes
PSR2 apparently requires some planes to be enabled for some silly reason, and so we are now trying to turn PSR off before planes go off. Except during a full modeset that is handled less clearly through reorganization of the modeset sequence. That is not great as it makes the code mode complex, and prevents us from doing nice things such as just turning off all the planes at the very start of the modeset. So let's move the PSR pre_plane_update() thing to a spot where it will handle both full modesets and everything else. Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20211022103304.24164-2-ville.syrjala@linux.intel.com Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
This commit is contained in:
parent
f0e204e0d3
commit
765972cb85
|
|
@ -1429,6 +1429,8 @@ static void intel_pre_plane_update(struct intel_atomic_state *state,
|
|||
intel_atomic_get_new_crtc_state(state, crtc);
|
||||
enum pipe pipe = crtc->pipe;
|
||||
|
||||
intel_psr_pre_plane_update(state, crtc);
|
||||
|
||||
if (hsw_pre_update_disable_ips(old_crtc_state, new_crtc_state))
|
||||
hsw_disable_ips(old_crtc_state);
|
||||
|
||||
|
|
@ -8668,7 +8670,6 @@ static void intel_atomic_commit_tail(struct intel_atomic_state *state)
|
|||
intel_encoders_update_prepare(state);
|
||||
|
||||
intel_dbuf_pre_plane_update(state);
|
||||
intel_psr_pre_plane_update(state);
|
||||
|
||||
for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
|
||||
if (new_crtc_state->uapi.async_flip)
|
||||
|
|
|
|||
|
|
@ -1725,11 +1725,17 @@ skip_sel_fetch_set_loop:
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void _intel_psr_pre_plane_update(const struct intel_atomic_state *state,
|
||||
const struct intel_crtc_state *crtc_state)
|
||||
void intel_psr_pre_plane_update(struct intel_atomic_state *state,
|
||||
struct intel_crtc *crtc)
|
||||
{
|
||||
struct drm_i915_private *i915 = to_i915(state->base.dev);
|
||||
const struct intel_crtc_state *crtc_state =
|
||||
intel_atomic_get_new_crtc_state(state, crtc);
|
||||
struct intel_encoder *encoder;
|
||||
|
||||
if (!HAS_PSR(i915))
|
||||
return;
|
||||
|
||||
for_each_intel_encoder_mask_with_psr(state->base.dev, encoder,
|
||||
crtc_state->uapi.encoder_mask) {
|
||||
struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
|
||||
|
|
@ -1744,6 +1750,7 @@ static void _intel_psr_pre_plane_update(const struct intel_atomic_state *state,
|
|||
* - All planes will go inactive
|
||||
* - Changing between PSR versions
|
||||
*/
|
||||
needs_to_disable |= intel_crtc_needs_modeset(crtc_state);
|
||||
needs_to_disable |= !crtc_state->has_psr;
|
||||
needs_to_disable |= !crtc_state->active_planes;
|
||||
needs_to_disable |= crtc_state->has_psr2 != psr->psr2_enabled;
|
||||
|
|
@ -1755,20 +1762,6 @@ static void _intel_psr_pre_plane_update(const struct intel_atomic_state *state,
|
|||
}
|
||||
}
|
||||
|
||||
void intel_psr_pre_plane_update(const struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_i915_private *dev_priv = to_i915(state->base.dev);
|
||||
struct intel_crtc_state *crtc_state;
|
||||
struct intel_crtc *crtc;
|
||||
int i;
|
||||
|
||||
if (!HAS_PSR(dev_priv))
|
||||
return;
|
||||
|
||||
for_each_new_intel_crtc_in_state(state, crtc, crtc_state, i)
|
||||
_intel_psr_pre_plane_update(state, crtc_state);
|
||||
}
|
||||
|
||||
static void _intel_psr_post_plane_update(const struct intel_atomic_state *state,
|
||||
const struct intel_crtc_state *crtc_state)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -20,7 +20,8 @@ struct intel_plane;
|
|||
struct intel_encoder;
|
||||
|
||||
void intel_psr_init_dpcd(struct intel_dp *intel_dp);
|
||||
void intel_psr_pre_plane_update(const struct intel_atomic_state *state);
|
||||
void intel_psr_pre_plane_update(struct intel_atomic_state *state,
|
||||
struct intel_crtc *crtc);
|
||||
void intel_psr_post_plane_update(const struct intel_atomic_state *state);
|
||||
void intel_psr_disable(struct intel_dp *intel_dp,
|
||||
const struct intel_crtc_state *old_crtc_state);
|
||||
|
|
|
|||
Loading…
Reference in New Issue