From: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Subject: [RFC v1 3/4] drm/i915/psr: Add latency for PSR
Date: Tue, 12 Nov 2024 14:20:38 +0530 [thread overview]
Message-ID: <20241112085039.1258860-4-mitulkumar.ajitkumar.golani@intel.com> (raw)
In-Reply-To: <20241112085039.1258860-1-mitulkumar.ajitkumar.golani@intel.com>
Calculate latency for PSR2 wake lines.
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 23 +++++++++++++++++++++++
drivers/gpu/drm/i915/display/intel_psr.h | 1 +
2 files changed, 24 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 16888935b33a..b7dfdd94509c 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -3972,3 +3972,26 @@ void intel_psr_connector_debugfs_add(struct intel_connector *connector)
debugfs_create_file("i915_psr_status", 0444, root,
connector, &i915_psr_status_fops);
}
+
+int intel_psr2_calc_prefill(struct intel_crtc_state *crtc_state)
+{
+ struct intel_display *display = to_intel_display(crtc_state);
+ int wake_lines;
+ struct intel_encoder *encoder;
+
+ intel_psr_lock(crtc_state);
+ for_each_intel_encoder_mask_with_psr(display->drm, encoder,
+ crtc_state->uapi.encoder_mask) {
+ struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
+
+ lockdep_assert_held(&intel_dp->psr.lock);
+
+ if (!intel_psr2_config_valid(intel_dp, crtc_state))
+ return false;
+
+ wake_lines = psr2_block_count_lines(intel_dp);
+ }
+ intel_psr_unlock(crtc_state);
+
+ return wake_lines;
+}
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 956be263c09e..65f936d83aad 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -24,6 +24,7 @@ struct intel_plane_state;
#define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)->psr.sink_panel_replay_support && \
(intel_dp)->psr.source_panel_replay_support)
+int intel_psr2_calc_prefill(struct intel_crtc_state *crtc_state);
bool intel_encoder_can_psr(struct intel_encoder *encoder);
bool intel_psr_needs_aux_io_power(struct intel_encoder *encoder,
const struct intel_crtc_state *crtc_state);
--
2.46.0
next prev parent reply other threads:[~2024-11-12 8:48 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-12 8:50 [RFC v1 0/4] Update VRR guardband for HRR panel Mitul Golani
2024-11-12 8:50 ` [RFC v1 1/4] drm/i915/scaler: Calculate scaler prefill latency Mitul Golani
2024-11-28 9:31 ` Garg, Nemesa
2024-11-12 8:50 ` [RFC v1 2/4] drm/i915/watermark: Add WM0 " Mitul Golani
2024-11-12 8:50 ` Mitul Golani [this message]
2024-11-12 8:50 ` [RFC v1 4/4] display/vrr: Update guardband based on enabled latency Mitul Golani
2024-11-12 9:31 ` ✓ CI.Patch_applied: success for Update VRR guardband for HRR panel Patchwork
2024-11-12 9:31 ` ✓ CI.checkpatch: " Patchwork
2024-11-12 9:32 ` ✓ CI.KUnit: " Patchwork
2024-11-12 9:44 ` ✓ CI.Build: " Patchwork
2024-11-12 9:46 ` ✓ CI.Hooks: " Patchwork
2024-11-12 9:47 ` ✗ CI.checksparse: warning " Patchwork
2024-11-12 10:21 ` ✓ CI.BAT: success " Patchwork
2024-11-12 11:30 ` ✗ CI.FULL: failure " Patchwork
2024-11-22 7:53 ` [RFC v1 0/4] " Ville Syrjälä
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241112085039.1258860-4-mitulkumar.ajitkumar.golani@intel.com \
--to=mitulkumar.ajitkumar.golani@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox