Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1686071
| From | Bjorn Andersson <bjorn.andersson@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] clk: Provide bulk prepare_enable disable_unprepare variants |
| Date | 2017-07-13 00:10 +0200 |
| Message-ID | <u2xZv-5w6-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This extends the existing set of bulk helpers with prepare_enable and
disable_unprepare variants.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---
include/linux/clk.h | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/include/linux/clk.h b/include/linux/clk.h
index 91bd464f4c9b..12c96d94d1fa 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -657,6 +657,28 @@ static inline void clk_disable_unprepare(struct clk *clk)
clk_unprepare(clk);
}
+static inline int clk_bulk_prepare_enable(int num_clks,
+ struct clk_bulk_data *clks)
+{
+ int ret;
+
+ ret = clk_bulk_prepare(num_clks, clks);
+ if (ret)
+ return ret;
+ ret = clk_bulk_enable(num_clks, clks);
+ if (ret)
+ clk_bulk_unprepare(num_clks, clks);
+
+ return ret;
+}
+
+static inline void clk_bulk_disable_unprepare(int num_clks,
+ struct clk_bulk_data *clks)
+{
+ clk_bulk_disable(num_clks, clks);
+ clk_bulk_unprepare(num_clks, clks);
+}
+
#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
struct clk *of_clk_get(struct device_node *np, int index);
struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
--
2.12.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] clk: Provide bulk prepare_enable disable_unprepare variants Bjorn Andersson <bjorn.andersson@linaro.org> - 2017-07-13 00:10 +0200
Re: [PATCH] clk: Provide bulk prepare_enable disable_unprepare variants Stephen Boyd <sboyd@codeaurora.org> - 2017-07-13 01:10 +0200
Re: [PATCH] clk: Provide bulk prepare_enable disable_unprepare variants Bjorn Andersson <bjorn.andersson@linaro.org> - 2017-07-13 06:50 +0200
Re: [PATCH] clk: Provide bulk prepare_enable disable_unprepare variants Stephen Boyd <sboyd@codeaurora.org> - 2017-07-13 08:50 +0200
csiph-web