blob: 1b99fc96274517b61fb0fca61978551e50e837dc [file] [log] [blame]
Stephen Boyde1bd55e2018-12-11 09:57:48 -08001// SPDX-License-Identifier: GPL-2.0
Mike Turquette9d9f78e2012-03-15 23:11:20 -07002/*
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
5 *
Mike Turquette9d9f78e2012-03-15 23:11:20 -07006 * 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
Jonas Gorskid1c8a502019-04-18 13:12:06 +020026static inline u32 clk_gate_readl(struct clk_gate *gate)
27{
28 if (gate->flags & CLK_GATE_BIG_ENDIAN)
29 return ioread32be(gate->reg);
30
Jonas Gorski5834fd72019-04-18 13:12:11 +020031 return readl(gate->reg);
Jonas Gorskid1c8a502019-04-18 13:12:06 +020032}
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
Jonas Gorski5834fd72019-04-18 13:12:11 +020039 writel(val, gate->reg);
Jonas Gorskid1c8a502019-04-18 13:12:06 +020040}
41
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053042/*
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)
Mike Turquette9d9f78e2012-03-15 23:11:20 -070056{
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053057 struct clk_gate *gate = to_clk_gate(hw);
58 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
Xiubo Li7af47242014-09-22 13:52:11 +080059 unsigned long uninitialized_var(flags);
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053060 u32 reg;
61
62 set ^= enable;
Mike Turquette9d9f78e2012-03-15 23:11:20 -070063
64 if (gate->lock)
65 spin_lock_irqsave(gate->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -070066 else
67 __acquire(gate->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070068
Haojian Zhuang04577992013-06-08 22:47:19 +080069 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 {
Jonas Gorskid1c8a502019-04-18 13:12:06 +020074 reg = clk_gate_readl(gate);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070075
Haojian Zhuang04577992013-06-08 22:47:19 +080076 if (set)
77 reg |= BIT(gate->bit_idx);
78 else
79 reg &= ~BIT(gate->bit_idx);
80 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -070081
Jonas Gorskid1c8a502019-04-18 13:12:06 +020082 clk_gate_writel(gate, reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070083
84 if (gate->lock)
85 spin_unlock_irqrestore(gate->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -070086 else
87 __release(gate->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070088}
89
90static int clk_gate_enable(struct clk_hw *hw)
91{
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053092 clk_gate_endisable(hw, 1);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070093
94 return 0;
95}
Mike Turquette9d9f78e2012-03-15 23:11:20 -070096
97static void clk_gate_disable(struct clk_hw *hw)
98{
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053099 clk_gate_endisable(hw, 0);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700100}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700101
Gabriel Fernandez0a9c8692017-08-21 13:59:01 +0200102int clk_gate_is_enabled(struct clk_hw *hw)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700103{
104 u32 reg;
105 struct clk_gate *gate = to_clk_gate(hw);
106
Jonas Gorskid1c8a502019-04-18 13:12:06 +0200107 reg = clk_gate_readl(gate);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700108
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}
Gabriel Fernandez0a9c8692017-08-21 13:59:01 +0200117EXPORT_SYMBOL_GPL(clk_gate_is_enabled);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700118
Shawn Guo822c2502012-03-27 15:23:22 +0800119const struct clk_ops clk_gate_ops = {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700120 .enable = clk_gate_enable,
121 .disable = clk_gate_disable,
122 .is_enabled = clk_gate_is_enabled,
123};
124EXPORT_SYMBOL_GPL(clk_gate_ops);
125
Mike Turquette27d54592012-03-26 17:51:03 -0700126/**
Stephen Boyde270d8c2016-02-06 23:54:45 -0800127 * clk_hw_register_gate - register a gate clock with the clock framework
Mike Turquette27d54592012-03-26 17:51:03 -0700128 * @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 */
Stephen Boyde270d8c2016-02-06 23:54:45 -0800137struct clk_hw *clk_hw_register_gate(struct device *dev, const char *name,
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700138 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;
Stephen Boyde270d8c2016-02-06 23:54:45 -0800143 struct clk_hw *hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700144 struct clk_init_data init;
Stephen Boyde270d8c2016-02-06 23:54:45 -0800145 int ret;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700146
Haojian Zhuang04577992013-06-08 22:47:19 +0800147 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
Sergei Shtylyov2e9dcda2014-12-24 17:43:27 +0300148 if (bit_idx > 15) {
Haojian Zhuang04577992013-06-08 22:47:19 +0800149 pr_err("gate bit exceeds LOWORD field\n");
150 return ERR_PTR(-EINVAL);
151 }
152 }
153
Mike Turquette27d54592012-03-26 17:51:03 -0700154 /* allocate the gate */
Stephen Boydd122db72015-05-14 16:47:10 -0700155 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
156 if (!gate)
Mike Turquette27d54592012-03-26 17:51:03 -0700157 return ERR_PTR(-ENOMEM);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700158
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700159 init.name = name;
160 init.ops = &clk_gate_ops;
Stephen Boyd90b6c5c2019-04-25 10:57:37 -0700161 init.flags = flags;
Uwe Kleine-König295face2016-11-09 12:00:46 +0100162 init.parent_names = parent_name ? &parent_name : NULL;
163 init.num_parents = parent_name ? 1 : 0;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700164
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700165 /* struct clk_gate assignments */
166 gate->reg = reg;
167 gate->bit_idx = bit_idx;
168 gate->flags = clk_gate_flags;
169 gate->lock = lock;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700170 gate->hw.init = &init;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700171
Stephen Boyde270d8c2016-02-06 23:54:45 -0800172 hw = &gate->hw;
173 ret = clk_hw_register(dev, hw);
174 if (ret) {
Mike Turquette27d54592012-03-26 17:51:03 -0700175 kfree(gate);
Stephen Boyde270d8c2016-02-06 23:54:45 -0800176 hw = ERR_PTR(ret);
177 }
Mike Turquette27d54592012-03-26 17:51:03 -0700178
Stephen Boyde270d8c2016-02-06 23:54:45 -0800179 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;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700195}
Mike Turquette5cfe10b2013-08-15 19:06:29 -0700196EXPORT_SYMBOL_GPL(clk_register_gate);
Krzysztof Kozlowski4e3c0212015-01-05 10:52:40 +0100197
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);
Stephen Boyde270d8c2016-02-06 23:54:45 -0800213
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);