@@ -2848,9 +2848,11 @@ static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
* Program PKG_C_LATENCY Added Wake Time = 0
*/
static void
-skl_program_dpkgc_latency(struct drm_i915_private *i915, bool fixed_refresh_rate)
+skl_program_dpkgc_latency(struct drm_i915_private *i915,
+ bool fixed_refresh_rate,
+ u32 max_linetime)
{
- u32 max_latency = LNL_PKG_C_LATENCY_MASK;
+ u32 latency = LNL_PKG_C_LATENCY_MASK;
u32 clear = 0, val = 0;
u32 added_wake_time = 0;
@@ -2858,15 +2860,23 @@ skl_program_dpkgc_latency(struct drm_i915_private *i915, bool fixed_refresh_rate
return;
if (fixed_refresh_rate) {
- max_latency = skl_watermark_max_latency(i915, 1);
- if (max_latency == 0)
- max_latency = LNL_PKG_C_LATENCY_MASK;
+ latency = skl_watermark_max_latency(i915, 1);
+
+ /* Wa_22020299601 */
+ if (latency) {
+ if (DISPLAY_VER(i915) == 20 || DISPLAY_VER(i915) == 30)
+ latency = max_linetime *
+ DIV_ROUND_UP(latency, max_linetime);
+ } else {
+ latency = LNL_PKG_C_LATENCY_MASK;
+ }
+
added_wake_time = DSB_EXE_TIME +
i915->display.sagv.block_time_us;
}
clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
- val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, max_latency) |
+ val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, latency) |
REG_FIELD_PREP(LNL_ADDED_WAKE_TIME_MASK, added_wake_time);
intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
@@ -2879,6 +2889,7 @@ skl_compute_wm(struct intel_atomic_state *state)
struct intel_crtc_state __maybe_unused *new_crtc_state;
int ret, i;
bool fixed_refresh_rate = false;
+ u32 max_linetime = 0;
for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
ret = skl_build_pipe_wm(state, crtc);
@@ -2908,9 +2919,12 @@ skl_compute_wm(struct intel_atomic_state *state)
new_crtc_state->vrr.vmin == new_crtc_state->vrr.flipline) ||
!new_crtc_state->vrr.enable)
fixed_refresh_rate = true;
+
+ max_linetime = max(new_crtc_state->linetime, max_linetime);
}
- skl_program_dpkgc_latency(to_i915(state->base.dev), fixed_refresh_rate);
+ skl_program_dpkgc_latency(to_i915(state->base.dev), fixed_refresh_rate,
+ max_linetime);
skl_print_wm_changes(state);
Increase the latency programmed into PKG_C_LATENCY latency to be a multiple of line time which is written into WM_LINETIME. --v2 -Fix commit subject line [Sai Teja] -Use individual DISPLAY_VER checks instead of range [Sai Teja] -Initialize max_linetime [Sai Teja] --v3 -take into account the scenario when adjusted_latency is 0 [Vinod] --v4 -rename adjusted_latency to latency [Mitul] -fix the condition in which dpkgc is disabled [Vinod] WA: 22020299601 Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/skl_watermark.c | 28 +++++++++++++++----- 1 file changed, 21 insertions(+), 7 deletions(-)