summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-03-24 13:22:45 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-03-25 13:46:09 +0100
commit45384434d8e597fce628d240ad810813474c50a0 (patch)
tree0b9dc6f6fb60e039eb4e5de522d3b9194db1f9a5 /drivers
parentb3f8004b158c8b36bae83f9b64373c1d1094d17a (diff)
downloadbarebox-45384434d8e597fce628d240ad810813474c50a0.tar.gz
barebox-45384434d8e597fce628d240ad810813474c50a0.tar.xz
clk: imx: clk-pllv1: fix wrong PLL recalc on i.MX1/i.MX21
Adding -Wtype-limits to the build correctly detects that the first branch (mfn < 0) is never taken as mfn is unsigned. Import the Linux v5.11 bits that correctly checks the sign of the sign/magnitude integer. Unlike Linux, we don't need to check whether it's an i.MX1 or i.MX21 here, because an #ifdef earlier normalizes the value to be aligned with the i.MX27's. This however means that a multi-image barebox wasn't and will remain not able to properly target both <= i.MX21 and newer SoCs at the same time. This is just build-time tested. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/imx/clk-pllv1.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-pllv1.c b/drivers/clk/imx/clk-pllv1.c
index 283ae843a7..36192bb211 100644
--- a/drivers/clk/imx/clk-pllv1.c
+++ b/drivers/clk/imx/clk-pllv1.c
@@ -12,12 +12,21 @@
#include "clk.h"
+#define MFN_BITS (10)
+#define MFN_SIGN (BIT(MFN_BITS - 1))
+#define MFN_MASK (MFN_SIGN - 1)
+
struct clk_pllv1 {
struct clk clk;
void __iomem *reg;
const char *parent;
};
+static inline bool mfn_is_negative(unsigned int mfn)
+{
+ return mfn & MFN_SIGN;
+}
+
static unsigned long clk_pllv1_recalc_rate(struct clk *clk,
unsigned long parent_rate)
{
@@ -50,7 +59,7 @@ static unsigned long clk_pllv1_recalc_rate(struct clk *clk,
ll = (unsigned long long)freq * mfn_abs;
do_div(ll, mfd + 1);
- if (mfn < 0)
+ if (mfn_is_negative(mfn))
ll = (freq * mfi) - ll;
else
ll = (freq * mfi) + ll;