blob: b9691ddcbd9b5cc01623aaa5f8a9f3a58de1a851 [file] [log] [blame]
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +05301/*
2 * 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/**
120 * struct clk_pll_params - PLL parameters
121 *
122 * @input_min: Minimum input frequency
123 * @input_max: Maximum input frequency
124 * @cf_min: Minimum comparison frequency
125 * @cf_max: Maximum comparison frequency
126 * @vco_min: Minimum VCO frequency
127 * @vco_max: Maximum VCO frequency
128 * @base_reg: PLL base reg offset
129 * @misc_reg: PLL misc reg offset
130 * @lock_reg: PLL lock reg offset
131 * @lock_bit_idx: Bit index for PLL lock status
132 * @lock_enable_bit_idx: Bit index to enable PLL lock
133 * @lock_delay: Delay in us if PLL lock is not used
134 */
135struct tegra_clk_pll_params {
136 unsigned long input_min;
137 unsigned long input_max;
138 unsigned long cf_min;
139 unsigned long cf_max;
140 unsigned long vco_min;
141 unsigned long vco_max;
142
143 u32 base_reg;
144 u32 misc_reg;
145 u32 lock_reg;
146 u32 lock_bit_idx;
147 u32 lock_enable_bit_idx;
148 int lock_delay;
149};
150
151/**
152 * struct tegra_clk_pll - Tegra PLL clock
153 *
154 * @hw: handle between common and hardware-specifix interfaces
155 * @clk_base: address of CAR controller
156 * @pmc: address of PMC, required to read override bits
157 * @freq_table: array of frequencies supported by PLL
158 * @params: PLL parameters
159 * @flags: PLL flags
160 * @fixed_rate: PLL rate if it is fixed
161 * @lock: register lock
162 * @divn_shift: shift to the feedback divider bit field
163 * @divn_width: width of the feedback divider bit field
164 * @divm_shift: shift to the input divider bit field
165 * @divm_width: width of the input divider bit field
166 * @divp_shift: shift to the post divider bit field
167 * @divp_width: width of the post divider bit field
168 *
169 * Flags:
170 * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
171 * PLL locking. If not set it will use lock_delay value to wait.
172 * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs
173 * to be programmed to change output frequency of the PLL.
174 * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs
175 * to be programmed to change output frequency of the PLL.
176 * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs
177 * to be programmed to change output frequency of the PLL.
178 * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated
179 * that it is PLLU and invert post divider value.
180 * TEGRA_PLLM - PLLM has additional override settings in PMC. This
181 * flag indicates that it is PLLM and use override settings.
182 * TEGRA_PLL_FIXED - We are not supposed to change output frequency
183 * of some plls.
184 * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling.
Peter De Schrijverdba40722013-04-03 17:40:36 +0300185 * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the
186 * base register.
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530187 */
188struct tegra_clk_pll {
189 struct clk_hw hw;
190 void __iomem *clk_base;
191 void __iomem *pmc;
Peter De Schrijverdba40722013-04-03 17:40:36 +0300192 u32 flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530193 unsigned long fixed_rate;
194 spinlock_t *lock;
195 u8 divn_shift;
196 u8 divn_width;
197 u8 divm_shift;
198 u8 divm_width;
199 u8 divp_shift;
200 u8 divp_width;
201 struct tegra_clk_pll_freq_table *freq_table;
202 struct tegra_clk_pll_params *params;
203};
204
205#define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw)
206
207#define TEGRA_PLL_USE_LOCK BIT(0)
208#define TEGRA_PLL_HAS_CPCON BIT(1)
209#define TEGRA_PLL_SET_LFCON BIT(2)
210#define TEGRA_PLL_SET_DCCON BIT(3)
211#define TEGRA_PLLU BIT(4)
212#define TEGRA_PLLM BIT(5)
213#define TEGRA_PLL_FIXED BIT(6)
214#define TEGRA_PLLE_CONFIGURE BIT(7)
Peter De Schrijverdba40722013-04-03 17:40:36 +0300215#define TEGRA_PLL_LOCK_MISC BIT(8)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530216
217extern const struct clk_ops tegra_clk_pll_ops;
218extern const struct clk_ops tegra_clk_plle_ops;
219struct clk *tegra_clk_register_pll(const char *name, const char *parent_name,
220 void __iomem *clk_base, void __iomem *pmc,
221 unsigned long flags, unsigned long fixed_rate,
Peter De Schrijverdba40722013-04-03 17:40:36 +0300222 struct tegra_clk_pll_params *pll_params, u32 pll_flags,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530223 struct tegra_clk_pll_freq_table *freq_table, spinlock_t *lock);
224struct clk *tegra_clk_register_plle(const char *name, const char *parent_name,
225 void __iomem *clk_base, void __iomem *pmc,
226 unsigned long flags, unsigned long fixed_rate,
Peter De Schrijverdba40722013-04-03 17:40:36 +0300227 struct tegra_clk_pll_params *pll_params, u32 pll_flags,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530228 struct tegra_clk_pll_freq_table *freq_table, spinlock_t *lock);
229
230/**
231 * struct tegra_clk_pll_out - PLL divider down clock
232 *
233 * @hw: handle between common and hardware-specific interfaces
234 * @reg: register containing the PLL divider
235 * @enb_bit_idx: bit to enable/disable PLL divider
236 * @rst_bit_idx: bit to reset PLL divider
237 * @lock: register lock
238 * @flags: hardware-specific flags
239 */
240struct tegra_clk_pll_out {
241 struct clk_hw hw;
242 void __iomem *reg;
243 u8 enb_bit_idx;
244 u8 rst_bit_idx;
245 spinlock_t *lock;
246 u8 flags;
247};
248
249#define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw)
250
251extern const struct clk_ops tegra_clk_pll_out_ops;
252struct clk *tegra_clk_register_pll_out(const char *name,
253 const char *parent_name, void __iomem *reg, u8 enb_bit_idx,
254 u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags,
255 spinlock_t *lock);
256
257/**
258 * struct tegra_clk_periph_regs - Registers controlling peripheral clock
259 *
260 * @enb_reg: read the enable status
261 * @enb_set_reg: write 1 to enable clock
262 * @enb_clr_reg: write 1 to disable clock
263 * @rst_reg: read the reset status
264 * @rst_set_reg: write 1 to assert the reset of peripheral
265 * @rst_clr_reg: write 1 to deassert the reset of peripheral
266 */
267struct tegra_clk_periph_regs {
268 u32 enb_reg;
269 u32 enb_set_reg;
270 u32 enb_clr_reg;
271 u32 rst_reg;
272 u32 rst_set_reg;
273 u32 rst_clr_reg;
274};
275
276/**
277 * struct tegra_clk_periph_gate - peripheral gate clock
278 *
279 * @magic: magic number to validate type
280 * @hw: handle between common and hardware-specific interfaces
281 * @clk_base: address of CAR controller
282 * @regs: Registers to control the peripheral
283 * @flags: hardware-specific flags
284 * @clk_num: Clock number
285 * @enable_refcnt: array to maintain reference count of the clock
286 *
287 * Flags:
288 * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed
289 * for this module.
290 * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module
291 * after clock enable and driver for the module is responsible for
292 * doing reset.
293 * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the
294 * bus to flush the write operation in apb bus. This flag indicates
295 * that this peripheral is in apb bus.
296 */
297struct tegra_clk_periph_gate {
298 u32 magic;
299 struct clk_hw hw;
300 void __iomem *clk_base;
301 u8 flags;
302 int clk_num;
303 int *enable_refcnt;
304 struct tegra_clk_periph_regs *regs;
305};
306
307#define to_clk_periph_gate(_hw) \
308 container_of(_hw, struct tegra_clk_periph_gate, hw)
309
310#define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309
311
312#define TEGRA_PERIPH_NO_RESET BIT(0)
313#define TEGRA_PERIPH_MANUAL_RESET BIT(1)
314#define TEGRA_PERIPH_ON_APB BIT(2)
315
316void tegra_periph_reset(struct tegra_clk_periph_gate *gate, bool assert);
317extern const struct clk_ops tegra_clk_periph_gate_ops;
318struct clk *tegra_clk_register_periph_gate(const char *name,
319 const char *parent_name, u8 gate_flags, void __iomem *clk_base,
320 unsigned long flags, int clk_num,
321 struct tegra_clk_periph_regs *pregs, int *enable_refcnt);
322
323/**
324 * struct clk-periph - peripheral clock
325 *
326 * @magic: magic number to validate type
327 * @hw: handle between common and hardware-specific interfaces
328 * @mux: mux clock
329 * @divider: divider clock
330 * @gate: gate clock
331 * @mux_ops: mux clock ops
332 * @div_ops: divider clock ops
333 * @gate_ops: gate clock ops
334 */
335struct tegra_clk_periph {
336 u32 magic;
337 struct clk_hw hw;
338 struct clk_mux mux;
339 struct tegra_clk_frac_div divider;
340 struct tegra_clk_periph_gate gate;
341
342 const struct clk_ops *mux_ops;
343 const struct clk_ops *div_ops;
344 const struct clk_ops *gate_ops;
345};
346
347#define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw)
348
349#define TEGRA_CLK_PERIPH_MAGIC 0x18221223
350
351extern const struct clk_ops tegra_clk_periph_ops;
352struct clk *tegra_clk_register_periph(const char *name,
353 const char **parent_names, int num_parents,
354 struct tegra_clk_periph *periph, void __iomem *clk_base,
355 u32 offset);
356struct clk *tegra_clk_register_periph_nodiv(const char *name,
357 const char **parent_names, int num_parents,
358 struct tegra_clk_periph *periph, void __iomem *clk_base,
359 u32 offset);
360
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200361#define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530362 _div_shift, _div_width, _div_frac_width, \
363 _div_flags, _clk_num, _enb_refcnt, _regs, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200364 _gate_flags, _table) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530365 { \
366 .mux = { \
367 .flags = _mux_flags, \
368 .shift = _mux_shift, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200369 .mask = _mux_mask, \
370 .table = _table, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530371 }, \
372 .divider = { \
373 .flags = _div_flags, \
374 .shift = _div_shift, \
375 .width = _div_width, \
376 .frac_width = _div_frac_width, \
377 }, \
378 .gate = { \
379 .flags = _gate_flags, \
380 .clk_num = _clk_num, \
381 .enable_refcnt = _enb_refcnt, \
382 .regs = _regs, \
383 }, \
384 .mux_ops = &clk_mux_ops, \
385 .div_ops = &tegra_clk_frac_div_ops, \
386 .gate_ops = &tegra_clk_periph_gate_ops, \
387 }
388
389struct tegra_periph_init_data {
390 const char *name;
391 int clk_id;
392 const char **parent_names;
393 int num_parents;
394 struct tegra_clk_periph periph;
395 u32 offset;
396 const char *con_id;
397 const char *dev_id;
398};
399
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200400#define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
401 _mux_shift, _mux_mask, _mux_flags, _div_shift, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530402 _div_width, _div_frac_width, _div_flags, _regs, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200403 _clk_num, _enb_refcnt, _gate_flags, _clk_id, _table) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530404 { \
405 .name = _name, \
406 .clk_id = _clk_id, \
407 .parent_names = _parent_names, \
408 .num_parents = ARRAY_SIZE(_parent_names), \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200409 .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530410 _mux_flags, _div_shift, \
411 _div_width, _div_frac_width, \
412 _div_flags, _clk_num, \
413 _enb_refcnt, _regs, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200414 _gate_flags, _table), \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530415 .offset = _offset, \
416 .con_id = _con_id, \
417 .dev_id = _dev_id, \
418 }
419
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200420#define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\
421 _mux_shift, _mux_width, _mux_flags, _div_shift, \
422 _div_width, _div_frac_width, _div_flags, _regs, \
423 _clk_num, _enb_refcnt, _gate_flags, _clk_id) \
424 TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
425 _mux_shift, BIT(_mux_width) - 1, _mux_flags, \
426 _div_shift, _div_width, _div_frac_width, _div_flags, \
427 _regs, _clk_num, _enb_refcnt, _gate_flags, _clk_id,\
428 NULL)
429
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530430/**
431 * struct clk_super_mux - super clock
432 *
433 * @hw: handle between common and hardware-specific interfaces
434 * @reg: register controlling multiplexer
435 * @width: width of the multiplexer bit field
436 * @flags: hardware-specific flags
437 * @div2_index: bit controlling divide-by-2
438 * @pllx_index: PLLX index in the parent list
439 * @lock: register lock
440 *
441 * Flags:
442 * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates
443 * that this is LP cluster clock.
444 */
445struct tegra_clk_super_mux {
446 struct clk_hw hw;
447 void __iomem *reg;
448 u8 width;
449 u8 flags;
450 u8 div2_index;
451 u8 pllx_index;
452 spinlock_t *lock;
453};
454
455#define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw)
456
457#define TEGRA_DIVIDER_2 BIT(0)
458
459extern const struct clk_ops tegra_clk_super_ops;
460struct clk *tegra_clk_register_super_mux(const char *name,
461 const char **parent_names, u8 num_parents,
462 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
463 u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock);
464
465/**
466 * struct clk_init_tabel - clock initialization table
467 * @clk_id: clock id as mentioned in device tree bindings
468 * @parent_id: parent clock id as mentioned in device tree bindings
469 * @rate: rate to set
470 * @state: enable/disable
471 */
472struct tegra_clk_init_table {
473 unsigned int clk_id;
474 unsigned int parent_id;
475 unsigned long rate;
476 int state;
477};
478
479/**
480 * struct clk_duplicate - duplicate clocks
481 * @clk_id: clock id as mentioned in device tree bindings
482 * @lookup: duplicate lookup entry for the clock
483 */
484struct tegra_clk_duplicate {
485 int clk_id;
486 struct clk_lookup lookup;
487};
488
489#define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \
490 { \
491 .clk_id = _clk_id, \
492 .lookup = { \
493 .dev_id = _dev, \
494 .con_id = _con, \
495 }, \
496 }
497
498void tegra_init_from_table(struct tegra_clk_init_table *tbl,
499 struct clk *clks[], int clk_max);
500
501void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list,
502 struct clk *clks[], int clk_max);
503
Prashant Gaikwad37c26a92013-01-11 13:16:24 +0530504#ifdef CONFIG_ARCH_TEGRA_2x_SOC
505void tegra20_clock_init(struct device_node *np);
506#else
507static inline void tegra20_clock_init(struct device_node *np) {}
508#endif /* CONFIG_ARCH_TEGRA_2x_SOC */
509
Prashant Gaikwadb08e8c02013-01-11 13:16:25 +0530510#ifdef CONFIG_ARCH_TEGRA_3x_SOC
511void tegra30_clock_init(struct device_node *np);
512#else
513static inline void tegra30_clock_init(struct device_node *np) {}
514#endif /* CONFIG_ARCH_TEGRA_3x_SOC */
515
Stephen Warren441f1992013-03-25 13:22:24 -0600516typedef void (*tegra_clk_apply_init_table_func)(void);
517extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
518
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530519#endif /* TEGRA_CLK_H */