drm/i915/hdmi: Prune modes that require HDMI2.1 FRL

HDMI2.1 requires some higher resolution video modes to be enumerated
only if HDMI2.1 Fixed Rate Link (FRL) is supported.
Current platforms do not support FRL transmission so prune modes that
require HDMI2.1 FRL.

v2: Fixed the condition to check for dotclock > 600.
Return MODE_CLOCK_HIGH as mode status.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> (v1)
Signed-off-by: Uma Shankar <uma.shankar@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220721084645.3411219-1-ankit.k.nautiyal@intel.com
This commit is contained in:
Ankit Nautiyal 2022-07-21 14:16:45 +05:30 committed by Uma Shankar
parent 9899834ae5
commit 3565c7219c

View File

@ -2000,6 +2000,15 @@ intel_hdmi_mode_valid(struct drm_connector *connector,
clock *= 2;
}
/*
* HDMI2.1 requires higher resolution modes like 8k60, 4K120 to be
* enumerated only if FRL is supported. Current platforms do not support
* FRL so prune the higher resolution modes that require doctclock more
* than 600MHz.
*/
if (clock > 600000)
return MODE_CLOCK_HIGH;
ycbcr_420_only = drm_mode_is_420_only(&connector->display_info, mode);
status = intel_hdmi_mode_clock_valid(connector, clock, has_hdmi_sink, ycbcr_420_only);