blob: f94b1789c3337352d780054d29639dcc884b99f6 [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
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400113 * @sdm_data: fraction divider setting (0 = disabled)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530114 */
115struct tegra_clk_pll_freq_table {
116 unsigned long input_rate;
117 unsigned long output_rate;
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400118 u32 n;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530119 u16 m;
120 u8 p;
121 u8 cpcon;
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400122 u16 sdm_data;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530123};
124
125/**
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300126 * struct pdiv_map - map post divider to hw value
127 *
128 * @pdiv: post divider
129 * @hw_val: value to be written to the PLL hw
130 */
131struct pdiv_map {
132 u8 pdiv;
133 u8 hw_val;
134};
135
136/**
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300137 * struct div_nmp - offset and width of m,n and p fields
138 *
139 * @divn_shift: shift to the feedback divider bit field
140 * @divn_width: width of the feedback divider bit field
141 * @divm_shift: shift to the input divider bit field
142 * @divm_width: width of the input divider bit field
143 * @divp_shift: shift to the post divider bit field
144 * @divp_width: width of the post divider bit field
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300145 * @override_divn_shift: shift to the feedback divider bitfield in override reg
146 * @override_divm_shift: shift to the input divider bitfield in override reg
147 * @override_divp_shift: shift to the post divider bitfield in override reg
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300148 */
149struct div_nmp {
150 u8 divn_shift;
151 u8 divn_width;
152 u8 divm_shift;
153 u8 divm_width;
154 u8 divp_shift;
155 u8 divp_width;
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300156 u8 override_divn_shift;
157 u8 override_divm_shift;
158 u8 override_divp_shift;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300159};
160
Bill Huang56fd27b2015-06-18 17:28:22 -0400161#define MAX_PLL_MISC_REG_COUNT 6
162
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300163/**
Thierry Redingdb592c42015-06-18 17:28:16 -0400164 * struct tegra_clk_pll_params - PLL parameters
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530165 *
166 * @input_min: Minimum input frequency
167 * @input_max: Maximum input frequency
168 * @cf_min: Minimum comparison frequency
169 * @cf_max: Maximum comparison frequency
170 * @vco_min: Minimum VCO frequency
171 * @vco_max: Maximum VCO frequency
172 * @base_reg: PLL base reg offset
173 * @misc_reg: PLL misc reg offset
174 * @lock_reg: PLL lock reg offset
Thierry Redingdb592c42015-06-18 17:28:16 -0400175 * @lock_mask: Bitmask for PLL lock status
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530176 * @lock_enable_bit_idx: Bit index to enable PLL lock
Thierry Redingdb592c42015-06-18 17:28:16 -0400177 * @iddq_reg: PLL IDDQ register offset
178 * @iddq_bit_idx: Bit index to enable PLL IDDQ
Bill Huangfde207e2015-06-18 17:28:26 -0400179 * @reset_reg: Register offset of where RESET bit is
180 * @reset_bit_idx: Shift of reset bit in reset_reg
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400181 * @sdm_din_reg: Register offset where SDM settings are
182 * @sdm_din_mask: Mask of SDM divider bits
183 * @sdm_ctrl_reg: Register offset where SDM enable is
184 * @sdm_ctrl_en_mask: Mask of SDM enable bit
Thierry Redingdb592c42015-06-18 17:28:16 -0400185 * @aux_reg: AUX register offset
186 * @dyn_ramp_reg: Dynamic ramp control register offset
187 * @ext_misc_reg: Miscellaneous control register offsets
188 * @pmc_divnm_reg: n, m divider PMC override register offset (PLLM)
189 * @pmc_divp_reg: p divider PMC override register offset (PLLM)
190 * @flags: PLL flags
191 * @stepa_shift: Dynamic ramp step A field shift
192 * @stepb_shift: Dynamic ramp step B field shift
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530193 * @lock_delay: Delay in us if PLL lock is not used
Thierry Redingdb592c42015-06-18 17:28:16 -0400194 * @max_p: maximum value for the p divider
195 * @pdiv_tohw: mapping of p divider to register values
196 * @div_nmp: offsets and widths on n, m and p fields
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400197 * @freq_table: array of frequencies supported by PLL
198 * @fixed_rate: PLL rate if it is fixed
Rhyland Klein407254d2015-06-18 17:28:25 -0400199 * @mdiv_default: Default value for fixed mdiv for this PLL
200 * @round_p_to_pdiv: Callback used to round p to the closed pdiv
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400201 * @set_gain: Callback to adjust N div for SDM enabled
202 * PLL's based on fractional divider value.
Rhyland Klein407254d2015-06-18 17:28:25 -0400203 * @calc_rate: Callback used to change how out of table
204 * rates (dividers and multipler) are calculated.
Bill Huangb5512b42015-06-18 17:28:30 -0400205 * @adjust_vco: Callback to adjust the programming range of the
206 * divider range (if SDM is present)
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400207 *
208 * Flags:
209 * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
210 * PLL locking. If not set it will use lock_delay value to wait.
211 * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs
212 * to be programmed to change output frequency of the PLL.
213 * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs
214 * to be programmed to change output frequency of the PLL.
215 * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs
216 * to be programmed to change output frequency of the PLL.
217 * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated
218 * that it is PLLU and invert post divider value.
219 * TEGRA_PLLM - PLLM has additional override settings in PMC. This
220 * flag indicates that it is PLLM and use override settings.
221 * TEGRA_PLL_FIXED - We are not supposed to change output frequency
222 * of some plls.
223 * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling.
224 * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the
225 * base register.
226 * TEGRA_PLL_BYPASS - PLL has bypass bit
227 * TEGRA_PLL_HAS_LOCK_ENABLE - PLL has bit to enable lock monitoring
Rhyland Klein407254d2015-06-18 17:28:25 -0400228 * TEGRA_MDIV_NEW - Switch to new method for calculating fixed mdiv
229 * it may be more accurate (especially if SDM present)
Rhyland Klein69297152015-06-18 17:28:29 -0400230 * TEGRA_PLLMB - PLLMB has should be treated similar to PLLM. This
231 * flag indicated that it is PLLMB.
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530232 */
233struct tegra_clk_pll_params {
234 unsigned long input_min;
235 unsigned long input_max;
236 unsigned long cf_min;
237 unsigned long cf_max;
238 unsigned long vco_min;
239 unsigned long vco_max;
240
241 u32 base_reg;
242 u32 misc_reg;
243 u32 lock_reg;
Peter De Schrijver3e727712013-04-03 17:40:40 +0300244 u32 lock_mask;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530245 u32 lock_enable_bit_idx;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300246 u32 iddq_reg;
247 u32 iddq_bit_idx;
Bill Huangfde207e2015-06-18 17:28:26 -0400248 u32 reset_reg;
249 u32 reset_bit_idx;
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400250 u32 sdm_din_reg;
251 u32 sdm_din_mask;
252 u32 sdm_ctrl_reg;
253 u32 sdm_ctrl_en_mask;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300254 u32 aux_reg;
255 u32 dyn_ramp_reg;
Bill Huang56fd27b2015-06-18 17:28:22 -0400256 u32 ext_misc_reg[MAX_PLL_MISC_REG_COUNT];
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300257 u32 pmc_divnm_reg;
258 u32 pmc_divp_reg;
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300259 u32 flags;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300260 int stepa_shift;
261 int stepb_shift;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530262 int lock_delay;
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300263 int max_p;
Thierry Reding385f9ad2015-11-19 16:34:06 +0100264 const struct pdiv_map *pdiv_tohw;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300265 struct div_nmp *div_nmp;
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300266 struct tegra_clk_pll_freq_table *freq_table;
267 unsigned long fixed_rate;
Rhyland Klein407254d2015-06-18 17:28:25 -0400268 u16 mdiv_default;
269 u32 (*round_p_to_pdiv)(u32 p, u32 *pdiv);
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400270 void (*set_gain)(struct tegra_clk_pll_freq_table *cfg);
Rhyland Klein407254d2015-06-18 17:28:25 -0400271 int (*calc_rate)(struct clk_hw *hw,
272 struct tegra_clk_pll_freq_table *cfg,
273 unsigned long rate, unsigned long parent_rate);
Bill Huangb5512b42015-06-18 17:28:30 -0400274 unsigned long (*adjust_vco)(struct tegra_clk_pll_params *pll_params,
275 unsigned long parent_rate);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530276};
277
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530278#define TEGRA_PLL_USE_LOCK BIT(0)
279#define TEGRA_PLL_HAS_CPCON BIT(1)
280#define TEGRA_PLL_SET_LFCON BIT(2)
281#define TEGRA_PLL_SET_DCCON BIT(3)
282#define TEGRA_PLLU BIT(4)
283#define TEGRA_PLLM BIT(5)
284#define TEGRA_PLL_FIXED BIT(6)
285#define TEGRA_PLLE_CONFIGURE BIT(7)
Peter De Schrijverdba40722013-04-03 17:40:36 +0300286#define TEGRA_PLL_LOCK_MISC BIT(8)
Peter De Schrijverdd935872013-04-03 17:40:37 +0300287#define TEGRA_PLL_BYPASS BIT(9)
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300288#define TEGRA_PLL_HAS_LOCK_ENABLE BIT(10)
Rhyland Klein407254d2015-06-18 17:28:25 -0400289#define TEGRA_MDIV_NEW BIT(11)
Rhyland Klein69297152015-06-18 17:28:29 -0400290#define TEGRA_PLLMB BIT(12)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530291
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400292/**
293 * struct tegra_clk_pll - Tegra PLL clock
294 *
295 * @hw: handle between common and hardware-specifix interfaces
296 * @clk_base: address of CAR controller
297 * @pmc: address of PMC, required to read override bits
298 * @lock: register lock
299 * @params: PLL parameters
300 */
301struct tegra_clk_pll {
302 struct clk_hw hw;
303 void __iomem *clk_base;
304 void __iomem *pmc;
305 spinlock_t *lock;
306 struct tegra_clk_pll_params *params;
307};
308
309#define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw)
310
Rhyland Klein88d909b2015-06-18 17:28:17 -0400311/**
312 * struct tegra_audio_clk_info - Tegra Audio Clk Information
313 *
314 * @name: name for the audio pll
315 * @pll_params: pll_params for audio pll
316 * @clk_id: clk_ids for the audio pll
317 * @parent: name of the parent of the audio pll
318 */
319struct tegra_audio_clk_info {
320 char *name;
321 struct tegra_clk_pll_params *pll_params;
322 int clk_id;
323 char *parent;
324};
325
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530326extern const struct clk_ops tegra_clk_pll_ops;
327extern const struct clk_ops tegra_clk_plle_ops;
328struct clk *tegra_clk_register_pll(const char *name, const char *parent_name,
329 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300330 unsigned long flags, struct tegra_clk_pll_params *pll_params,
331 spinlock_t *lock);
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300332
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530333struct clk *tegra_clk_register_plle(const char *name, const char *parent_name,
334 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300335 unsigned long flags, struct tegra_clk_pll_params *pll_params,
336 spinlock_t *lock);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530337
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300338struct clk *tegra_clk_register_pllxc(const char *name, const char *parent_name,
339 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300340 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300341 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300342 spinlock_t *lock);
343
Rhyland Kleindd322f02015-06-18 17:28:28 -0400344struct clk *tegra_clk_register_pllxc_tegra210(const char *name,
345 const char *parent_name, void __iomem *clk_base,
346 void __iomem *pmc, unsigned long flags,
347 struct tegra_clk_pll_params *pll_params,
348 spinlock_t *lock);
349
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300350struct clk *tegra_clk_register_pllm(const char *name, const char *parent_name,
351 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300352 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300353 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300354 spinlock_t *lock);
355
356struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name,
357 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300358 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300359 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300360 spinlock_t *lock);
361
362struct clk *tegra_clk_register_pllre(const char *name, const char *parent_name,
363 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300364 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300365 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300366 spinlock_t *lock, unsigned long parent_rate);
367
368struct clk *tegra_clk_register_plle_tegra114(const char *name,
369 const char *parent_name,
370 void __iomem *clk_base, unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300371 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300372 spinlock_t *lock);
373
Rhyland Kleindd322f02015-06-18 17:28:28 -0400374struct clk *tegra_clk_register_plle_tegra210(const char *name,
375 const char *parent_name,
376 void __iomem *clk_base, unsigned long flags,
377 struct tegra_clk_pll_params *pll_params,
378 spinlock_t *lock);
379
380struct clk *tegra_clk_register_pllc_tegra210(const char *name,
381 const char *parent_name, void __iomem *clk_base,
382 void __iomem *pmc, unsigned long flags,
383 struct tegra_clk_pll_params *pll_params,
384 spinlock_t *lock);
385
386struct clk *tegra_clk_register_pllss_tegra210(const char *name,
387 const char *parent_name, void __iomem *clk_base,
388 unsigned long flags,
389 struct tegra_clk_pll_params *pll_params,
390 spinlock_t *lock);
391
Peter De Schrijver798e9102013-09-09 13:22:55 +0300392struct clk *tegra_clk_register_pllss(const char *name, const char *parent_name,
393 void __iomem *clk_base, unsigned long flags,
394 struct tegra_clk_pll_params *pll_params,
395 spinlock_t *lock);
396
Rhyland Klein69297152015-06-18 17:28:29 -0400397struct clk *tegra_clk_register_pllmb(const char *name, const char *parent_name,
398 void __iomem *clk_base, void __iomem *pmc,
399 unsigned long flags,
400 struct tegra_clk_pll_params *pll_params,
401 spinlock_t *lock);
402
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530403/**
404 * struct tegra_clk_pll_out - PLL divider down clock
405 *
406 * @hw: handle between common and hardware-specific interfaces
407 * @reg: register containing the PLL divider
408 * @enb_bit_idx: bit to enable/disable PLL divider
409 * @rst_bit_idx: bit to reset PLL divider
410 * @lock: register lock
411 * @flags: hardware-specific flags
412 */
413struct tegra_clk_pll_out {
414 struct clk_hw hw;
415 void __iomem *reg;
416 u8 enb_bit_idx;
417 u8 rst_bit_idx;
418 spinlock_t *lock;
419 u8 flags;
420};
421
422#define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw)
423
424extern const struct clk_ops tegra_clk_pll_out_ops;
425struct clk *tegra_clk_register_pll_out(const char *name,
426 const char *parent_name, void __iomem *reg, u8 enb_bit_idx,
427 u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags,
428 spinlock_t *lock);
429
430/**
431 * struct tegra_clk_periph_regs - Registers controlling peripheral clock
432 *
433 * @enb_reg: read the enable status
434 * @enb_set_reg: write 1 to enable clock
435 * @enb_clr_reg: write 1 to disable clock
436 * @rst_reg: read the reset status
437 * @rst_set_reg: write 1 to assert the reset of peripheral
438 * @rst_clr_reg: write 1 to deassert the reset of peripheral
439 */
440struct tegra_clk_periph_regs {
441 u32 enb_reg;
442 u32 enb_set_reg;
443 u32 enb_clr_reg;
444 u32 rst_reg;
445 u32 rst_set_reg;
446 u32 rst_clr_reg;
447};
448
449/**
450 * struct tegra_clk_periph_gate - peripheral gate clock
451 *
452 * @magic: magic number to validate type
453 * @hw: handle between common and hardware-specific interfaces
454 * @clk_base: address of CAR controller
455 * @regs: Registers to control the peripheral
456 * @flags: hardware-specific flags
457 * @clk_num: Clock number
458 * @enable_refcnt: array to maintain reference count of the clock
459 *
460 * Flags:
461 * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed
462 * for this module.
463 * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module
464 * after clock enable and driver for the module is responsible for
465 * doing reset.
466 * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the
467 * bus to flush the write operation in apb bus. This flag indicates
468 * that this peripheral is in apb bus.
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300469 * TEGRA_PERIPH_WAR_1005168 - Apply workaround for Tegra114 MSENC bug
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530470 */
471struct tegra_clk_periph_gate {
472 u32 magic;
473 struct clk_hw hw;
474 void __iomem *clk_base;
475 u8 flags;
476 int clk_num;
477 int *enable_refcnt;
478 struct tegra_clk_periph_regs *regs;
479};
480
481#define to_clk_periph_gate(_hw) \
482 container_of(_hw, struct tegra_clk_periph_gate, hw)
483
484#define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309
485
486#define TEGRA_PERIPH_NO_RESET BIT(0)
487#define TEGRA_PERIPH_MANUAL_RESET BIT(1)
488#define TEGRA_PERIPH_ON_APB BIT(2)
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300489#define TEGRA_PERIPH_WAR_1005168 BIT(3)
Peter De Schrijver5bb9d262013-09-02 18:43:56 +0300490#define TEGRA_PERIPH_NO_DIV BIT(4)
Peter De Schrijverb29f9e92013-11-18 16:11:38 +0100491#define TEGRA_PERIPH_NO_GATE BIT(5)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530492
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530493extern const struct clk_ops tegra_clk_periph_gate_ops;
494struct clk *tegra_clk_register_periph_gate(const char *name,
495 const char *parent_name, u8 gate_flags, void __iomem *clk_base,
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300496 unsigned long flags, int clk_num, int *enable_refcnt);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530497
498/**
499 * struct clk-periph - peripheral clock
500 *
501 * @magic: magic number to validate type
502 * @hw: handle between common and hardware-specific interfaces
503 * @mux: mux clock
504 * @divider: divider clock
505 * @gate: gate clock
506 * @mux_ops: mux clock ops
507 * @div_ops: divider clock ops
508 * @gate_ops: gate clock ops
509 */
510struct tegra_clk_periph {
511 u32 magic;
512 struct clk_hw hw;
513 struct clk_mux mux;
514 struct tegra_clk_frac_div divider;
515 struct tegra_clk_periph_gate gate;
516
517 const struct clk_ops *mux_ops;
518 const struct clk_ops *div_ops;
519 const struct clk_ops *gate_ops;
520};
521
522#define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw)
523
524#define TEGRA_CLK_PERIPH_MAGIC 0x18221223
525
526extern const struct clk_ops tegra_clk_periph_ops;
527struct clk *tegra_clk_register_periph(const char *name,
528 const char **parent_names, int num_parents,
529 struct tegra_clk_periph *periph, void __iomem *clk_base,
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300530 u32 offset, unsigned long flags);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530531struct clk *tegra_clk_register_periph_nodiv(const char *name,
532 const char **parent_names, int num_parents,
533 struct tegra_clk_periph *periph, void __iomem *clk_base,
534 u32 offset);
535
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200536#define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530537 _div_shift, _div_width, _div_frac_width, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300538 _div_flags, _clk_num,\
Peter De Schrijverbc442752013-11-18 16:11:37 +0100539 _gate_flags, _table, _lock) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530540 { \
541 .mux = { \
542 .flags = _mux_flags, \
543 .shift = _mux_shift, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200544 .mask = _mux_mask, \
545 .table = _table, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100546 .lock = _lock, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530547 }, \
548 .divider = { \
549 .flags = _div_flags, \
550 .shift = _div_shift, \
551 .width = _div_width, \
552 .frac_width = _div_frac_width, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100553 .lock = _lock, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530554 }, \
555 .gate = { \
556 .flags = _gate_flags, \
557 .clk_num = _clk_num, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530558 }, \
559 .mux_ops = &clk_mux_ops, \
560 .div_ops = &tegra_clk_frac_div_ops, \
561 .gate_ops = &tegra_clk_periph_gate_ops, \
562 }
563
564struct tegra_periph_init_data {
565 const char *name;
566 int clk_id;
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300567 union {
568 const char **parent_names;
569 const char *parent_name;
570 } p;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530571 int num_parents;
572 struct tegra_clk_periph periph;
573 u32 offset;
574 const char *con_id;
575 const char *dev_id;
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300576 unsigned long flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530577};
578
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200579#define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
580 _mux_shift, _mux_mask, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300581 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300582 _clk_num, _gate_flags, _clk_id, _table, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100583 _flags, _lock) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530584 { \
585 .name = _name, \
586 .clk_id = _clk_id, \
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300587 .p.parent_names = _parent_names, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530588 .num_parents = ARRAY_SIZE(_parent_names), \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200589 .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530590 _mux_flags, _div_shift, \
591 _div_width, _div_frac_width, \
592 _div_flags, _clk_num, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100593 _gate_flags, _table, _lock), \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530594 .offset = _offset, \
595 .con_id = _con_id, \
596 .dev_id = _dev_id, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300597 .flags = _flags \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530598 }
599
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200600#define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\
601 _mux_shift, _mux_width, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300602 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300603 _clk_num, _gate_flags, _clk_id) \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200604 TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
605 _mux_shift, BIT(_mux_width) - 1, _mux_flags, \
606 _div_shift, _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300607 _clk_num, _gate_flags, _clk_id,\
Peter De Schrijverbc442752013-11-18 16:11:37 +0100608 NULL, 0, NULL)
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200609
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530610/**
611 * struct clk_super_mux - super clock
612 *
613 * @hw: handle between common and hardware-specific interfaces
614 * @reg: register controlling multiplexer
615 * @width: width of the multiplexer bit field
616 * @flags: hardware-specific flags
617 * @div2_index: bit controlling divide-by-2
618 * @pllx_index: PLLX index in the parent list
619 * @lock: register lock
620 *
621 * Flags:
622 * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates
623 * that this is LP cluster clock.
624 */
625struct tegra_clk_super_mux {
626 struct clk_hw hw;
627 void __iomem *reg;
628 u8 width;
629 u8 flags;
630 u8 div2_index;
631 u8 pllx_index;
632 spinlock_t *lock;
633};
634
635#define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw)
636
637#define TEGRA_DIVIDER_2 BIT(0)
638
639extern const struct clk_ops tegra_clk_super_ops;
640struct clk *tegra_clk_register_super_mux(const char *name,
641 const char **parent_names, u8 num_parents,
642 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
643 u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock);
644
645/**
Thierry Reding81064622014-08-05 13:26:12 +0200646 * struct clk_init_table - clock initialization table
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530647 * @clk_id: clock id as mentioned in device tree bindings
648 * @parent_id: parent clock id as mentioned in device tree bindings
649 * @rate: rate to set
650 * @state: enable/disable
651 */
652struct tegra_clk_init_table {
653 unsigned int clk_id;
654 unsigned int parent_id;
655 unsigned long rate;
656 int state;
657};
658
659/**
660 * struct clk_duplicate - duplicate clocks
661 * @clk_id: clock id as mentioned in device tree bindings
662 * @lookup: duplicate lookup entry for the clock
663 */
664struct tegra_clk_duplicate {
665 int clk_id;
666 struct clk_lookup lookup;
667};
668
669#define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \
670 { \
671 .clk_id = _clk_id, \
672 .lookup = { \
673 .dev_id = _dev, \
674 .con_id = _con, \
675 }, \
676 }
677
Peter De Schrijverb8700d52013-10-14 16:47:37 +0300678struct tegra_clk {
679 int dt_id;
680 bool present;
681};
682
Peter De Schrijver73d37e42013-10-09 14:47:57 +0300683struct tegra_devclk {
684 int dt_id;
685 char *dev_id;
686 char *con_id;
687};
688
Mikko Perttunen66b6f3d2015-05-20 09:27:05 +0300689void tegra_init_special_resets(unsigned int num, int (*assert)(unsigned long),
690 int (*deassert)(unsigned long));
691
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530692void tegra_init_from_table(struct tegra_clk_init_table *tbl,
693 struct clk *clks[], int clk_max);
694
695void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list,
696 struct clk *clks[], int clk_max);
697
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300698struct tegra_clk_periph_regs *get_reg_bank(int clkid);
Stephen Warren6d5b9882013-11-05 17:33:17 -0700699struct clk **tegra_clk_init(void __iomem *clk_base, int num, int periph_banks);
Peter De Schrijver343a6072013-09-02 15:22:02 +0300700
Peter De Schrijverb8700d52013-10-14 16:47:37 +0300701struct clk **tegra_lookup_dt_id(int clk_id, struct tegra_clk *tegra_clk);
702
Peter De Schrijver343a6072013-09-02 15:22:02 +0300703void tegra_add_of_provider(struct device_node *np);
Peter De Schrijver73d37e42013-10-09 14:47:57 +0300704void tegra_register_devclks(struct tegra_devclk *dev_clks, int num);
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300705
Peter De Schrijver6609dbe2013-09-17 15:42:24 +0300706void tegra_audio_clk_init(void __iomem *clk_base,
707 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
Rhyland Klein88d909b2015-06-18 17:28:17 -0400708 struct tegra_audio_clk_info *audio_info,
709 unsigned int num_plls);
Peter De Schrijver6609dbe2013-09-17 15:42:24 +0300710
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300711void tegra_periph_clk_init(void __iomem *clk_base, void __iomem *pmc_base,
712 struct tegra_clk *tegra_clks,
713 struct tegra_clk_pll_params *pll_params);
714
Peter De Schrijverde4f30f2013-10-15 17:19:13 +0300715void tegra_pmc_clk_init(void __iomem *pmc_base, struct tegra_clk *tegra_clks);
716void tegra_fixed_clk_init(struct tegra_clk *tegra_clks);
Thierry Reding63cc5a42015-03-26 17:43:56 +0100717int tegra_osc_clk_init(void __iomem *clk_base, struct tegra_clk *clks,
718 unsigned long *input_freqs, unsigned int num,
719 unsigned int clk_m_div, unsigned long *osc_freq,
720 unsigned long *pll_ref_freq);
Peter De Schrijvera7c84852013-09-03 15:46:01 +0300721void tegra_super_clk_gen4_init(void __iomem *clk_base,
722 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
723 struct tegra_clk_pll_params *pll_params);
Peter De Schrijverde4f30f2013-10-15 17:19:13 +0300724
Thierry Reding31b52ba2015-04-01 09:10:58 +0200725#ifdef CONFIG_TEGRA_CLK_EMC
Mikko Perttunen2db04f12015-03-12 15:48:05 +0100726struct clk *tegra_clk_register_emc(void __iomem *base, struct device_node *np,
727 spinlock_t *lock);
Thierry Reding31b52ba2015-04-01 09:10:58 +0200728#else
729static inline struct clk *tegra_clk_register_emc(void __iomem *base,
730 struct device_node *np,
731 spinlock_t *lock)
732{
733 return NULL;
734}
735#endif
Mikko Perttunen2db04f12015-03-12 15:48:05 +0100736
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600737void tegra114_clock_tune_cpu_trimmers_high(void);
738void tegra114_clock_tune_cpu_trimmers_low(void);
739void tegra114_clock_tune_cpu_trimmers_init(void);
Paul Walmsley1c472d82013-06-07 06:19:09 -0600740void tegra114_clock_assert_dfll_dvco_reset(void);
741void tegra114_clock_deassert_dfll_dvco_reset(void);
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600742
Stephen Warren441f1992013-03-25 13:22:24 -0600743typedef void (*tegra_clk_apply_init_table_func)(void);
744extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
Rhyland Klein6583a632015-06-18 17:28:19 -0400745int tegra_pll_wait_for_lock(struct tegra_clk_pll *pll);
Rhyland Klein407254d2015-06-18 17:28:25 -0400746u16 tegra_pll_get_fixed_mdiv(struct clk_hw *hw, unsigned long input_rate);
Stephen Warren441f1992013-03-25 13:22:24 -0600747
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530748#endif /* TEGRA_CLK_H */