1
2
3
4
5
6
7
8
9
10
11
12#include <linux/clk-provider.h>
13#include <linux/module.h>
14#include <linux/slab.h>
15#include <linux/io.h>
16#include <linux/err.h>
17#include <linux/string.h>
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42static void clk_gate_endisable(struct clk_hw *hw, int enable)
43{
44 struct clk_gate *gate = to_clk_gate(hw);
45 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
46 unsigned long uninitialized_var(flags);
47 u32 reg;
48
49 set ^= enable;
50
51 if (gate->lock)
52 spin_lock_irqsave(gate->lock, flags);
53 else
54 __acquire(gate->lock);
55
56 if (gate->flags & CLK_GATE_HIWORD_MASK) {
57 reg = BIT(gate->bit_idx + 16);
58 if (set)
59 reg |= BIT(gate->bit_idx);
60 } else {
61 reg = clk_readl(gate->reg);
62
63 if (set)
64 reg |= BIT(gate->bit_idx);
65 else
66 reg &= ~BIT(gate->bit_idx);
67 }
68
69 clk_writel(reg, gate->reg);
70
71 if (gate->lock)
72 spin_unlock_irqrestore(gate->lock, flags);
73 else
74 __release(gate->lock);
75}
76
77static int clk_gate_enable(struct clk_hw *hw)
78{
79 clk_gate_endisable(hw, 1);
80
81 return 0;
82}
83
84static void clk_gate_disable(struct clk_hw *hw)
85{
86 clk_gate_endisable(hw, 0);
87}
88
89static int clk_gate_is_enabled(struct clk_hw *hw)
90{
91 u32 reg;
92 struct clk_gate *gate = to_clk_gate(hw);
93
94 reg = clk_readl(gate->reg);
95
96
97 if (gate->flags & CLK_GATE_SET_TO_DISABLE)
98 reg ^= BIT(gate->bit_idx);
99
100 reg &= BIT(gate->bit_idx);
101
102 return reg ? 1 : 0;
103}
104
105const struct clk_ops clk_gate_ops = {
106 .enable = clk_gate_enable,
107 .disable = clk_gate_disable,
108 .is_enabled = clk_gate_is_enabled,
109};
110EXPORT_SYMBOL_GPL(clk_gate_ops);
111
112
113
114
115
116
117
118
119
120
121
122
123struct clk *clk_register_gate(struct device *dev, const char *name,
124 const char *parent_name, unsigned long flags,
125 void __iomem *reg, u8 bit_idx,
126 u8 clk_gate_flags, spinlock_t *lock)
127{
128 struct clk_gate *gate;
129 struct clk *clk;
130 struct clk_init_data init;
131
132 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
133 if (bit_idx > 15) {
134 pr_err("gate bit exceeds LOWORD field\n");
135 return ERR_PTR(-EINVAL);
136 }
137 }
138
139
140 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
141 if (!gate)
142 return ERR_PTR(-ENOMEM);
143
144 init.name = name;
145 init.ops = &clk_gate_ops;
146 init.flags = flags | CLK_IS_BASIC;
147 init.parent_names = (parent_name ? &parent_name: NULL);
148 init.num_parents = (parent_name ? 1 : 0);
149
150
151 gate->reg = reg;
152 gate->bit_idx = bit_idx;
153 gate->flags = clk_gate_flags;
154 gate->lock = lock;
155 gate->hw.init = &init;
156
157 clk = clk_register(dev, &gate->hw);
158
159 if (IS_ERR(clk))
160 kfree(gate);
161
162 return clk;
163}
164EXPORT_SYMBOL_GPL(clk_register_gate);
165
166void clk_unregister_gate(struct clk *clk)
167{
168 struct clk_gate *gate;
169 struct clk_hw *hw;
170
171 hw = __clk_get_hw(clk);
172 if (!hw)
173 return;
174
175 gate = to_clk_gate(hw);
176
177 clk_unregister(clk);
178 kfree(gate);
179}
180EXPORT_SYMBOL_GPL(clk_unregister_gate);
181