blob: 4956e04a9253076175ed6c7c564fd19e80384382 [file] [log] [blame]
Lukasz Majewski1d7993d2019-06-24 15:50:45 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 DENX Software Engineering
4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
5 */
6#ifndef __MACH_IMX_CLK_H
7#define __MACH_IMX_CLK_H
8
9#include <linux/clk-provider.h>
10
11enum imx_pllv3_type {
12 IMX_PLLV3_GENERIC,
13 IMX_PLLV3_SYS,
14 IMX_PLLV3_USB,
15 IMX_PLLV3_USB_VF610,
16 IMX_PLLV3_AV,
17 IMX_PLLV3_ENET,
18 IMX_PLLV3_ENET_IMX7,
19 IMX_PLLV3_SYS_VF610,
20 IMX_PLLV3_DDR_IMX7,
21};
22
Peng Fanbbb58712019-08-19 07:53:58 +000023enum imx_pll14xx_type {
24 PLL_1416X,
25 PLL_1443X,
26};
27
28/* NOTE: Rate table should be kept sorted in descending order. */
29struct imx_pll14xx_rate_table {
30 unsigned int rate;
31 unsigned int pdiv;
32 unsigned int mdiv;
33 unsigned int sdiv;
34 unsigned int kdiv;
35};
36
37struct imx_pll14xx_clk {
38 enum imx_pll14xx_type type;
39 const struct imx_pll14xx_rate_table *rate_table;
40 int rate_count;
41 int flags;
42};
43
44struct clk *imx_clk_pll14xx(const char *name, const char *parent_name,
45 void __iomem *base,
46 const struct imx_pll14xx_clk *pll_clk);
47
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020048struct clk *clk_register_gate2(struct device *dev, const char *name,
49 const char *parent_name, unsigned long flags,
50 void __iomem *reg, u8 bit_idx, u8 cgr_val,
51 u8 clk_gate_flags);
52
53struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name,
54 const char *parent_name, void __iomem *base,
55 u32 div_mask);
56
57static inline struct clk *imx_clk_gate2(const char *name, const char *parent,
58 void __iomem *reg, u8 shift)
59{
60 return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
61 shift, 0x3, 0);
62}
63
Peng Fanb6c56d92019-07-31 07:01:42 +000064static inline struct clk *imx_clk_gate4(const char *name, const char *parent,
65 void __iomem *reg, u8 shift)
66{
67 return clk_register_gate2(NULL, name, parent,
68 CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
69 reg, shift, 0x3, 0);
70}
71
72static inline struct clk *imx_clk_gate4_flags(const char *name,
73 const char *parent, void __iomem *reg, u8 shift,
74 unsigned long flags)
75{
76 return clk_register_gate2(NULL, name, parent,
77 flags | CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
78 reg, shift, 0x3, 0);
79}
80
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020081static inline struct clk *imx_clk_fixed_factor(const char *name,
82 const char *parent, unsigned int mult, unsigned int div)
83{
84 return clk_register_fixed_factor(NULL, name, parent,
85 CLK_SET_RATE_PARENT, mult, div);
86}
87
88static inline struct clk *imx_clk_divider(const char *name, const char *parent,
89 void __iomem *reg, u8 shift, u8 width)
90{
91 return clk_register_divider(NULL, name, parent, CLK_SET_RATE_PARENT,
92 reg, shift, width, 0);
93}
94
Peng Fanb6c56d92019-07-31 07:01:42 +000095static inline struct clk *imx_clk_divider2(const char *name, const char *parent,
96 void __iomem *reg, u8 shift, u8 width)
97{
98 return clk_register_divider(NULL, name, parent,
99 CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
100 reg, shift, width, 0);
101}
102
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200103struct clk *imx_clk_pfd(const char *name, const char *parent_name,
104 void __iomem *reg, u8 idx);
105
106struct clk *imx_clk_fixup_mux(const char *name, void __iomem *reg,
107 u8 shift, u8 width, const char * const *parents,
108 int num_parents, void (*fixup)(u32 *val));
109
Peng Fanb6c56d92019-07-31 07:01:42 +0000110static inline struct clk *imx_clk_mux_flags(const char *name,
111 void __iomem *reg, u8 shift, u8 width,
112 const char * const *parents, int num_parents,
113 unsigned long flags)
114{
115 return clk_register_mux(NULL, name, parents, num_parents,
116 flags | CLK_SET_RATE_NO_REPARENT, reg, shift,
117 width, 0);
118}
119
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200120static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg,
121 u8 shift, u8 width, const char * const *parents,
122 int num_parents)
123{
124 return clk_register_mux(NULL, name, parents, num_parents,
125 CLK_SET_RATE_NO_REPARENT, reg, shift,
126 width, 0);
127}
128
Peng Fanb6c56d92019-07-31 07:01:42 +0000129static inline struct clk *imx_clk_mux2(const char *name, void __iomem *reg,
130 u8 shift, u8 width, const char * const *parents,
131 int num_parents)
132{
133 return clk_register_mux(NULL, name, parents, num_parents,
134 CLK_SET_RATE_NO_REPARENT | CLK_OPS_PARENT_ENABLE,
135 reg, shift, width, 0);
136}
137
138static inline struct clk *imx_clk_gate(const char *name, const char *parent,
139 void __iomem *reg, u8 shift)
140{
141 return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
142 shift, 0, NULL);
143}
144
145static inline struct clk *imx_clk_gate_flags(const char *name, const char *parent,
146 void __iomem *reg, u8 shift, unsigned long flags)
147{
148 return clk_register_gate(NULL, name, parent, flags | CLK_SET_RATE_PARENT, reg,
149 shift, 0, NULL);
150}
151
152static inline struct clk *imx_clk_gate3(const char *name, const char *parent,
153 void __iomem *reg, u8 shift)
154{
155 return clk_register_gate(NULL, name, parent,
156 CLK_SET_RATE_PARENT | CLK_OPS_PARENT_ENABLE,
157 reg, shift, 0, NULL);
158}
159
160struct clk *imx8m_clk_composite_flags(const char *name,
161 const char * const *parent_names,
162 int num_parents, void __iomem *reg, unsigned long flags);
163
164#define __imx8m_clk_composite(name, parent_names, reg, flags) \
165 imx8m_clk_composite_flags(name, parent_names, \
166 ARRAY_SIZE(parent_names), reg, \
167 flags | CLK_SET_RATE_NO_REPARENT | CLK_OPS_PARENT_ENABLE)
168
169#define imx8m_clk_composite(name, parent_names, reg) \
170 __imx8m_clk_composite(name, parent_names, reg, 0)
171
172#define imx8m_clk_composite_critical(name, parent_names, reg) \
173 __imx8m_clk_composite(name, parent_names, reg, CLK_IS_CRITICAL)
174
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200175#endif /* __MACH_IMX_CLK_H */