clk: mediatek: clk-mux: Propagate struct device for mtk-mux
authorAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Fri, 20 Jan 2023 09:20:36 +0000 (10:20 +0100)
committerStephen Boyd <sboyd@kernel.org>
Tue, 31 Jan 2023 00:45:10 +0000 (16:45 -0800)
Like done for other clocks, propagate struct device for mtk mux clocks
registered through clk-mux helpers to enable runtime pm support.

Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Tested-by: Miles Chen <miles.chen@mediatek.com>
Link: https://lore.kernel.org/r/20230120092053.182923-7-angelogioacchino.delregno@collabora.com
Tested-by: Mingming Su <mingming.su@mediatek.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
12 files changed:
drivers/clk/mediatek/clk-mt6765.c
drivers/clk/mediatek/clk-mt6779.c
drivers/clk/mediatek/clk-mt6795-topckgen.c
drivers/clk/mediatek/clk-mt7986-infracfg.c
drivers/clk/mediatek/clk-mt7986-topckgen.c
drivers/clk/mediatek/clk-mt8183.c
drivers/clk/mediatek/clk-mt8186-topckgen.c
drivers/clk/mediatek/clk-mt8192.c
drivers/clk/mediatek/clk-mt8195-topckgen.c
drivers/clk/mediatek/clk-mt8365.c
drivers/clk/mediatek/clk-mux.c
drivers/clk/mediatek/clk-mux.h

index 0fa0e4ed877a34042c36e2588bd65d57d3a8d972..6f5c92a7f62041ee0808670137c47c884febe7fa 100644 (file)
@@ -826,7 +826,8 @@ static int clk_mt6765_top_probe(struct platform_device *pdev)
                                    clk_data);
        mtk_clk_register_factors(top_divs, ARRAY_SIZE(top_divs),
                                 clk_data);
