summaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2019-07-17 19:05:59 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-08-05 12:19:22 +0200
commit37bc313add4095f9285e4af6fd91fda2d94ed8d8 (patch)
treeb7e693aab391bac946a28d8d8e16d5992dac78c3 /drivers/clk
parent0d8d7691f417f78e149756225c4d0019e38bb72d (diff)
downloadbarebox-37bc313add4095f9285e4af6fd91fda2d94ed8d8.tar.gz
barebox-37bc313add4095f9285e4af6fd91fda2d94ed8d8.tar.xz
clk: imx6: fix use of cpu_is_mx6* before they are initialized
The cpu_is_mx6* macros rely on __imx_cpu_type, which is initialized dependent on device tree compatible at "postcore" init-level imx_init. The imx6q-ccm driver, which uses the cpu_is_mx6* macros, is registered at "core" init-level, however. This results on the macro always returning false. Fix this by using the cpu_mx6_is_mx6* family of macros instead. These already require that that CPU is a MX6, which is safe because the the driver only matches against "fsl,imx6q-ccm". Only exception is the video5 pll reparenting. Here we will just maintain the old behavior as we will drop the if clause in a following commit anyway. Reported-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/imx/clk-imx6.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/clk/imx/clk-imx6.c b/drivers/clk/imx/clk-imx6.c
index 35b995dae2..0b71a13224 100644
--- a/drivers/clk/imx/clk-imx6.c
+++ b/drivers/clk/imx/clk-imx6.c
@@ -59,9 +59,9 @@
static struct clk *clks[IMX6QDL_CLK_END];
static struct clk_onecell_data clk_data;
-static inline int cpu_is_plus(void)
+static inline int cpu_mx6_is_plus(void)
{
- return cpu_is_mx6qp() || cpu_is_mx6dp();
+ return cpu_mx6_is_mx6qp() || cpu_mx6_is_mx6dp();
}
static const char *step_sels[] = {
@@ -341,8 +341,7 @@ static void imx6_add_video_clks(void __iomem *anab, void __iomem *cb)
clk_set_parent(clks[IMX6QDL_CLK_IPU2_DI0_PRE_SEL], clks[IMX6QDL_CLK_PLL5_VIDEO_DIV]);
clk_set_parent(clks[IMX6QDL_CLK_IPU2_DI1_PRE_SEL], clks[IMX6QDL_CLK_PLL5_VIDEO_DIV]);
- if ((imx_silicon_revision() != IMX_CHIP_REV_1_0) ||
- cpu_is_mx6dl()) {
+ if (imx_silicon_revision() != IMX_CHIP_REV_1_0) {
clk_set_parent(clks[IMX6QDL_CLK_LDB_DI0_SEL], clks[IMX6QDL_CLK_PLL5_VIDEO_DIV]);
clk_set_parent(clks[IMX6QDL_CLK_LDB_DI1_SEL], clks[IMX6QDL_CLK_PLL5_VIDEO_DIV]);
}
@@ -418,7 +417,7 @@ static int imx6_ccm_probe(struct device_d *dev)
clks[IMX6QDL_CLK_USDHC2_SEL] = imx_clk_mux("usdhc2_sel", base + 0x1c, 17, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
clks[IMX6QDL_CLK_USDHC3_SEL] = imx_clk_mux("usdhc3_sel", base + 0x1c, 18, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
clks[IMX6QDL_CLK_USDHC4_SEL] = imx_clk_mux("usdhc4_sel", base + 0x1c, 19, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
- if (cpu_is_plus())
+ if (cpu_mx6_is_plus())
clks[IMX6QDL_CLK_ENFC_SEL] = imx_clk_mux("enfc_sel", base + 0x2c, 16, 2, enfc_sels_plus, ARRAY_SIZE(enfc_sels_plus));
else
clks[IMX6QDL_CLK_ENFC_SEL] = imx_clk_mux("enfc_sel", base + 0x2c, 16, 2, enfc_sels, ARRAY_SIZE(enfc_sels));
@@ -469,7 +468,7 @@ static int imx6_ccm_probe(struct device_d *dev)
clks[IMX6QDL_CLK_ECSPI2] = imx_clk_gate2("ecspi2", "ecspi_root", base + 0x6c, 2);
clks[IMX6QDL_CLK_ECSPI3] = imx_clk_gate2("ecspi3", "ecspi_root", base + 0x6c, 4);
clks[IMX6QDL_CLK_ECSPI4] = imx_clk_gate2("ecspi4", "ecspi_root", base + 0x6c, 6);
- if (cpu_is_mx6dl())
+ if (cpu_mx6_is_mx6dl())
clks[IMX6DL_CLK_I2C4] = imx_clk_gate2("i2c4", "ipg_per", base + 0x6c, 8);
else
clks[IMX6Q_CLK_ECSPI5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);