All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Heiner Kallweit <hkallweit1@gmail.com>
Cc: Kevin Hilman <khilman@baylibre.com>,
	Carlo Caione <carlo@caione.org>,
	"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	linux-amlogic@lists.infradead.org
Subject: Re: [PATCH v3 1/9] mmc: meson: Assign the minimum clk rate as close to 400KHz as possible
Date: Wed, 8 Feb 2017 12:51:42 +0100	[thread overview]
Message-ID: <CAPDyKFr4_tNjuK=Aqsqm0A2bP2-=KtZ-66BtbP_E9QR0pxVRiQ@mail.gmail.com> (raw)
In-Reply-To: <d24ae9fb-a4e3-50ab-0144-0ae39bf3ca1c@gmail.com>

On 7 February 2017 at 22:33, Heiner Kallweit <hkallweit1@gmail.com> wrote:
> The current code dealing with calculating mmc->f_min is a bit complicated.
> Additionally, the attempt to set an initial clock rate should explicitly
> use a rate between 100KHz to 400 KHz, according the (e)MMC/SD specs, which
> it doesn't.
>
> Fix the problem and clean up the code by using clk_round_rate() to pick the
> nearest minimum rate to 400KHz (rounded down from 400kHz).
>
> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>

I have applied the series for next.

However, I think I deserve to keep the authorship of $subject patch,
so I re-claimed it. Instead I added a line in the change log of what
you changed.

Thanks and kind regards
Uffe

> ---
> v3:
> - remove now unused member mux_parent_rate from struct meson_host
> - change target min rate from 100kHz to 400kHz because actual min rate
>   on meson is 380kHz. Therefore 100kHz would be rounded down to 0.
> ---
>  drivers/mmc/host/meson-gx-mmc.c | 20 ++++++--------------
>  1 file changed, 6 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c
> index 5eca88bc..ef2ce725 100644
> --- a/drivers/mmc/host/meson-gx-mmc.c
> +++ b/drivers/mmc/host/meson-gx-mmc.c
> @@ -132,7 +132,6 @@ struct meson_host {
>         struct clk_mux mux;
>         struct clk *mux_clk;
>         struct clk *mux_parent[MUX_CLK_NUM_PARENTS];
> -       unsigned long mux_parent_rate[MUX_CLK_NUM_PARENTS];
>
>         struct clk_divider cfg_div;
>         struct clk *cfg_div_clk;
> @@ -240,7 +239,6 @@ static int meson_mmc_clk_init(struct meson_host *host)
>         const char *mux_parent_names[MUX_CLK_NUM_PARENTS];
>         unsigned int mux_parent_count = 0;
>         const char *clk_div_parents[1];
> -       unsigned int f_min = UINT_MAX;
>         u32 clk_reg, cfg;
>
>         /* get the mux parents */
> @@ -257,20 +255,10 @@ static int meson_mmc_clk_init(struct meson_host *host)
>                         return ret;
>                 }
>
> -               host->mux_parent_rate[i] = clk_get_rate(host->mux_parent[i]);
>                 mux_parent_names[i] = __clk_get_name(host->mux_parent[i]);
>                 mux_parent_count++;
> -               if (host->mux_parent_rate[i] < f_min)
> -                       f_min = host->mux_parent_rate[i];
>         }
>
> -       /* cacluate f_min based on input clocks, and max divider value */
> -       if (f_min != UINT_MAX)
> -               f_min = DIV_ROUND_UP(CLK_SRC_XTAL_RATE, CLK_DIV_MAX);
> -       else
> -               f_min = 4000000;  /* default min: 400 MHz */
> -       host->mmc->f_min = f_min;
> -
>         /* create the mux */
>         snprintf(clk_name, sizeof(clk_name), "%s#mux", dev_name(host->dev));
>         init.name = clk_name;
> @@ -325,9 +313,13 @@ static int meson_mmc_clk_init(struct meson_host *host)
>         writel(cfg, host->regs + SD_EMMC_CFG);
>
>         ret = clk_prepare_enable(host->cfg_div_clk);
> -       if (!ret)
> -               ret = meson_mmc_clk_set(host, f_min);
> +       if (ret)
> +               return ret;
> +
> +       /* Get the nearest minimum clock to 400KHz */
> +       host->mmc->f_min = clk_round_rate(host->cfg_div_clk, 400000);
>
> +       ret = meson_mmc_clk_set(host, host->mmc->f_min);
>         if (!ret)
>                 clk_disable_unprepare(host->cfg_div_clk);
>
> --
> 2.11.0
>

WARNING: multiple messages have this Message-ID (diff)
From: ulf.hansson@linaro.org (Ulf Hansson)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH v3 1/9] mmc: meson: Assign the minimum clk rate as close to 400KHz as possible
Date: Wed, 8 Feb 2017 12:51:42 +0100	[thread overview]
Message-ID: <CAPDyKFr4_tNjuK=Aqsqm0A2bP2-=KtZ-66BtbP_E9QR0pxVRiQ@mail.gmail.com> (raw)
In-Reply-To: <d24ae9fb-a4e3-50ab-0144-0ae39bf3ca1c@gmail.com>

