blob: de0b322f5f58d4a57677455e6a5a2a78dcf0687d [file] [log] [blame]
Mike Turquette9d9f78e2012-03-15 23:11:20 -07001/*
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
29#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
30
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053031/*
32 * It works on following logic:
33 *
34 * For enabling clock, enable = 1
35 * set2dis = 1 -> clear bit -> set = 0
36 * set2dis = 0 -> set bit -> set = 1
37 *
38 * For disabling clock, enable = 0
39 * set2dis = 1 -> set bit -> set = 1
40 * set2dis = 0 -> clear bit -> set = 0
41 *
42 * So, result is always: enable xor set2dis.
43 */
44static void clk_gate_endisable(struct clk_hw *hw, int enable)
Mike Turquette9d9f78e2012-03-15 23:11:20 -070045{
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053046 struct clk_gate *gate = to_clk_gate(hw);
47 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
Xiubo Li7af47242014-09-22 13:52:11 +080048 unsigned long uninitialized_var(flags);
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053049 u32 reg;
50
51 set ^= enable;
Mike Turquette9d9f78e2012-03-15 23:11:20 -070052
53 if (gate->lock)
54 spin_lock_irqsave(gate->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -070055 else
56 __acquire(gate->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070057
Haojian Zhuang04577992013-06-08 22:47:19 +080058 if (gate->flags & CLK_GATE_HIWORD_MASK) {
59 reg = BIT(gate->bit_idx + 16);
60 if (set)
61 reg |= BIT(gate->bit_idx);
62 } else {
Gerhard Sittigaa514ce2013-07-22 14:14:40 +020063 reg = clk_readl(gate->reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070064
Haojian Zhuang04577992013-06-08 22:47:19 +080065 if (set)
66 reg |= BIT(gate->bit_idx);
67 else
68 reg &= ~BIT(gate->bit_idx);
69 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -070070
Gerhard Sittigaa514ce2013-07-22 14:14:40 +020071 clk_writel(reg, gate->reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070072
73 if (gate->lock)
74 spin_unlock_irqrestore(gate->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -070075 else
76 __release(gate->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070077}
78
79static int clk_gate_enable(struct clk_hw *hw)
80{
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053081 clk_gate_endisable(hw, 1);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070082
83 return 0;
84}
Mike Turquette9d9f78e2012-03-15 23:11:20 -070085
86static void clk_gate_disable(struct clk_hw *hw)
87{
Viresh Kumarfbc42aa2012-04-17 16:45:37 +053088 clk_gate_endisable(hw, 0);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070089}
Mike Turquette9d9f78e2012-03-15 23:11:20 -070090
91static int clk_gate_is_enabled(struct clk_hw *hw)
92{
93 u32 reg;
94 struct clk_gate *gate = to_clk_gate(hw);
95
Gerhard Sittigaa514ce2013-07-22 14:14:40 +020096 reg = clk_readl(gate->reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070097
98 /* if a set bit disables this clk, flip it before masking */
99 if (gate->flags & CLK_GATE_SET_TO_DISABLE)
100 reg ^= BIT(gate->bit_idx);
101
102 reg &= BIT(gate->bit_idx);
103
104 return reg ? 1 : 0;
105}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700106
Shawn Guo822c2502012-03-27 15:23:22 +0800107const struct clk_ops clk_gate_ops = {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700108 .enable = clk_gate_enable,
109 .disable = clk_gate_disable,
110 .is_enabled = clk_gate_is_enabled,
111};
112EXPORT_SYMBOL_GPL(clk_gate_ops);
113
Mike Turquette27d54592012-03-26 17:51:03 -0700114/**
115 * clk_register_gate - register a gate clock with the clock framework
116 * @dev: device that is registering this clock
117 * @name: name of this clock
118 * @parent_name: name of this clock's parent
119 * @flags: framework-specific flags for this clock
120 * @reg: register address to control gating of this clock
121 * @bit_idx: which bit in the register controls gating of this clock
122 * @clk_gate_flags: gate-specific flags for this clock
123 * @lock: shared register lock for this clock
124 */
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700125struct clk *clk_register_gate(struct device *dev, const char *name,
126 const char *parent_name, unsigned long flags,
127 void __iomem *reg, u8 bit_idx,
128 u8 clk_gate_flags, spinlock_t *lock)
129{
130 struct clk_gate *gate;
131 struct clk *clk;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700132 struct clk_init_data init;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700133
Haojian Zhuang04577992013-06-08 22:47:19 +0800134 if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
Sergei Shtylyov2e9dcda2014-12-24 17:43:27 +0300135 if (bit_idx > 15) {
Haojian Zhuang04577992013-06-08 22:47:19 +0800136 pr_err("gate bit exceeds LOWORD field\n");
137 return ERR_PTR(-EINVAL);
138 }
139 }
140
Mike Turquette27d54592012-03-26 17:51:03 -0700141 /* allocate the gate */
Stephen Boydd122db72015-05-14 16:47:10 -0700142 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
143 if (!gate)
Mike Turquette27d54592012-03-26 17:51:03 -0700144 return ERR_PTR(-ENOMEM);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700145
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700146 init.name = name;
147 init.ops = &clk_gate_ops;
Rajendra Nayakf7d8caa2012-06-01 14:02:47 +0530148 init.flags = flags | CLK_IS_BASIC;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700149 init.parent_names = (parent_name ? &parent_name: NULL);
150 init.num_parents = (parent_name ? 1 : 0);
151
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700152 /* struct clk_gate assignments */
153 gate->reg = reg;
154 gate->bit_idx = bit_idx;
155 gate->flags = clk_gate_flags;
156 gate->lock = lock;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700157 gate->hw.init = &init;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700158
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700159 clk = clk_register(dev, &gate->hw);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700160
Mike Turquette27d54592012-03-26 17:51:03 -0700161 if (IS_ERR(clk))
162 kfree(gate);
163
164 return clk;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700165}
Mike Turquette5cfe10b2013-08-15 19:06:29 -0700166EXPORT_SYMBOL_GPL(clk_register_gate);
Krzysztof Kozlowski4e3c0212015-01-05 10:52:40 +0100167
168void clk_unregister_gate(struct clk *clk)
169{
170 struct clk_gate *gate;
171 struct clk_hw *hw;
172
173 hw = __clk_get_hw(clk);
174 if (!hw)
175 return;
176
177 gate = to_clk_gate(hw);
178
179 clk_unregister(clk);
180 kfree(gate);
181}
182EXPORT_SYMBOL_GPL(clk_unregister_gate);