drm/i915: Push audio_{enable,disable}() to the pre/post pane update stage
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 21 Nov 2023 05:43:23 +0000 (07:43 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 23 Nov 2023 12:33:29 +0000 (14:33 +0200)
Relocate the audio enable/disable from the full modeset hooks into
the common pre/post plane update stage of the commit. Audio fastset
is within easy reach now.

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231121054324.9988-11-ville.syrjala@linux.intel.com
drivers/gpu/drm/i915/display/intel_display.c

index 61594690b1a94f8738a87058e5e6be508a56c8b2..e923ff634d109820cf1135a1f479441b105edbc8 100644 (file)
@@ -989,6 +989,24 @@ static bool vrr_disabling(const struct intel_crtc_state *old_crtc_state,
                  vrr_params_changed(old_crtc_state, new_crtc_state)));
 }
 
+static bool audio_enabling(const struct intel_crtc_state *old_crtc_state,
+                          const struct intel_crtc_state *new_crtc_state)
+{
+       if (!new_crtc_state->hw.active)
+               return false;
+
+       return is_enabling(has_audio, old_crtc_state, new_crtc_state);
+}
+
+static bool audio_disabling(const struct intel_crtc_state *old_crtc_state,
+                           const struct intel_crtc_state *new_crtc_state)
+{
+       if (!old_crtc_state->hw.active)
+               return false;
+
+       return is_disabling(has_audio, old_crtc_state, new_crtc_state);
+}
+
 #undef is_disabling
 #undef is_enabling
 
@@ -1029,6 +1047,9 @@ static void intel_post_plane_update(struct intel_atomic_state *state,
 
        if (intel_crtc_needs_color_update(new_crtc_state))
                intel_color_post_update(new_crtc_state);
+
+       if (audio_enabling(old_crtc_state, new_crtc_state))
+               intel_encoders_audio_enable(state, crtc);
 }
 
 static void intel_crtc_enable_flip_done(struct intel_atomic_state *state,
@@ -1112,6 +1133,9 @@ static void intel_pre_plane_update(struct intel_atomic_state *state,
                intel_crtc_update_active_timings(old_crtc_state, false);
        }
 
+       if (audio_disabling(old_crtc_state, new_crtc_state))
+               intel_encoders_audio_disable(state, crtc);
+
        intel_drrs_deactivate(old_crtc_state);
 
        intel_psr_pre_plane_update(state, crtc);
@@ -1502,7 +1526,6 @@ static void ilk_crtc_enable(struct intel_atomic_state *state,
        intel_crtc_vblank_on(new_crtc_state);
 
        intel_encoders_enable(state, crtc);
-       intel_encoders_audio_enable(state, crtc);
 
        if (HAS_PCH_CPT(dev_priv))
                intel_wait_for_pipe_scanline_moving(crtc);
@@ -1676,7 +1699,6 @@ static void hsw_crtc_enable(struct intel_atomic_state *state,
                intel_crtc_vblank_on(new_crtc_state);
 
        intel_encoders_enable(state, crtc);
-       intel_encoders_audio_enable(state, crtc);
 
        if (psl_clkgate_wa) {
                intel_crtc_wait_for_next_vblank(crtc);
@@ -1728,7 +1750,6 @@ static void ilk_crtc_disable(struct intel_atomic_state *state,
        intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
        intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
 
-       intel_encoders_audio_disable(state, crtc);
        intel_encoders_disable(state, crtc);
 
        intel_crtc_vblank_off(old_crtc_state);
@@ -1763,7 +1784,6 @@ static void hsw_crtc_disable(struct intel_atomic_state *state,
         * Need care with mst->ddi interactions.
         */
        if (!intel_crtc_is_bigjoiner_slave(old_crtc_state)) {
-               intel_encoders_audio_disable(state, crtc);
                intel_encoders_disable(state, crtc);
                intel_encoders_post_disable(state, crtc);
        }
@@ -2033,7 +2053,6 @@ static void valleyview_crtc_enable(struct intel_atomic_state *state,
        intel_crtc_vblank_on(new_crtc_state);
 
        intel_encoders_enable(state, crtc);
-       intel_encoders_audio_enable(state, crtc);
 }
 
 static void i9xx_crtc_enable(struct intel_atomic_state *state,
@@ -2075,7 +2094,6 @@ static void i9xx_crtc_enable(struct intel_atomic_state *state,
        intel_crtc_vblank_on(new_crtc_state);
 
        intel_encoders_enable(state, crtc);
-       intel_encoders_audio_enable(state, crtc);
 
        /* prevents spurious underruns */
        if (DISPLAY_VER(dev_priv) == 2)
@@ -2112,7 +2130,6 @@ static void i9xx_crtc_disable(struct intel_atomic_state *state,
        if (DISPLAY_VER(dev_priv) == 2)
                intel_crtc_wait_for_next_vblank(crtc);
 
-       intel_encoders_audio_disable(state, crtc);
        intel_encoders_disable(state, crtc);
 
        intel_crtc_vblank_off(old_crtc_state);