1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
6 * Gated clock implementation
9 #include <linux/clk-provider.h>
10 #include <linux/device.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
14 #include <linux/err.h>
15 #include <linux/string.h>
18 * DOC: basic gatable clock which can gate and ungate its output
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
27 static inline u32
clk_gate_readl(struct clk_gate
*gate
)
29 if (gate
->flags
& CLK_GATE_BIG_ENDIAN
)
30 return ioread32be(gate
->reg
);
32 return readl(gate
->reg
);
35 static inline void clk_gate_writel(struct clk_gate
*gate
, u32 val
)
37 if (gate
->flags
& CLK_GATE_BIG_ENDIAN
)
38 iowrite32be(val
, gate
->reg
);
40 writel(val
, gate
->reg
);
44 * It works on following logic:
46 * For enabling clock, enable = 1
47 * set2dis = 1 -> clear bit -> set = 0
48 * set2dis = 0 -> set bit -> set = 1
50 * For disabling clock, enable = 0
51 * set2dis = 1 -> set bit -> set = 1
52 * set2dis = 0 -> clear bit -> set = 0
54 * So, result is always: enable xor set2dis.
56 static void clk_gate_endisable(struct clk_hw
*hw
, int enable
)
58 struct clk_gate
*gate
= to_clk_gate(hw
);
59 int set
= gate
->flags
& CLK_GATE_SET_TO_DISABLE
? 1 : 0;
66 spin_lock_irqsave(gate
->lock
, flags
);
68 __acquire(gate
->lock
);
70 if (gate
->flags
& CLK_GATE_HIWORD_MASK
) {
71 reg
= BIT(gate
->bit_idx
+ 16);
73 reg
|= BIT(gate
->bit_idx
);
75 reg
= clk_gate_readl(gate
);
78 reg
|= BIT(gate
->bit_idx
);
80 reg
&= ~BIT(gate
->bit_idx
);
83 clk_gate_writel(gate
, reg
);
86 spin_unlock_irqrestore(gate
->lock
, flags
);
88 __release(gate
->lock
);
91 static int clk_gate_enable(struct clk_hw
*hw
)
93 clk_gate_endisable(hw
, 1);
98 static void clk_gate_disable(struct clk_hw
*hw
)
100 clk_gate_endisable(hw
, 0);
103 int clk_gate_is_enabled(struct clk_hw
*hw
)
106 struct clk_gate
*gate
= to_clk_gate(hw
);
108 reg
= clk_gate_readl(gate
);
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
);
114 reg
&= BIT(gate
->bit_idx
);
118 EXPORT_SYMBOL_GPL(clk_gate_is_enabled
);
120 const struct clk_ops clk_gate_ops
= {
121 .enable
= clk_gate_enable
,
122 .disable
= clk_gate_disable
,
123 .is_enabled
= clk_gate_is_enabled
,
125 EXPORT_SYMBOL_GPL(clk_gate_ops
);
127 struct 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
,
132 void __iomem
*reg
, u8 bit_idx
,
133 u8 clk_gate_flags
, spinlock_t
*lock
)
135 struct clk_gate
*gate
;
137 struct clk_init_data init
= {};
140 if (clk_gate_flags
& CLK_GATE_HIWORD_MASK
) {
142 pr_err("gate bit exceeds LOWORD field\n");
143 return ERR_PTR(-EINVAL
);
147 /* allocate the gate */
148 gate
= kzalloc(sizeof(*gate
), GFP_KERNEL
);
150 return ERR_PTR(-ENOMEM
);
153 init
.ops
= &clk_gate_ops
;
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;
161 init
.num_parents
= 0;
163 /* struct clk_gate assignments */
165 gate
->bit_idx
= bit_idx
;
166 gate
->flags
= clk_gate_flags
;
168 gate
->hw
.init
= &init
;
172 ret
= clk_hw_register(dev
, hw
);
174 ret
= of_clk_hw_register(np
, hw
);
183 EXPORT_SYMBOL_GPL(__clk_hw_register_gate
);
185 struct 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
)
192 hw
= clk_hw_register_gate(dev
, name
, parent_name
, flags
, reg
,
193 bit_idx
, clk_gate_flags
, lock
);
198 EXPORT_SYMBOL_GPL(clk_register_gate
);
200 void clk_unregister_gate(struct clk
*clk
)
202 struct clk_gate
*gate
;
205 hw
= __clk_get_hw(clk
);
209 gate
= to_clk_gate(hw
);
214 EXPORT_SYMBOL_GPL(clk_unregister_gate
);
216 void clk_hw_unregister_gate(struct clk_hw
*hw
)
218 struct clk_gate
*gate
;
220 gate
= to_clk_gate(hw
);
222 clk_hw_unregister(hw
);
225 EXPORT_SYMBOL_GPL(clk_hw_unregister_gate
);
227 static void devm_clk_hw_release_gate(struct device
*dev
, void *res
)
229 clk_hw_unregister_gate(*(struct clk_hw
**)res
);
232 struct 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
,
237 void __iomem
*reg
, u8 bit_idx
,
238 u8 clk_gate_flags
, spinlock_t
*lock
)
240 struct clk_hw
**ptr
, *hw
;
242 ptr
= devres_alloc(devm_clk_hw_release_gate
, sizeof(*ptr
), GFP_KERNEL
);
244 return ERR_PTR(-ENOMEM
);
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
);
252 devres_add(dev
, ptr
);
259 EXPORT_SYMBOL_GPL(__devm_clk_hw_register_gate
);