Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Souza, Jose" <jose.souza@intel.com>
To: "Deak, Imre" <imre.deak@intel.com>
Cc: "intel-gfx@lists.freedesktop.org" <intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH v3 7/9] drm/i915/tgl: Fix dkl link training
Date: Tue, 24 Sep 2019 23:59:02 +0000	[thread overview]
Message-ID: <7e992b6db12bef8584203458ed58f96de0e8096e.camel@intel.com> (raw)
In-Reply-To: <20190924155837.GC25906@ideak-desk.fi.intel.com>

On Tue, 2019-09-24 at 18:58 +0300, Imre Deak wrote:
> On Mon, Sep 23, 2019 at 12:55:11PM -0700, José Roberto de Souza
> wrote:
> > Link training is failling when running link at 2.7GHz and 1.62GHz
> > and
> > following BSpec pll algorithm.
> > 
> > Comparing the values calculated and the ones from the reference
> > table
> > it looks like MG_CLKTOP2_CORECLKCTL1_A_DIVRATIO should not always
> > set
> > to 5. For DP ports ICL mg pll algorithm sets it to 10 or 5 based on
> > div2 value, that matches with dkl hardcoded table.
> > 
> > So implementing this way as it proved to work in HW and leaving a
> > comment so we know why it do not match BSpec.
> > 
> > Issue reported on BSpec 49204.
> > 
> > Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > index 496df4095a21..3c881d4cf973 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > @@ -2631,7 +2631,12 @@ static bool icl_mg_pll_find_divisors(int
> > clock_khz, bool is_dp, bool use_ssc,
> >  
> >  			if (div2 >= 2) {
> >  				if (is_dkl) {
> > -					a_divratio = 5;
> > +					/*
> > +					 * Note: a_divratio not
> > matching TGL
> > +					 * BSpec algorithm but matching
> > +					 * hardcoded values and working
> > on HW
> > +					 */
> > +					a_divratio = 10;
> 
> Yes, matches the hardcoded values for CLKTOP2_HSCLKCTL/CORECLKCTL1,
> with
> the exception that the hardcoded value for CLKTOP2_HSCLKCTL 5p4 is
> also
> incorrect wrt. div2 within that (should be 1 but it's 2).
> 
> However we don't have any hardcoded values in Bspec for HDMI except
> for
> the 5.94Gbps/div2=1 case. So until otherwise proven, for HDMI/div2>=2
> I
> wouldn't change the value, rather have the same logic as for ICL that
> is
> is_dp ? 10 : 5;

I was trying to avoid touch any HDMI calculation as I can't test it but
it looks sane, so I will keep the if is_dkl, replace to "a_divratio =
is_dp ? 10 : 5;" and add to the comment that this is the supposed value
for HDMI but it is not tested.

> 
> >  					tlinedrv = 1;
> >  				} else {
> >  					a_divratio = is_dp ? 10 : 5;
> > -- 
> > 2.23.0
> > 
> > _______________________________________________
> > 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

  reply	other threads:[~2019-09-24 23:59 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-23 19:55 [PATCH v3 0/9] TGL TC enabling v3 José Roberto de Souza
2019-09-23 19:55 ` [PATCH v3 1/9] drm/i915/tgl: Add initial dkl pll support José Roberto de Souza
2019-09-24 14:20   ` Imre Deak
2019-09-24 20:20     ` Souza, Jose
2019-09-23 19:55 ` [PATCH v3 2/9] drm/i915/tgl: Add support for dkl pll write José Roberto de Souza
2019-09-23 19:55 ` [PATCH v3 3/9] drm/i915/tgl: TC helper function to return pin mapping José Roberto de Souza
2019-09-23 19:55 ` [PATCH v3 4/9] drm/i915/tgl: Add dkl phy programming sequences José Roberto de Souza
2019-09-23 22:02   ` Lucas De Marchi
2019-09-24 13:00     ` Imre Deak
2019-09-24 23:21       ` Souza, Jose
2019-09-25 14:26         ` Imre Deak
2019-09-25 16:12         ` Lucas De Marchi
2019-09-23 19:55 ` [PATCH v3 5/9] drm/i915/tgl: re-indent code to prepare for DKL changes José Roberto de Souza
2019-09-23 22:04   ` Lucas De Marchi
2019-09-24 20:58     ` Matt Roper
2019-09-23 19:55 ` [PATCH v3 6/9] drm/i915/tgl: Add dkl phy pll calculations José Roberto de Souza
2019-09-23 22:04   ` Lucas De Marchi
2019-09-23 19:55 ` [PATCH v3 7/9] drm/i915/tgl: Fix dkl link training José Roberto de Souza
2019-09-24 15:58   ` Imre Deak
2019-09-24 23:59     ` Souza, Jose [this message]
2019-09-25 15:25       ` Imre Deak
2019-09-23 19:55 ` [PATCH v3 8/9] drm/i915/tgl: Return the mg/dkl pll as DDI clock for new TC ports José Roberto de Souza
2019-09-23 22:07   ` Lucas De Marchi
2019-09-23 19:55 ` [PATCH v3 9/9] drm/i915/tgl: initialize TC and TBT ports José Roberto de Souza
2019-09-23 22:08   ` Lucas De Marchi
2019-09-23 21:20 ` ✓ Fi.CI.BAT: success for TGL TC enabling (rev3) Patchwork
2019-09-24 10:48 ` ✓ Fi.CI.IGT: " Patchwork

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=7e992b6db12bef8584203458ed58f96de0e8096e.camel@intel.com \
    --to=jose.souza@intel.com \
    --cc=imre.deak@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox