Merge tag 'drm-misc-fixes-2019-06-05' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-block.git] / drivers / clk / clk-gate.c
CommitLineData
e1bd55e5 1// SPDX-License-Identifier: GPL-2.0
9d9f78ed
MT
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 *
9d9f78ed
MT
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
d1c8a501
JG
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
5834fd75 31 return readl(gate->reg);
d1c8a501
JG
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
5834fd75 39 writel(val, gate->reg);
d1c8a501
JG
40}
41
fbc42aab
VK
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)
9d9f78ed 56{
fbc42aab
VK
57 struct clk_gate *gate = to_clk_gate(hw);
58 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
7af47248 59 unsigned long uninitialized_var(flags);
fbc42aab
VK
60 u32 reg;
61
62 set ^= enable;
9d9f78ed
MT
63
64 if (gate->lock)
65 spin_lock_irqsave(gate->lock, flags);
661e2180
SB
66 else
67 __acquire(gate->lock);
9d9f78ed 68
04577994
HZ
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 {
d1c8a501 74 reg = clk_gate_readl(gate);
04577994
HZ
75
76 if (set)
77 reg |= BIT(gate->bit_idx);
78 else
79 reg &= ~BIT(gate->bit_idx);
80 }
9d9f78ed 81
d1c8a501 82 clk_gate_writel(gate, reg);
9d9f78ed
MT
83
84 if (gate->lock)
85 spin_unlock_irqrestore(gate->lock, flags);
661e2180
SB
86 else
87 __release(gate->lock);
9d9f78ed
MT
88}
89
90static int clk_gate_enable(struct clk_hw *hw)
91{
fbc42aab 92 clk_gate_endisable(hw, 1);
9d9f78ed
MT
93
94 return 0;
95}
9d9f78ed
MT
96
97static void clk_gate_disable(struct clk_hw *hw)
98{
fbc42aab 99 clk_gate_endisable(hw, 0);
9d9f78ed 100}
9d9f78ed 101
0a9c869d 102int clk_gate_is_enabled(struct clk_hw *hw)
9d9f78ed
MT
103{
104 u32 reg;
105 struct clk_gate *gate = to_clk_gate(hw);
106
d1c8a501 107 reg = clk_gate_readl(gate);
9d9f78ed
MT
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}
0a9c869d 117EXPORT_SYMBOL_GPL(clk_gate_is_enabled);
9d9f78ed 118
822c250e 119const struct clk_ops clk_gate_ops = {
9d9f78ed
MT
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
27d54591 126/**
e270d8cb 127 * clk_hw_register_gate - register a gate clock with the clock framework
27d54591
MT
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 */
e270d8cb 137struct clk_hw *clk_hw_register_gate(struct device *dev, const char *name,
9d9f78ed
MT
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;
e270d8cb 143 struct clk_hw *hw;
0197b3ea 144 struct clk_init_data init;
e270d8cb 145 int ret;
9d9f78ed 146
04577994 147 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
2e9dcdae 148 if (bit_idx > 15) {
04577994
HZ
149 pr_err("gate bit exceeds LOWORD field\n");
150 return ERR_PTR(-EINVAL);
151 }
152 }
153
27d54591 154 /* allocate the gate */
d122db7e
SB
155 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
156 if (!gate)
27d54591 157 return ERR_PTR(-ENOMEM);
9d9f78ed 158
0197b3ea
SK
159 init.name = name;
160 init.ops = &clk_gate_ops;
90b6c5c7 161 init.flags = flags;
295face9
UKK
162 init.parent_names = parent_name ? &parent_name : NULL;
163 init.num_parents = parent_name ? 1 : 0;
0197b3ea 164
9d9f78ed
MT
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;
0197b3ea 170 gate->hw.init = &init;
9d9f78ed 171
e270d8cb
SB
172 hw = &gate->hw;
173 ret = clk_hw_register(dev, hw);
174 if (ret) {
27d54591 175 kfree(gate);
e270d8cb
SB
176 hw = ERR_PTR(ret);
177 }
27d54591 178
e270d8cb
SB
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;
9d9f78ed 195}
5cfe10bb 196EXPORT_SYMBOL_GPL(clk_register_gate);
4e3c021f
KK
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);
e270d8cb
SB
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);