-       mtk_clk_register_muxes(top_muxes, ARRAY_SIZE(top_muxes), node,
+       mtk_clk_register_muxes(&pdev->dev, top_muxes,
+                              ARRAY_SIZE(top_muxes), node,
                               &mt6765_clk_lock, clk_data);
        mtk_clk_register_gates(&pdev->dev, node, top_clks,
                               ARRAY_SIZE(top_clks), clk_data);
index a1c387d9731a7d10359312d42c964c82adfaa6d5..248aaa50ced14225bd81b596b86399dc807243b6 100644 (file)
@@ -1244,8 +1244,9 @@ static int clk_mt6779_top_probe(struct platform_device *pdev)
 
        mtk_clk_register_factors(top_divs, ARRAY_SIZE(top_divs), clk_data);
 
-       mtk_clk_register_muxes(top_muxes, ARRAY_SIZE(top_muxes),
-                              node, &mt6779_clk_lock, clk_data);
+       mtk_clk_register_muxes(&pdev->dev, top_muxes,
+                              ARRAY_SIZE(top_muxes), node,
+                              &mt6779_clk_lock, clk_data);
 
        mtk_clk_register_composites(&pdev->dev, top_aud_muxes,
                                    ARRAY_SIZE(top_aud_muxes), base,
index 62beca56ee019c1bc297b5842e03602cbbc627be..65fd8aa69afd7aa839f112e68b84694feb9e60cb 100644 (file)
@@ -552,7 +552,8 @@ static int clk_mt6795_topckgen_probe(struct platform_device *pdev)
        if (ret)
                goto unregister_fixed_clks;
 
-       ret = mtk_clk_register_muxes(top_muxes, ARRAY_SIZE(top_muxes), node,
+       ret = mtk_clk_register_muxes(&pdev->dev, top_muxes,
+                                    ARRAY_SIZE(top_muxes), node,
                                     &mt6795_top_clk_lock, clk_data);
        if (ret)
                goto unregister_factors;
index a3aee4bc9e0c34ca28b993d91797e2b44964df99..e80c92167c8fcffe486b45c7ae62a5277fd860a3 100644 (file)
@@ -190,7 +190,8 @@ static int clk_mt7986_infracfg_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        mtk_clk_register_factors(infra_divs, ARRAY_SIZE(infra_divs), clk_data);
-       mtk_clk_register_muxes(infra_muxes, ARRAY_SIZE(infra_muxes), node,
+       mtk_clk_register_muxes(&pdev->dev, infra_muxes,
+                              ARRAY_SIZE(infra_muxes), node,
                               &mt7986_clk_lock, clk_data);
        mtk_clk_register_gates(&pdev->dev, node, infra_clks,
                               ARRAY_SIZE(infra_clks), clk_data);
index de5121cf28774f718116015bbbb361071332e1a3..c9bf47e6098fdfca74e6560f1c279d3b8c72b565 100644 (file)
@@ -303,7 +303,8 @@ static int clk_mt7986_topckgen_probe(struct platform_device *pdev)
        mtk_clk_register_fixed_clks(top_fixed_clks, ARRAY_SIZE(top_fixed_clks),
                                    clk_data);
        mtk_clk_register_factors(top_divs, ARRAY_SIZE(top_divs), clk_data);
-       mtk_clk_register_muxes(top_muxes, ARRAY_SIZE(top_muxes), node,
+       mtk_clk_register_muxes(&pdev->dev, top_muxes,
+                              ARRAY_SIZE(top_muxes), node,
                               &mt7986_clk_lock, clk_data);
 
        clk_prepare_enable(clk_data->hws[CLK_TOP_SYSAXI_SEL]->clk);
index 34374b2862acfbe4b9e9826bd35cc8df1260d3d1..9d29db8a7c7b7ad4944f403be1d28bc904fc5434 100644 (file)
@@ -1166,8 +1166,9 @@ static int clk_mt8183_top_probe(struct platform_device *pdev)
 
        mtk_clk_register_factors(top_divs, ARRAY_SIZE(top_divs), top_clk_data);
 
-       mtk_clk_register_muxes(top_muxes, ARRAY_SIZE(top_muxes),
-               node, &mt8183_clk_lock, top_clk_data);
+       mtk_clk_register_muxes(&pdev->dev, top_muxes,
+                              ARRAY_SIZE(top_muxes), node,
+                              &mt8183_clk_lock, top_clk_data);
 
        mtk_clk_register_composites(&pdev->dev, top_aud_muxes,
                                    ARRAY_SIZE(top_aud_muxes), base,
index 9344c09136ee91e5ccef5c38d9ccffc53b00c7cd..3ce2818dcbdde7b5fc5fc7463be00053ead391d6 100644 (file)
@@ -737,7 +737,8 @@ static int clk_mt8186_topck_probe(struct platform_device *pdev)
        if (r)
                goto unregister_fixed_clks;
 
-       r = mtk_clk_register_muxes(top_mtk_muxes, ARRAY_SIZE(top_mtk_muxes), node,
+       r = mtk_clk_register_muxes(&pdev->dev, top_mtk_muxes,
+                                  ARRAY_SIZE(top_mtk_muxes), node,
                                   &mt8186_clk_lock, clk_data);
        if (r)
                goto unregister_factors;
index 2d04218e6806797ae2d2498127d77b258e791ec8..09d065c680e4da6bec3dd5e2ed684083eb9cb63f 100644 (file)
@@ -1112,7 +1112,8 @@ static int clk_mt8192_top_probe(struct platform_device *pdev)
        if (r)
                goto unregister_early_factors;
 
-       r = mtk_clk_register_muxes(top_mtk_muxes, ARRAY_SIZE(top_mtk_muxes), node,
+       r = mtk_clk_register_muxes(&pdev->dev, top_mtk_muxes,
+                                  ARRAY_SIZE(top_mtk_muxes), node,
                                   &mt8192_clk_lock, top_clk_data);
        if (r)
                goto unregister_factors;
index 8202e7272f128b62ffaa584ca913cb9abdd975ec..cf520f85de73c7dfacd89a8347a54570f89df9b3 100644 (file)
@@ -1262,7 +1262,8 @@ static int clk_mt8195_topck_probe(struct platform_device *pdev)
        if (r)
                goto unregister_fixed_clks;
 
-       r = mtk_clk_register_muxes(top_mtk_muxes, ARRAY_SIZE(top_mtk_muxes), node,
+       r = mtk_clk_register_muxes(&pdev->dev, top_mtk_muxes,
+                                  ARRAY_SIZE(top_mtk_muxes), node,
                                   &mt8195_clk_lock, top_clk_data);
        if (r)
                goto unregister_factors;
index 0482a8aa43cc9af524f0d7bb5a8037a219c013c5..c9faa07ec0a6403bc3b365dc2c07705fefc68406 100644 (file)
@@ -947,7 +947,8 @@ static int clk_mt8365_top_probe(struct platform_device *pdev)
        if (ret)
                goto unregister_fixed_clks;
 
-       ret = mtk_clk_register_muxes(top_muxes, ARRAY_SIZE(top_muxes), node,
+       ret = mtk_clk_register_muxes(&pdev->dev, top_muxes,
+                                    ARRAY_SIZE(top_muxes), node,
                                     &mt8365_clk_lock, clk_data);
        if (ret)
                goto unregister_factors;
index ba1720b9e23101929a54b4c09955f0ec93d52342..c8593554239d6e9da6612161a9479291f2e2b884 100644 (file)
@@ -154,9 +154,10 @@ const struct clk_ops mtk_mux_gate_clr_set_upd_ops  = {
 };
 EXPORT_SYMBOL_GPL(mtk_mux_gate_clr_set_upd_ops);
 
-static struct clk_hw *mtk_clk_register_mux(const struct mtk_mux *mux,
-                                struct regmap *regmap,
-                                spinlock_t *lock)
+static struct clk_hw *mtk_clk_register_mux(struct device *dev,
+                                          const struct mtk_mux *mux,
+                                          struct regmap *regmap,
+                                          spinlock_t *lock)
 {
        struct mtk_clk_mux *clk_mux;
        struct clk_init_data init = {};
@@ -177,7 +178,7 @@ static struct clk_hw *mtk_clk_register_mux(const struct mtk_mux *mux,
        clk_mux->lock = lock;
        clk_mux->hw.init = &init;
 
-       ret = clk_hw_register(NULL, &clk_mux->hw);
+       ret = clk_hw_register(dev, &clk_mux->hw);
        if (ret) {
                kfree(clk_mux);
                return ERR_PTR(ret);
@@ -198,7 +199,8 @@ static void mtk_clk_unregister_mux(struct clk_hw *hw)
        kfree(mux);
 }
 
-int mtk_clk_register_muxes(const struct mtk_mux *muxes,
+int mtk_clk_register_muxes(struct device *dev,
+                          const struct mtk_mux *muxes,
                           int num, struct device_node *node,
                           spinlock_t *lock,
                           struct clk_hw_onecell_data *clk_data)
@@ -222,7 +224,7 @@ int mtk_clk_register_muxes(const struct mtk_mux *muxes,
                        continue;
                }
 
-               hw = mtk_clk_register_mux(mux, regmap, lock);
+               hw = mtk_clk_register_mux(dev, mux, regmap, lock);
 
                if (IS_ERR(hw)) {
                        pr_err("Failed to register clk %s: %pe\n", mux->name,
index 83ff420f4ebe6f49627018f6f616a820d6c7b7af..7ecb963b0ec6880e52466248e1832eb25d9eef41 100644 (file)
@@ -83,7 +83,8 @@ extern const struct clk_ops mtk_mux_gate_clr_set_upd_ops;
                        0, _upd_ofs, _upd, CLK_SET_RATE_PARENT,         \
                        mtk_mux_clr_set_upd_ops)
 
-int mtk_clk_register_muxes(const struct mtk_mux *muxes,
+int mtk_clk_register_muxes(struct device *dev,
+                          const struct mtk_mux *muxes,
                           int num, struct device_node *node,
                           spinlock_t *lock,
                           struct clk_hw_onecell_data *clk_data);