drm/i915/display: Add upper limit check for pixel clock

Add upper limit check for pixel clock for DISPLAY_VER >= 30.
Limits don't apply when DSC is enabled.

The helper returns the upper limit for the platforms, capped to the
max dotclock (khz).

For the currently supported versions of HDMI, pixel clock is already
limited to 600Mhz so nothing needs to be done there as of now.

v2:
 - Add this limit to the new helper.
v3:
 - Rename helper to intel_max_uncompressed_dotclock(). (Imre)
 - Limit only for PTL and cap the limit to max_dotclock. (Imre)

BSpec: 49199, 68912
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Link: https://patch.msgid.link/20260202103731.357416-17-ankit.k.nautiyal@intel.com
This commit is contained in:
Chaitanya Kumar Borah 2026-02-02 16:07:30 +05:30 committed by Ankit Nautiyal
parent a049ced86a
commit 50f5168775
3 changed files with 15 additions and 0 deletions

View File

@ -8026,6 +8026,17 @@ void intel_setup_outputs(struct intel_display *display)
drm_helper_move_panel_connectors_to_head(display->drm);
}
int intel_max_uncompressed_dotclock(struct intel_display *display)
{
int max_dotclock = display->cdclk.max_dotclk_freq;
int limit = max_dotclock;
if (DISPLAY_VER(display) >= 30)
limit = 1350000;
return min(max_dotclock, limit);
}
static int max_dotclock(struct intel_display *display)
{
int max_dotclock = display->cdclk.max_dotclk_freq;

View File

@ -462,6 +462,7 @@ void intel_cpu_transcoder_get_m2_n2(struct intel_crtc *crtc,
struct intel_link_m_n *m_n);
int intel_dotclock_calculate(int link_freq, const struct intel_link_m_n *m_n);
int intel_crtc_dotclock(const struct intel_crtc_state *pipe_config);
int intel_max_uncompressed_dotclock(struct intel_display *display);
enum intel_display_power_domain intel_port_to_power_domain(struct intel_digital_port *dig_port);
enum intel_display_power_domain
intel_aux_power_domain(struct intel_digital_port *dig_port);

View File

@ -1428,6 +1428,9 @@ bool intel_dp_dotclk_valid(struct intel_display *display,
target_clock,
htotal,
dsc_slice_count);
else
effective_dotclk_limit =
intel_max_uncompressed_dotclock(display) * num_joined_pipes;
return target_clock <= effective_dotclk_limit;
}