blob: bdc661cb81f08001202af8a038805f1fa2008e04 [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);
Thierry Reding4f4f85f2014-07-29 10:17:53 +020089struct clk *tegra_clk_register_mc(const char *name, const char *parent_name,
90 void __iomem *reg, spinlock_t *lock);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +053091
92/*
93 * Tegra PLL:
94 *
95 * In general, there are 3 requirements for each PLL
96 * that SW needs to be comply with.
97 * (1) Input frequency range (REF).
98 * (2) Comparison frequency range (CF). CF = REF/DIVM.
99 * (3) VCO frequency range (VCO). VCO = CF * DIVN.
100 *
101 * The final PLL output frequency (FO) = VCO >> DIVP.
102 */
103
104/**
105 * struct tegra_clk_pll_freq_table - PLL frequecy table
106 *
107 * @input_rate: input rate from source
108 * @output_rate: output rate from PLL for the input rate
109 * @n: feedback divider
110 * @m: input divider
111 * @p: post divider
112 * @cpcon: charge pump current
113 */
114struct tegra_clk_pll_freq_table {
115 unsigned long input_rate;
116 unsigned long output_rate;
117 u16 n;
118 u16 m;
119 u8 p;
120 u8 cpcon;
121};
122
123/**
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300124 * struct pdiv_map - map post divider to hw value
125 *
126 * @pdiv: post divider
127 * @hw_val: value to be written to the PLL hw
128 */
129struct pdiv_map {
130 u8 pdiv;
131 u8 hw_val;
132};
133
134/**
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300135 * struct div_nmp - offset and width of m,n and p fields
136 *
137 * @divn_shift: shift to the feedback divider bit field
138 * @divn_width: width of the feedback divider bit field
139 * @divm_shift: shift to the input divider bit field
140 * @divm_width: width of the input divider bit field
141 * @divp_shift: shift to the post divider bit field
142 * @divp_width: width of the post divider bit field
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300143 * @override_divn_shift: shift to the feedback divider bitfield in override reg
144 * @override_divm_shift: shift to the input divider bitfield in override reg
145 * @override_divp_shift: shift to the post divider bitfield in override reg
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300146 */
147struct div_nmp {
148 u8 divn_shift;
149 u8 divn_width;
150 u8 divm_shift;
151 u8 divm_width;
152 u8 divp_shift;
153 u8 divp_width;
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300154 u8 override_divn_shift;
155 u8 override_divm_shift;
156 u8 override_divp_shift;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300157};
158
159/**
Thierry Redingdb592c42015-06-18 17:28:16 -0400160 * struct tegra_clk_pll_params - PLL parameters
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530161 *
162 * @input_min: Minimum input frequency
163 * @input_max: Maximum input frequency
164 * @cf_min: Minimum comparison frequency
165 * @cf_max: Maximum comparison frequency
166 * @vco_min: Minimum VCO frequency
167 * @vco_max: Maximum VCO frequency
168 * @base_reg: PLL base reg offset
169 * @misc_reg: PLL misc reg offset
170 * @lock_reg: PLL lock reg offset
Thierry Redingdb592c42015-06-18 17:28:16 -0400171 * @lock_mask: Bitmask for PLL lock status
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530172 * @lock_enable_bit_idx: Bit index to enable PLL lock
Thierry Redingdb592c42015-06-18 17:28:16 -0400173 * @iddq_reg: PLL IDDQ register offset
174 * @iddq_bit_idx: Bit index to enable PLL IDDQ
175 * @aux_reg: AUX register offset
176 * @dyn_ramp_reg: Dynamic ramp control register offset
177 * @ext_misc_reg: Miscellaneous control register offsets
178 * @pmc_divnm_reg: n, m divider PMC override register offset (PLLM)
179 * @pmc_divp_reg: p divider PMC override register offset (PLLM)
180 * @flags: PLL flags
181 * @stepa_shift: Dynamic ramp step A field shift
182 * @stepb_shift: Dynamic ramp step B field shift
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530183 * @lock_delay: Delay in us if PLL lock is not used
Thierry Redingdb592c42015-06-18 17:28:16 -0400184 * @max_p: maximum value for the p divider
185 * @pdiv_tohw: mapping of p divider to register values
186 * @div_nmp: offsets and widths on n, m and p fields
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400187 * @freq_table: array of frequencies supported by PLL
188 * @fixed_rate: PLL rate if it is fixed
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400189 *
190 * Flags:
191 * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
192 * PLL locking. If not set it will use lock_delay value to wait.
193 * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs
194 * to be programmed to change output frequency of the PLL.
195 * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs
196 * to be programmed to change output frequency of the PLL.
197 * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs
198 * to be programmed to change output frequency of the PLL.
199 * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated
200 * that it is PLLU and invert post divider value.
201 * TEGRA_PLLM - PLLM has additional override settings in PMC. This
202 * flag indicates that it is PLLM and use override settings.
203 * TEGRA_PLL_FIXED - We are not supposed to change output frequency
204 * of some plls.
205 * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling.
206 * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the
207 * base register.
208 * TEGRA_PLL_BYPASS - PLL has bypass bit
209 * TEGRA_PLL_HAS_LOCK_ENABLE - PLL has bit to enable lock monitoring
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530210 */
211struct tegra_clk_pll_params {
212 unsigned long input_min;
213 unsigned long input_max;
214 unsigned long cf_min;
215 unsigned long cf_max;
216 unsigned long vco_min;
217 unsigned long vco_max;
218
219 u32 base_reg;
220 u32 misc_reg;
221 u32 lock_reg;
Peter De Schrijver3e727712013-04-03 17:40:40 +0300222 u32 lock_mask;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530223 u32 lock_enable_bit_idx;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300224 u32 iddq_reg;
225 u32 iddq_bit_idx;
226 u32 aux_reg;
227 u32 dyn_ramp_reg;
228 u32 ext_misc_reg[3];
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300229 u32 pmc_divnm_reg;
230 u32 pmc_divp_reg;
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300231 u32 flags;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300232 int stepa_shift;
233 int stepb_shift;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530234 int lock_delay;
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300235 int max_p;
236 struct pdiv_map *pdiv_tohw;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300237 struct div_nmp *div_nmp;
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300238 struct tegra_clk_pll_freq_table *freq_table;
239 unsigned long fixed_rate;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530240};
241
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530242#define TEGRA_PLL_USE_LOCK BIT(0)
243#define TEGRA_PLL_HAS_CPCON BIT(1)
244#define TEGRA_PLL_SET_LFCON BIT(2)
245#define TEGRA_PLL_SET_DCCON BIT(3)
246#define TEGRA_PLLU BIT(4)
247#define TEGRA_PLLM BIT(5)
248#define TEGRA_PLL_FIXED BIT(6)
249#define TEGRA_PLLE_CONFIGURE BIT(7)
Peter De Schrijverdba40722013-04-03 17:40:36 +0300250#define TEGRA_PLL_LOCK_MISC BIT(8)
Peter De Schrijverdd935872013-04-03 17:40:37 +0300251#define TEGRA_PLL_BYPASS BIT(9)
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300252#define TEGRA_PLL_HAS_LOCK_ENABLE BIT(10)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530253
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400254/**
255 * struct tegra_clk_pll - Tegra PLL clock
256 *
257 * @hw: handle between common and hardware-specifix interfaces
258 * @clk_base: address of CAR controller
259 * @pmc: address of PMC, required to read override bits
260 * @lock: register lock
261 * @params: PLL parameters
262 */
263struct tegra_clk_pll {
264 struct clk_hw hw;
265 void __iomem *clk_base;
266 void __iomem *pmc;
267 spinlock_t *lock;
268 struct tegra_clk_pll_params *params;
269};
270
271#define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw)
272
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530273extern const struct clk_ops tegra_clk_pll_ops;
274extern const struct clk_ops tegra_clk_plle_ops;
275struct clk *tegra_clk_register_pll(const char *name, const char *parent_name,
276 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300277 unsigned long flags, struct tegra_clk_pll_params *pll_params,
278 spinlock_t *lock);
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300279
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530280struct clk *tegra_clk_register_plle(const char *name, const char *parent_name,
281 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300282 unsigned long flags, struct tegra_clk_pll_params *pll_params,
283 spinlock_t *lock);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530284
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300285struct clk *tegra_clk_register_pllxc(const char *name, const char *parent_name,
286 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300287 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300288 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300289 spinlock_t *lock);
290
291struct clk *tegra_clk_register_pllm(const char *name, const char *parent_name,
292 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300293 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300294 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300295 spinlock_t *lock);
296
297struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name,
298 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300299 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300300 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300301 spinlock_t *lock);
302
303struct clk *tegra_clk_register_pllre(const char *name, const char *parent_name,
304 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300305 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300306 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300307 spinlock_t *lock, unsigned long parent_rate);
308
309struct clk *tegra_clk_register_plle_tegra114(const char *name,
310 const char *parent_name,
311 void __iomem *clk_base, unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300312 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300313 spinlock_t *lock);
314
Peter De Schrijver798e9102013-09-09 13:22:55 +0300315struct clk *tegra_clk_register_pllss(const char *name, const char *parent_name,
316 void __iomem *clk_base, unsigned long flags,
317 struct tegra_clk_pll_params *pll_params,
318 spinlock_t *lock);
319
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530320/**
321 * struct tegra_clk_pll_out - PLL divider down clock
322 *
323 * @hw: handle between common and hardware-specific interfaces
324 * @reg: register containing the PLL divider
325 * @enb_bit_idx: bit to enable/disable PLL divider
326 * @rst_bit_idx: bit to reset PLL divider
327 * @lock: register lock
328 * @flags: hardware-specific flags
329 */
330struct tegra_clk_pll_out {
331 struct clk_hw hw;
332 void __iomem *reg;
333 u8 enb_bit_idx;
334 u8 rst_bit_idx;
335 spinlock_t *lock;
336 u8 flags;
337};
338
339#define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw)
340
341extern const struct clk_ops tegra_clk_pll_out_ops;
342struct clk *tegra_clk_register_pll_out(const char *name,
343 const char *parent_name, void __iomem *reg, u8 enb_bit_idx,
344 u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags,
345 spinlock_t *lock);
346
347/**
348 * struct tegra_clk_periph_regs - Registers controlling peripheral clock
349 *
350 * @enb_reg: read the enable status
351 * @enb_set_reg: write 1 to enable clock
352 * @enb_clr_reg: write 1 to disable clock
353 * @rst_reg: read the reset status
354 * @rst_set_reg: write 1 to assert the reset of peripheral
355 * @rst_clr_reg: write 1 to deassert the reset of peripheral
356 */
357struct tegra_clk_periph_regs {
358 u32 enb_reg;
359 u32 enb_set_reg;
360 u32 enb_clr_reg;
361 u32 rst_reg;
362 u32 rst_set_reg;
363 u32 rst_clr_reg;
364};
365
366/**
367 * struct tegra_clk_periph_gate - peripheral gate clock
368 *
369 * @magic: magic number to validate type
370 * @hw: handle between common and hardware-specific interfaces
371 * @clk_base: address of CAR controller
372 * @regs: Registers to control the peripheral
373 * @flags: hardware-specific flags
374 * @clk_num: Clock number
375 * @enable_refcnt: array to maintain reference count of the clock
376 *
377 * Flags:
378 * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed
379 * for this module.
380 * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module
381 * after clock enable and driver for the module is responsible for
382 * doing reset.
383 * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the
384 * bus to flush the write operation in apb bus. This flag indicates
385 * that this peripheral is in apb bus.
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300386 * TEGRA_PERIPH_WAR_1005168 - Apply workaround for Tegra114 MSENC bug
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530387 */
388struct tegra_clk_periph_gate {
389 u32 magic;
390 struct clk_hw hw;
391 void __iomem *clk_base;
392 u8 flags;
393 int clk_num;
394 int *enable_refcnt;
395 struct tegra_clk_periph_regs *regs;
396};
397
398#define to_clk_periph_gate(_hw) \
399 container_of(_hw, struct tegra_clk_periph_gate, hw)
400
401#define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309
402
403#define TEGRA_PERIPH_NO_RESET BIT(0)
404#define TEGRA_PERIPH_MANUAL_RESET BIT(1)
405#define TEGRA_PERIPH_ON_APB BIT(2)
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300406#define TEGRA_PERIPH_WAR_1005168 BIT(3)
Peter De Schrijver5bb9d262013-09-02 18:43:56 +0300407#define TEGRA_PERIPH_NO_DIV BIT(4)
Peter De Schrijverb29f9e92013-11-18 16:11:38 +0100408#define TEGRA_PERIPH_NO_GATE BIT(5)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530409
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530410extern const struct clk_ops tegra_clk_periph_gate_ops;
411struct clk *tegra_clk_register_periph_gate(const char *name,
412 const char *parent_name, u8 gate_flags, void __iomem *clk_base,
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300413 unsigned long flags, int clk_num, int *enable_refcnt);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530414
415/**
416 * struct clk-periph - peripheral clock
417 *
418 * @magic: magic number to validate type
419 * @hw: handle between common and hardware-specific interfaces
420 * @mux: mux clock
421 * @divider: divider clock
422 * @gate: gate clock
423 * @mux_ops: mux clock ops
424 * @div_ops: divider clock ops
425 * @gate_ops: gate clock ops
426 */
427struct tegra_clk_periph {
428 u32 magic;
429 struct clk_hw hw;
430 struct clk_mux mux;
431 struct tegra_clk_frac_div divider;
432 struct tegra_clk_periph_gate gate;
433
434 const struct clk_ops *mux_ops;
435 const struct clk_ops *div_ops;
436 const struct clk_ops *gate_ops;
437};
438
439#define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw)
440
441#define TEGRA_CLK_PERIPH_MAGIC 0x18221223
442
443extern const struct clk_ops tegra_clk_periph_ops;
444struct clk *tegra_clk_register_periph(const char *name,
445 const char **parent_names, int num_parents,
446 struct tegra_clk_periph *periph, void __iomem *clk_base,
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300447 u32 offset, unsigned long flags);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530448struct clk *tegra_clk_register_periph_nodiv(const char *name,
449 const char **parent_names, int num_parents,
450 struct tegra_clk_periph *periph, void __iomem *clk_base,
451 u32 offset);
452
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200453#define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530454 _div_shift, _div_width, _div_frac_width, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300455 _div_flags, _clk_num,\
Peter De Schrijverbc442752013-11-18 16:11:37 +0100456 _gate_flags, _table, _lock) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530457 { \
458 .mux = { \
459 .flags = _mux_flags, \
460 .shift = _mux_shift, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200461 .mask = _mux_mask, \
462 .table = _table, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100463 .lock = _lock, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530464 }, \
465 .divider = { \
466 .flags = _div_flags, \
467 .shift = _div_shift, \
468 .width = _div_width, \
469 .frac_width = _div_frac_width, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100470 .lock = _lock, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530471 }, \
472 .gate = { \
473 .flags = _gate_flags, \
474 .clk_num = _clk_num, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530475 }, \
476 .mux_ops = &clk_mux_ops, \
477 .div_ops = &tegra_clk_frac_div_ops, \
478 .gate_ops = &tegra_clk_periph_gate_ops, \
479 }
480
481struct tegra_periph_init_data {
482 const char *name;
483 int clk_id;
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300484 union {
485 const char **parent_names;
486 const char *parent_name;
487 } p;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530488 int num_parents;
489 struct tegra_clk_periph periph;
490 u32 offset;
491 const char *con_id;
492 const char *dev_id;
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300493 unsigned long flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530494};
495
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200496#define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
497 _mux_shift, _mux_mask, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300498 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300499 _clk_num, _gate_flags, _clk_id, _table, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100500 _flags, _lock) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530501 { \
502 .name = _name, \
503 .clk_id = _clk_id, \
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300504 .p.parent_names = _parent_names, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530505 .num_parents = ARRAY_SIZE(_parent_names), \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200506 .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530507 _mux_flags, _div_shift, \
508 _div_width, _div_frac_width, \
509 _div_flags, _clk_num, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100510 _gate_flags, _table, _lock), \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530511 .offset = _offset, \
512 .con_id = _con_id, \
513 .dev_id = _dev_id, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300514 .flags = _flags \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530515 }
516
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200517#define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\
518 _mux_shift, _mux_width, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300519 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300520 _clk_num, _gate_flags, _clk_id) \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200521 TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
522 _mux_shift, BIT(_mux_width) - 1, _mux_flags, \
523 _div_shift, _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300524 _clk_num, _gate_flags, _clk_id,\
Peter De Schrijverbc442752013-11-18 16:11:37 +0100525 NULL, 0, NULL)
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200526
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530527/**
528 * struct clk_super_mux - super clock
529 *
530 * @hw: handle between common and hardware-specific interfaces
531 * @reg: register controlling multiplexer
532 * @width: width of the multiplexer bit field
533 * @flags: hardware-specific flags
534 * @div2_index: bit controlling divide-by-2
535 * @pllx_index: PLLX index in the parent list
536 * @lock: register lock
537 *
538 * Flags:
539 * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates
540 * that this is LP cluster clock.
541 */
542struct tegra_clk_super_mux {
543 struct clk_hw hw;
544 void __iomem *reg;
545 u8 width;
546 u8 flags;
547 u8 div2_index;
548 u8 pllx_index;
549 spinlock_t *lock;
550};
551
552#define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw)
553
554#define TEGRA_DIVIDER_2 BIT(0)
555
556extern const struct clk_ops tegra_clk_super_ops;
557struct clk *tegra_clk_register_super_mux(const char *name,
558 const char **parent_names, u8 num_parents,
559 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
560 u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock);
561
562/**
Thierry Reding81064622014-08-05 13:26:12 +0200563 * struct clk_init_table - clock initialization table
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530564 * @clk_id: clock id as mentioned in device tree bindings
565 * @parent_id: parent clock id as mentioned in device tree bindings
566 * @rate: rate to set
567 * @state: enable/disable
568 */
569struct tegra_clk_init_table {
570 unsigned int clk_id;
571 unsigned int parent_id;
572 unsigned long rate;
573 int state;
574};
575
576/**
577 * struct clk_duplicate - duplicate clocks
578 * @clk_id: clock id as mentioned in device tree bindings
579 * @lookup: duplicate lookup entry for the clock
580 */
581struct tegra_clk_duplicate {
582 int clk_id;
583 struct clk_lookup lookup;
584};
585
586#define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \
587 { \
588 .clk_id = _clk_id, \
589 .lookup = { \
590 .dev_id = _dev, \
591 .con_id = _con, \
592 }, \
593 }
594
Peter De Schrijverb8700d52013-10-14 16:47:37 +0300595struct tegra_clk {
596 int dt_id;
597 bool present;
598};
599
Peter De Schrijver73d37e42013-10-09 14:47:57 +0300600struct tegra_devclk {
601 int dt_id;
602 char *dev_id;
603 char *con_id;
604};
605
Mikko Perttunen66b6f3d2015-05-20 09:27:05 +0300606void tegra_init_special_resets(unsigned int num, int (*assert)(unsigned long),
607 int (*deassert)(unsigned long));
608
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530609void tegra_init_from_table(struct tegra_clk_init_table *tbl,
610 struct clk *clks[], int clk_max);
611
612void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list,
613 struct clk *clks[], int clk_max);
614
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300615struct tegra_clk_periph_regs *get_reg_bank(int clkid);
Stephen Warren6d5b9882013-11-05 17:33:17 -0700616struct clk **tegra_clk_init(void __iomem *clk_base, int num, int periph_banks);
Peter De Schrijver343a6072013-09-02 15:22:02 +0300617
Peter De Schrijverb8700d52013-10-14 16:47:37 +0300618struct clk **tegra_lookup_dt_id(int clk_id, struct tegra_clk *tegra_clk);
619
Peter De Schrijver343a6072013-09-02 15:22:02 +0300620void tegra_add_of_provider(struct device_node *np);
Peter De Schrijver73d37e42013-10-09 14:47:57 +0300621void tegra_register_devclks(struct tegra_devclk *dev_clks, int num);
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300622
Peter De Schrijver6609dbe2013-09-17 15:42:24 +0300623void tegra_audio_clk_init(void __iomem *clk_base,
624 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
625 struct tegra_clk_pll_params *pll_params);
626
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300627void tegra_periph_clk_init(void __iomem *clk_base, void __iomem *pmc_base,
628 struct tegra_clk *tegra_clks,
629 struct tegra_clk_pll_params *pll_params);
630
Peter De Schrijverde4f30f2013-10-15 17:19:13 +0300631void tegra_pmc_clk_init(void __iomem *pmc_base, struct tegra_clk *tegra_clks);
632void tegra_fixed_clk_init(struct tegra_clk *tegra_clks);
Thierry Reding63cc5a42015-03-26 17:43:56 +0100633int tegra_osc_clk_init(void __iomem *clk_base, struct tegra_clk *clks,
634 unsigned long *input_freqs, unsigned int num,
635 unsigned int clk_m_div, unsigned long *osc_freq,
636 unsigned long *pll_ref_freq);
Peter De Schrijvera7c84852013-09-03 15:46:01 +0300637void tegra_super_clk_gen4_init(void __iomem *clk_base,
638 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
639 struct tegra_clk_pll_params *pll_params);
Peter De Schrijverde4f30f2013-10-15 17:19:13 +0300640
Thierry Reding31b52ba2015-04-01 09:10:58 +0200641#ifdef CONFIG_TEGRA_CLK_EMC
Mikko Perttunen2db04f12015-03-12 15:48:05 +0100642struct clk *tegra_clk_register_emc(void __iomem *base, struct device_node *np,
643 spinlock_t *lock);
Thierry Reding31b52ba2015-04-01 09:10:58 +0200644#else
645static inline struct clk *tegra_clk_register_emc(void __iomem *base,
646 struct device_node *np,
647 spinlock_t *lock)
648{
649 return NULL;
650}
651#endif
Mikko Perttunen2db04f12015-03-12 15:48:05 +0100652
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600653void tegra114_clock_tune_cpu_trimmers_high(void);
654void tegra114_clock_tune_cpu_trimmers_low(void);
655void tegra114_clock_tune_cpu_trimmers_init(void);
Paul Walmsley1c472d82013-06-07 06:19:09 -0600656void tegra114_clock_assert_dfll_dvco_reset(void);
657void tegra114_clock_deassert_dfll_dvco_reset(void);
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600658
Stephen Warren441f1992013-03-25 13:22:24 -0600659typedef void (*tegra_clk_apply_init_table_func)(void);
660extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
661
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530662#endif /* TEGRA_CLK_H */