Linux 4.19.133
[linux/fpc-iii.git] / drivers / clk / imx / clk.h
blobe65c1115d97883c452887e411a4aa3f6e029d5ca
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __MACH_IMX_CLK_H
3 #define __MACH_IMX_CLK_H
5 #include <linux/spinlock.h>
6 #include <linux/clk-provider.h>
8 extern spinlock_t imx_ccm_lock;
10 void imx_check_clocks(struct clk *clks[], unsigned int count);
11 void imx_register_uart_clocks(struct clk ** const clks[]);
13 extern void imx_cscmr1_fixup(u32 *val);
15 enum imx_pllv1_type {
16 IMX_PLLV1_IMX1,
17 IMX_PLLV1_IMX21,
18 IMX_PLLV1_IMX25,
19 IMX_PLLV1_IMX27,
20 IMX_PLLV1_IMX31,
21 IMX_PLLV1_IMX35,
24 struct clk *imx_clk_pllv1(enum imx_pllv1_type type, const char *name,
25 const char *parent, void __iomem *base);
27 struct clk *imx_clk_pllv2(const char *name, const char *parent,
28 void __iomem *base);
30 enum imx_pllv3_type {
31 IMX_PLLV3_GENERIC,
32 IMX_PLLV3_SYS,
33 IMX_PLLV3_USB,
34 IMX_PLLV3_USB_VF610,
35 IMX_PLLV3_AV,
36 IMX_PLLV3_ENET,
37 IMX_PLLV3_ENET_IMX7,
38 IMX_PLLV3_SYS_VF610,
39 IMX_PLLV3_DDR_IMX7,
42 struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name,
43 const char *parent_name, void __iomem *base, u32 div_mask);
45 struct clk *clk_register_gate2(struct device *dev, const char *name,
46 const char *parent_name, unsigned long flags,
47 void __iomem *reg, u8 bit_idx, u8 cgr_val,
48 u8 clk_gate_flags, spinlock_t *lock,
49 unsigned int *share_count);
51 struct clk * imx_obtain_fixed_clock(
52 const char *name, unsigned long rate);
54 struct clk *imx_clk_gate_exclusive(const char *name, const char *parent,
55 void __iomem *reg, u8 shift, u32 exclusive_mask);
57 struct clk *imx_clk_pfd(const char *name, const char *parent_name,
58 void __iomem *reg, u8 idx);
60 struct clk *imx_clk_busy_divider(const char *name, const char *parent_name,
61 void __iomem *reg, u8 shift, u8 width,
62 void __iomem *busy_reg, u8 busy_shift);
64 struct clk *imx_clk_busy_mux(const char *name, void __iomem *reg, u8 shift,
65 u8 width, void __iomem *busy_reg, u8 busy_shift,
66 const char * const *parent_names, int num_parents);
68 struct clk *imx_clk_fixup_divider(const char *name, const char *parent,
69 void __iomem *reg, u8 shift, u8 width,
70 void (*fixup)(u32 *val));
72 struct clk *imx_clk_fixup_mux(const char *name, void __iomem *reg,
73 u8 shift, u8 width, const char * const *parents,
74 int num_parents, void (*fixup)(u32 *val));
76 static inline struct clk *imx_clk_fixed(const char *name, int rate)
78 return clk_register_fixed_rate(NULL, name, NULL, 0, rate);
81 static inline struct clk *imx_clk_mux_ldb(const char *name, void __iomem *reg,
82 u8 shift, u8 width, const char * const *parents,
83 int num_parents)
85 return clk_register_mux(NULL, name, parents, num_parents,
86 CLK_SET_RATE_NO_REPARENT | CLK_SET_RATE_PARENT, reg,
87 shift, width, CLK_MUX_READ_ONLY, &imx_ccm_lock);
90 static inline struct clk *imx_clk_fixed_factor(const char *name,
91 const char *parent, unsigned int mult, unsigned int div)
93 return clk_register_fixed_factor(NULL, name, parent,
94 CLK_SET_RATE_PARENT, mult, div);
97 static inline struct clk *imx_clk_divider(const char *name, const char *parent,
98 void __iomem *reg, u8 shift, u8 width)
100 return clk_register_divider(NULL, name, parent, CLK_SET_RATE_PARENT,
101 reg, shift, width, 0, &imx_ccm_lock);
104 static inline struct clk *imx_clk_divider_flags(const char *name,
105 const char *parent, void __iomem *reg, u8 shift, u8 width,
106 unsigned long flags)
108 return clk_register_divider(NULL, name, parent, flags,
109 reg, shift, width, 0, &imx_ccm_lock);
112 static inline struct clk *imx_clk_divider2(const char *name, const char *parent,
113 void __iomem *reg, u8 shift, u8 width)
115 return clk_register_divider(NULL, name, parent,
116 CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
117 reg, shift, width, 0, &imx_ccm_lock);
120 static inline struct clk *imx_clk_gate(const char *name, const char *parent,
121 void __iomem *reg, u8 shift)
123 return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
124 shift, 0, &imx_ccm_lock);
127 static inline struct clk *imx_clk_gate_flags(const char *name, const char *parent,
128 void __iomem *reg, u8 shift, unsigned long flags)
130 return clk_register_gate(NULL, name, parent, flags | CLK_SET_RATE_PARENT, reg,
131 shift, 0, &imx_ccm_lock);
134 static inline struct clk *imx_clk_gate_dis(const char *name, const char *parent,
135 void __iomem *reg, u8 shift)
137 return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
138 shift, CLK_GATE_SET_TO_DISABLE, &imx_ccm_lock);
141 static inline struct clk *imx_clk_gate2(const char *name, const char *parent,
142 void __iomem *reg, u8 shift)
144 return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
145 shift, 0x3, 0, &imx_ccm_lock, NULL);
148 static inline struct clk *imx_clk_gate2_flags(const char *name, const char *parent,
149 void __iomem *reg, u8 shift, unsigned long flags)
151 return clk_register_gate2(NULL, name, parent, flags | CLK_SET_RATE_PARENT, reg,
152 shift, 0x3, 0, &imx_ccm_lock, NULL);
155 static inline struct clk *imx_clk_gate2_shared(const char *name,
156 const char *parent, void __iomem *reg, u8 shift,
157 unsigned int *share_count)
159 return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
160 shift, 0x3, 0, &imx_ccm_lock, share_count);
163 static inline struct clk *imx_clk_gate2_shared2(const char *name,
164 const char *parent, void __iomem *reg, u8 shift,
165 unsigned int *share_count)
167 return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT |
168 CLK_OPS_PARENT_ENABLE, reg, shift, 0x3, 0,
169 &imx_ccm_lock, share_count);
172 static inline struct clk *imx_clk_gate2_cgr(const char *name,
173 const char *parent, void __iomem *reg, u8 shift, u8 cgr_val)
175 return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
176 shift, cgr_val, 0, &imx_ccm_lock, NULL);
179 static inline struct clk *imx_clk_gate3(const char *name, const char *parent,
180 void __iomem *reg, u8 shift)
182 return clk_register_gate(NULL, name, parent,
183 CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
184 reg, shift, 0, &imx_ccm_lock);
187 static inline struct clk *imx_clk_gate4(const char *name, const char *parent,
188 void __iomem *reg, u8 shift)
190 return clk_register_gate2(NULL, name, parent,
191 CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
192 reg, shift, 0x3, 0, &imx_ccm_lock, NULL);
195 static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg,
196 u8 shift, u8 width, const char * const *parents,
197 int num_parents)
199 return clk_register_mux(NULL, name, parents, num_parents,
200 CLK_SET_RATE_NO_REPARENT, reg, shift,
201 width, 0, &imx_ccm_lock);
204 static inline struct clk *imx_clk_mux2(const char *name, void __iomem *reg,
205 u8 shift, u8 width, const char * const *parents,
206 int num_parents)
208 return clk_register_mux(NULL, name, parents, num_parents,
209 CLK_SET_RATE_NO_REPARENT | CLK_OPS_PARENT_ENABLE,
210 reg, shift, width, 0, &imx_ccm_lock);
213 static inline struct clk *imx_clk_mux_flags(const char *name,
214 void __iomem *reg, u8 shift, u8 width,
215 const char * const *parents, int num_parents,
216 unsigned long flags)
218 return clk_register_mux(NULL, name, parents, num_parents,
219 flags | CLK_SET_RATE_NO_REPARENT, reg, shift, width, 0,
220 &imx_ccm_lock);
223 struct clk *imx_clk_cpu(const char *name, const char *parent_name,
224 struct clk *div, struct clk *mux, struct clk *pll,
225 struct clk *step);
227 #endif