clk: imx: add imx_obtain_fixed_of_clock()
authorOleksij Rempel <o.rempel@pengutronix.de>
Tue, 31 Jan 2023 08:46:37 +0000 (09:46 +0100)
committerAbel Vesa <abel.vesa@linaro.org>
Tue, 31 Jan 2023 12:45:14 +0000 (14:45 +0200)
Add imx_obtain_fixed_of_clock() to optionally add clock not configured in
the devicetree.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
Link: https://lore.kernel.org/r/20230131084642.709385-15-o.rempel@pengutronix.de
drivers/clk/imx/clk.c
drivers/clk/imx/clk.h

index 4f7db3c9e144e2210cd84f2f4bdf10607882b19c..19cde59a20cb1d26978fdbaaa52c891261c6baa5 100644 (file)
@@ -110,6 +110,20 @@ struct clk_hw *imx_obtain_fixed_clock_hw(
        return __clk_get_hw(clk);
 }
 
+struct clk_hw *imx_obtain_fixed_of_clock(struct device_node *np,
+                                        const char *name, unsigned long rate)
+{
+       struct clk *clk = of_clk_get_by_name(np, name);
+       struct clk_hw *hw;
+
+       if (IS_ERR(clk))
+               hw = imx_obtain_fixed_clock_hw(name, rate);
+       else
+               hw = __clk_get_hw(clk);
+
+       return hw;
+}
+
 struct clk_hw *imx_get_clk_hw_by_name(struct device_node *np, const char *name)
 {
        struct clk *clk;
index afc1ea0f5bcf039299d162e083eb5efd00ad9f43..3d94722bbf992107372ae3bf063cbe34144ec710 100644 (file)
@@ -288,6 +288,9 @@ struct clk * imx_obtain_fixed_clock(
 struct clk_hw *imx_obtain_fixed_clock_hw(
                        const char *name, unsigned long rate);
 
+struct clk_hw *imx_obtain_fixed_of_clock(struct device_node *np,
+                                        const char *name, unsigned long rate);
+
 struct clk_hw *imx_get_clk_hw_by_name(struct device_node *np, const char *name);
 
 struct clk_hw *imx_clk_hw_gate_exclusive(const char *name, const char *parent,