Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Imre Deak <imre.deak@intel.com>
To: Mika Kahola <mika.kahola@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915/display: Use helper to select C20 MPLLA/B
Date: Fri, 5 Jan 2024 13:42:31 +0200	[thread overview]
Message-ID: <ZZfrJ8TmKuBlcFYb@ideak-desk.fi.intel.com> (raw)
In-Reply-To: <20240105112243.224199-1-mika.kahola@intel.com>

On Fri, Jan 05, 2024 at 01:22:43PM +0200, Mika Kahola wrote:
> We used to select between MPLLA/B with the following
> 
> state->tx[0] & C20_PHY_USE_MPLLB
> 
> Since this is used a few places within C20 PLL setting,
> let's introduce a helper function to clean up the code
> a bit.
> 
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>

Reviewed-by: Imre Deak <imre.deak@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_cx0_phy.c | 17 +++++++++++------
>  1 file changed, 11 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c
> index ce1bddf74a82..e67c25975947 100644
> --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c
> +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c
> @@ -2096,6 +2096,11 @@ int intel_cx0pll_calc_state(struct intel_crtc_state *crtc_state,
>  	return intel_c20pll_calc_state(crtc_state, encoder);
>  }
>  
> +static bool intel_c20phy_use_mpllb(const struct intel_c20pll_state *state)
> +{
> +	return state->tx[0] & C20_PHY_USE_MPLLB;
> +}
> +
>  static int intel_c20pll_calc_port_clock(struct intel_encoder *encoder,
>  					const struct intel_c20pll_state *pll_state)
>  {
> @@ -2108,7 +2113,7 @@ static int intel_c20pll_calc_port_clock(struct intel_encoder *encoder,
>  	unsigned int tx_rate_mult;
>  	unsigned int tx_rate = REG_FIELD_GET(C20_PHY_TX_RATE, pll_state->tx[0]);
>  
> -	if (pll_state->tx[0] & C20_PHY_USE_MPLLB) {
> +	if (intel_c20phy_use_mpllb(pll_state)) {
>  		tx_rate_mult = 1;
>  		frac_en = REG_FIELD_GET(C20_MPLLB_FRACEN, pll_state->mpllb[6]);
>  		frac_quot = pll_state->mpllb[8];
> @@ -2174,7 +2179,7 @@ static void intel_c20pll_readout_hw_state(struct intel_encoder *encoder,
>  								PHY_C20_A_CMN_CNTX_CFG(i));
>  	}
>  
> -	if (pll_state->tx[0] & C20_PHY_USE_MPLLB) {
> +	if (intel_c20phy_use_mpllb(pll_state)) {
>  		/* MPLLB configuration */
>  		for (i = 0; i < ARRAY_SIZE(pll_state->mpllb); i++) {
>  			if (cntx)
> @@ -2212,7 +2217,7 @@ void intel_c20pll_dump_hw_state(struct drm_i915_private *i915,
>  	drm_dbg_kms(&i915->drm, "cmn[0] = 0x%.4x, cmn[1] = 0x%.4x, cmn[2] = 0x%.4x, cmn[3] = 0x%.4x\n",
>  		    hw_state->cmn[0], hw_state->cmn[1], hw_state->cmn[2], hw_state->cmn[3]);
>  
> -	if (hw_state->tx[0] & C20_PHY_USE_MPLLB) {
> +	if (intel_c20phy_use_mpllb(hw_state)) {
>  		for (i = 0; i < ARRAY_SIZE(hw_state->mpllb); i++)
>  			drm_dbg_kms(&i915->drm, "mpllb[%d] = 0x%.4x\n", i, hw_state->mpllb[i]);
>  	} else {
> @@ -2364,7 +2369,7 @@ static void intel_c20_pll_program(struct drm_i915_private *i915,
>  	}
>  
>  	/* 3.3 mpllb or mplla configuration */
> -	if (pll_state->tx[0] & C20_PHY_USE_MPLLB) {
> +	if (intel_c20phy_use_mpllb(pll_state)) {
>  		for (i = 0; i < ARRAY_SIZE(pll_state->mpllb); i++) {
>  			if (cntx)
>  				intel_c20_sram_write(i915, encoder->port, INTEL_CX0_LANE0,
> @@ -3063,8 +3068,8 @@ static void intel_c20pll_state_verify(const struct intel_crtc_state *state,
>  {
>  	struct drm_i915_private *i915 = to_i915(crtc->base.dev);
>  	const struct intel_c20pll_state *mpll_sw_state = &state->cx0pll_state.c20;
> -	bool sw_use_mpllb = mpll_sw_state->tx[0] & C20_PHY_USE_MPLLB;
> -	bool hw_use_mpllb = mpll_hw_state->tx[0] & C20_PHY_USE_MPLLB;
> +	bool sw_use_mpllb = intel_c20phy_use_mpllb(mpll_sw_state);
> +	bool hw_use_mpllb = intel_c20phy_use_mpllb(mpll_hw_state);
>  	int i;
>  
>  	I915_STATE_WARN(i915, mpll_hw_state->clock != mpll_sw_state->clock,
> -- 
> 2.34.1
> 

  reply	other threads:[~2024-01-05 11:42 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-05 11:22 [PATCH] drm/i915/display: Use helper to select C20 MPLLA/B Mika Kahola
2024-01-05 11:42 ` Imre Deak [this message]
2024-01-05 12:14 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-01-05 23:16 ` ✗ Fi.CI.IGT: failure " 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=ZZfrJ8TmKuBlcFYb@ideak-desk.fi.intel.com \
    --to=imre.deak@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=mika.kahola@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