blob: 997357ef059e86a49507b14414be6eb15947817c [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;
Peter De Schrijver343a6072013-09-02 15:22:02 +030040extern int *periph_clk_enb_refcnt;
41
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +053042struct clk *tegra_clk_register_sync_source(const char *name,
43 unsigned long fixed_rate, unsigned long max_rate);
44
45/**
46 * struct tegra_clk_frac_div - fractional divider clock
47 *
48 * @hw: handle between common and hardware-specific interfaces
49 * @reg: register containing divider
50 * @flags: hardware-specific flags
51 * @shift: shift to the divider bit field
52 * @width: width of the divider bit field
53 * @frac_width: width of the fractional bit field
54 * @lock: register lock
55 *
56 * Flags:
57 * TEGRA_DIVIDER_ROUND_UP - This flags indicates to round up the divider value.
58 * TEGRA_DIVIDER_FIXED - Fixed rate PLL dividers has addition override bit, this
59 * flag indicates that this divider is for fixed rate PLL.
60 * TEGRA_DIVIDER_INT - Some modules can not cope with the duty cycle when
61 * fraction bit is set. This flags indicates to calculate divider for which
62 * fracton bit will be zero.
63 * TEGRA_DIVIDER_UART - UART module divider has additional enable bit which is
64 * set when divider value is not 0. This flags indicates that the divider
65 * is for UART module.
66 */
67struct tegra_clk_frac_div {
68 struct clk_hw hw;
69 void __iomem *reg;
70 u8 flags;
71 u8 shift;
72 u8 width;
73 u8 frac_width;
74 spinlock_t *lock;
75};
76
77#define to_clk_frac_div(_hw) container_of(_hw, struct tegra_clk_frac_div, hw)
78
79#define TEGRA_DIVIDER_ROUND_UP BIT(0)
80#define TEGRA_DIVIDER_FIXED BIT(1)
81#define TEGRA_DIVIDER_INT BIT(2)
82#define TEGRA_DIVIDER_UART BIT(3)
83
84extern const struct clk_ops tegra_clk_frac_div_ops;
85struct clk *tegra_clk_register_divider(const char *name,
86 const char *parent_name, void __iomem *reg,
87 unsigned long flags, u8 clk_divider_flags, u8 shift, u8 width,
88 u8 frac_width, spinlock_t *lock);
89
90/*
91 * Tegra PLL:
92 *
93 * In general, there are 3 requirements for each PLL
94 * that SW needs to be comply with.
95 * (1) Input frequency range (REF).
96 * (2) Comparison frequency range (CF). CF = REF/DIVM.
97 * (3) VCO frequency range (VCO). VCO = CF * DIVN.
98 *
99 * The final PLL output frequency (FO) = VCO >> DIVP.
100 */
101
102/**
103 * struct tegra_clk_pll_freq_table - PLL frequecy table
104 *
105 * @input_rate: input rate from source
106 * @output_rate: output rate from PLL for the input rate
107 * @n: feedback divider
108 * @m: input divider
109 * @p: post divider
110 * @cpcon: charge pump current
111 */
112struct tegra_clk_pll_freq_table {
113 unsigned long input_rate;
114 unsigned long output_rate;
115 u16 n;
116 u16 m;
117 u8 p;
118 u8 cpcon;
119};
120
121/**
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300122 * struct pdiv_map - map post divider to hw value
123 *
124 * @pdiv: post divider
125 * @hw_val: value to be written to the PLL hw
126 */
127struct pdiv_map {
128 u8 pdiv;
129 u8 hw_val;
130};
131
132/**
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300133 * struct div_nmp - offset and width of m,n and p fields
134 *
135 * @divn_shift: shift to the feedback divider bit field
136 * @divn_width: width of the feedback divider bit field
137 * @divm_shift: shift to the input divider bit field
138 * @divm_width: width of the input divider bit field
139 * @divp_shift: shift to the post divider bit field
140 * @divp_width: width of the post divider bit field
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300141 * @override_divn_shift: shift to the feedback divider bitfield in override reg
142 * @override_divm_shift: shift to the input divider bitfield in override reg
143 * @override_divp_shift: shift to the post divider bitfield in override reg
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300144 */
145struct div_nmp {
146 u8 divn_shift;
147 u8 divn_width;
148 u8 divm_shift;
149 u8 divm_width;
150 u8 divp_shift;
151 u8 divp_width;
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300152 u8 override_divn_shift;
153 u8 override_divm_shift;
154 u8 override_divp_shift;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300155};
156
157/**
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530158 * struct clk_pll_params - PLL parameters
159 *
160 * @input_min: Minimum input frequency
161 * @input_max: Maximum input frequency
162 * @cf_min: Minimum comparison frequency
163 * @cf_max: Maximum comparison frequency
164 * @vco_min: Minimum VCO frequency
165 * @vco_max: Maximum VCO frequency
166 * @base_reg: PLL base reg offset
167 * @misc_reg: PLL misc reg offset
168 * @lock_reg: PLL lock reg offset
169 * @lock_bit_idx: Bit index for PLL lock status
170 * @lock_enable_bit_idx: Bit index to enable PLL lock
171 * @lock_delay: Delay in us if PLL lock is not used
172 */
173struct tegra_clk_pll_params {
174 unsigned long input_min;
175 unsigned long input_max;
176 unsigned long cf_min;
177 unsigned long cf_max;
178 unsigned long vco_min;
179 unsigned long vco_max;
180
181 u32 base_reg;
182 u32 misc_reg;
183 u32 lock_reg;
Peter De Schrijver3e727712013-04-03 17:40:40 +0300184 u32 lock_mask;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530185 u32 lock_enable_bit_idx;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300186 u32 iddq_reg;
187 u32 iddq_bit_idx;
188 u32 aux_reg;
189 u32 dyn_ramp_reg;
190 u32 ext_misc_reg[3];
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300191 u32 pmc_divnm_reg;
192 u32 pmc_divp_reg;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300193 int stepa_shift;
194 int stepb_shift;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530195 int lock_delay;
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300196 int max_p;
197 struct pdiv_map *pdiv_tohw;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300198 struct div_nmp *div_nmp;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530199};
200
201/**
202 * struct tegra_clk_pll - Tegra PLL clock
203 *
204 * @hw: handle between common and hardware-specifix interfaces
205 * @clk_base: address of CAR controller
206 * @pmc: address of PMC, required to read override bits
207 * @freq_table: array of frequencies supported by PLL
208 * @params: PLL parameters
209 * @flags: PLL flags
210 * @fixed_rate: PLL rate if it is fixed
211 * @lock: register lock
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530212 *
213 * Flags:
214 * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
215 * PLL locking. If not set it will use lock_delay value to wait.
216 * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs
217 * to be programmed to change output frequency of the PLL.
218 * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs
219 * to be programmed to change output frequency of the PLL.
220 * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs
221 * to be programmed to change output frequency of the PLL.
222 * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated
223 * that it is PLLU and invert post divider value.
224 * TEGRA_PLLM - PLLM has additional override settings in PMC. This
225 * flag indicates that it is PLLM and use override settings.
226 * TEGRA_PLL_FIXED - We are not supposed to change output frequency
227 * of some plls.
228 * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling.
Peter De Schrijverdba40722013-04-03 17:40:36 +0300229 * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the
230 * base register.
Peter De Schrijverdd935872013-04-03 17:40:37 +0300231 * TEGRA_PLL_BYPASS - PLL has bypass bit
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300232 * TEGRA_PLL_HAS_LOCK_ENABLE - PLL has bit to enable lock monitoring
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530233 */
234struct tegra_clk_pll {
235 struct clk_hw hw;
236 void __iomem *clk_base;
237 void __iomem *pmc;
Peter De Schrijverdba40722013-04-03 17:40:36 +0300238 u32 flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530239 unsigned long fixed_rate;
240 spinlock_t *lock;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530241 struct tegra_clk_pll_freq_table *freq_table;
242 struct tegra_clk_pll_params *params;
243};
244
245#define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw)
246
247#define TEGRA_PLL_USE_LOCK BIT(0)
248#define TEGRA_PLL_HAS_CPCON BIT(1)
249#define TEGRA_PLL_SET_LFCON BIT(2)
250#define TEGRA_PLL_SET_DCCON BIT(3)
251#define TEGRA_PLLU BIT(4)
252#define TEGRA_PLLM BIT(5)
253#define TEGRA_PLL_FIXED BIT(6)
254#define TEGRA_PLLE_CONFIGURE BIT(7)
Peter De Schrijverdba40722013-04-03 17:40:36 +0300255#define TEGRA_PLL_LOCK_MISC BIT(8)
Peter De Schrijverdd935872013-04-03 17:40:37 +0300256#define TEGRA_PLL_BYPASS BIT(9)
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300257#define TEGRA_PLL_HAS_LOCK_ENABLE BIT(10)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530258
259extern const struct clk_ops tegra_clk_pll_ops;
260extern const struct clk_ops tegra_clk_plle_ops;
261struct clk *tegra_clk_register_pll(const char *name, const char *parent_name,
262 void __iomem *clk_base, void __iomem *pmc,
263 unsigned long flags, unsigned long fixed_rate,
Peter De Schrijverdba40722013-04-03 17:40:36 +0300264 struct tegra_clk_pll_params *pll_params, u32 pll_flags,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530265 struct tegra_clk_pll_freq_table *freq_table, spinlock_t *lock);
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300266
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530267struct clk *tegra_clk_register_plle(const char *name, const char *parent_name,
268 void __iomem *clk_base, void __iomem *pmc,
269 unsigned long flags, unsigned long fixed_rate,
Peter De Schrijverdba40722013-04-03 17:40:36 +0300270 struct tegra_clk_pll_params *pll_params, u32 pll_flags,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530271 struct tegra_clk_pll_freq_table *freq_table, spinlock_t *lock);
272
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300273struct clk *tegra_clk_register_pllxc(const char *name, const char *parent_name,
274 void __iomem *clk_base, void __iomem *pmc,
275 unsigned long flags, unsigned long fixed_rate,
276 struct tegra_clk_pll_params *pll_params,
277 u32 pll_flags,
278 struct tegra_clk_pll_freq_table *freq_table,
279 spinlock_t *lock);
280
281struct clk *tegra_clk_register_pllm(const char *name, const char *parent_name,
282 void __iomem *clk_base, void __iomem *pmc,
283 unsigned long flags, unsigned long fixed_rate,
284 struct tegra_clk_pll_params *pll_params,
285 u32 pll_flags,
286 struct tegra_clk_pll_freq_table *freq_table,
287 spinlock_t *lock);
288
289struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name,
290 void __iomem *clk_base, void __iomem *pmc,
291 unsigned long flags, unsigned long fixed_rate,
292 struct tegra_clk_pll_params *pll_params,
293 u32 pll_flags,
294 struct tegra_clk_pll_freq_table *freq_table,
295 spinlock_t *lock);
296
297struct clk *tegra_clk_register_pllre(const char *name, const char *parent_name,
298 void __iomem *clk_base, void __iomem *pmc,
299 unsigned long flags, unsigned long fixed_rate,
300 struct tegra_clk_pll_params *pll_params,
301 u32 pll_flags,
302 struct tegra_clk_pll_freq_table *freq_table,
303 spinlock_t *lock, unsigned long parent_rate);
304
305struct clk *tegra_clk_register_plle_tegra114(const char *name,
306 const char *parent_name,
307 void __iomem *clk_base, unsigned long flags,
308 unsigned long fixed_rate,
309 struct tegra_clk_pll_params *pll_params,
310 struct tegra_clk_pll_freq_table *freq_table,
311 spinlock_t *lock);
312
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530313/**
314 * struct tegra_clk_pll_out - PLL divider down clock
315 *
316 * @hw: handle between common and hardware-specific interfaces
317 * @reg: register containing the PLL divider
318 * @enb_bit_idx: bit to enable/disable PLL divider
319 * @rst_bit_idx: bit to reset PLL divider
320 * @lock: register lock
321 * @flags: hardware-specific flags
322 */
323struct tegra_clk_pll_out {
324 struct clk_hw hw;
325 void __iomem *reg;
326 u8 enb_bit_idx;
327 u8 rst_bit_idx;
328 spinlock_t *lock;
329 u8 flags;
330};
331
332#define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw)
333
334extern const struct clk_ops tegra_clk_pll_out_ops;
335struct clk *tegra_clk_register_pll_out(const char *name,
336 const char *parent_name, void __iomem *reg, u8 enb_bit_idx,
337 u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags,
338 spinlock_t *lock);
339
340/**
341 * struct tegra_clk_periph_regs - Registers controlling peripheral clock
342 *
343 * @enb_reg: read the enable status
344 * @enb_set_reg: write 1 to enable clock
345 * @enb_clr_reg: write 1 to disable clock
346 * @rst_reg: read the reset status
347 * @rst_set_reg: write 1 to assert the reset of peripheral
348 * @rst_clr_reg: write 1 to deassert the reset of peripheral
349 */
350struct tegra_clk_periph_regs {
351 u32 enb_reg;
352 u32 enb_set_reg;
353 u32 enb_clr_reg;
354 u32 rst_reg;
355 u32 rst_set_reg;
356 u32 rst_clr_reg;
357};
358
359/**
360 * struct tegra_clk_periph_gate - peripheral gate clock
361 *
362 * @magic: magic number to validate type
363 * @hw: handle between common and hardware-specific interfaces
364 * @clk_base: address of CAR controller
365 * @regs: Registers to control the peripheral
366 * @flags: hardware-specific flags
367 * @clk_num: Clock number
368 * @enable_refcnt: array to maintain reference count of the clock
369 *
370 * Flags:
371 * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed
372 * for this module.
373 * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module
374 * after clock enable and driver for the module is responsible for
375 * doing reset.
376 * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the
377 * bus to flush the write operation in apb bus. This flag indicates
378 * that this peripheral is in apb bus.
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300379 * TEGRA_PERIPH_WAR_1005168 - Apply workaround for Tegra114 MSENC bug
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530380 */
381struct tegra_clk_periph_gate {
382 u32 magic;
383 struct clk_hw hw;
384 void __iomem *clk_base;
385 u8 flags;
386 int clk_num;
387 int *enable_refcnt;
388 struct tegra_clk_periph_regs *regs;
389};
390
391#define to_clk_periph_gate(_hw) \
392 container_of(_hw, struct tegra_clk_periph_gate, hw)
393
394#define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309
395
396#define TEGRA_PERIPH_NO_RESET BIT(0)
397#define TEGRA_PERIPH_MANUAL_RESET BIT(1)
398#define TEGRA_PERIPH_ON_APB BIT(2)
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300399#define TEGRA_PERIPH_WAR_1005168 BIT(3)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530400
401void tegra_periph_reset(struct tegra_clk_periph_gate *gate, bool assert);
402extern const struct clk_ops tegra_clk_periph_gate_ops;
403struct clk *tegra_clk_register_periph_gate(const char *name,
404 const char *parent_name, u8 gate_flags, void __iomem *clk_base,
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300405 unsigned long flags, int clk_num, int *enable_refcnt);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530406
407/**
408 * struct clk-periph - peripheral clock
409 *
410 * @magic: magic number to validate type
411 * @hw: handle between common and hardware-specific interfaces
412 * @mux: mux clock
413 * @divider: divider clock
414 * @gate: gate clock
415 * @mux_ops: mux clock ops
416 * @div_ops: divider clock ops
417 * @gate_ops: gate clock ops
418 */
419struct tegra_clk_periph {
420 u32 magic;
421 struct clk_hw hw;
422 struct clk_mux mux;
423 struct tegra_clk_frac_div divider;
424 struct tegra_clk_periph_gate gate;
425
426 const struct clk_ops *mux_ops;
427 const struct clk_ops *div_ops;
428 const struct clk_ops *gate_ops;
429};
430
431#define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw)
432
433#define TEGRA_CLK_PERIPH_MAGIC 0x18221223
434
435extern const struct clk_ops tegra_clk_periph_ops;
436struct clk *tegra_clk_register_periph(const char *name,
437 const char **parent_names, int num_parents,
438 struct tegra_clk_periph *periph, void __iomem *clk_base,
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300439 u32 offset, unsigned long flags);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530440struct clk *tegra_clk_register_periph_nodiv(const char *name,
441 const char **parent_names, int num_parents,
442 struct tegra_clk_periph *periph, void __iomem *clk_base,
443 u32 offset);
444
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200445#define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530446 _div_shift, _div_width, _div_frac_width, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300447 _div_flags, _clk_num,\
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200448 _gate_flags, _table) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530449 { \
450 .mux = { \
451 .flags = _mux_flags, \
452 .shift = _mux_shift, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200453 .mask = _mux_mask, \
454 .table = _table, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530455 }, \
456 .divider = { \
457 .flags = _div_flags, \
458 .shift = _div_shift, \
459 .width = _div_width, \
460 .frac_width = _div_frac_width, \
461 }, \
462 .gate = { \
463 .flags = _gate_flags, \
464 .clk_num = _clk_num, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530465 }, \
466 .mux_ops = &clk_mux_ops, \
467 .div_ops = &tegra_clk_frac_div_ops, \
468 .gate_ops = &tegra_clk_periph_gate_ops, \
469 }
470
471struct tegra_periph_init_data {
472 const char *name;
473 int clk_id;
474 const char **parent_names;
475 int num_parents;
476 struct tegra_clk_periph periph;
477 u32 offset;
478 const char *con_id;
479 const char *dev_id;
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300480 unsigned long flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530481};
482
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200483#define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
484 _mux_shift, _mux_mask, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300485 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300486 _clk_num, _gate_flags, _clk_id, _table, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300487 _flags) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530488 { \
489 .name = _name, \
490 .clk_id = _clk_id, \
491 .parent_names = _parent_names, \
492 .num_parents = ARRAY_SIZE(_parent_names), \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200493 .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530494 _mux_flags, _div_shift, \
495 _div_width, _div_frac_width, \
496 _div_flags, _clk_num, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200497 _gate_flags, _table), \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530498 .offset = _offset, \
499 .con_id = _con_id, \
500 .dev_id = _dev_id, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300501 .flags = _flags \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530502 }
503
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200504#define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\
505 _mux_shift, _mux_width, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300506 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300507 _clk_num, _gate_flags, _clk_id) \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200508 TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
509 _mux_shift, BIT(_mux_width) - 1, _mux_flags, \
510 _div_shift, _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300511 _clk_num, _gate_flags, _clk_id,\
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300512 NULL, 0)
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200513
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530514/**
515 * struct clk_super_mux - super clock
516 *
517 * @hw: handle between common and hardware-specific interfaces
518 * @reg: register controlling multiplexer
519 * @width: width of the multiplexer bit field
520 * @flags: hardware-specific flags
521 * @div2_index: bit controlling divide-by-2
522 * @pllx_index: PLLX index in the parent list
523 * @lock: register lock
524 *
525 * Flags:
526 * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates
527 * that this is LP cluster clock.
528 */
529struct tegra_clk_super_mux {
530 struct clk_hw hw;
531 void __iomem *reg;
532 u8 width;
533 u8 flags;
534 u8 div2_index;
535 u8 pllx_index;
536 spinlock_t *lock;
537};
538
539#define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw)
540
541#define TEGRA_DIVIDER_2 BIT(0)
542
543extern const struct clk_ops tegra_clk_super_ops;
544struct clk *tegra_clk_register_super_mux(const char *name,
545 const char **parent_names, u8 num_parents,
546 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
547 u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock);
548
549/**
550 * struct clk_init_tabel - clock initialization table
551 * @clk_id: clock id as mentioned in device tree bindings
552 * @parent_id: parent clock id as mentioned in device tree bindings
553 * @rate: rate to set
554 * @state: enable/disable
555 */
556struct tegra_clk_init_table {
557 unsigned int clk_id;
558 unsigned int parent_id;
559 unsigned long rate;
560 int state;
561};
562
563/**
564 * struct clk_duplicate - duplicate clocks
565 * @clk_id: clock id as mentioned in device tree bindings
566 * @lookup: duplicate lookup entry for the clock
567 */
568struct tegra_clk_duplicate {
569 int clk_id;
570 struct clk_lookup lookup;
571};
572
573#define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \
574 { \
575 .clk_id = _clk_id, \
576 .lookup = { \
577 .dev_id = _dev, \
578 .con_id = _con, \
579 }, \
580 }
581
582void tegra_init_from_table(struct tegra_clk_init_table *tbl,
583 struct clk *clks[], int clk_max);
584
585void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list,
586 struct clk *clks[], int clk_max);
587
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300588struct tegra_clk_periph_regs *get_reg_bank(int clkid);
Peter De Schrijver343a6072013-09-02 15:22:02 +0300589struct clk **tegra_clk_init(int num, int periph_banks);
590
591void tegra_add_of_provider(struct device_node *np);
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300592
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600593void tegra114_clock_tune_cpu_trimmers_high(void);
594void tegra114_clock_tune_cpu_trimmers_low(void);
595void tegra114_clock_tune_cpu_trimmers_init(void);
Paul Walmsley1c472d82013-06-07 06:19:09 -0600596void tegra114_clock_assert_dfll_dvco_reset(void);
597void tegra114_clock_deassert_dfll_dvco_reset(void);
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600598
Stephen Warren441f1992013-03-25 13:22:24 -0600599typedef void (*tegra_clk_apply_init_table_func)(void);
600extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
601
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530602#endif /* TEGRA_CLK_H */