From: "Kahola, Mika" <mika.kahola@intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Cc: "stable@vger.kernel.org" <stable@vger.kernel.org>
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Reject 446-480MHz HDMI clock on GLK
Date: Fri, 5 Feb 2021 06:29:11 +0000 [thread overview]
Message-ID: <daf4a8d667b048b5800b433b01791387@intel.com> (raw)
In-Reply-To: <20210203093044.30532-1-ville.syrjala@linux.intel.com>
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: Wednesday, February 3, 2021 11:31 AM
> To: intel-gfx@lists.freedesktop.org
> Cc: stable@vger.kernel.org
> Subject: [Intel-gfx] [PATCH] drm/i915: Reject 446-480MHz HDMI clock on GLK
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> 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>
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdmi.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c
> b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index 66e1ac3887c6..b593a71e6517 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -2218,7 +2218,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;
>
> --
> 2.26.2
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
WARNING: multiple messages have this Message-ID (diff)
From: "Kahola, Mika" <mika.kahola@intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Cc: "stable@vger.kernel.org" <stable@vger.kernel.org>
Subject: RE: [Intel-gfx] [PATCH] drm/i915: Reject 446-480MHz HDMI clock on GLK
Date: Fri, 5 Feb 2021 06:29:11 +0000 [thread overview]
Message-ID: <daf4a8d667b048b5800b433b01791387@intel.com> (raw)
In-Reply-To: <20210203093044.30532-1-ville.syrjala@linux.intel.com>
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: Wednesday, February 3, 2021 11:31 AM
> To: intel-gfx@lists.freedesktop.org
> Cc: stable@vger.kernel.org
> Subject: [Intel-gfx] [PATCH] drm/i915: Reject 446-480MHz HDMI clock on GLK
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> 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>
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdmi.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c
> b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index 66e1ac3887c6..b593a71e6517 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -2218,7 +2218,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;
>
> --
> 2.26.2
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2021-02-05 6:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-03 9:30 [Intel-gfx] [PATCH] drm/i915: Reject 446-480MHz HDMI clock on GLK Ville Syrjala
2021-02-03 9:30 ` Ville Syrjala
2021-02-03 16:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2021-02-03 20:56 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2021-02-05 6:29 ` Kahola, Mika [this message]
2021-02-05 6:29 ` [Intel-gfx] [PATCH] " Kahola, Mika
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=daf4a8d667b048b5800b433b01791387@intel.com \
--to=mika.kahola@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=stable@vger.kernel.org \
--cc=ville.syrjala@linux.intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.