LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] clk: imx: Use div64_ul instead of do_div
@ 2021-11-17 1:38 cgel.zte
2021-11-18 8:06 ` [PATCH v2] " cgel.zte
0 siblings, 1 reply; 4+ messages in thread
From: cgel.zte @ 2021-11-17 1:38 UTC (permalink / raw)
To: abel.vesa
Cc: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
linux-imx, linux-clk, linux-arm-kernel, linux-kernel,
Changcheng Deng, Zeal Robot
From: Changcheng Deng <deng.changcheng@zte.com.cn>
do_div() does a 64-by-32 division. If the divisor is unsigned long, using
div64_ul can avoid truncation to 32-bit.
Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn>
---
drivers/clk/imx/clk-pllv3.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/clk/imx/clk-pllv3.c b/drivers/clk/imx/clk-pllv3.c
index 20ee9611ba6e..55497e0585a6 100644
--- a/drivers/clk/imx/clk-pllv3.c
+++ b/drivers/clk/imx/clk-pllv3.c
@@ -247,7 +247,7 @@ static long clk_pllv3_av_round_rate(struct clk_hw *hw, unsigned long rate,
div = rate / parent_rate;
temp64 = (u64) (rate - div * parent_rate);
temp64 *= mfd;
- do_div(temp64, parent_rate);
+ div64_ul(temp64, parent_rate);
mfn = temp64;
temp64 = (u64)parent_rate;
@@ -277,7 +277,7 @@ static int clk_pllv3_av_set_rate(struct clk_hw *hw, unsigned long rate,
div = rate / parent_rate;
temp64 = (u64) (rate - div * parent_rate);
temp64 *= mfd;
- do_div(temp64, parent_rate);
+ div64_ul(temp64, parent_rate);
mfn = temp64;
val = readl_relaxed(pll->base);
@@ -334,7 +334,7 @@ static struct clk_pllv3_vf610_mf clk_pllv3_vf610_rate_to_mf(
/* rate = parent_rate * (mfi + mfn/mfd) */
temp64 = rate - parent_rate * mf.mfi;
temp64 *= mf.mfd;
- do_div(temp64, parent_rate);
+ div64_ul(temp64, parent_rate);
mf.mfn = temp64;
}
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] clk: imx: Use div64_ul instead of do_div
2021-11-17 1:38 [PATCH] clk: imx: Use div64_ul instead of do_div cgel.zte
@ 2021-11-18 8:06 ` cgel.zte
2021-11-22 13:27 ` Abel Vesa
2021-11-22 13:34 ` Abel Vesa
0 siblings, 2 replies; 4+ messages in thread
From: cgel.zte @ 2021-11-18 8:06 UTC (permalink / raw)
To: abel.vesa
Cc: festevam, kernel, linux-arm-kernel, linux-clk, linux-imx,
linux-kernel, mturquette, s.hauer, sboyd, shawnguo, zealci,
cgel.zte, deng.changcheng
From: Changcheng Deng <deng.changcheng@zte.com.cn>
do_div() does a 64-by-32 division. Here the divisor is an unsigned long
which on some platforms is 64 bit wide. So use div64_ul instead of do_div
to avoid a possible truncation.
Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn>
---
drivers/clk/imx/clk-pllv3.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/clk/imx/clk-pllv3.c b/drivers/clk/imx/clk-pllv3.c
index 20ee9611ba6e..55497e0585a6 100644
--- a/drivers/clk/imx/clk-pllv3.c
+++ b/drivers/clk/imx/clk-pllv3.c
@@ -247,7 +247,7 @@ static long clk_pllv3_av_round_rate(struct clk_hw *hw, unsigned long rate,
div = rate / parent_rate;
temp64 = (u64) (rate - div * parent_rate);
temp64 *= mfd;
- do_div(temp64, parent_rate);
+ temp64 = div64_ul(temp64, parent_rate);
mfn = temp64;
temp64 = (u64)parent_rate;
@@ -277,7 +277,7 @@ static int clk_pllv3_av_set_rate(struct clk_hw *hw, unsigned long rate,
div = rate / parent_rate;
temp64 = (u64) (rate - div * parent_rate);
temp64 *= mfd;
- do_div(temp64, parent_rate);
+ temp64 = div64_ul(temp64, parent_rate);
mfn = temp64;
val = readl_relaxed(pll->base);
@@ -334,7 +334,7 @@ static struct clk_pllv3_vf610_mf clk_pllv3_vf610_rate_to_mf(
/* rate = parent_rate * (mfi + mfn/mfd) */
temp64 = rate - parent_rate * mf.mfi;
temp64 *= mf.mfd;
- do_div(temp64, parent_rate);
+ temp64 = div64_ul(temp64, parent_rate);
mf.mfn = temp64;
}
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] clk: imx: Use div64_ul instead of do_div
2021-11-18 8:06 ` [PATCH v2] " cgel.zte
@ 2021-11-22 13:27 ` Abel Vesa
2021-11-22 13:34 ` Abel Vesa
1 sibling, 0 replies; 4+ messages in thread
From: Abel Vesa @ 2021-11-22 13:27 UTC (permalink / raw)
To: cgel.zte
Cc: festevam, kernel, linux-arm-kernel, linux-clk, linux-imx,
linux-kernel, mturquette, s.hauer, sboyd, shawnguo, zealci,
deng.changcheng
On 21-11-18 08:06:34, cgel.zte@gmail.com wrote:
> From: Changcheng Deng <deng.changcheng@zte.com.cn>
>
> do_div() does a 64-by-32 division. Here the divisor is an unsigned long
> which on some platforms is 64 bit wide. So use div64_ul instead of do_div
> to avoid a possible truncation.
>
> Reported-by: Zeal Robot <zealci@zte.com.cn>
> Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn>
Reviewed-by: Abel Vesa <abel.vesa@nxp.com>
> ---
> drivers/clk/imx/clk-pllv3.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/clk/imx/clk-pllv3.c b/drivers/clk/imx/clk-pllv3.c
> index 20ee9611ba6e..55497e0585a6 100644
> --- a/drivers/clk/imx/clk-pllv3.c
> +++ b/drivers/clk/imx/clk-pllv3.c
> @@ -247,7 +247,7 @@ static long clk_pllv3_av_round_rate(struct clk_hw *hw, unsigned long rate,
> div = rate / parent_rate;
> temp64 = (u64) (rate - div * parent_rate);
> temp64 *= mfd;
> - do_div(temp64, parent_rate);
> + temp64 = div64_ul(temp64, parent_rate);
> mfn = temp64;
>
> temp64 = (u64)parent_rate;
> @@ -277,7 +277,7 @@ static int clk_pllv3_av_set_rate(struct clk_hw *hw, unsigned long rate,
> div = rate / parent_rate;
> temp64 = (u64) (rate - div * parent_rate);
> temp64 *= mfd;
> - do_div(temp64, parent_rate);
> + temp64 = div64_ul(temp64, parent_rate);
> mfn = temp64;
>
> val = readl_relaxed(pll->base);
> @@ -334,7 +334,7 @@ static struct clk_pllv3_vf610_mf clk_pllv3_vf610_rate_to_mf(
> /* rate = parent_rate * (mfi + mfn/mfd) */
> temp64 = rate - parent_rate * mf.mfi;
> temp64 *= mf.mfd;
> - do_div(temp64, parent_rate);
> + temp64 = div64_ul(temp64, parent_rate);
> mf.mfn = temp64;
> }
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] clk: imx: Use div64_ul instead of do_div
2021-11-18 8:06 ` [PATCH v2] " cgel.zte
2021-11-22 13:27 ` Abel Vesa
@ 2021-11-22 13:34 ` Abel Vesa
1 sibling, 0 replies; 4+ messages in thread
From: Abel Vesa @ 2021-11-22 13:34 UTC (permalink / raw)
To: cgel.zte
Cc: festevam, kernel, linux-arm-kernel, linux-clk, linux-imx,
linux-kernel, mturquette, s.hauer, sboyd, shawnguo, zealci,
deng.changcheng
On 21-11-18 08:06:34, cgel.zte@gmail.com wrote:
> From: Changcheng Deng <deng.changcheng@zte.com.cn>
>
> do_div() does a 64-by-32 division. Here the divisor is an unsigned long
> which on some platforms is 64 bit wide. So use div64_ul instead of do_div
> to avoid a possible truncation.
>
> Reported-by: Zeal Robot <zealci@zte.com.cn>
> Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn>
For future patches, please do not send the new version as a reply to the
older one. It gets confusing.
Applied, thanks.
> ---
> drivers/clk/imx/clk-pllv3.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/clk/imx/clk-pllv3.c b/drivers/clk/imx/clk-pllv3.c
> index 20ee9611ba6e..55497e0585a6 100644
> --- a/drivers/clk/imx/clk-pllv3.c
> +++ b/drivers/clk/imx/clk-pllv3.c
> @@ -247,7 +247,7 @@ static long clk_pllv3_av_round_rate(struct clk_hw *hw, unsigned long rate,
> div = rate / parent_rate;
> temp64 = (u64) (rate - div * parent_rate);
> temp64 *= mfd;
> - do_div(temp64, parent_rate);
> + temp64 = div64_ul(temp64, parent_rate);
> mfn = temp64;
>
> temp64 = (u64)parent_rate;
> @@ -277,7 +277,7 @@ static int clk_pllv3_av_set_rate(struct clk_hw *hw, unsigned long rate,
> div = rate / parent_rate;
> temp64 = (u64) (rate - div * parent_rate);
> temp64 *= mfd;
> - do_div(temp64, parent_rate);
> + temp64 = div64_ul(temp64, parent_rate);
> mfn = temp64;
>
> val = readl_relaxed(pll->base);
> @@ -334,7 +334,7 @@ static struct clk_pllv3_vf610_mf clk_pllv3_vf610_rate_to_mf(
> /* rate = parent_rate * (mfi + mfn/mfd) */
> temp64 = rate - parent_rate * mf.mfi;
> temp64 *= mf.mfd;
> - do_div(temp64, parent_rate);
> + temp64 = div64_ul(temp64, parent_rate);
> mf.mfn = temp64;
> }
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-11-22 13:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-17 1:38 [PATCH] clk: imx: Use div64_ul instead of do_div cgel.zte
2021-11-18 8:06 ` [PATCH v2] " cgel.zte
2021-11-22 13:27 ` Abel Vesa
2021-11-22 13:34 ` Abel Vesa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).