U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Andre Przywara <andre.przywara@arm.com>
To: Michael Walle <mwalle@kernel.org>
Cc: Jagan Teki <jagan@amarulasolutions.com>,
	Tom Rini <trini@konsulko.com>, Simon Glass <sjg@chromium.org>,
	u-boot@lists.denx.de
Subject: Re: [PATCH v2 1/2] spi: sunxi: fix CDR2 calculation
Date: Tue, 6 Aug 2024 13:36:36 +0100	[thread overview]
Message-ID: <20240806133636.6ddb9505@donnerap.manchester.arm.com> (raw)
In-Reply-To: <20240718204253.1180233-1-mwalle@kernel.org>

On Thu, 18 Jul 2024 22:42:52 +0200
Michael Walle <mwalle@kernel.org> wrote:

Hi,

> The CDR2 divider calculation always yield a frequency greater than the
> requested one. Use DIV_ROUND_UP() to keep the frequency equal or below
> the requested one. This way, we can also drop the "if div > 0" check
> because we know for a fact that div cannot be zero.
> 
> FWIW, this aligns the CDR2 calculation with the linux driver.

Thanks, that looks alright now. I tested some corner cases, and it seems
to do the right thing (TM) now.

> Suggested-by: Andre Przywara <andre.przywara@arm.com>
> Signed-off-by: Michael Walle <mwalle@kernel.org>

Reviewed-by: Andre Przywara <andre.przywara@arm.com>

Applied to sunxi/master.

Cheers,
Andre.

> ---
>  drivers/spi/spi-sunxi.c | 11 ++++-------
>  1 file changed, 4 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/spi/spi-sunxi.c b/drivers/spi/spi-sunxi.c
> index bfb402902b8..f110a8b7658 100644
> --- a/drivers/spi/spi-sunxi.c
> +++ b/drivers/spi/spi-sunxi.c
> @@ -233,7 +233,7 @@ err_ahb:
>  static void sun4i_spi_set_speed_mode(struct udevice *dev)
>  {
>  	struct sun4i_spi_priv *priv = dev_get_priv(dev);
> -	unsigned int div;
> +	unsigned int div, div_cdr2;
>  	u32 reg;
>  
>  	/*
> @@ -259,15 +259,12 @@ static void sun4i_spi_set_speed_mode(struct udevice *dev)
>  	 */
>  
>  	div = DIV_ROUND_UP(SUNXI_INPUT_CLOCK, priv->freq);
> +	div_cdr2 = DIV_ROUND_UP(div, 2);
>  	reg = readl(SPI_REG(priv, SPI_CCR));
>  
> -	if ((div / 2) <= (SUN4I_CLK_CTL_CDR2_MASK + 1)) {
> -		div /= 2;
> -		if (div > 0)
> -			div--;
> -
> +	if (div_cdr2 <= (SUN4I_CLK_CTL_CDR2_MASK + 1)) {
>  		reg &= ~(SUN4I_CLK_CTL_CDR2_MASK | SUN4I_CLK_CTL_DRS);
> -		reg |= SUN4I_CLK_CTL_CDR2(div) | SUN4I_CLK_CTL_DRS;
> +		reg |= SUN4I_CLK_CTL_CDR2(div_cdr2 - 1) | SUN4I_CLK_CTL_DRS;
>  	} else {
>  		div = fls(div - 1);
>  		/* The F1C100s encodes the divider as 2^(n+1) */


      parent reply	other threads:[~2024-08-06 12:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-18 20:42 [PATCH v2 1/2] spi: sunxi: fix CDR2 calculation Michael Walle
2024-07-18 20:42 ` [PATCH v2 2/2] spi: sunxi: fix clock divider calculation for max frequency setting Michael Walle
2024-08-06 12:37   ` Andre Przywara
2024-08-06 12:36 ` Andre Przywara [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=20240806133636.6ddb9505@donnerap.manchester.arm.com \
    --to=andre.przywara@arm.com \
    --cc=jagan@amarulasolutions.com \
    --cc=mwalle@kernel.org \
    --cc=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /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