diff options
author | Tomasz Figa <tomasz.figa@gmail.com> | 2013-07-22 19:49:18 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-08-05 14:56:46 -0400 |
commit | c57acd14ac2d53e40f5c17701c3cc3a092a07b35 (patch) | |
tree | f26fc4f7c7449f3ccfb2e36090561adbf0504bd2 /include/linux/clk-provider.h | |
parent | 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b (diff) |
clk: mux: Add support for read-only muxes.
Some platforms have read-only clock muxes that are preconfigured at
reset and cannot be changed at runtime. This patch extends mux clock
driver to allow handling such read-only muxes by adding new
CLK_MUX_READ_ONLY mux flag.
Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 1ec14a732176..9487b96939e8 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
@@ -327,8 +327,10 @@ struct clk_mux { | |||
327 | #define CLK_MUX_INDEX_ONE BIT(0) | 327 | #define CLK_MUX_INDEX_ONE BIT(0) |
328 | #define CLK_MUX_INDEX_BIT BIT(1) | 328 | #define CLK_MUX_INDEX_BIT BIT(1) |
329 | #define CLK_MUX_HIWORD_MASK BIT(2) | 329 | #define CLK_MUX_HIWORD_MASK BIT(2) |
330 | #define CLK_MUX_READ_ONLY BIT(3) /* mux setting cannot be changed */ | ||
330 | 331 | ||
331 | extern const struct clk_ops clk_mux_ops; | 332 | extern const struct clk_ops clk_mux_ops; |
333 | extern const struct clk_ops clk_mux_ro_ops; | ||
332 | 334 | ||
333 | struct clk *clk_register_mux(struct device *dev, const char *name, | 335 | struct clk *clk_register_mux(struct device *dev, const char *name, |
334 | const char **parent_names, u8 num_parents, unsigned long flags, | 336 | const char **parent_names, u8 num_parents, unsigned long flags, |