]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/clk/clk-gate.c
Merge tag 'pinctrl-v4.15-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[mirror_ubuntu-hirsute-kernel.git] / drivers / clk / clk-gate.c
CommitLineData
9d9f78ed
MT
1/*
2 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
3 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Gated clock implementation
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 * DOC: basic gatable clock which can gate and ungate it's ouput
21 *
22 * Traits of this clock:
23 * prepare - clk_(un)prepare only ensures parent is (un)prepared
24 * enable - clk_enable and clk_disable are functional & control gating
25 * rate - inherits rate from parent. No clk_set_rate support
26 * parent - fixed parent. No clk_set_parent support
27 */
28
fbc42aab
VK
29/*
30 * It works on following logic:
31 *
32 * For enabling clock, enable = 1
33 * set2dis = 1 -> clear bit -> set = 0
34 * set2dis = 0 -> set bit -> set = 1
35 *
36 * For disabling clock, enable = 0
37 * set2dis = 1 -> set bit -> set = 1
38 * set2dis = 0 -> clear bit -> set = 0
39 *
40 * So, result is always: enable xor set2dis.
41 */
42static void clk_gate_endisable(struct clk_hw *hw, int enable)
9d9f78ed 43{
fbc42aab
VK
44 struct clk_gate *gate = to_clk_gate(hw);
45 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
7af47248 46 unsigned long uninitialized_var(flags);
fbc42aab
VK
47 u32 reg;
48
49 set ^= enable;
9d9f78ed
MT
50
51 if (gate->lock)
52 spin_lock_irqsave(gate->lock, flags);
661e2180
SB
53 else
54 __acquire(gate->lock);
9d9f78ed 55
04577994
HZ
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 {
aa514ce3 61 reg = clk_readl(gate->reg);
04577994
HZ
62
63 if (set)
64 reg |= BIT(gate->bit_idx);
65 else
66 reg &= ~BIT(gate->bit_idx);
67 }
9d9f78ed 68
aa514ce3 69 clk_writel(reg, gate->reg);
9d9f78ed
MT
70
71 if (gate->lock)
72 spin_unlock_irqrestore(gate->lock, flags);
661e2180
SB
73 else
74 __release(gate->lock);
9d9f78ed
MT
75}
76
77static int clk_gate_enable(struct clk_hw *hw)
78{
fbc42aab 79 clk_gate_endisable(hw, 1);
9d9f78ed
MT
80
81 return 0;
82}
9d9f78ed
MT
83
84static void clk_gate_disable(struct clk_hw *hw)
85{
fbc42aab 86 clk_gate_endisable(hw, 0);
9d9f78ed 87}
9d9f78ed 88
0a9c869d 89int clk_gate_is_enabled(struct clk_hw *hw)
9d9f78ed
MT
90{
91 u32 reg;
92 struct clk_gate *gate = to_clk_gate(hw);
93
aa514ce3 94 reg = clk_readl(gate->reg);
9d9f78ed
MT
95
96 /* if a set bit disables this clk, flip it before masking */
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}
0a9c869d 104EXPORT_SYMBOL_GPL(clk_gate_is_enabled);
9d9f78ed 105
822c250e 106const struct clk_ops clk_gate_ops = {
9d9f78ed
MT
107 .enable = clk_gate_enable,
108 .disable = clk_gate_disable,
109 .is_enabled = clk_gate_is_enabled,
110};
111EXPORT_SYMBOL_GPL(clk_gate_ops);
112
27d54591 113/**
e270d8cb 114 * clk_hw_register_gate - register a gate clock with the clock framework
27d54591
MT
115 * @dev: device that is registering this clock
116 * @name: name of this clock
117 * @parent_name: name of this clock's parent
118 * @flags: framework-specific flags for this clock
119 * @reg: register address to control gating of this clock
120 * @bit_idx: which bit in the register controls gating of this clock
121 * @clk_gate_flags: gate-specific flags for this clock
122 * @lock: shared register lock for this clock
123 */
e270d8cb 124struct clk_hw *clk_hw_register_gate(struct device *dev, const char *name,
9d9f78ed
MT
125 const char *parent_name, unsigned long flags,
126 void __iomem *reg, u8 bit_idx,
127 u8 clk_gate_flags, spinlock_t *lock)
128{
129 struct clk_gate *gate;
e270d8cb 130 struct clk_hw *hw;
0197b3ea 131 struct clk_init_data init;
e270d8cb 132 int ret;
9d9f78ed 133
04577994 134 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
2e9dcdae 135 if (bit_idx > 15) {
04577994
HZ
136 pr_err("gate bit exceeds LOWORD field\n");
137 return ERR_PTR(-EINVAL);
138 }
139 }
140
27d54591 141 /* allocate the gate */
d122db7e
SB
142 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
143 if (!gate)
27d54591 144 return ERR_PTR(-ENOMEM);
9d9f78ed 145
0197b3ea
SK
146 init.name = name;
147 init.ops = &clk_gate_ops;
f7d8caad 148 init.flags = flags | CLK_IS_BASIC;
295face9
UKK
149 init.parent_names = parent_name ? &parent_name : NULL;
150 init.num_parents = parent_name ? 1 : 0;
0197b3ea 151
9d9f78ed
MT
152 /* struct clk_gate assignments */
153 gate->reg = reg;
154 gate->bit_idx = bit_idx;
155 gate->flags = clk_gate_flags;
156 gate->lock = lock;
0197b3ea 157 gate->hw.init = &init;
9d9f78ed 158
e270d8cb
SB
159 hw = &gate->hw;
160 ret = clk_hw_register(dev, hw);
161 if (ret) {
27d54591 162 kfree(gate);
e270d8cb
SB
163 hw = ERR_PTR(ret);
164 }
27d54591 165
e270d8cb
SB
166 return hw;
167}
168EXPORT_SYMBOL_GPL(clk_hw_register_gate);
169
170struct clk *clk_register_gate(struct device *dev, const char *name,
171 const char *parent_name, unsigned long flags,
172 void __iomem *reg, u8 bit_idx,
173 u8 clk_gate_flags, spinlock_t *lock)
174{
175 struct clk_hw *hw;
176
177 hw = clk_hw_register_gate(dev, name, parent_name, flags, reg,
178 bit_idx, clk_gate_flags, lock);
179 if (IS_ERR(hw))
180 return ERR_CAST(hw);
181 return hw->clk;
9d9f78ed 182}
5cfe10bb 183EXPORT_SYMBOL_GPL(clk_register_gate);
4e3c021f
KK
184
185void clk_unregister_gate(struct clk *clk)
186{
187 struct clk_gate *gate;
188 struct clk_hw *hw;
189
190 hw = __clk_get_hw(clk);
191 if (!hw)
192 return;
193
194 gate = to_clk_gate(hw);
195
196 clk_unregister(clk);
197 kfree(gate);
198}
199EXPORT_SYMBOL_GPL(clk_unregister_gate);
e270d8cb
SB
200
201void clk_hw_unregister_gate(struct clk_hw *hw)
202{
203 struct clk_gate *gate;
204
205 gate = to_clk_gate(hw);
206
207 clk_hw_unregister(hw);
208 kfree(gate);
209}
210EXPORT_SYMBOL_GPL(clk_hw_unregister_gate);