From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915/icl: pass cfgcr* register around instead of pll_id
Date: Tue, 19 Mar 2019 13:09:33 +0200 [thread overview]
Message-ID: <20190319110932.GV3888@intel.com> (raw)
In-Reply-To: <20190318233351.id43zijcgtlkdjoc@ldmartin-desk.amr.corp.intel.com>
On Mon, Mar 18, 2019 at 04:33:51PM -0700, Lucas De Marchi wrote:
> On Mon, Mar 18, 2019 at 08:53:23PM +0200, Ville Syrjälä wrote:
> >On Mon, Mar 18, 2019 at 11:40:34AM -0700, Lucas De Marchi wrote:
> >> On Mon, Mar 18, 2019 at 03:31:52PM +0200, Ville Syrjälä wrote:
> >> >On Fri, Mar 15, 2019 at 05:45:26PM -0700, Lucas De Marchi wrote:
> >> >> The caller already knows what platform that is and what register should
> >> >> be used. Instead of keep adding if/else chains on a leaf functions,
> >> >> let the caller pass the register.
> >> >>
> >> >> We read cfgcr0 twice for CNL, but we were already doing that anyway.
> >> >>
> >> >> icl_calc_dp_combo_pll_link() is only used for ICL, but let's keep
> >> >> consistency with cnl_calc_wrpll_link().
> >> >>
> >> >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> >> >> ---
> >> >> drivers/gpu/drm/i915/icl_dsi.c | 4 +++-
> >> >> drivers/gpu/drm/i915/intel_ddi.c | 25 ++++++++++++++-----------
> >> >> drivers/gpu/drm/i915/intel_dpll_mgr.c | 6 +++---
> >> >> drivers/gpu/drm/i915/intel_dpll_mgr.h | 2 +-
> >> >> drivers/gpu/drm/i915/intel_drv.h | 2 +-
> >> >> 5 files changed, 22 insertions(+), 17 deletions(-)
> >> >>
> >> >> diff --git a/drivers/gpu/drm/i915/icl_dsi.c b/drivers/gpu/drm/i915/icl_dsi.c
> >> >> index beb30d9a855c..28f5da697693 100644
> >> >> --- a/drivers/gpu/drm/i915/icl_dsi.c
> >> >> +++ b/drivers/gpu/drm/i915/icl_dsi.c
> >> >> @@ -1183,7 +1183,9 @@ static void gen11_dsi_get_config(struct intel_encoder *encoder,
> >> >>
> >> >> /* FIXME: adapt icl_ddi_clock_get() for DSI and use that? */
> >> >> pll_id = intel_get_shared_dpll_id(dev_priv, pipe_config->shared_dpll);
> >> >> - pipe_config->port_clock = cnl_calc_wrpll_link(dev_priv, pll_id);
> >> >> + pipe_config->port_clock = cnl_calc_wrpll_link(dev_priv,
> >> >> + ICL_DPLL_CFGCR0(pll_id),
> >> >> + ICL_DPLL_CFGCR1(pll_id));
> >> >> pipe_config->base.adjusted_mode.crtc_clock = intel_dsi->pclk;
> >> >> pipe_config->output_types |= BIT(INTEL_OUTPUT_DSI);
> >> >> }
> >> >> diff --git a/drivers/gpu/drm/i915/intel_ddi.c b/drivers/gpu/drm/i915/intel_ddi.c
> >> >> index 69aa0d148795..24675ef8b262 100644
> >> >> --- a/drivers/gpu/drm/i915/intel_ddi.c
> >> >> +++ b/drivers/gpu/drm/i915/intel_ddi.c
> >> >> @@ -1304,18 +1304,13 @@ static int skl_calc_wrpll_link(struct drm_i915_private *dev_priv,
> >> >> }
> >> >>
> >> >> int cnl_calc_wrpll_link(struct drm_i915_private *dev_priv,
> >> >> - enum intel_dpll_id pll_id)
> >> >> + i915_reg_t cfgcr0_reg, i915_reg_t cfgcr1_reg)
> >> >> {
> >> >> u32 cfgcr0, cfgcr1;
> >> >> u32 p0, p1, p2, dco_freq, ref_clock;
> >> >>
> >> >> - if (INTEL_GEN(dev_priv) >= 11) {
> >> >> - cfgcr0 = I915_READ(ICL_DPLL_CFGCR0(pll_id));
> >> >> - cfgcr1 = I915_READ(ICL_DPLL_CFGCR1(pll_id));
> >> >> - } else {
> >> >> - cfgcr0 = I915_READ(CNL_DPLL_CFGCR0(pll_id));
> >> >> - cfgcr1 = I915_READ(CNL_DPLL_CFGCR1(pll_id));
> >> >> - }
> >> >> + cfgcr0 = I915_READ(cfgcr0_reg);
> >> >> + cfgcr1 = I915_READ(cfgcr1_reg);
> >> >
> >> >Don't we alredy have the dpll state read out at this point?
> >>
> >> nops.
> >
> >We must have it since bxt is already using it. Either that or bxt is
> >broken.
>
> oh.. I think you forgot to push
> https://patchwork.freedesktop.org/series/56354/
Ah yes. Now pushed. Thanks for reviewing it.
>
> I guess it will also make my life easier here.
>
> Lucas De Marchi
>
> >
> >--
> >Ville Syrjälä
> >Intel
--
Ville Syrjälä
Intel
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
prev parent reply other threads:[~2019-03-19 11:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-16 0:45 [PATCH] drm/i915/icl: pass cfgcr* register around instead of pll_id Lucas De Marchi
2019-03-16 1:32 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-03-16 8:14 ` ✓ Fi.CI.IGT: " Patchwork
2019-03-18 13:31 ` [PATCH] " Ville Syrjälä
2019-03-18 18:40 ` Lucas De Marchi
2019-03-18 18:53 ` Ville Syrjälä
2019-03-18 21:58 ` Lucas De Marchi
2019-03-18 23:33 ` Lucas De Marchi
2019-03-19 11:09 ` Ville Syrjälä [this message]
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=20190319110932.GV3888@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=lucas.demarchi@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox