2 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
3 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
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.
9 * Gated clock implementation
12 #include <linux/clk-provider.h>
13 #include <linux/module.h>
14 #include <linux/slab.h>
16 #include <linux/err.h>
17 #include <linux/string.h>
20 * DOC: basic gatable clock which can gate and ungate it's ouput
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
30 * It works on following logic:
32 * For enabling clock, enable = 1
33 * set2dis = 1 -> clear bit -> set = 0
34 * set2dis = 0 -> set bit -> set = 1
36 * For disabling clock, enable = 0
37 * set2dis = 1 -> set bit -> set = 1
38 * set2dis = 0 -> clear bit -> set = 0
40 * So, result is always: enable xor set2dis.
42 static void clk_gate_endisable(struct clk_hw *hw, int enable)
44 struct clk_gate *gate = to_clk_gate(hw);
45 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
46 unsigned long uninitialized_var(flags);
52 spin_lock_irqsave(gate->lock, flags);
54 __acquire(gate->lock);
56 if (gate->flags & CLK_GATE_HIWORD_MASK) {
57 reg = BIT(gate->bit_idx + 16);
59 reg |= BIT(gate->bit_idx);
61 reg = clk_readl(gate->reg);
64 reg |= BIT(gate->bit_idx);
66 reg &= ~BIT(gate->bit_idx);
69 clk_writel(reg, gate->reg);
72 spin_unlock_irqrestore(gate->lock, flags);
74 __release(gate->lock);
77 static int clk_gate_enable(struct clk_hw *hw)
79 clk_gate_endisable(hw, 1);
84 static void clk_gate_disable(struct clk_hw *hw)
86 clk_gate_endisable(hw, 0);
89 static int clk_gate_is_enabled(struct clk_hw *hw)
92 struct clk_gate *gate = to_clk_gate(hw);
94 reg = clk_readl(gate->reg);
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);
100 reg &= BIT(gate->bit_idx);
105 const struct clk_ops clk_gate_ops = {
106 .enable = clk_gate_enable,
107 .disable = clk_gate_disable,
108 .is_enabled = clk_gate_is_enabled,
110 EXPORT_SYMBOL_GPL(clk_gate_ops);
113 * clk_hw_register_gate - register a gate clock with the clock framework
114 * @dev: device that is registering this clock
115 * @name: name of this clock
116 * @parent_name: name of this clock's parent
117 * @flags: framework-specific flags for this clock
118 * @reg: register address to control gating of this clock
119 * @bit_idx: which bit in the register controls gating of this clock
120 * @clk_gate_flags: gate-specific flags for this clock
121 * @lock: shared register lock for this clock
123 struct clk_hw *clk_hw_register_gate(struct device *dev, const char *name,
124 const char *parent_name, unsigned long flags,
125 void __iomem *reg, u8 bit_idx,
126 u8 clk_gate_flags, spinlock_t *lock)
128 struct clk_gate *gate;
130 struct clk_init_data init;
133 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
135 pr_err("gate bit exceeds LOWORD field\n");
136 return ERR_PTR(-EINVAL);
140 /* allocate the gate */
141 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
143 return ERR_PTR(-ENOMEM);
146 init.ops = &clk_gate_ops;
147 init.flags = flags | CLK_IS_BASIC;
148 init.parent_names = (parent_name ? &parent_name: NULL);
149 init.num_parents = (parent_name ? 1 : 0);
151 /* struct clk_gate assignments */
153 gate->bit_idx = bit_idx;
154 gate->flags = clk_gate_flags;
156 gate->hw.init = &init;
159 ret = clk_hw_register(dev, hw);
167 EXPORT_SYMBOL_GPL(clk_hw_register_gate);
169 struct clk *clk_register_gate(struct device *dev, const char *name,
170 const char *parent_name, unsigned long flags,
171 void __iomem *reg, u8 bit_idx,
172 u8 clk_gate_flags, spinlock_t *lock)
176 hw = clk_hw_register_gate(dev, name, parent_name, flags, reg,
177 bit_idx, clk_gate_flags, lock);
182 EXPORT_SYMBOL_GPL(clk_register_gate);
184 void clk_unregister_gate(struct clk *clk)
186 struct clk_gate *gate;
189 hw = __clk_get_hw(clk);
193 gate = to_clk_gate(hw);
198 EXPORT_SYMBOL_GPL(clk_unregister_gate);
200 void clk_hw_unregister_gate(struct clk_hw *hw)
202 struct clk_gate *gate;
204 gate = to_clk_gate(hw);
206 clk_hw_unregister(hw);
209 EXPORT_SYMBOL_GPL(clk_hw_unregister_gate);