]> git.itanic.dy.fi Git - linux-stable/commitdiff
drm/i915: Reject 446-480MHz HDMI clock on GLK
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 3 Feb 2021 09:30:44 +0000 (11:30 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 4 Mar 2021 10:38:46 +0000 (11:38 +0100)
commit 7a6c6243b44a439bda4bf099032be35ebcf53406 upstream.

The BXT/GLK DPLL can't generate certain frequencies. We already
reject the 233-240MHz range on both. But on GLK the DPLL max
frequency was bumped from 300MHz to 594MHz, so now we get to
also worry about the 446-480MHz range (double the original
problem range). Reject any frequency within the higher
problematic range as well.

Cc: stable@vger.kernel.org
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/3000
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210203093044.30532-1-ville.syrjala@linux.intel.com
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
(cherry picked from commit 41751b3e5c1ac656a86f8d45a8891115281b729e)
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/i915/display/intel_hdmi.c

index 3f2008d845c201a0b3eba0d93d078e85853dfae4..1d616da4f1657e1d00dfcb92c9a6c7cd34ddf47d 100644 (file)
@@ -2216,7 +2216,11 @@ hdmi_port_clock_valid(struct intel_hdmi *hdmi,
                                          has_hdmi_sink))
                return MODE_CLOCK_HIGH;
 
-       /* BXT DPLL can't generate 223-240 MHz */
+       /* GLK DPLL can't generate 446-480 MHz */
+       if (IS_GEMINILAKE(dev_priv) && clock > 446666 && clock < 480000)
+               return MODE_CLOCK_RANGE;
+
+       /* BXT/GLK DPLL can't generate 223-240 MHz */
        if (IS_GEN9_LP(dev_priv) && clock > 223333 && clock < 240000)
                return MODE_CLOCK_RANGE;