Enablement of LOBF is added in post plane update whenever
has_lobf flag is set. As LOBF can be enabled in non-psr
case as well so adding in post plane update. There is no
change of configuring alpm with psr path.
v1: Initial version.
v2: Use encoder-mask to find the associated encoder from
crtc-state. [Jani]
v3: Remove alpm_configure from intel_psr.c. [Jouni]
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
Link: https://lore.kernel.org/r/20250423092334.2294483-3-animesh.manna@intel.com
        lnl_alpm_configure(intel_dp, crtc_state);
 }
 
+void intel_alpm_post_plane_update(struct intel_atomic_state *state,
+                                 struct intel_crtc *crtc)
+{
+       struct intel_display *display = to_intel_display(state);
+       const struct intel_crtc_state *crtc_state =
+               intel_atomic_get_new_crtc_state(state, crtc);
+       struct intel_encoder *encoder;
+
+       if (!crtc_state->has_lobf && !crtc_state->has_psr)
+               return;
+
+       for_each_intel_encoder_mask(display->drm, encoder,
+                                   crtc_state->uapi.encoder_mask) {
+               struct intel_dp *intel_dp;
+
+               if (!intel_encoder_is_dp(encoder))
+                       continue;
+
+               intel_dp = enc_to_intel_dp(encoder);
+
+               if (intel_dp_is_edp(intel_dp))
+                       intel_alpm_configure(intel_dp, crtc_state);
+       }
+}
+
 static int i915_edp_lobf_info_show(struct seq_file *m, void *data)
 {
        struct intel_connector *connector = m->private;
 
 struct intel_crtc_state;
 struct drm_connector_state;
 struct intel_connector;
+struct intel_atomic_state;
+struct intel_crtc;
 
 void intel_alpm_init_dpcd(struct intel_dp *intel_dp);
 bool intel_alpm_compute_params(struct intel_dp *intel_dp,
                                    struct drm_connector_state *conn_state);
 void intel_alpm_configure(struct intel_dp *intel_dp,
                          const struct intel_crtc_state *crtc_state);
+void intel_alpm_post_plane_update(struct intel_atomic_state *state,
+                                 struct intel_crtc *crtc);
 void intel_alpm_lobf_debugfs_add(struct intel_connector *connector);
 bool intel_alpm_aux_wake_supported(struct intel_dp *intel_dp);
 bool intel_alpm_aux_less_wake_supported(struct intel_dp *intel_dp);
 
 #include "i9xx_plane.h"
 #include "i9xx_plane_regs.h"
 #include "i9xx_wm.h"
+#include "intel_alpm.h"
 #include "intel_atomic.h"
 #include "intel_atomic_plane.h"
 #include "intel_audio.h"
        if (audio_enabling(old_crtc_state, new_crtc_state))
                intel_encoders_audio_enable(state, crtc);
 
+       intel_alpm_post_plane_update(state, crtc);
+
        intel_psr_post_plane_update(state, crtc);
 }
 
 
                             intel_dp->psr.psr2_sel_fetch_enabled ?
                             IGNORE_PSR2_HW_TRACKING : 0);
 
-       if (intel_dp_is_edp(intel_dp))
-               intel_alpm_configure(intel_dp, crtc_state);
-
        /*
         * Wa_16013835468
         * Wa_14015648006