From: Abel Vesa <abel.vesa@nxp.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: linux-clk@vger.kernel.org,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
NXP Linux Team <linux-imx@nxp.com>,
Adrian Alonso <adrian.alonso@nxp.com>,
Mads Bligaard Nielsen <bli@bang-olufsen.dk>
Subject: Re: [PATCH 1/8] clk: imx: pll14xx: Use register defines consistently
Date: Wed, 23 Feb 2022 13:29:37 +0200 [thread overview]
Message-ID: <YhYaobH4B2DE867n@abelvesa> (raw)
In-Reply-To: <20220223075601.3652543-2-s.hauer@pengutronix.de>
On 22-02-23 08:55:54, Sascha Hauer wrote:
> The driver has defines for the registers, but they are mostly unused.
> Use the defines consistently throughout the driver. While at it rename
> DIV_CTL to DIV_CTL0 because that's the name in the reference manual.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Pretty straightforward.
Reviewed-by: Abel Vesa <abel.vesa@nxp.com>
> ---
> drivers/clk/imx/clk-pll14xx.c | 49 ++++++++++++++++++-----------------
> 1 file changed, 25 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
> index 2b5ed86b9dbbb..cae64d750672e 100644
> --- a/drivers/clk/imx/clk-pll14xx.c
> +++ b/drivers/clk/imx/clk-pll14xx.c
> @@ -15,7 +15,8 @@
> #include "clk.h"
>
> #define GNRL_CTL 0x0
> -#define DIV_CTL 0x4
> +#define DIV_CTL0 0x4
> +#define DIV_CTL1 0x8
> #define LOCK_STATUS BIT(31)
> #define LOCK_SEL_MASK BIT(29)
> #define CLKE_MASK BIT(11)
> @@ -122,7 +123,7 @@ static unsigned long clk_pll1416x_recalc_rate(struct clk_hw *hw,
> u32 mdiv, pdiv, sdiv, pll_div;
> u64 fvco = parent_rate;
>
> - pll_div = readl_relaxed(pll->base + 4);
> + pll_div = readl_relaxed(pll->base + DIV_CTL0);
> mdiv = (pll_div & MDIV_MASK) >> MDIV_SHIFT;
> pdiv = (pll_div & PDIV_MASK) >> PDIV_SHIFT;
> sdiv = (pll_div & SDIV_MASK) >> SDIV_SHIFT;
> @@ -141,8 +142,8 @@ static unsigned long clk_pll1443x_recalc_rate(struct clk_hw *hw,
> short int kdiv;
> u64 fvco = parent_rate;
>
> - pll_div_ctl0 = readl_relaxed(pll->base + 4);
> - pll_div_ctl1 = readl_relaxed(pll->base + 8);
> + pll_div_ctl0 = readl_relaxed(pll->base + DIV_CTL0);
> + pll_div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
> mdiv = (pll_div_ctl0 & MDIV_MASK) >> MDIV_SHIFT;
> pdiv = (pll_div_ctl0 & PDIV_MASK) >> PDIV_SHIFT;
> sdiv = (pll_div_ctl0 & SDIV_MASK) >> SDIV_SHIFT;
> @@ -172,7 +173,7 @@ static int clk_pll14xx_wait_lock(struct clk_pll14xx *pll)
> {
> u32 val;
>
> - return readl_poll_timeout(pll->base, val, val & LOCK_STATUS, 0,
> + return readl_poll_timeout(pll->base + GNRL_CTL, val, val & LOCK_STATUS, 0,
> LOCK_TIMEOUT_US);
> }
>
> @@ -191,32 +192,32 @@ static int clk_pll1416x_set_rate(struct clk_hw *hw, unsigned long drate,
> return -EINVAL;
> }
>
> - tmp = readl_relaxed(pll->base + 4);
> + tmp = readl_relaxed(pll->base + DIV_CTL0);
>
> if (!clk_pll14xx_mp_change(rate, tmp)) {
> tmp &= ~(SDIV_MASK) << SDIV_SHIFT;
> tmp |= rate->sdiv << SDIV_SHIFT;
> - writel_relaxed(tmp, pll->base + 4);
> + writel_relaxed(tmp, pll->base + DIV_CTL0);
>
> return 0;
> }
>
> /* Bypass clock and set lock to pll output lock */
> - tmp = readl_relaxed(pll->base);
> + tmp = readl_relaxed(pll->base + GNRL_CTL);
> tmp |= LOCK_SEL_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> /* Enable RST */
> tmp &= ~RST_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> /* Enable BYPASS */
> tmp |= BYPASS_MASK;
> - writel(tmp, pll->base);
> + writel(tmp, pll->base + GNRL_CTL);
>
> div_val = (rate->mdiv << MDIV_SHIFT) | (rate->pdiv << PDIV_SHIFT) |
> (rate->sdiv << SDIV_SHIFT);
> - writel_relaxed(div_val, pll->base + 0x4);
> + writel_relaxed(div_val, pll->base + DIV_CTL0);
>
> /*
> * According to SPEC, t3 - t2 need to be greater than
> @@ -228,7 +229,7 @@ static int clk_pll1416x_set_rate(struct clk_hw *hw, unsigned long drate,
>
> /* Disable RST */
> tmp |= RST_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> /* Wait Lock */
> ret = clk_pll14xx_wait_lock(pll);
> @@ -237,7 +238,7 @@ static int clk_pll1416x_set_rate(struct clk_hw *hw, unsigned long drate,
>
> /* Bypass */
> tmp &= ~BYPASS_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> return 0;
> }
> @@ -257,32 +258,32 @@ static int clk_pll1443x_set_rate(struct clk_hw *hw, unsigned long drate,
> return -EINVAL;
> }
>
> - tmp = readl_relaxed(pll->base + 4);
> + tmp = readl_relaxed(pll->base + DIV_CTL0);
>
> if (!clk_pll14xx_mp_change(rate, tmp)) {
> tmp &= ~(SDIV_MASK) << SDIV_SHIFT;
> tmp |= rate->sdiv << SDIV_SHIFT;
> - writel_relaxed(tmp, pll->base + 4);
> + writel_relaxed(tmp, pll->base + DIV_CTL0);
>
> tmp = rate->kdiv << KDIV_SHIFT;
> - writel_relaxed(tmp, pll->base + 8);
> + writel_relaxed(tmp, pll->base + DIV_CTL1);
>
> return 0;
> }
>
> /* Enable RST */
> - tmp = readl_relaxed(pll->base);
> + tmp = readl_relaxed(pll->base + GNRL_CTL);
> tmp &= ~RST_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> /* Enable BYPASS */
> tmp |= BYPASS_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> div_val = (rate->mdiv << MDIV_SHIFT) | (rate->pdiv << PDIV_SHIFT) |
> (rate->sdiv << SDIV_SHIFT);
> - writel_relaxed(div_val, pll->base + 0x4);
> - writel_relaxed(rate->kdiv << KDIV_SHIFT, pll->base + 0x8);
> + writel_relaxed(div_val, pll->base + DIV_CTL0);
> + writel_relaxed(rate->kdiv << KDIV_SHIFT, pll->base + DIV_CTL1);
>
> /*
> * According to SPEC, t3 - t2 need to be greater than
> @@ -294,7 +295,7 @@ static int clk_pll1443x_set_rate(struct clk_hw *hw, unsigned long drate,
>
> /* Disable RST */
> tmp |= RST_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> /* Wait Lock*/
> ret = clk_pll14xx_wait_lock(pll);
> @@ -303,7 +304,7 @@ static int clk_pll1443x_set_rate(struct clk_hw *hw, unsigned long drate,
>
> /* Bypass */
> tmp &= ~BYPASS_MASK;
> - writel_relaxed(tmp, pll->base);
> + writel_relaxed(tmp, pll->base + GNRL_CTL);
>
> return 0;
> }
> --
> 2.30.2
>
next prev parent reply other threads:[~2022-02-23 11:29 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-23 7:55 [PATCH 0/8] clk: i.MX: PLL14xx: Support dynamic rates Sascha Hauer
2022-02-23 7:55 ` [PATCH 1/8] clk: imx: pll14xx: Use register defines consistently Sascha Hauer
2022-02-23 11:29 ` Abel Vesa [this message]
2022-02-23 7:55 ` [PATCH 2/8] clk: imx: pll14xx: Fix masking Sascha Hauer
2022-02-23 11:31 ` Abel Vesa
2022-02-23 11:46 ` Sascha Hauer
2022-02-23 7:55 ` [PATCH 3/8] clk: imx: pll14xx: Use FIELD_GET/FIELD_PREP Sascha Hauer
2022-02-23 11:34 ` Abel Vesa
2022-02-23 13:09 ` kernel test robot
2022-02-23 7:55 ` [PATCH 4/8] clk: imx: pll14xx: consolidate rate calculation Sascha Hauer
2022-02-23 7:55 ` [PATCH 5/8] clk: imx: pll14xx: name variables after usage Sascha Hauer
2022-02-23 7:55 ` [PATCH 6/8] clk: imx: pll14xx: explicitly return lowest rate Sascha Hauer
2022-02-23 7:56 ` [PATCH 7/8] clk: imx: pll14xx: Add pr_fmt Sascha Hauer
2022-02-23 12:47 ` kernel test robot
2022-02-23 7:56 ` [PATCH 8/8] clk: imx: pll14xx: Support dynamic rates Sascha Hauer
2022-02-23 12:48 ` kernel test robot
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=YhYaobH4B2DE867n@abelvesa \
--to=abel.vesa@nxp.com \
--cc=adrian.alonso@nxp.com \
--cc=bli@bang-olufsen.dk \
--cc=festevam@gmail.com \
--cc=kernel@pengutronix.de \
--cc=linux-clk@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=mturquette@baylibre.com \
--cc=s.hauer@pengutronix.de \
--cc=sboyd@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox