blob: fd12b77c985dbf9b3145e226ea3c258d80c3bb15 [file] [log] [blame]
Peter De Schrijverc1d19392013-04-03 17:40:41 +03001 /*
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +05302 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef __TEGRA_CLK_H
18#define __TEGRA_CLK_H
19
20#include <linux/clk-provider.h>
21#include <linux/clkdev.h>
22
23/**
24 * struct tegra_clk_sync_source - external clock source from codec
25 *
26 * @hw: handle between common and hardware-specific interfaces
27 * @rate: input frequency from source
28 * @max_rate: max rate allowed
29 */
30struct tegra_clk_sync_source {
31 struct clk_hw hw;
32 unsigned long rate;
33 unsigned long max_rate;
34};
35
36#define to_clk_sync_source(_hw) \
37 container_of(_hw, struct tegra_clk_sync_source, hw)
38
39extern const struct clk_ops tegra_clk_sync_source_ops;
40struct clk *tegra_clk_register_sync_source(const char *name,
41 unsigned long fixed_rate, unsigned long max_rate);
42
43/**
44 * struct tegra_clk_frac_div - fractional divider clock
45 *
46 * @hw: handle between common and hardware-specific interfaces
47 * @reg: register containing divider
48 * @flags: hardware-specific flags
49 * @shift: shift to the divider bit field
50 * @width: width of the divider bit field
51 * @frac_width: width of the fractional bit field
52 * @lock: register lock
53 *
54 * Flags:
55 * TEGRA_DIVIDER_ROUND_UP - This flags indicates to round up the divider value.
56 * TEGRA_DIVIDER_FIXED - Fixed rate PLL dividers has addition override bit, this
57 * flag indicates that this divider is for fixed rate PLL.
58 * TEGRA_DIVIDER_INT - Some modules can not cope with the duty cycle when
59 * fraction bit is set. This flags indicates to calculate divider for which
60 * fracton bit will be zero.
61 * TEGRA_DIVIDER_UART - UART module divider has additional enable bit which is
62 * set when divider value is not 0. This flags indicates that the divider
63 * is for UART module.
64 */
65struct tegra_clk_frac_div {
66 struct clk_hw hw;
67 void __iomem *reg;
68 u8 flags;
69 u8 shift;
70 u8 width;
71 u8 frac_width;
72 spinlock_t *lock;
73};
74
75#define to_clk_frac_div(_hw) container_of(_hw, struct tegra_clk_frac_div, hw)
76
77#define TEGRA_DIVIDER_ROUND_UP BIT(0)
78#define TEGRA_DIVIDER_FIXED BIT(1)
79#define TEGRA_DIVIDER_INT BIT(2)
80#define TEGRA_DIVIDER_UART BIT(3)
81
82extern const struct clk_ops tegra_clk_frac_div_ops;
83struct clk *tegra_clk_register_divider(const char *name,
84 const char *parent_name, void __iomem *reg,
85 unsigned long flags, u8 clk_divider_flags, u8 shift, u8 width,
86 u8 frac_width, spinlock_t *lock);
87
88/*
89 * Tegra PLL:
90 *
91 * In general, there are 3 requirements for each PLL
92 * that SW needs to be comply with.
93 * (1) Input frequency range (REF).
94 * (2) Comparison frequency range (CF). CF = REF/DIVM.
95 * (3) VCO frequency range (VCO). VCO = CF * DIVN.
96 *
97 * The final PLL output frequency (FO) = VCO >> DIVP.
98 */
99
100/**
101 * struct tegra_clk_pll_freq_table - PLL frequecy table
102 *
103 * @input_rate: input rate from source
104 * @output_rate: output rate from PLL for the input rate
105 * @n: feedback divider
106 * @m: input divider
107 * @p: post divider
108 * @cpcon: charge pump current
109 */
110struct tegra_clk_pll_freq_table {
111 unsigned long input_rate;
112 unsigned long output_rate;
113 u16 n;
114 u16 m;
115 u8 p;
116 u8 cpcon;
117};
118
119/**
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300120 * struct pdiv_map - map post divider to hw value
121 *
122 * @pdiv: post divider
123 * @hw_val: value to be written to the PLL hw
124 */
125struct pdiv_map {
126 u8 pdiv;
127 u8 hw_val;
128};
129
130/**
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530131 * struct clk_pll_params - PLL parameters
132 *
133 * @input_min: Minimum input frequency
134 * @input_max: Maximum input frequency
135 * @cf_min: Minimum comparison frequency
136 * @cf_max: Maximum comparison frequency
137 * @vco_min: Minimum VCO frequency
138 * @vco_max: Maximum VCO frequency
139 * @base_reg: PLL base reg offset
140 * @misc_reg: PLL misc reg offset
141 * @lock_reg: PLL lock reg offset
142 * @lock_bit_idx: Bit index for PLL lock status
143 * @lock_enable_bit_idx: Bit index to enable PLL lock
144 * @lock_delay: Delay in us if PLL lock is not used
145 */
146struct tegra_clk_pll_params {
147 unsigned long input_min;
148 unsigned long input_max;
149 unsigned long cf_min;
150 unsigned long cf_max;
151 unsigned long vco_min;
152 unsigned long vco_max;
153
154 u32 base_reg;
155 u32 misc_reg;
156 u32 lock_reg;
Peter De Schrijver3e727712013-04-03 17:40:40 +0300157 u32 lock_mask;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530158 u32 lock_enable_bit_idx;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300159 u32 iddq_reg;
160 u32 iddq_bit_idx;
161 u32 aux_reg;
162 u32 dyn_ramp_reg;
163 u32 ext_misc_reg[3];
164 int stepa_shift;
165 int stepb_shift;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530166 int lock_delay;
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300167 int max_p;
168 struct pdiv_map *pdiv_tohw;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530169};
170
171/**
172 * struct tegra_clk_pll - Tegra PLL clock
173 *
174 * @hw: handle between common and hardware-specifix interfaces
175 * @clk_base: address of CAR controller
176 * @pmc: address of PMC, required to read override bits
177 * @freq_table: array of frequencies supported by PLL
178 * @params: PLL parameters
179 * @flags: PLL flags
180 * @fixed_rate: PLL rate if it is fixed
181 * @lock: register lock
182 * @divn_shift: shift to the feedback divider bit field
183 * @divn_width: width of the feedback divider bit field
184 * @divm_shift: shift to the input divider bit field
185 * @divm_width: width of the input divider bit field
186 * @divp_shift: shift to the post divider bit field
187 * @divp_width: width of the post divider bit field
188 *
189 * Flags:
190 * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
191 * PLL locking. If not set it will use lock_delay value to wait.
192 * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs
193 * to be programmed to change output frequency of the PLL.
194 * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs
195 * to be programmed to change output frequency of the PLL.
196 * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs
197 * to be programmed to change output frequency of the PLL.
198 * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated
199 * that it is PLLU and invert post divider value.
200 * TEGRA_PLLM - PLLM has additional override settings in PMC. This
201 * flag indicates that it is PLLM and use override settings.
202 * TEGRA_PLL_FIXED - We are not supposed to change output frequency
203 * of some plls.
204 * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling.
Peter De Schrijverdba40722013-04-03 17:40:36 +0300205 * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the
206 * base register.
Peter De Schrijverdd935872013-04-03 17:40:37 +0300207 * TEGRA_PLL_BYPASS - PLL has bypass bit
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300208 * TEGRA_PLL_HAS_LOCK_ENABLE - PLL has bit to enable lock monitoring
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530209 */
210struct tegra_clk_pll {
211 struct clk_hw hw;
212 void __iomem *clk_base;
213 void __iomem *pmc;
Peter De Schrijverdba40722013-04-03 17:40:36 +0300214 u32 flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530215 unsigned long fixed_rate;
216 spinlock_t *lock;
217 u8 divn_shift;
218 u8 divn_width;
219 u8 divm_shift;
220 u8 divm_width;
221 u8 divp_shift;
222 u8 divp_width;
223 struct tegra_clk_pll_freq_table *freq_table;
224 struct tegra_clk_pll_params *params;
225};
226
227#define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw)
228
229#define TEGRA_PLL_USE_LOCK BIT(0)
230#define TEGRA_PLL_HAS_CPCON BIT(1)
231#define TEGRA_PLL_SET_LFCON BIT(2)
232#define TEGRA_PLL_SET_DCCON BIT(3)
233#define TEGRA_PLLU BIT(4)
234#define TEGRA_PLLM BIT(5)
235#define TEGRA_PLL_FIXED BIT(6)
236#define TEGRA_PLLE_CONFIGURE BIT(7)
Peter De Schrijverdba40722013-04-03 17:40:36 +0300237#define TEGRA_PLL_LOCK_MISC BIT(8)
Peter De Schrijverdd935872013-04-03 17:40:37 +0300238#define TEGRA_PLL_BYPASS BIT(9)
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300239#define TEGRA_PLL_HAS_LOCK_ENABLE BIT(10)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530240
241extern const struct clk_ops tegra_clk_pll_ops;
242extern const struct clk_ops tegra_clk_plle_ops;
243struct clk *tegra_clk_register_pll(const char *name, const char *parent_name,
244 void __iomem *clk_base, void __iomem *pmc,
245 unsigned long flags, unsigned long fixed_rate,
Peter De Schrijverdba40722013-04-03 17:40:36 +0300246 struct tegra_clk_pll_params *pll_params, u32 pll_flags,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530247 struct tegra_clk_pll_freq_table *freq_table, spinlock_t *lock);
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300248
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530249struct clk *tegra_clk_register_plle(const char *name, const char *parent_name,
250 void __iomem *clk_base, void __iomem *pmc,
251 unsigned long flags, unsigned long fixed_rate,
Peter De Schrijverdba40722013-04-03 17:40:36 +0300252 struct tegra_clk_pll_params *pll_params, u32 pll_flags,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530253 struct tegra_clk_pll_freq_table *freq_table, spinlock_t *lock);
254
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300255struct clk *tegra_clk_register_pllxc(const char *name, const char *parent_name,
256 void __iomem *clk_base, void __iomem *pmc,
257 unsigned long flags, unsigned long fixed_rate,
258 struct tegra_clk_pll_params *pll_params,
259 u32 pll_flags,
260 struct tegra_clk_pll_freq_table *freq_table,
261 spinlock_t *lock);
262
263struct clk *tegra_clk_register_pllm(const char *name, const char *parent_name,
264 void __iomem *clk_base, void __iomem *pmc,
265 unsigned long flags, unsigned long fixed_rate,
266 struct tegra_clk_pll_params *pll_params,
267 u32 pll_flags,
268 struct tegra_clk_pll_freq_table *freq_table,
269 spinlock_t *lock);
270
271struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name,
272 void __iomem *clk_base, void __iomem *pmc,
273 unsigned long flags, unsigned long fixed_rate,
274 struct tegra_clk_pll_params *pll_params,
275 u32 pll_flags,
276 struct tegra_clk_pll_freq_table *freq_table,
277 spinlock_t *lock);
278
279struct clk *tegra_clk_register_pllre(const char *name, const char *parent_name,
280 void __iomem *clk_base, void __iomem *pmc,
281 unsigned long flags, unsigned long fixed_rate,
282 struct tegra_clk_pll_params *pll_params,
283 u32 pll_flags,
284 struct tegra_clk_pll_freq_table *freq_table,
285 spinlock_t *lock, unsigned long parent_rate);
286
287struct clk *tegra_clk_register_plle_tegra114(const char *name,
288 const char *parent_name,
289 void __iomem *clk_base, unsigned long flags,
290 unsigned long fixed_rate,
291 struct tegra_clk_pll_params *pll_params,
292 struct tegra_clk_pll_freq_table *freq_table,
293 spinlock_t *lock);
294
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530295/**
296 * struct tegra_clk_pll_out - PLL divider down clock
297 *
298 * @hw: handle between common and hardware-specific interfaces
299 * @reg: register containing the PLL divider
300 * @enb_bit_idx: bit to enable/disable PLL divider
301 * @rst_bit_idx: bit to reset PLL divider
302 * @lock: register lock
303 * @flags: hardware-specific flags
304 */
305struct tegra_clk_pll_out {
306 struct clk_hw hw;
307 void __iomem *reg;
308 u8 enb_bit_idx;
309 u8 rst_bit_idx;
310 spinlock_t *lock;
311 u8 flags;
312};
313
314#define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw)
315
316extern const struct clk_ops tegra_clk_pll_out_ops;
317struct clk *tegra_clk_register_pll_out(const char *name,
318 const char *parent_name, void __iomem *reg, u8 enb_bit_idx,
319 u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags,
320 spinlock_t *lock);
321
322/**
323 * struct tegra_clk_periph_regs - Registers controlling peripheral clock
324 *
325 * @enb_reg: read the enable status
326 * @enb_set_reg: write 1 to enable clock
327 * @enb_clr_reg: write 1 to disable clock
328 * @rst_reg: read the reset status
329 * @rst_set_reg: write 1 to assert the reset of peripheral
330 * @rst_clr_reg: write 1 to deassert the reset of peripheral
331 */
332struct tegra_clk_periph_regs {
333 u32 enb_reg;
334 u32 enb_set_reg;
335 u32 enb_clr_reg;
336 u32 rst_reg;
337 u32 rst_set_reg;
338 u32 rst_clr_reg;
339};
340
341/**
342 * struct tegra_clk_periph_gate - peripheral gate clock
343 *
344 * @magic: magic number to validate type
345 * @hw: handle between common and hardware-specific interfaces
346 * @clk_base: address of CAR controller
347 * @regs: Registers to control the peripheral
348 * @flags: hardware-specific flags
349 * @clk_num: Clock number
350 * @enable_refcnt: array to maintain reference count of the clock
351 *
352 * Flags:
353 * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed
354 * for this module.
355 * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module
356 * after clock enable and driver for the module is responsible for
357 * doing reset.
358 * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the
359 * bus to flush the write operation in apb bus. This flag indicates
360 * that this peripheral is in apb bus.
361 */
362struct tegra_clk_periph_gate {
363 u32 magic;
364 struct clk_hw hw;
365 void __iomem *clk_base;
366 u8 flags;
367 int clk_num;
368 int *enable_refcnt;
369 struct tegra_clk_periph_regs *regs;
370};
371
372#define to_clk_periph_gate(_hw) \
373 container_of(_hw, struct tegra_clk_periph_gate, hw)
374
375#define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309
376
377#define TEGRA_PERIPH_NO_RESET BIT(0)
378#define TEGRA_PERIPH_MANUAL_RESET BIT(1)
379#define TEGRA_PERIPH_ON_APB BIT(2)
380
381void tegra_periph_reset(struct tegra_clk_periph_gate *gate, bool assert);
382extern const struct clk_ops tegra_clk_periph_gate_ops;
383struct clk *tegra_clk_register_periph_gate(const char *name,
384 const char *parent_name, u8 gate_flags, void __iomem *clk_base,
385 unsigned long flags, int clk_num,
386 struct tegra_clk_periph_regs *pregs, int *enable_refcnt);
387
388/**
389 * struct clk-periph - peripheral clock
390 *
391 * @magic: magic number to validate type
392 * @hw: handle between common and hardware-specific interfaces
393 * @mux: mux clock
394 * @divider: divider clock
395 * @gate: gate clock
396 * @mux_ops: mux clock ops
397 * @div_ops: divider clock ops
398 * @gate_ops: gate clock ops
399 */
400struct tegra_clk_periph {
401 u32 magic;
402 struct clk_hw hw;
403 struct clk_mux mux;
404 struct tegra_clk_frac_div divider;
405 struct tegra_clk_periph_gate gate;
406
407 const struct clk_ops *mux_ops;
408 const struct clk_ops *div_ops;
409 const struct clk_ops *gate_ops;
410};
411
412#define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw)
413
414#define TEGRA_CLK_PERIPH_MAGIC 0x18221223
415
416extern const struct clk_ops tegra_clk_periph_ops;
417struct clk *tegra_clk_register_periph(const char *name,
418 const char **parent_names, int num_parents,
419 struct tegra_clk_periph *periph, void __iomem *clk_base,
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300420 u32 offset, unsigned long flags);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530421struct clk *tegra_clk_register_periph_nodiv(const char *name,
422 const char **parent_names, int num_parents,
423 struct tegra_clk_periph *periph, void __iomem *clk_base,
424 u32 offset);
425
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200426#define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530427 _div_shift, _div_width, _div_frac_width, \
428 _div_flags, _clk_num, _enb_refcnt, _regs, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200429 _gate_flags, _table) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530430 { \
431 .mux = { \
432 .flags = _mux_flags, \
433 .shift = _mux_shift, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200434 .mask = _mux_mask, \
435 .table = _table, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530436 }, \
437 .divider = { \
438 .flags = _div_flags, \
439 .shift = _div_shift, \
440 .width = _div_width, \
441 .frac_width = _div_frac_width, \
442 }, \
443 .gate = { \
444 .flags = _gate_flags, \
445 .clk_num = _clk_num, \
446 .enable_refcnt = _enb_refcnt, \
447 .regs = _regs, \
448 }, \
449 .mux_ops = &clk_mux_ops, \
450 .div_ops = &tegra_clk_frac_div_ops, \
451 .gate_ops = &tegra_clk_periph_gate_ops, \
452 }
453
454struct tegra_periph_init_data {
455 const char *name;
456 int clk_id;
457 const char **parent_names;
458 int num_parents;
459 struct tegra_clk_periph periph;
460 u32 offset;
461 const char *con_id;
462 const char *dev_id;
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300463 unsigned long flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530464};
465
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200466#define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
467 _mux_shift, _mux_mask, _mux_flags, _div_shift, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530468 _div_width, _div_frac_width, _div_flags, _regs, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300469 _clk_num, _enb_refcnt, _gate_flags, _clk_id, _table,\
470 _flags) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530471 { \
472 .name = _name, \
473 .clk_id = _clk_id, \
474 .parent_names = _parent_names, \
475 .num_parents = ARRAY_SIZE(_parent_names), \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200476 .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530477 _mux_flags, _div_shift, \
478 _div_width, _div_frac_width, \
479 _div_flags, _clk_num, \
480 _enb_refcnt, _regs, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200481 _gate_flags, _table), \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530482 .offset = _offset, \
483 .con_id = _con_id, \
484 .dev_id = _dev_id, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300485 .flags = _flags \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530486 }
487
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200488#define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\
489 _mux_shift, _mux_width, _mux_flags, _div_shift, \
490 _div_width, _div_frac_width, _div_flags, _regs, \
491 _clk_num, _enb_refcnt, _gate_flags, _clk_id) \
492 TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
493 _mux_shift, BIT(_mux_width) - 1, _mux_flags, \
494 _div_shift, _div_width, _div_frac_width, _div_flags, \
495 _regs, _clk_num, _enb_refcnt, _gate_flags, _clk_id,\
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300496 NULL, 0)
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200497
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530498/**
499 * struct clk_super_mux - super clock
500 *
501 * @hw: handle between common and hardware-specific interfaces
502 * @reg: register controlling multiplexer
503 * @width: width of the multiplexer bit field
504 * @flags: hardware-specific flags
505 * @div2_index: bit controlling divide-by-2
506 * @pllx_index: PLLX index in the parent list
507 * @lock: register lock
508 *
509 * Flags:
510 * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates
511 * that this is LP cluster clock.
512 */
513struct tegra_clk_super_mux {
514 struct clk_hw hw;
515 void __iomem *reg;
516 u8 width;
517 u8 flags;
518 u8 div2_index;
519 u8 pllx_index;
520 spinlock_t *lock;
521};
522
523#define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw)
524
525#define TEGRA_DIVIDER_2 BIT(0)
526
527extern const struct clk_ops tegra_clk_super_ops;
528struct clk *tegra_clk_register_super_mux(const char *name,
529 const char **parent_names, u8 num_parents,
530 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
531 u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock);
532
533/**
534 * struct clk_init_tabel - clock initialization table
535 * @clk_id: clock id as mentioned in device tree bindings
536 * @parent_id: parent clock id as mentioned in device tree bindings
537 * @rate: rate to set
538 * @state: enable/disable
539 */
540struct tegra_clk_init_table {
541 unsigned int clk_id;
542 unsigned int parent_id;
543 unsigned long rate;
544 int state;
545};
546
547/**
548 * struct clk_duplicate - duplicate clocks
549 * @clk_id: clock id as mentioned in device tree bindings
550 * @lookup: duplicate lookup entry for the clock
551 */
552struct tegra_clk_duplicate {
553 int clk_id;
554 struct clk_lookup lookup;
555};
556
557#define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \
558 { \
559 .clk_id = _clk_id, \
560 .lookup = { \
561 .dev_id = _dev, \
562 .con_id = _con, \
563 }, \
564 }
565
566void tegra_init_from_table(struct tegra_clk_init_table *tbl,
567 struct clk *clks[], int clk_max);
568
569void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list,
570 struct clk *clks[], int clk_max);
571
Prashant Gaikwad37c26a92013-01-11 13:16:24 +0530572#ifdef CONFIG_ARCH_TEGRA_2x_SOC
573void tegra20_clock_init(struct device_node *np);
574#else
575static inline void tegra20_clock_init(struct device_node *np) {}
576#endif /* CONFIG_ARCH_TEGRA_2x_SOC */
577
Prashant Gaikwadb08e8c02013-01-11 13:16:25 +0530578#ifdef CONFIG_ARCH_TEGRA_3x_SOC
579void tegra30_clock_init(struct device_node *np);
580#else
581static inline void tegra30_clock_init(struct device_node *np) {}
582#endif /* CONFIG_ARCH_TEGRA_3x_SOC */
583
Stephen Warren441f1992013-03-25 13:22:24 -0600584typedef void (*tegra_clk_apply_init_table_func)(void);
585extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
586
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530587#endif /* TEGRA_CLK_H */