Home
last modified time | relevance | path

Searched refs:atclk (Results 1 - 16 of 16) sorted by relevance

/kernel/linux/linux-5.10/drivers/hwtracing/coresight/
H A Dcoresight-tpiu.c54 * @atclk: optional clock for the core parts of the TPIU.
59 struct clk *atclk; member
138 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in tpiu_probe()
139 if (!IS_ERR(drvdata->atclk)) { in tpiu_probe()
140 ret = clk_prepare_enable(drvdata->atclk); in tpiu_probe()
188 if (drvdata && !IS_ERR(drvdata->atclk)) in tpiu_runtime_suspend()
189 clk_disable_unprepare(drvdata->atclk); in tpiu_runtime_suspend()
198 if (drvdata && !IS_ERR(drvdata->atclk)) in tpiu_runtime_resume()
199 clk_prepare_enable(drvdata->atclk); in tpiu_runtime_resume()
[all...]
H A Dcoresight-funnel.c38 * @atclk: optional clock for the core parts of the funnel.
45 struct clk *atclk; member
226 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */ in funnel_probe()
227 if (!IS_ERR(drvdata->atclk)) { in funnel_probe()
228 ret = clk_prepare_enable(drvdata->atclk); in funnel_probe()
272 if (ret && !IS_ERR_OR_NULL(drvdata->atclk)) in funnel_probe()
273 clk_disable_unprepare(drvdata->atclk); in funnel_probe()
291 if (drvdata && !IS_ERR(drvdata->atclk)) in funnel_runtime_suspend()
292 clk_disable_unprepare(drvdata->atclk); in funnel_runtime_suspend()
[all...]
H A Dcoresight-replicator.c33 * @atclk: optional clock for the core parts of the replicator.
40 struct clk *atclk; member
238 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */ in replicator_probe()
239 if (!IS_ERR(drvdata->atclk)) { in replicator_probe()
240 ret = clk_prepare_enable(drvdata->atclk); in replicator_probe()
289 if (ret && !IS_ERR_OR_NULL(drvdata->atclk)) in replicator_probe()
290 clk_disable_unprepare(drvdata->atclk); in replicator_probe()
333 if (drvdata && !IS_ERR(drvdata->atclk)) in replicator_runtime_suspend()
334 clk_disable_unprepare(drvdata->atclk); in replicator_runtime_suspend()
[all...]
H A Dcoresight-etb10.c71 * @atclk: optional clock for the core parts of the ETB.
85 struct clk *atclk; member
746 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in etb_probe()
747 if (!IS_ERR(drvdata->atclk)) { in etb_probe()
748 ret = clk_prepare_enable(drvdata->atclk); in etb_probe()
824 if (drvdata && !IS_ERR(drvdata->atclk)) in etb_runtime_suspend()
825 clk_disable_unprepare(drvdata->atclk); in etb_runtime_suspend()
834 if (drvdata && !IS_ERR(drvdata->atclk)) in etb_runtime_resume()
835 clk_prepare_enable(drvdata->atclk); in etb_runtime_resume()
[all...]
H A Dcoresight-stm.c116 * @atclk: optional clock for the core parts of the STM.
133 struct clk *atclk; member
875 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in stm_probe()
876 if (!IS_ERR(drvdata->atclk)) { in stm_probe()
877 ret = clk_prepare_enable(drvdata->atclk); in stm_probe()
968 if (drvdata && !IS_ERR(drvdata->atclk)) in stm_runtime_suspend()
969 clk_disable_unprepare(drvdata->atclk); in stm_runtime_suspend()
978 if (drvdata && !IS_ERR(drvdata->atclk)) in stm_runtime_resume()
979 clk_prepare_enable(drvdata->atclk); in stm_runtime_resume()
[all...]
H A Dcoresight-etm3x-core.c845 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in etm_probe()
846 if (!IS_ERR(drvdata->atclk)) { in etm_probe()
847 ret = clk_prepare_enable(drvdata->atclk); in etm_probe()
942 if (drvdata && !IS_ERR(drvdata->atclk)) in etm_runtime_suspend()
943 clk_disable_unprepare(drvdata->atclk); in etm_runtime_suspend()
952 if (drvdata && !IS_ERR(drvdata->atclk)) in etm_runtime_resume()
953 clk_prepare_enable(drvdata->atclk); in etm_runtime_resume()
H A Dcoresight-etm.h211 * @atclk: optional clock for the core parts of the ETM.
234 struct clk *atclk; member
/kernel/linux/linux-6.6/drivers/hwtracing/coresight/
H A Dcoresight-tpiu.c54 * @atclk: optional clock for the core parts of the TPIU.
59 struct clk *atclk; member
135 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in tpiu_probe()
136 if (!IS_ERR(drvdata->atclk)) { in tpiu_probe()
137 ret = clk_prepare_enable(drvdata->atclk); in tpiu_probe()
186 if (drvdata && !IS_ERR(drvdata->atclk)) in tpiu_runtime_suspend()
187 clk_disable_unprepare(drvdata->atclk); in tpiu_runtime_suspend()
196 if (drvdata && !IS_ERR(drvdata->atclk)) in tpiu_runtime_resume()
197 clk_prepare_enable(drvdata->atclk); in tpiu_runtime_resume()
[all...]
H A Dcoresight-replicator.c33 * @atclk: optional clock for the core parts of the replicator.
40 struct clk *atclk; member
239 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */ in replicator_probe()
240 if (!IS_ERR(drvdata->atclk)) { in replicator_probe()
241 ret = clk_prepare_enable(drvdata->atclk); in replicator_probe()
291 if (ret && !IS_ERR_OR_NULL(drvdata->atclk)) in replicator_probe()
292 clk_disable_unprepare(drvdata->atclk); in replicator_probe()
335 if (drvdata && !IS_ERR(drvdata->atclk)) in replicator_runtime_suspend()
336 clk_disable_unprepare(drvdata->atclk); in replicator_runtime_suspend()
[all...]
H A Dcoresight-funnel.c38 * @atclk: optional clock for the core parts of the funnel.
45 struct clk *atclk; member
232 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */ in funnel_probe()
233 if (!IS_ERR(drvdata->atclk)) { in funnel_probe()
234 ret = clk_prepare_enable(drvdata->atclk); in funnel_probe()
279 if (ret && !IS_ERR_OR_NULL(drvdata->atclk)) in funnel_probe()
280 clk_disable_unprepare(drvdata->atclk); in funnel_probe()
298 if (drvdata && !IS_ERR(drvdata->atclk)) in funnel_runtime_suspend()
299 clk_disable_unprepare(drvdata->atclk); in funnel_runtime_suspend()
[all...]
H A Dcoresight-etb10.c71 * @atclk: optional clock for the core parts of the ETB.
85 struct clk *atclk; member
735 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in etb_probe()
736 if (!IS_ERR(drvdata->atclk)) { in etb_probe()
737 ret = clk_prepare_enable(drvdata->atclk); in etb_probe()
814 if (drvdata && !IS_ERR(drvdata->atclk)) in etb_runtime_suspend()
815 clk_disable_unprepare(drvdata->atclk); in etb_runtime_suspend()
824 if (drvdata && !IS_ERR(drvdata->atclk)) in etb_runtime_resume()
825 clk_prepare_enable(drvdata->atclk); in etb_runtime_resume()
[all...]
H A Dcoresight-stm.c117 * @atclk: optional clock for the core parts of the STM.
134 struct clk *atclk; member
826 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in stm_probe()
827 if (!IS_ERR(drvdata->atclk)) { in stm_probe()
828 ret = clk_prepare_enable(drvdata->atclk); in stm_probe()
929 if (drvdata && !IS_ERR(drvdata->atclk)) in stm_runtime_suspend()
930 clk_disable_unprepare(drvdata->atclk); in stm_runtime_suspend()
939 if (drvdata && !IS_ERR(drvdata->atclk)) in stm_runtime_resume()
940 clk_prepare_enable(drvdata->atclk); in stm_runtime_resume()
[all...]
H A Dcoresight-etm3x-core.c876 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */ in etm_probe()
877 if (!IS_ERR(drvdata->atclk)) { in etm_probe()
878 ret = clk_prepare_enable(drvdata->atclk); in etm_probe()
972 if (drvdata && !IS_ERR(drvdata->atclk)) in etm_runtime_suspend()
973 clk_disable_unprepare(drvdata->atclk); in etm_runtime_suspend()
982 if (drvdata && !IS_ERR(drvdata->atclk)) in etm_runtime_resume()
983 clk_prepare_enable(drvdata->atclk); in etm_runtime_resume()
H A Dcoresight-etm.h211 * @atclk: optional clock for the core parts of the ETM.
234 struct clk *atclk; member
/kernel/linux/linux-5.10/drivers/clk/samsung/
H A Dclk-exynos5433.c3657 #define E5433_APOLLO_DIV0(cntclk, pclk_dbg, atclk, pclk, aclk) \
3658 (((cntclk) << 24) | ((pclk_dbg) << 20) | ((atclk) << 16) | \
3905 GATE(CLK_ATCLK, "atclk", "div_atclk_atlas",
3909 #define E5433_ATLAS_DIV0(cntclk, pclk_dbg, atclk, pclk, aclk) \
3910 (((cntclk) << 24) | ((pclk_dbg) << 20) | ((atclk) << 16) | \
/kernel/linux/linux-6.6/drivers/clk/samsung/
H A Dclk-exynos5433.c3680 #define E5433_APOLLO_DIV0(cntclk, pclk_dbg, atclk, pclk, aclk) \
3681 (((cntclk) << 24) | ((pclk_dbg) << 20) | ((atclk) << 16) | \
3916 GATE(CLK_ATCLK, "atclk", "div_atclk_atlas",
3920 #define E5433_ATLAS_DIV0(cntclk, pclk_dbg, atclk, pclk, aclk) \
3921 (((cntclk) << 24) | ((pclk_dbg) << 20) | ((atclk) << 16) | \

Completed in 26 milliseconds