Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
5 *
6 * Gated clock implementation
7 */
8
9#include <linux/clk-provider.h>
10#include <linux/device.h>
11#include <linux/module.h>
12#include <linux/slab.h>
13#include <linux/io.h>
14#include <linux/err.h>
15#include <linux/string.h>
16
17/**
18 * DOC: basic gatable clock which can gate and ungate its output
19 *
20 * Traits of this clock:
21 * prepare - clk_(un)prepare only ensures parent is (un)prepared
22 * enable - clk_enable and clk_disable are functional & control gating
23 * rate - inherits rate from parent. No clk_set_rate support
24 * parent - fixed parent. No clk_set_parent support
25 */
26
27static inline u32 clk_gate_readl(struct clk_gate *gate)
28{
29 if (gate->flags & CLK_GATE_BIG_ENDIAN)
30 return ioread32be(gate->reg);
31
32 return readl(gate->reg);
33}
34
35static inline void clk_gate_writel(struct clk_gate *gate, u32 val)
36{
37 if (gate->flags & CLK_GATE_BIG_ENDIAN)
38 iowrite32be(val, gate->reg);
39 else
40 writel(val, gate->reg);
41}
42
43/*
44 * It works on following logic:
45 *
46 * For enabling clock, enable = 1
47 * set2dis = 1 -> clear bit -> set = 0
48 * set2dis = 0 -> set bit -> set = 1
49 *
50 * For disabling clock, enable = 0
51 * set2dis = 1 -> set bit -> set = 1
52 * set2dis = 0 -> clear bit -> set = 0
53 *
54 * So, result is always: enable xor set2dis.
55 */
56static void clk_gate_endisable(struct clk_hw *hw, int enable)
57{
58 struct clk_gate *gate = to_clk_gate(hw);
59 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
60 unsigned long flags;
61 u32 reg;
62
63 set ^= enable;
64
65 if (gate->lock)
66 spin_lock_irqsave(gate->lock, flags);
67 else
68 __acquire(gate->lock);
69
70 if (gate->flags & CLK_GATE_HIWORD_MASK) {
71 reg = BIT(gate->bit_idx + 16);
72 if (set)
73 reg |= BIT(gate->bit_idx);
74 } else {
75 reg = clk_gate_readl(gate);
76
77 if (set)
78 reg |= BIT(gate->bit_idx);
79 else
80 reg &= ~BIT(gate->bit_idx);
81 }
82
83 clk_gate_writel(gate, reg);
84
85 if (gate->lock)
86 spin_unlock_irqrestore(gate->lock, flags);
87 else
88 __release(gate->lock);
89}
90
91static int clk_gate_enable(struct clk_hw *hw)
92{
93 clk_gate_endisable(hw, 1);
94
95 return 0;
96}
97
98static void clk_gate_disable(struct clk_hw *hw)
99{
100 clk_gate_endisable(hw, 0);
101}
102
103int clk_gate_is_enabled(struct clk_hw *hw)
104{
105 u32 reg;
106 struct clk_gate *gate = to_clk_gate(hw);
107
108 reg = clk_gate_readl(gate);
109
110 /* if a set bit disables this clk, flip it before masking */
111 if (gate->flags & CLK_GATE_SET_TO_DISABLE)
112 reg ^= BIT(gate->bit_idx);
113
114 reg &= BIT(gate->bit_idx);
115
116 return reg ? 1 : 0;
117}
118EXPORT_SYMBOL_GPL(clk_gate_is_enabled);
119
120const struct clk_ops clk_gate_ops = {
121 .enable = clk_gate_enable,
122 .disable = clk_gate_disable,
123 .is_enabled = clk_gate_is_enabled,
124};
125EXPORT_SYMBOL_GPL(clk_gate_ops);
126
127struct clk_hw *__clk_hw_register_gate(struct device *dev,
128 struct device_node *np, const char *name,
129 const char *parent_name, const struct clk_hw *parent_hw,
130 const struct clk_parent_data *parent_data,
131 unsigned long flags,
132 void __iomem *reg, u8 bit_idx,
133 u8 clk_gate_flags, spinlock_t *lock)
134{
135 struct clk_gate *gate;
136 struct clk_hw *hw;
137 struct clk_init_data init = {};
138 int ret = -EINVAL;
139
140 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
141 if (bit_idx > 15) {
142 pr_err("gate bit exceeds LOWORD field\n");
143 return ERR_PTR(-EINVAL);
144 }
145 }
146
147 /* allocate the gate */
148 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
149 if (!gate)
150 return ERR_PTR(-ENOMEM);
151
152 init.name = name;
153 init.ops = &clk_gate_ops;
154 init.flags = flags;
155 init.parent_names = parent_name ? &parent_name : NULL;
156 init.parent_hws = parent_hw ? &parent_hw : NULL;
157 init.parent_data = parent_data;
158 if (parent_name || parent_hw || parent_data)
159 init.num_parents = 1;
160 else
161 init.num_parents = 0;
162
163 /* struct clk_gate assignments */
164 gate->reg = reg;
165 gate->bit_idx = bit_idx;
166 gate->flags = clk_gate_flags;
167 gate->lock = lock;
168 gate->hw.init = &init;
169
170 hw = &gate->hw;
171 if (dev || !np)
172 ret = clk_hw_register(dev, hw);
173 else if (np)
174 ret = of_clk_hw_register(np, hw);
175 if (ret) {
176 kfree(gate);
177 hw = ERR_PTR(ret);
178 }
179
180 return hw;
181
182}
183EXPORT_SYMBOL_GPL(__clk_hw_register_gate);
184
185struct clk *clk_register_gate(struct device *dev, const char *name,
186 const char *parent_name, unsigned long flags,
187 void __iomem *reg, u8 bit_idx,
188 u8 clk_gate_flags, spinlock_t *lock)
189{
190 struct clk_hw *hw;
191
192 hw = clk_hw_register_gate(dev, name, parent_name, flags, reg,
193 bit_idx, clk_gate_flags, lock);
194 if (IS_ERR(hw))
195 return ERR_CAST(hw);
196 return hw->clk;
197}
198EXPORT_SYMBOL_GPL(clk_register_gate);
199
200void clk_unregister_gate(struct clk *clk)
201{
202 struct clk_gate *gate;
203 struct clk_hw *hw;
204
205 hw = __clk_get_hw(clk);
206 if (!hw)
207 return;
208
209 gate = to_clk_gate(hw);
210
211 clk_unregister(clk);
212 kfree(gate);
213}
214EXPORT_SYMBOL_GPL(clk_unregister_gate);
215
216void clk_hw_unregister_gate(struct clk_hw *hw)
217{
218 struct clk_gate *gate;
219
220 gate = to_clk_gate(hw);
221
222 clk_hw_unregister(hw);
223 kfree(gate);
224}
225EXPORT_SYMBOL_GPL(clk_hw_unregister_gate);
226
227static void devm_clk_hw_release_gate(struct device *dev, void *res)
228{
229 clk_hw_unregister_gate(*(struct clk_hw **)res);
230}
231
232struct clk_hw *__devm_clk_hw_register_gate(struct device *dev,
233 struct device_node *np, const char *name,
234 const char *parent_name, const struct clk_hw *parent_hw,
235 const struct clk_parent_data *parent_data,
236 unsigned long flags,
237 void __iomem *reg, u8 bit_idx,
238 u8 clk_gate_flags, spinlock_t *lock)
239{
240 struct clk_hw **ptr, *hw;
241
242 ptr = devres_alloc(devm_clk_hw_release_gate, sizeof(*ptr), GFP_KERNEL);
243 if (!ptr)
244 return ERR_PTR(-ENOMEM);
245
246 hw = __clk_hw_register_gate(dev, np, name, parent_name, parent_hw,
247 parent_data, flags, reg, bit_idx,
248 clk_gate_flags, lock);
249
250 if (!IS_ERR(hw)) {
251 *ptr = hw;
252 devres_add(dev, ptr);
253 } else {
254 devres_free(ptr);
255 }
256
257 return hw;
258}
259EXPORT_SYMBOL_GPL(__devm_clk_hw_register_gate);
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
5 *
6 * Gated clock implementation
7 */
8
9#include <linux/clk-provider.h>
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/io.h>
13#include <linux/err.h>
14#include <linux/string.h>
15
16/**
17 * DOC: basic gatable clock which can gate and ungate it's ouput
18 *
19 * Traits of this clock:
20 * prepare - clk_(un)prepare only ensures parent is (un)prepared
21 * enable - clk_enable and clk_disable are functional & control gating
22 * rate - inherits rate from parent. No clk_set_rate support
23 * parent - fixed parent. No clk_set_parent support
24 */
25
26static inline u32 clk_gate_readl(struct clk_gate *gate)
27{
28 if (gate->flags & CLK_GATE_BIG_ENDIAN)
29 return ioread32be(gate->reg);
30
31 return readl(gate->reg);
32}
33
34static inline void clk_gate_writel(struct clk_gate *gate, u32 val)
35{
36 if (gate->flags & CLK_GATE_BIG_ENDIAN)
37 iowrite32be(val, gate->reg);
38 else
39 writel(val, gate->reg);
40}
41
42/*
43 * It works on following logic:
44 *
45 * For enabling clock, enable = 1
46 * set2dis = 1 -> clear bit -> set = 0
47 * set2dis = 0 -> set bit -> set = 1
48 *
49 * For disabling clock, enable = 0
50 * set2dis = 1 -> set bit -> set = 1
51 * set2dis = 0 -> clear bit -> set = 0
52 *
53 * So, result is always: enable xor set2dis.
54 */
55static void clk_gate_endisable(struct clk_hw *hw, int enable)
56{
57 struct clk_gate *gate = to_clk_gate(hw);
58 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
59 unsigned long uninitialized_var(flags);
60 u32 reg;
61
62 set ^= enable;
63
64 if (gate->lock)
65 spin_lock_irqsave(gate->lock, flags);
66 else
67 __acquire(gate->lock);
68
69 if (gate->flags & CLK_GATE_HIWORD_MASK) {
70 reg = BIT(gate->bit_idx + 16);
71 if (set)
72 reg |= BIT(gate->bit_idx);
73 } else {
74 reg = clk_gate_readl(gate);
75
76 if (set)
77 reg |= BIT(gate->bit_idx);
78 else
79 reg &= ~BIT(gate->bit_idx);
80 }
81
82 clk_gate_writel(gate, reg);
83
84 if (gate->lock)
85 spin_unlock_irqrestore(gate->lock, flags);
86 else
87 __release(gate->lock);
88}
89
90static int clk_gate_enable(struct clk_hw *hw)
91{
92 clk_gate_endisable(hw, 1);
93
94 return 0;
95}
96
97static void clk_gate_disable(struct clk_hw *hw)
98{
99 clk_gate_endisable(hw, 0);
100}
101
102int clk_gate_is_enabled(struct clk_hw *hw)
103{
104 u32 reg;
105 struct clk_gate *gate = to_clk_gate(hw);
106
107 reg = clk_gate_readl(gate);
108
109 /* if a set bit disables this clk, flip it before masking */
110 if (gate->flags & CLK_GATE_SET_TO_DISABLE)
111 reg ^= BIT(gate->bit_idx);
112
113 reg &= BIT(gate->bit_idx);
114
115 return reg ? 1 : 0;
116}
117EXPORT_SYMBOL_GPL(clk_gate_is_enabled);
118
119const struct clk_ops clk_gate_ops = {
120 .enable = clk_gate_enable,
121 .disable = clk_gate_disable,
122 .is_enabled = clk_gate_is_enabled,
123};
124EXPORT_SYMBOL_GPL(clk_gate_ops);
125
126/**
127 * clk_hw_register_gate - register a gate clock with the clock framework
128 * @dev: device that is registering this clock
129 * @name: name of this clock
130 * @parent_name: name of this clock's parent
131 * @flags: framework-specific flags for this clock
132 * @reg: register address to control gating of this clock
133 * @bit_idx: which bit in the register controls gating of this clock
134 * @clk_gate_flags: gate-specific flags for this clock
135 * @lock: shared register lock for this clock
136 */
137struct clk_hw *clk_hw_register_gate(struct device *dev, const char *name,
138 const char *parent_name, unsigned long flags,
139 void __iomem *reg, u8 bit_idx,
140 u8 clk_gate_flags, spinlock_t *lock)
141{
142 struct clk_gate *gate;
143 struct clk_hw *hw;
144 struct clk_init_data init;
145 int ret;
146
147 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
148 if (bit_idx > 15) {
149 pr_err("gate bit exceeds LOWORD field\n");
150 return ERR_PTR(-EINVAL);
151 }
152 }
153
154 /* allocate the gate */
155 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
156 if (!gate)
157 return ERR_PTR(-ENOMEM);
158
159 init.name = name;
160 init.ops = &clk_gate_ops;
161 init.flags = flags;
162 init.parent_names = parent_name ? &parent_name : NULL;
163 init.num_parents = parent_name ? 1 : 0;
164
165 /* struct clk_gate assignments */
166 gate->reg = reg;
167 gate->bit_idx = bit_idx;
168 gate->flags = clk_gate_flags;
169 gate->lock = lock;
170 gate->hw.init = &init;
171
172 hw = &gate->hw;
173 ret = clk_hw_register(dev, hw);
174 if (ret) {
175 kfree(gate);
176 hw = ERR_PTR(ret);
177 }
178
179 return hw;
180}
181EXPORT_SYMBOL_GPL(clk_hw_register_gate);
182
183struct clk *clk_register_gate(struct device *dev, const char *name,
184 const char *parent_name, unsigned long flags,
185 void __iomem *reg, u8 bit_idx,
186 u8 clk_gate_flags, spinlock_t *lock)
187{
188 struct clk_hw *hw;
189
190 hw = clk_hw_register_gate(dev, name, parent_name, flags, reg,
191 bit_idx, clk_gate_flags, lock);
192 if (IS_ERR(hw))
193 return ERR_CAST(hw);
194 return hw->clk;
195}
196EXPORT_SYMBOL_GPL(clk_register_gate);
197
198void clk_unregister_gate(struct clk *clk)
199{
200 struct clk_gate *gate;
201 struct clk_hw *hw;
202
203 hw = __clk_get_hw(clk);
204 if (!hw)
205 return;
206
207 gate = to_clk_gate(hw);
208
209 clk_unregister(clk);
210 kfree(gate);
211}
212EXPORT_SYMBOL_GPL(clk_unregister_gate);
213
214void clk_hw_unregister_gate(struct clk_hw *hw)
215{
216 struct clk_gate *gate;
217
218 gate = to_clk_gate(hw);
219
220 clk_hw_unregister(hw);
221 kfree(gate);
222}
223EXPORT_SYMBOL_GPL(clk_hw_unregister_gate);