mirror of https://gitee.com/openkylin/linux.git
drm/tegra: sor: Reject HDMI 2.0 modes
Enabling HDMI 2.0 modes requires extra programming and will not work with the current driver, so reject all those modes. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
f8c79120aa
commit
64ea25c3bc
|
@ -1372,6 +1372,10 @@ static enum drm_mode_status
|
||||||
tegra_sor_connector_mode_valid(struct drm_connector *connector,
|
tegra_sor_connector_mode_valid(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
|
/* HDMI 2.0 modes are not yet supported */
|
||||||
|
if (mode->clock > 340000)
|
||||||
|
return MODE_NOCLOCK;
|
||||||
|
|
||||||
return MODE_OK;
|
return MODE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue