Blame view

drivers/clk/ti/gate.c 9.11 KB
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /*
   * OMAP gate clock support
   *
   * Copyright (C) 2013 Texas Instruments, Inc.
   *
   * Tero Kristo <t-kristo@ti.com>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
   * This program is distributed "as is" WITHOUT ANY WARRANTY of any
   * kind, whether express or implied; without even the implied warranty
   * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   */
  
  #include <linux/clk-provider.h>
  #include <linux/slab.h>
  #include <linux/io.h>
  #include <linux/of.h>
  #include <linux/of_address.h>
  #include <linux/clk/ti.h>
f187616b3   Tero Kristo   clk: ti: gate: ad...
24
  #include "clock.h"
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  #undef pr_fmt
  #define pr_fmt(fmt) "%s: " fmt, __func__
  
  static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *clk);
  
  static const struct clk_ops omap_gate_clkdm_clk_ops = {
  	.init		= &omap2_init_clk_clkdm,
  	.enable		= &omap2_clkops_enable_clkdm,
  	.disable	= &omap2_clkops_disable_clkdm,
  };
  
  static const struct clk_ops omap_gate_clk_ops = {
  	.init		= &omap2_init_clk_clkdm,
  	.enable		= &omap2_dflt_clk_enable,
  	.disable	= &omap2_dflt_clk_disable,
  	.is_enabled	= &omap2_dflt_clk_is_enabled,
  };
  
  static const struct clk_ops omap_gate_clk_hsdiv_restore_ops = {
  	.init		= &omap2_init_clk_clkdm,
  	.enable		= &omap36xx_gate_clk_enable_with_hsdiv_restore,
  	.disable	= &omap2_dflt_clk_disable,
  	.is_enabled	= &omap2_dflt_clk_is_enabled,
  };
  
  /**
   * omap36xx_gate_clk_enable_with_hsdiv_restore - enable clocks suffering
   *         from HSDivider PWRDN problem Implements Errata ID: i556.
   * @clk: DPLL output struct clk
   *
   * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
   * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
   * valueafter their respective PWRDN bits are set.  Any dummy write
   * (Any other value different from the Read value) to the
   * corresponding CM_CLKSEL register will refresh the dividers.
   */
a53ad8ef3   Stephen Boyd   clk: ti: Convert ...
61
  static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *hw)
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
62
63
64
65
66
67
68
  {
  	struct clk_divider *parent;
  	struct clk_hw *parent_hw;
  	u32 dummy_v, orig_v;
  	int ret;
  
  	/* Clear PWRDN bit of HSDIVIDER */
a53ad8ef3   Stephen Boyd   clk: ti: Convert ...
69
  	ret = omap2_dflt_clk_enable(hw);
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
70
71
  
  	/* Parent is the x2 node, get parent of parent for the m2 div */
a53ad8ef3   Stephen Boyd   clk: ti: Convert ...
72
  	parent_hw = clk_hw_get_parent(clk_hw_get_parent(hw));
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  	parent = to_clk_divider(parent_hw);
  
  	/* Restore the dividers */
  	if (!ret) {
  		orig_v = ti_clk_ll_ops->clk_readl(parent->reg);
  		dummy_v = orig_v;
  
  		/* Write any other value different from the Read value */
  		dummy_v ^= (1 << parent->shift);
  		ti_clk_ll_ops->clk_writel(dummy_v, parent->reg);
  
  		/* Write the original divider */
  		ti_clk_ll_ops->clk_writel(orig_v, parent->reg);
  	}
  
  	return ret;
  }
f187616b3   Tero Kristo   clk: ti: gate: ad...
90
91
92
93
94
  static struct clk *_register_gate(struct device *dev, const char *name,
  				  const char *parent_name, unsigned long flags,
  				  void __iomem *reg, u8 bit_idx,
  				  u8 clk_gate_flags, const struct clk_ops *ops,
  				  const struct clk_hw_omap_ops *hw_ops)
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
95
  {
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
96
97
  	struct clk_init_data init = { NULL };
  	struct clk_hw_omap *clk_hw;
f187616b3   Tero Kristo   clk: ti: gate: ad...
98
  	struct clk *clk;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
99
100
101
  
  	clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
  	if (!clk_hw)
f187616b3   Tero Kristo   clk: ti: gate: ad...
102
  		return ERR_PTR(-ENOMEM);
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
103
104
  
  	clk_hw->hw.init = &init;
f187616b3   Tero Kristo   clk: ti: gate: ad...
105
  	init.name = name;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
106
  	init.ops = ops;
f187616b3   Tero Kristo   clk: ti: gate: ad...
107
108
109
  	clk_hw->enable_reg = reg;
  	clk_hw->enable_bit = bit_idx;
  	clk_hw->ops = hw_ops;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
110

f187616b3   Tero Kristo   clk: ti: gate: ad...
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  	clk_hw->flags = MEMMAP_ADDRESSING | clk_gate_flags;
  
  	init.parent_names = &parent_name;
  	init.num_parents = 1;
  
  	init.flags = flags;
  
  	clk = clk_register(NULL, &clk_hw->hw);
  
  	if (IS_ERR(clk))
  		kfree(clk_hw);
  
  	return clk;
  }
6793a30a0   Arnd Bergmann   clk: omap: compil...
125
  #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_ATAGS)
f187616b3   Tero Kristo   clk: ti: gate: ad...
126
127
128
129
130
131
132
133
134
135
136
  struct clk *ti_clk_register_gate(struct ti_clk *setup)
  {
  	const struct clk_ops *ops = &omap_gate_clk_ops;
  	const struct clk_hw_omap_ops *hw_ops = NULL;
  	u32 reg;
  	struct clk_omap_reg *reg_setup;
  	u32 flags = 0;
  	u8 clk_gate_flags = 0;
  	struct ti_clk_gate *gate;
  
  	gate = setup->data;
06524fa42   Tero Kristo   clk: ti: interfac...
137
138
  	if (gate->flags & CLKF_INTERFACE)
  		return ti_clk_register_interface(setup);
f187616b3   Tero Kristo   clk: ti: gate: ad...
139
140
141
142
143
144
145
146
147
148
149
  	reg_setup = (struct clk_omap_reg *)&reg;
  
  	if (gate->flags & CLKF_SET_RATE_PARENT)
  		flags |= CLK_SET_RATE_PARENT;
  
  	if (gate->flags & CLKF_SET_BIT_TO_DISABLE)
  		clk_gate_flags |= INVERT_ENABLE;
  
  	if (gate->flags & CLKF_HSDIV) {
  		ops = &omap_gate_clk_hsdiv_restore_ops;
  		hw_ops = &clkhwops_wait;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
150
  	}
f187616b3   Tero Kristo   clk: ti: gate: ad...
151
152
153
154
155
156
157
158
159
160
161
  	if (gate->flags & CLKF_DSS)
  		hw_ops = &clkhwops_omap3430es2_dss_usbhost_wait;
  
  	if (gate->flags & CLKF_WAIT)
  		hw_ops = &clkhwops_wait;
  
  	if (gate->flags & CLKF_CLKDM)
  		ops = &omap_gate_clkdm_clk_ops;
  
  	if (gate->flags & CLKF_AM35XX)
  		hw_ops = &clkhwops_am35xx_ipss_module_wait;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
162

f187616b3   Tero Kristo   clk: ti: gate: ad...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
  	reg_setup->index = gate->module;
  	reg_setup->offset = gate->reg;
  
  	return _register_gate(NULL, setup->name, gate->parent, flags,
  			      (void __iomem *)reg, gate->bit_shift,
  			      clk_gate_flags, ops, hw_ops);
  }
  
  struct clk_hw *ti_clk_build_component_gate(struct ti_clk_gate *setup)
  {
  	struct clk_hw_omap *gate;
  	struct clk_omap_reg *reg;
  	const struct clk_hw_omap_ops *ops = &clkhwops_wait;
  
  	if (!setup)
  		return NULL;
  
  	gate = kzalloc(sizeof(*gate), GFP_KERNEL);
  	if (!gate)
  		return ERR_PTR(-ENOMEM);
  
  	reg = (struct clk_omap_reg *)&gate->enable_reg;
  	reg->index = setup->module;
  	reg->offset = setup->reg;
  
  	gate->enable_bit = setup->bit_shift;
  
  	if (setup->flags & CLKF_NO_WAIT)
  		ops = NULL;
  
  	if (setup->flags & CLKF_INTERFACE)
  		ops = &clkhwops_iclk_wait;
  
  	gate->ops = ops;
  	gate->flags = MEMMAP_ADDRESSING;
  
  	return &gate->hw;
  }
6793a30a0   Arnd Bergmann   clk: omap: compil...
201
  #endif
f187616b3   Tero Kristo   clk: ti: gate: ad...
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
  
  static void __init _of_ti_gate_clk_setup(struct device_node *node,
  					 const struct clk_ops *ops,
  					 const struct clk_hw_omap_ops *hw_ops)
  {
  	struct clk *clk;
  	const char *parent_name;
  	void __iomem *reg = NULL;
  	u8 enable_bit = 0;
  	u32 val;
  	u32 flags = 0;
  	u8 clk_gate_flags = 0;
  
  	if (ops != &omap_gate_clkdm_clk_ops) {
  		reg = ti_clk_get_reg_addr(node, 0);
c807dbedb   Tero Kristo   clk: ti: fix ti_c...
217
  		if (IS_ERR(reg))
f187616b3   Tero Kristo   clk: ti: gate: ad...
218
219
220
221
222
  			return;
  
  		if (!of_property_read_u32(node, "ti,bit-shift", &val))
  			enable_bit = val;
  	}
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
223
224
  
  	if (of_clk_get_parent_count(node) != 1) {
f187616b3   Tero Kristo   clk: ti: gate: ad...
225
226
227
  		pr_err("%s must have 1 parent
  ", node->name);
  		return;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
228
229
230
  	}
  
  	parent_name = of_clk_get_parent_name(node, 0);
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
231
232
  
  	if (of_property_read_bool(node, "ti,set-rate-parent"))
f187616b3   Tero Kristo   clk: ti: gate: ad...
233
  		flags |= CLK_SET_RATE_PARENT;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
234
235
  
  	if (of_property_read_bool(node, "ti,set-bit-to-disable"))
f187616b3   Tero Kristo   clk: ti: gate: ad...
236
  		clk_gate_flags |= INVERT_ENABLE;
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
237

f187616b3   Tero Kristo   clk: ti: gate: ad...
238
239
  	clk = _register_gate(NULL, node->name, parent_name, flags, reg,
  			     enable_bit, clk_gate_flags, ops, hw_ops);
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
240

f187616b3   Tero Kristo   clk: ti: gate: ad...
241
  	if (!IS_ERR(clk))
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
242
  		of_clk_add_provider(node, of_clk_src_simple_get, clk);
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  }
  
  static void __init
  _of_ti_composite_gate_clk_setup(struct device_node *node,
  				const struct clk_hw_omap_ops *hw_ops)
  {
  	struct clk_hw_omap *gate;
  	u32 val = 0;
  
  	gate = kzalloc(sizeof(*gate), GFP_KERNEL);
  	if (!gate)
  		return;
  
  	gate->enable_reg = ti_clk_get_reg_addr(node, 0);
c807dbedb   Tero Kristo   clk: ti: fix ti_c...
257
  	if (IS_ERR(gate->enable_reg))
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
  		goto cleanup;
  
  	of_property_read_u32(node, "ti,bit-shift", &val);
  
  	gate->enable_bit = val;
  	gate->ops = hw_ops;
  	gate->flags = MEMMAP_ADDRESSING;
  
  	if (!ti_clk_add_component(node, &gate->hw, CLK_COMPONENT_TYPE_GATE))
  		return;
  
  cleanup:
  	kfree(gate);
  }
  
  static void __init
  of_ti_composite_no_wait_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_composite_gate_clk_setup(node, NULL);
  }
  CLK_OF_DECLARE(ti_composite_no_wait_gate_clk, "ti,composite-no-wait-gate-clock",
  	       of_ti_composite_no_wait_gate_clk_setup);
b3654d703   Tero Kristo   CLK: TI: gate: ad...
280
  #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
  static void __init of_ti_composite_interface_clk_setup(struct device_node *node)
  {
  	_of_ti_composite_gate_clk_setup(node, &clkhwops_iclk_wait);
  }
  CLK_OF_DECLARE(ti_composite_interface_clk, "ti,composite-interface-clock",
  	       of_ti_composite_interface_clk_setup);
  #endif
  
  static void __init of_ti_composite_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_composite_gate_clk_setup(node, &clkhwops_wait);
  }
  CLK_OF_DECLARE(ti_composite_gate_clk, "ti,composite-gate-clock",
  	       of_ti_composite_gate_clk_setup);
  
  
  static void __init of_ti_clkdm_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_gate_clk_setup(node, &omap_gate_clkdm_clk_ops, NULL);
  }
  CLK_OF_DECLARE(ti_clkdm_gate_clk, "ti,clkdm-gate-clock",
  	       of_ti_clkdm_gate_clk_setup);
  
  static void __init of_ti_hsdiv_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_gate_clk_setup(node, &omap_gate_clk_hsdiv_restore_ops,
  			      &clkhwops_wait);
  }
  CLK_OF_DECLARE(ti_hsdiv_gate_clk, "ti,hsdiv-gate-clock",
  	       of_ti_hsdiv_gate_clk_setup);
  
  static void __init of_ti_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_gate_clk_setup(node, &omap_gate_clk_ops, NULL);
  }
826d89584   Rob Herring   clk: ti: add miss...
316
  CLK_OF_DECLARE(ti_gate_clk, "ti,gate-clock", of_ti_gate_clk_setup);
f60b1ea5e   Tero Kristo   CLK: TI: add supp...
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
  
  static void __init of_ti_wait_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_gate_clk_setup(node, &omap_gate_clk_ops, &clkhwops_wait);
  }
  CLK_OF_DECLARE(ti_wait_gate_clk, "ti,wait-gate-clock",
  	       of_ti_wait_gate_clk_setup);
  
  #ifdef CONFIG_ARCH_OMAP3
  static void __init of_ti_am35xx_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_gate_clk_setup(node, &omap_gate_clk_ops,
  			      &clkhwops_am35xx_ipss_module_wait);
  }
  CLK_OF_DECLARE(ti_am35xx_gate_clk, "ti,am35xx-gate-clock",
  	       of_ti_am35xx_gate_clk_setup);
  
  static void __init of_ti_dss_gate_clk_setup(struct device_node *node)
  {
  	_of_ti_gate_clk_setup(node, &omap_gate_clk_ops,
  			      &clkhwops_omap3430es2_dss_usbhost_wait);
  }
  CLK_OF_DECLARE(ti_dss_gate_clk, "ti,dss-gate-clock",
  	       of_ti_dss_gate_clk_setup);
  #endif