summaryrefslogtreecommitdiffstats
path: root/include/linux/clk-provider.h
diff options
context:
space:
mode:
authorStephen Boyd2015-07-16 21:50:27 +0200
committerStephen Boyd2015-07-28 20:58:50 +0200
commit9783c0d98501aa146ff467916ab4b8830a655d7c (patch)
treef484737cf90feb9093d15c82c2f6e5e432d14730 /include/linux/clk-provider.h
parentclk: twl6040: Convert to use devm_clk_register (diff)
downloadkernel-qcow2-linux-9783c0d98501aa146ff467916ab4b8830a655d7c.tar.gz
kernel-qcow2-linux-9783c0d98501aa146ff467916ab4b8830a655d7c.tar.xz
kernel-qcow2-linux-9783c0d98501aa146ff467916ab4b8830a655d7c.zip
clk: Allow providers to configure min/max rates
clk providers are using the consumer APIs to set min/max rates on the clock they're providing. To encourage clk providers to move away from the consumer APIs, add a provider API to set the min/max rate of a clock. The assumption is that this is done before the clock can be requested via clk_get() and that the clock rate is already within the boundaries of the min/max that's configured. Tested-by: Sudeep Holla <sudeep.holla@arm.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r--include/linux/clk-provider.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index 2116e2b8a5f2..d62e7eab1dbe 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -619,6 +619,8 @@ int __clk_determine_rate(struct clk_hw *core, struct clk_rate_request *req);
int __clk_mux_determine_rate_closest(struct clk_hw *hw,
struct clk_rate_request *req);
void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent);
+void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
+ unsigned long max_rate);
static inline void __clk_hw_set_clk(struct clk_hw *dst, struct clk_hw *src)
{