On 7 February 2017 at 22:33, Heiner Kallweit <hkallweit1@gmail.com> wrote:
> The current code dealing with calculating mmc->f_min is a bit complicated.
> Additionally, the attempt to set an initial clock rate should explicitly
> use a rate between 100KHz to 400 KHz, according the (e)MMC/SD specs, which
> it doesn't.
>
> Fix the problem and clean up the code by using clk_round_rate() to pick the
> nearest minimum rate to 400KHz (rounded down from 400kHz).
>
> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>

I have applied the series for next.

However, I think I deserve to keep the authorship of $subject patch,
so I re-claimed it. Instead I added a line in the change log of what
you changed.

Thanks and kind regards
Uffe

> ---
> v3:
> - remove now unused member mux_parent_rate from struct meson_host
> - change target min rate from 100kHz to 400kHz because actual min rate
>   on meson is 380kHz. Therefore 100kHz would be rounded down to 0.
> ---
>  drivers/mmc/host/meson-gx-mmc.c | 20 ++++++--------------
>  1 file changed, 6 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c
> index 5eca88bc..ef2ce725 100644
> --- a/drivers/mmc/host/meson-gx-mmc.c
> +++ b/drivers/mmc/host/meson-gx-mmc.c
> @@ -132,7 +132,6 @@ struct meson_host {
>         struct clk_mux mux;
>         struct clk *mux_clk;
>         struct clk *mux_parent[MUX_CLK_NUM_PARENTS];
> -       unsigned long mux_parent_rate[MUX_CLK_NUM_PARENTS];
>
>         struct clk_divider cfg_div;
>         struct clk *cfg_div_clk;
> @@ -240,7 +239,6 @@ static int meson_mmc_clk_init(struct meson_host *host)
>         const char *mux_parent_names[MUX_CLK_NUM_PARENTS];
>         unsigned int mux_parent_count = 0;
>         const char *clk_div_parents[1];
> -       unsigned int f_min = UINT_MAX;
>         u32 clk_reg, cfg;
>
>         /* get the mux parents */
> @@ -257,20 +255,10 @@ static int meson_mmc_clk_init(struct meson_host *host)
>                         return ret;
>                 }
>
> -               host->mux_parent_rate[i] = clk_get_rate(host->mux_parent[i]);
>                 mux_parent_names[i] = __clk_get_name(host->mux_parent[i]);
>                 mux_parent_count++;
> -               if (host->mux_parent_rate[i] < f_min)
> -                       f_min = host->mux_parent_rate[i];
>         }
>
> -       /* cacluate f_min based on input clocks, and max divider value */
> -       if (f_min != UINT_MAX)
> -               f_min = DIV_ROUND_UP(CLK_SRC_XTAL_RATE, CLK_DIV_MAX);
> -       else
> -               f_min = 4000000;  /* default min: 400 MHz */
> -       host->mmc->f_min = f_min;
> -
>         /* create the mux */
>         snprintf(clk_name, sizeof(clk_name), "%s#mux", dev_name(host->dev));
>         init.name = clk_name;
> @@ -325,9 +313,13 @@ static int meson_mmc_clk_init(struct meson_host *host)
>         writel(cfg, host->regs + SD_EMMC_CFG);
>
>         ret = clk_prepare_enable(host->cfg_div_clk);
> -       if (!ret)
> -               ret = meson_mmc_clk_set(host, f_min);
> +       if (ret)
> +               return ret;
> +
> +       /* Get the nearest minimum clock to 400KHz */
> +       host->mmc->f_min = clk_round_rate(host->cfg_div_clk, 400000);
>
> +       ret = meson_mmc_clk_set(host, host->mmc->f_min);
>         if (!ret)
>                 clk_disable_unprepare(host->cfg_div_clk);
>
> --
> 2.11.0
>

  reply	other threads:[~2017-02-08 12:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-07 21:33 [PATCH v3 1/9] mmc: meson: Assign the minimum clk rate as close to 400KHz as possible Heiner Kallweit
2017-02-07 21:33 ` Heiner Kallweit
2017-02-08 11:51 ` Ulf Hansson [this message]
2017-02-08 11:51   ` Ulf Hansson

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='CAPDyKFr4_tNjuK=Aqsqm0A2bP2-=KtZ-66BtbP_E9QR0pxVRiQ@mail.gmail.com' \
    --to=ulf.hansson@linaro.org \
    --cc=carlo@caione.org \
    --cc=hkallweit1@gmail.com \
    --cc=khilman@baylibre.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-mmc@vger.kernel.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 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.