diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2012-03-07 15:01:28 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2012-04-25 11:03:46 -0400 |
commit | 6c7b06850c5a1615cc9e660e0d24ce2025bb9bcf (patch) | |
tree | 985229601193226b294602a7a1c19337607d2300 /arch/arm/mach-imx/clk.h | |
parent | eb92044eb3d59d29c9812e85e3a4bf41f6f38e3a (diff) |
ARM i.MX: prepare for common clock framework
- Add necessary #ifdefs for CONFIG_COMMON_CLOCK
- Add a global spinlock to protect the CCM registers
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/clk.h')
-rw-r--r-- | arch/arm/mach-imx/clk.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/clk.h b/arch/arm/mach-imx/clk.h new file mode 100644 index 000000000000..00f2590e0b38 --- /dev/null +++ b/arch/arm/mach-imx/clk.h | |||
@@ -0,0 +1,44 @@ | |||
1 | #ifndef __MACH_IMX_CLK_H | ||
2 | #define __MACH_IMX_CLK_H | ||
3 | |||
4 | #include <linux/spinlock.h> | ||
5 | #include <linux/clk-provider.h> | ||
6 | #include <mach/clock.h> | ||
7 | |||
8 | struct clk *imx_clk_pllv1(const char *name, char *parent, | ||
9 | void __iomem *base); | ||
10 | |||
11 | static inline struct clk *imx_clk_fixed(const char *name, int rate) | ||
12 | { | ||
13 | return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate); | ||
14 | } | ||
15 | |||
16 | static inline struct clk *imx_clk_divider(const char *name, const char *parent, | ||
17 | void __iomem *reg, u8 shift, u8 width) | ||
18 | { | ||
19 | return clk_register_divider(NULL, name, parent, CLK_SET_RATE_PARENT, | ||
20 | reg, shift, width, 0, &imx_ccm_lock); | ||
21 | } | ||
22 | |||
23 | static inline struct clk *imx_clk_gate(const char *name, const char *parent, | ||
24 | void __iomem *reg, u8 shift) | ||
25 | { | ||
26 | return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg, | ||
27 | shift, 0, &imx_ccm_lock); | ||
28 | } | ||
29 | |||
30 | static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg, | ||
31 | u8 shift, u8 width, const char **parents, int num_parents) | ||
32 | { | ||
33 | return clk_register_mux(NULL, name, parents, num_parents, 0, reg, shift, | ||
34 | width, 0, &imx_ccm_lock); | ||
35 | } | ||
36 | |||
37 | static inline struct clk *imx_clk_fixed_factor(const char *name, | ||
38 | const char *parent, unsigned int mult, unsigned int div) | ||
39 | { | ||
40 | return clk_register_fixed_factor(NULL, name, parent, | ||
41 | CLK_SET_RATE_PARENT, mult, div); | ||
42 | } | ||
43 | |||
44 | #endif | ||