]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-imx/clk.h
ARM: imx: disable pll8_mlb in mx6q_clks
[karo-tx-linux.git] / arch / arm / mach-imx / clk.h
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
7 extern spinlock_t imx_ccm_lock;
8
9 struct clk *imx_clk_pllv1(const char *name, const char *parent,
10                 void __iomem *base);
11
12 struct clk *imx_clk_pllv2(const char *name, const char *parent,
13                 void __iomem *base);
14
15 enum imx_pllv3_type {
16         IMX_PLLV3_GENERIC,
17         IMX_PLLV3_SYS,
18         IMX_PLLV3_USB,
19         IMX_PLLV3_AV,
20         IMX_PLLV3_ENET,
21         IMX_PLLV3_MLB,
22 };
23
24 struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name,
25                 const char *parent_name, void __iomem *base, u32 div_mask);
26
27 struct clk *clk_register_gate2(struct device *dev, const char *name,
28                 const char *parent_name, unsigned long flags,
29                 void __iomem *reg, u8 bit_idx,
30                 u8 clk_gate_flags, spinlock_t *lock);
31
32 struct clk * imx_obtain_fixed_clock(
33                         const char *name, unsigned long rate);
34
35 static inline struct clk *imx_clk_gate2(const char *name, const char *parent,
36                 void __iomem *reg, u8 shift)
37 {
38         return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
39                         shift, 0, &imx_ccm_lock);
40 }
41
42 struct clk *imx_clk_pfd(const char *name, const char *parent_name,
43                 void __iomem *reg, u8 idx);
44
45 struct clk *imx_clk_busy_divider(const char *name, const char *parent_name,
46                                  void __iomem *reg, u8 shift, u8 width,
47                                  void __iomem *busy_reg, u8 busy_shift);
48
49 struct clk *imx_clk_busy_mux(const char *name, void __iomem *reg, u8 shift,
50                              u8 width, void __iomem *busy_reg, u8 busy_shift,
51                              const char **parent_names, int num_parents);
52
53 static inline struct clk *imx_clk_fixed(const char *name, int rate)
54 {
55         return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate);
56 }
57
58 static inline struct clk *imx_clk_divider(const char *name, const char *parent,
59                 void __iomem *reg, u8 shift, u8 width)
60 {
61         return clk_register_divider(NULL, name, parent, CLK_SET_RATE_PARENT,
62                         reg, shift, width, 0, &imx_ccm_lock);
63 }
64
65 static inline struct clk *imx_clk_divider_flags(const char *name,
66                 const char *parent, void __iomem *reg, u8 shift, u8 width,
67                 unsigned long flags)
68 {
69         return clk_register_divider(NULL, name, parent, flags,
70                         reg, shift, width, 0, &imx_ccm_lock);
71 }
72
73 static inline struct clk *imx_clk_gate(const char *name, const char *parent,
74                 void __iomem *reg, u8 shift)
75 {
76         return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
77                         shift, 0, &imx_ccm_lock);
78 }
79
80 static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg,
81                 u8 shift, u8 width, const char **parents, int num_parents)
82 {
83         return clk_register_mux(NULL, name, parents, num_parents, 0, reg, shift,
84                         width, 0, &imx_ccm_lock);
85 }
86
87 static inline struct clk *imx_clk_mux_flags(const char *name,
88                 void __iomem *reg, u8 shift, u8 width, const char **parents,
89                 int num_parents, unsigned long flags)
90 {
91         return clk_register_mux(NULL, name, parents, num_parents,
92                         flags, reg, shift, width, 0,
93                         &imx_ccm_lock);
94 }
95
96 static inline struct clk *imx_clk_fixed_factor(const char *name,
97                 const char *parent, unsigned int mult, unsigned int div)
98 {
99         return clk_register_fixed_factor(NULL, name, parent,
100                         CLK_SET_RATE_PARENT, mult, div);
101 }
102
103 #endif