blob: 3bb3d5f7b7609a9399fe2ef9aa7120ced24a7b6f [file] [log] [blame]
Thomas Gleixner9952f692019-05-28 10:10:04 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Peter De Schrijverc1d19392013-04-03 17:40:41 +03002 /*
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +05303 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +05304 */
5
6#ifndef __TEGRA_CLK_H
7#define __TEGRA_CLK_H
8
9#include <linux/clk-provider.h>
10#include <linux/clkdev.h>
Aapo Vienamo0cbb61a2018-07-12 14:52:59 +030011#include <linux/delay.h>
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +053012
Sowjanya Komatineni3214be62019-08-16 12:41:59 -070013#define CLK_OUT_ENB_L 0x010
14#define CLK_OUT_ENB_H 0x014
15#define CLK_OUT_ENB_U 0x018
16#define CLK_OUT_ENB_V 0x360
17#define CLK_OUT_ENB_W 0x364
18#define CLK_OUT_ENB_X 0x280
19#define CLK_OUT_ENB_Y 0x298
20#define CLK_ENB_PLLP_OUT_CPU BIT(31)
21#define CLK_OUT_ENB_SET_L 0x320
22#define CLK_OUT_ENB_CLR_L 0x324
23#define CLK_OUT_ENB_SET_H 0x328
24#define CLK_OUT_ENB_CLR_H 0x32c
25#define CLK_OUT_ENB_SET_U 0x330
26#define CLK_OUT_ENB_CLR_U 0x334
27#define CLK_OUT_ENB_SET_V 0x440
28#define CLK_OUT_ENB_CLR_V 0x444
29#define CLK_OUT_ENB_SET_W 0x448
30#define CLK_OUT_ENB_CLR_W 0x44c
31#define CLK_OUT_ENB_SET_X 0x284
32#define CLK_OUT_ENB_CLR_X 0x288
33#define CLK_OUT_ENB_SET_Y 0x29c
34#define CLK_OUT_ENB_CLR_Y 0x2a0
35
36#define RST_DEVICES_L 0x004
37#define RST_DEVICES_H 0x008
38#define RST_DEVICES_U 0x00C
39#define RST_DEVICES_V 0x358
40#define RST_DEVICES_W 0x35C
41#define RST_DEVICES_X 0x28C
42#define RST_DEVICES_Y 0x2a4
43#define RST_DEVICES_SET_L 0x300
44#define RST_DEVICES_CLR_L 0x304
45#define RST_DEVICES_SET_H 0x308
46#define RST_DEVICES_CLR_H 0x30c
47#define RST_DEVICES_SET_U 0x310
48#define RST_DEVICES_CLR_U 0x314
49#define RST_DEVICES_SET_V 0x430
50#define RST_DEVICES_CLR_V 0x434
51#define RST_DEVICES_SET_W 0x438
52#define RST_DEVICES_CLR_W 0x43c
53#define RST_DEVICES_SET_X 0x290
54#define RST_DEVICES_CLR_X 0x294
55#define RST_DEVICES_SET_Y 0x2a8
56#define RST_DEVICES_CLR_Y 0x2ac
57
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +053058/**
59 * struct tegra_clk_sync_source - external clock source from codec
60 *
61 * @hw: handle between common and hardware-specific interfaces
62 * @rate: input frequency from source
63 * @max_rate: max rate allowed
64 */
65struct tegra_clk_sync_source {
66 struct clk_hw hw;
67 unsigned long rate;
68 unsigned long max_rate;
69};
70
71#define to_clk_sync_source(_hw) \
72 container_of(_hw, struct tegra_clk_sync_source, hw)
73
74extern const struct clk_ops tegra_clk_sync_source_ops;
Peter De Schrijver343a6072013-09-02 15:22:02 +030075extern int *periph_clk_enb_refcnt;
76
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +053077struct clk *tegra_clk_register_sync_source(const char *name,
Jon Hunter845d7822018-12-03 10:28:40 +000078 unsigned long max_rate);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +053079
80/**
81 * struct tegra_clk_frac_div - fractional divider clock
82 *
83 * @hw: handle between common and hardware-specific interfaces
84 * @reg: register containing divider
85 * @flags: hardware-specific flags
86 * @shift: shift to the divider bit field
87 * @width: width of the divider bit field
88 * @frac_width: width of the fractional bit field
89 * @lock: register lock
90 *
91 * Flags:
92 * TEGRA_DIVIDER_ROUND_UP - This flags indicates to round up the divider value.
93 * TEGRA_DIVIDER_FIXED - Fixed rate PLL dividers has addition override bit, this
94 * flag indicates that this divider is for fixed rate PLL.
95 * TEGRA_DIVIDER_INT - Some modules can not cope with the duty cycle when
96 * fraction bit is set. This flags indicates to calculate divider for which
97 * fracton bit will be zero.
98 * TEGRA_DIVIDER_UART - UART module divider has additional enable bit which is
99 * set when divider value is not 0. This flags indicates that the divider
100 * is for UART module.
101 */
102struct tegra_clk_frac_div {
103 struct clk_hw hw;
104 void __iomem *reg;
105 u8 flags;
106 u8 shift;
107 u8 width;
108 u8 frac_width;
109 spinlock_t *lock;
110};
111
112#define to_clk_frac_div(_hw) container_of(_hw, struct tegra_clk_frac_div, hw)
113
114#define TEGRA_DIVIDER_ROUND_UP BIT(0)
115#define TEGRA_DIVIDER_FIXED BIT(1)
116#define TEGRA_DIVIDER_INT BIT(2)
117#define TEGRA_DIVIDER_UART BIT(3)
118
119extern const struct clk_ops tegra_clk_frac_div_ops;
120struct clk *tegra_clk_register_divider(const char *name,
121 const char *parent_name, void __iomem *reg,
122 unsigned long flags, u8 clk_divider_flags, u8 shift, u8 width,
123 u8 frac_width, spinlock_t *lock);
Thierry Reding4f4f85f2014-07-29 10:17:53 +0200124struct clk *tegra_clk_register_mc(const char *name, const char *parent_name,
125 void __iomem *reg, spinlock_t *lock);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530126
127/*
128 * Tegra PLL:
129 *
130 * In general, there are 3 requirements for each PLL
131 * that SW needs to be comply with.
132 * (1) Input frequency range (REF).
133 * (2) Comparison frequency range (CF). CF = REF/DIVM.
134 * (3) VCO frequency range (VCO). VCO = CF * DIVN.
135 *
136 * The final PLL output frequency (FO) = VCO >> DIVP.
137 */
138
139/**
140 * struct tegra_clk_pll_freq_table - PLL frequecy table
141 *
142 * @input_rate: input rate from source
143 * @output_rate: output rate from PLL for the input rate
144 * @n: feedback divider
145 * @m: input divider
146 * @p: post divider
147 * @cpcon: charge pump current
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400148 * @sdm_data: fraction divider setting (0 = disabled)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530149 */
150struct tegra_clk_pll_freq_table {
151 unsigned long input_rate;
152 unsigned long output_rate;
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400153 u32 n;
Peter De Schrijvere5893762017-02-23 12:44:44 +0200154 u32 m;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530155 u8 p;
156 u8 cpcon;
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400157 u16 sdm_data;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530158};
159
160/**
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300161 * struct pdiv_map - map post divider to hw value
162 *
163 * @pdiv: post divider
164 * @hw_val: value to be written to the PLL hw
165 */
166struct pdiv_map {
167 u8 pdiv;
168 u8 hw_val;
169};
170
171/**
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300172 * struct div_nmp - offset and width of m,n and p fields
173 *
174 * @divn_shift: shift to the feedback divider bit field
175 * @divn_width: width of the feedback divider bit field
176 * @divm_shift: shift to the input divider bit field
177 * @divm_width: width of the input divider bit field
178 * @divp_shift: shift to the post divider bit field
179 * @divp_width: width of the post divider bit field
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300180 * @override_divn_shift: shift to the feedback divider bitfield in override reg
181 * @override_divm_shift: shift to the input divider bitfield in override reg
182 * @override_divp_shift: shift to the post divider bitfield in override reg
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300183 */
184struct div_nmp {
185 u8 divn_shift;
186 u8 divn_width;
187 u8 divm_shift;
188 u8 divm_width;
189 u8 divp_shift;
190 u8 divp_width;
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300191 u8 override_divn_shift;
192 u8 override_divm_shift;
193 u8 override_divp_shift;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300194};
195
Bill Huang56fd27b2015-06-18 17:28:22 -0400196#define MAX_PLL_MISC_REG_COUNT 6
197
Bill Huangb9851142015-06-18 17:28:31 -0400198struct tegra_clk_pll;
199
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300200/**
Thierry Redingdb592c42015-06-18 17:28:16 -0400201 * struct tegra_clk_pll_params - PLL parameters
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530202 *
203 * @input_min: Minimum input frequency
204 * @input_max: Maximum input frequency
205 * @cf_min: Minimum comparison frequency
206 * @cf_max: Maximum comparison frequency
207 * @vco_min: Minimum VCO frequency
208 * @vco_max: Maximum VCO frequency
209 * @base_reg: PLL base reg offset
210 * @misc_reg: PLL misc reg offset
211 * @lock_reg: PLL lock reg offset
Thierry Redingdb592c42015-06-18 17:28:16 -0400212 * @lock_mask: Bitmask for PLL lock status
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530213 * @lock_enable_bit_idx: Bit index to enable PLL lock
Thierry Redingdb592c42015-06-18 17:28:16 -0400214 * @iddq_reg: PLL IDDQ register offset
215 * @iddq_bit_idx: Bit index to enable PLL IDDQ
Bill Huangfde207e2015-06-18 17:28:26 -0400216 * @reset_reg: Register offset of where RESET bit is
217 * @reset_bit_idx: Shift of reset bit in reset_reg
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400218 * @sdm_din_reg: Register offset where SDM settings are
219 * @sdm_din_mask: Mask of SDM divider bits
220 * @sdm_ctrl_reg: Register offset where SDM enable is
221 * @sdm_ctrl_en_mask: Mask of SDM enable bit
Bill Huang0ef9db62015-06-18 17:28:33 -0400222 * @ssc_ctrl_reg: Register offset where SSC settings are
223 * @ssc_ctrl_en_mask: Mask of SSC enable bit
Thierry Redingdb592c42015-06-18 17:28:16 -0400224 * @aux_reg: AUX register offset
225 * @dyn_ramp_reg: Dynamic ramp control register offset
226 * @ext_misc_reg: Miscellaneous control register offsets
227 * @pmc_divnm_reg: n, m divider PMC override register offset (PLLM)
228 * @pmc_divp_reg: p divider PMC override register offset (PLLM)
229 * @flags: PLL flags
230 * @stepa_shift: Dynamic ramp step A field shift
231 * @stepb_shift: Dynamic ramp step B field shift
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530232 * @lock_delay: Delay in us if PLL lock is not used
Thierry Redingdb592c42015-06-18 17:28:16 -0400233 * @max_p: maximum value for the p divider
Bill Huangb9851142015-06-18 17:28:31 -0400234 * @defaults_set: Boolean signaling all reg defaults for PLL set.
Thierry Redingdb592c42015-06-18 17:28:16 -0400235 * @pdiv_tohw: mapping of p divider to register values
236 * @div_nmp: offsets and widths on n, m and p fields
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400237 * @freq_table: array of frequencies supported by PLL
238 * @fixed_rate: PLL rate if it is fixed
Rhyland Klein407254d2015-06-18 17:28:25 -0400239 * @mdiv_default: Default value for fixed mdiv for this PLL
240 * @round_p_to_pdiv: Callback used to round p to the closed pdiv
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400241 * @set_gain: Callback to adjust N div for SDM enabled
242 * PLL's based on fractional divider value.
Rhyland Klein407254d2015-06-18 17:28:25 -0400243 * @calc_rate: Callback used to change how out of table
244 * rates (dividers and multipler) are calculated.
Bill Huangb5512b42015-06-18 17:28:30 -0400245 * @adjust_vco: Callback to adjust the programming range of the
246 * divider range (if SDM is present)
Bill Huangb9851142015-06-18 17:28:31 -0400247 * @set_defaults: Callback which will try to initialize PLL
248 * registers to sane default values. This is first
249 * tried during PLL registration, but if the PLL
250 * is already enabled, it will be done the first
251 * time the rate is changed while the PLL is
252 * disabled.
Rhyland Klein17e92732015-06-18 17:28:32 -0400253 * @dyn_ramp: Callback which can be used to define a custom
254 * dynamic ramp function for a given PLL.
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400255 *
256 * Flags:
257 * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
258 * PLL locking. If not set it will use lock_delay value to wait.
259 * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs
260 * to be programmed to change output frequency of the PLL.
261 * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs
262 * to be programmed to change output frequency of the PLL.
263 * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs
264 * to be programmed to change output frequency of the PLL.
265 * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated
266 * that it is PLLU and invert post divider value.
267 * TEGRA_PLLM - PLLM has additional override settings in PMC. This
268 * flag indicates that it is PLLM and use override settings.
269 * TEGRA_PLL_FIXED - We are not supposed to change output frequency
270 * of some plls.
271 * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling.
272 * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the
273 * base register.
274 * TEGRA_PLL_BYPASS - PLL has bypass bit
275 * TEGRA_PLL_HAS_LOCK_ENABLE - PLL has bit to enable lock monitoring
Rhyland Klein407254d2015-06-18 17:28:25 -0400276 * TEGRA_MDIV_NEW - Switch to new method for calculating fixed mdiv
277 * it may be more accurate (especially if SDM present)
Rhyland Klein69297152015-06-18 17:28:29 -0400278 * TEGRA_PLLMB - PLLMB has should be treated similar to PLLM. This
279 * flag indicated that it is PLLMB.
Rhyland Klein6b301a02015-06-18 17:28:36 -0400280 * TEGRA_PLL_VCO_OUT - Used to indicate that the PLL has a VCO output
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530281 */
282struct tegra_clk_pll_params {
283 unsigned long input_min;
284 unsigned long input_max;
285 unsigned long cf_min;
286 unsigned long cf_max;
287 unsigned long vco_min;
288 unsigned long vco_max;
289
290 u32 base_reg;
291 u32 misc_reg;
292 u32 lock_reg;
Peter De Schrijver3e727712013-04-03 17:40:40 +0300293 u32 lock_mask;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530294 u32 lock_enable_bit_idx;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300295 u32 iddq_reg;
296 u32 iddq_bit_idx;
Bill Huangfde207e2015-06-18 17:28:26 -0400297 u32 reset_reg;
298 u32 reset_bit_idx;
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400299 u32 sdm_din_reg;
300 u32 sdm_din_mask;
301 u32 sdm_ctrl_reg;
302 u32 sdm_ctrl_en_mask;
Bill Huang0ef9db62015-06-18 17:28:33 -0400303 u32 ssc_ctrl_reg;
304 u32 ssc_ctrl_en_mask;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300305 u32 aux_reg;
306 u32 dyn_ramp_reg;
Bill Huang56fd27b2015-06-18 17:28:22 -0400307 u32 ext_misc_reg[MAX_PLL_MISC_REG_COUNT];
Peter De Schrijver7b781c72013-06-06 13:47:28 +0300308 u32 pmc_divnm_reg;
309 u32 pmc_divp_reg;
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300310 u32 flags;
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300311 int stepa_shift;
312 int stepb_shift;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530313 int lock_delay;
Peter De Schrijver0b6525a2013-04-03 17:40:39 +0300314 int max_p;
Bill Huangb9851142015-06-18 17:28:31 -0400315 bool defaults_set;
Thierry Reding385f9ad2015-11-19 16:34:06 +0100316 const struct pdiv_map *pdiv_tohw;
Peter De Schrijveraa6fefd2013-06-05 16:51:25 +0300317 struct div_nmp *div_nmp;
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300318 struct tegra_clk_pll_freq_table *freq_table;
319 unsigned long fixed_rate;
Rhyland Klein407254d2015-06-18 17:28:25 -0400320 u16 mdiv_default;
321 u32 (*round_p_to_pdiv)(u32 p, u32 *pdiv);
Rhyland Kleind907f4b2015-06-18 17:28:24 -0400322 void (*set_gain)(struct tegra_clk_pll_freq_table *cfg);
Rhyland Klein407254d2015-06-18 17:28:25 -0400323 int (*calc_rate)(struct clk_hw *hw,
324 struct tegra_clk_pll_freq_table *cfg,
325 unsigned long rate, unsigned long parent_rate);
Bill Huangb5512b42015-06-18 17:28:30 -0400326 unsigned long (*adjust_vco)(struct tegra_clk_pll_params *pll_params,
327 unsigned long parent_rate);
Bill Huangb9851142015-06-18 17:28:31 -0400328 void (*set_defaults)(struct tegra_clk_pll *pll);
Rhyland Klein17e92732015-06-18 17:28:32 -0400329 int (*dyn_ramp)(struct tegra_clk_pll *pll,
330 struct tegra_clk_pll_freq_table *cfg);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530331};
332
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530333#define TEGRA_PLL_USE_LOCK BIT(0)
334#define TEGRA_PLL_HAS_CPCON BIT(1)
335#define TEGRA_PLL_SET_LFCON BIT(2)
336#define TEGRA_PLL_SET_DCCON BIT(3)
337#define TEGRA_PLLU BIT(4)
338#define TEGRA_PLLM BIT(5)
339#define TEGRA_PLL_FIXED BIT(6)
340#define TEGRA_PLLE_CONFIGURE BIT(7)
Peter De Schrijverdba40722013-04-03 17:40:36 +0300341#define TEGRA_PLL_LOCK_MISC BIT(8)
Peter De Schrijverdd935872013-04-03 17:40:37 +0300342#define TEGRA_PLL_BYPASS BIT(9)
Peter De Schrijver7ba28812013-04-03 17:40:38 +0300343#define TEGRA_PLL_HAS_LOCK_ENABLE BIT(10)
Rhyland Klein407254d2015-06-18 17:28:25 -0400344#define TEGRA_MDIV_NEW BIT(11)
Rhyland Klein69297152015-06-18 17:28:29 -0400345#define TEGRA_PLLMB BIT(12)
Rhyland Klein6b301a02015-06-18 17:28:36 -0400346#define TEGRA_PLL_VCO_OUT BIT(13)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530347
Rhyland Kleinfdc1fea2015-04-13 12:38:17 -0400348/**
349 * struct tegra_clk_pll - Tegra PLL clock
350 *
351 * @hw: handle between common and hardware-specifix interfaces
352 * @clk_base: address of CAR controller
353 * @pmc: address of PMC, required to read override bits
354 * @lock: register lock
355 * @params: PLL parameters
356 */
357struct tegra_clk_pll {
358 struct clk_hw hw;
359 void __iomem *clk_base;
360 void __iomem *pmc;
361 spinlock_t *lock;
362 struct tegra_clk_pll_params *params;
363};
364
365#define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw)
366
Rhyland Klein88d909b2015-06-18 17:28:17 -0400367/**
368 * struct tegra_audio_clk_info - Tegra Audio Clk Information
369 *
370 * @name: name for the audio pll
371 * @pll_params: pll_params for audio pll
372 * @clk_id: clk_ids for the audio pll
373 * @parent: name of the parent of the audio pll
374 */
375struct tegra_audio_clk_info {
376 char *name;
377 struct tegra_clk_pll_params *pll_params;
378 int clk_id;
379 char *parent;
380};
381
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530382extern const struct clk_ops tegra_clk_pll_ops;
383extern const struct clk_ops tegra_clk_plle_ops;
384struct clk *tegra_clk_register_pll(const char *name, const char *parent_name,
385 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300386 unsigned long flags, struct tegra_clk_pll_params *pll_params,
387 spinlock_t *lock);
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300388
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530389struct clk *tegra_clk_register_plle(const char *name, const char *parent_name,
390 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300391 unsigned long flags, struct tegra_clk_pll_params *pll_params,
392 spinlock_t *lock);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530393
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300394struct clk *tegra_clk_register_pllxc(const char *name, const char *parent_name,
395 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300396 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300397 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300398 spinlock_t *lock);
399
400struct clk *tegra_clk_register_pllm(const char *name, const char *parent_name,
401 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300402 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300403 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300404 spinlock_t *lock);
405
406struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name,
407 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300408 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300409 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300410 spinlock_t *lock);
411
412struct clk *tegra_clk_register_pllre(const char *name, const char *parent_name,
413 void __iomem *clk_base, void __iomem *pmc,
Peter De Schrijverebe142b2013-10-04 17:28:34 +0300414 unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300415 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300416 spinlock_t *lock, unsigned long parent_rate);
417
Rhyland Klein926655f2016-03-21 15:58:52 -0400418struct clk *tegra_clk_register_pllre_tegra210(const char *name,
419 const char *parent_name, void __iomem *clk_base,
420 void __iomem *pmc, unsigned long flags,
421 struct tegra_clk_pll_params *pll_params,
422 spinlock_t *lock, unsigned long parent_rate);
423
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300424struct clk *tegra_clk_register_plle_tegra114(const char *name,
425 const char *parent_name,
426 void __iomem *clk_base, unsigned long flags,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300427 struct tegra_clk_pll_params *pll_params,
Peter De Schrijverc1d19392013-04-03 17:40:41 +0300428 spinlock_t *lock);
429
Rhyland Kleindd322f02015-06-18 17:28:28 -0400430struct clk *tegra_clk_register_plle_tegra210(const char *name,
431 const char *parent_name,
432 void __iomem *clk_base, unsigned long flags,
433 struct tegra_clk_pll_params *pll_params,
434 spinlock_t *lock);
435
436struct clk *tegra_clk_register_pllc_tegra210(const char *name,
437 const char *parent_name, void __iomem *clk_base,
438 void __iomem *pmc, unsigned long flags,
439 struct tegra_clk_pll_params *pll_params,
440 spinlock_t *lock);
441
442struct clk *tegra_clk_register_pllss_tegra210(const char *name,
443 const char *parent_name, void __iomem *clk_base,
444 unsigned long flags,
445 struct tegra_clk_pll_params *pll_params,
446 spinlock_t *lock);
447
Peter De Schrijver798e9102013-09-09 13:22:55 +0300448struct clk *tegra_clk_register_pllss(const char *name, const char *parent_name,
449 void __iomem *clk_base, unsigned long flags,
450 struct tegra_clk_pll_params *pll_params,
451 spinlock_t *lock);
452
Rhyland Klein69297152015-06-18 17:28:29 -0400453struct clk *tegra_clk_register_pllmb(const char *name, const char *parent_name,
454 void __iomem *clk_base, void __iomem *pmc,
455 unsigned long flags,
456 struct tegra_clk_pll_params *pll_params,
457 spinlock_t *lock);
458
Andrew Bresticker15d68e82016-05-26 12:41:31 -0400459struct clk *tegra_clk_register_pllu(const char *name, const char *parent_name,
460 void __iomem *clk_base, unsigned long flags,
461 struct tegra_clk_pll_params *pll_params,
462 spinlock_t *lock);
463
464struct clk *tegra_clk_register_pllu_tegra114(const char *name,
465 const char *parent_name,
466 void __iomem *clk_base, unsigned long flags,
467 struct tegra_clk_pll_params *pll_params,
468 spinlock_t *lock);
469
470struct clk *tegra_clk_register_pllu_tegra210(const char *name,
471 const char *parent_name,
472 void __iomem *clk_base, unsigned long flags,
473 struct tegra_clk_pll_params *pll_params,
474 spinlock_t *lock);
475
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530476/**
477 * struct tegra_clk_pll_out - PLL divider down clock
478 *
479 * @hw: handle between common and hardware-specific interfaces
480 * @reg: register containing the PLL divider
481 * @enb_bit_idx: bit to enable/disable PLL divider
482 * @rst_bit_idx: bit to reset PLL divider
483 * @lock: register lock
484 * @flags: hardware-specific flags
485 */
486struct tegra_clk_pll_out {
487 struct clk_hw hw;
488 void __iomem *reg;
489 u8 enb_bit_idx;
490 u8 rst_bit_idx;
491 spinlock_t *lock;
492 u8 flags;
493};
494
495#define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw)
496
497extern const struct clk_ops tegra_clk_pll_out_ops;
498struct clk *tegra_clk_register_pll_out(const char *name,
499 const char *parent_name, void __iomem *reg, u8 enb_bit_idx,
500 u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags,
501 spinlock_t *lock);
502
503/**
504 * struct tegra_clk_periph_regs - Registers controlling peripheral clock
505 *
506 * @enb_reg: read the enable status
507 * @enb_set_reg: write 1 to enable clock
508 * @enb_clr_reg: write 1 to disable clock
509 * @rst_reg: read the reset status
510 * @rst_set_reg: write 1 to assert the reset of peripheral
511 * @rst_clr_reg: write 1 to deassert the reset of peripheral
512 */
513struct tegra_clk_periph_regs {
514 u32 enb_reg;
515 u32 enb_set_reg;
516 u32 enb_clr_reg;
517 u32 rst_reg;
518 u32 rst_set_reg;
519 u32 rst_clr_reg;
520};
521
522/**
523 * struct tegra_clk_periph_gate - peripheral gate clock
524 *
525 * @magic: magic number to validate type
526 * @hw: handle between common and hardware-specific interfaces
527 * @clk_base: address of CAR controller
528 * @regs: Registers to control the peripheral
529 * @flags: hardware-specific flags
530 * @clk_num: Clock number
531 * @enable_refcnt: array to maintain reference count of the clock
532 *
533 * Flags:
534 * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed
535 * for this module.
536 * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module
537 * after clock enable and driver for the module is responsible for
538 * doing reset.
539 * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the
540 * bus to flush the write operation in apb bus. This flag indicates
541 * that this peripheral is in apb bus.
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300542 * TEGRA_PERIPH_WAR_1005168 - Apply workaround for Tegra114 MSENC bug
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530543 */
544struct tegra_clk_periph_gate {
545 u32 magic;
546 struct clk_hw hw;
547 void __iomem *clk_base;
548 u8 flags;
549 int clk_num;
550 int *enable_refcnt;
Thierry Reding7e14f222015-04-20 14:38:39 +0200551 const struct tegra_clk_periph_regs *regs;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530552};
553
554#define to_clk_periph_gate(_hw) \
555 container_of(_hw, struct tegra_clk_periph_gate, hw)
556
557#define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309
558
559#define TEGRA_PERIPH_NO_RESET BIT(0)
560#define TEGRA_PERIPH_MANUAL_RESET BIT(1)
561#define TEGRA_PERIPH_ON_APB BIT(2)
Peter De Schrijverfdcccbd2013-04-03 17:40:44 +0300562#define TEGRA_PERIPH_WAR_1005168 BIT(3)
Peter De Schrijver5bb9d262013-09-02 18:43:56 +0300563#define TEGRA_PERIPH_NO_DIV BIT(4)
Peter De Schrijverb29f9e92013-11-18 16:11:38 +0100564#define TEGRA_PERIPH_NO_GATE BIT(5)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530565
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530566extern const struct clk_ops tegra_clk_periph_gate_ops;
567struct clk *tegra_clk_register_periph_gate(const char *name,
568 const char *parent_name, u8 gate_flags, void __iomem *clk_base,
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300569 unsigned long flags, int clk_num, int *enable_refcnt);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530570
Thierry Reding1ec70322015-04-20 14:34:57 +0200571struct tegra_clk_periph_fixed {
572 struct clk_hw hw;
573 void __iomem *base;
574 const struct tegra_clk_periph_regs *regs;
575 unsigned int mul;
576 unsigned int div;
577 unsigned int num;
578};
579
580struct clk *tegra_clk_register_periph_fixed(const char *name,
581 const char *parent,
582 unsigned long flags,
583 void __iomem *base,
584 unsigned int mul,
585 unsigned int div,
586 unsigned int num);
587
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530588/**
589 * struct clk-periph - peripheral clock
590 *
591 * @magic: magic number to validate type
592 * @hw: handle between common and hardware-specific interfaces
593 * @mux: mux clock
594 * @divider: divider clock
595 * @gate: gate clock
596 * @mux_ops: mux clock ops
597 * @div_ops: divider clock ops
598 * @gate_ops: gate clock ops
599 */
600struct tegra_clk_periph {
601 u32 magic;
602 struct clk_hw hw;
603 struct clk_mux mux;
604 struct tegra_clk_frac_div divider;
605 struct tegra_clk_periph_gate gate;
606
607 const struct clk_ops *mux_ops;
608 const struct clk_ops *div_ops;
609 const struct clk_ops *gate_ops;
610};
611
612#define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw)
613
614#define TEGRA_CLK_PERIPH_MAGIC 0x18221223
615
616extern const struct clk_ops tegra_clk_periph_ops;
617struct clk *tegra_clk_register_periph(const char *name,
Peter De Schrijver9e8c93e2017-02-28 16:37:19 +0200618 const char * const *parent_names, int num_parents,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530619 struct tegra_clk_periph *periph, void __iomem *clk_base,
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300620 u32 offset, unsigned long flags);
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530621struct clk *tegra_clk_register_periph_nodiv(const char *name,
Thierry Reding39133502017-03-20 17:14:14 +0100622 const char * const *parent_names, int num_parents,
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530623 struct tegra_clk_periph *periph, void __iomem *clk_base,
624 u32 offset);
625
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200626#define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530627 _div_shift, _div_width, _div_frac_width, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300628 _div_flags, _clk_num,\
Peter De Schrijverbc442752013-11-18 16:11:37 +0100629 _gate_flags, _table, _lock) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530630 { \
631 .mux = { \
632 .flags = _mux_flags, \
633 .shift = _mux_shift, \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200634 .mask = _mux_mask, \
635 .table = _table, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100636 .lock = _lock, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530637 }, \
638 .divider = { \
639 .flags = _div_flags, \
640 .shift = _div_shift, \
641 .width = _div_width, \
642 .frac_width = _div_frac_width, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100643 .lock = _lock, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530644 }, \
645 .gate = { \
646 .flags = _gate_flags, \
647 .clk_num = _clk_num, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530648 }, \
649 .mux_ops = &clk_mux_ops, \
650 .div_ops = &tegra_clk_frac_div_ops, \
651 .gate_ops = &tegra_clk_periph_gate_ops, \
652 }
653
654struct tegra_periph_init_data {
655 const char *name;
656 int clk_id;
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300657 union {
Peter De Schrijver9e8c93e2017-02-28 16:37:19 +0200658 const char *const *parent_names;
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300659 const char *parent_name;
660 } p;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530661 int num_parents;
662 struct tegra_clk_periph periph;
663 u32 offset;
664 const char *con_id;
665 const char *dev_id;
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300666 unsigned long flags;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530667};
668
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200669#define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
670 _mux_shift, _mux_mask, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300671 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300672 _clk_num, _gate_flags, _clk_id, _table, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100673 _flags, _lock) \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530674 { \
675 .name = _name, \
676 .clk_id = _clk_id, \
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300677 .p.parent_names = _parent_names, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530678 .num_parents = ARRAY_SIZE(_parent_names), \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200679 .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530680 _mux_flags, _div_shift, \
681 _div_width, _div_frac_width, \
682 _div_flags, _clk_num, \
Peter De Schrijverbc442752013-11-18 16:11:37 +0100683 _gate_flags, _table, _lock), \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530684 .offset = _offset, \
685 .con_id = _con_id, \
686 .dev_id = _dev_id, \
Peter De Schrijvera26a0292013-04-03 17:40:42 +0300687 .flags = _flags \
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530688 }
689
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200690#define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\
691 _mux_shift, _mux_width, _mux_flags, _div_shift, \
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300692 _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300693 _clk_num, _gate_flags, _clk_id) \
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200694 TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\
695 _mux_shift, BIT(_mux_width) - 1, _mux_flags, \
696 _div_shift, _div_width, _div_frac_width, _div_flags, \
Peter De Schrijver343a6072013-09-02 15:22:02 +0300697 _clk_num, _gate_flags, _clk_id,\
Peter De Schrijverbc442752013-11-18 16:11:37 +0100698 NULL, 0, NULL)
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200699
Thierry Reding8be95192017-08-30 12:11:53 +0200700struct clk *tegra_clk_register_periph_data(void __iomem *clk_base,
701 struct tegra_periph_init_data *init);
702
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530703/**
704 * struct clk_super_mux - super clock
705 *
706 * @hw: handle between common and hardware-specific interfaces
707 * @reg: register controlling multiplexer
708 * @width: width of the multiplexer bit field
709 * @flags: hardware-specific flags
710 * @div2_index: bit controlling divide-by-2
711 * @pllx_index: PLLX index in the parent list
712 * @lock: register lock
713 *
714 * Flags:
715 * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates
716 * that this is LP cluster clock.
Sowjanya Komatineni68a14a52019-08-16 12:41:54 -0700717 * TEGRA210_CPU_CLK - This flag is used to identify CPU cluster for gen5
718 * super mux parent using PLLP branches. To use PLLP branches to CPU, need
719 * to configure additional bit PLLP_OUT_CPU in the clock registers.
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530720 */
721struct tegra_clk_super_mux {
722 struct clk_hw hw;
723 void __iomem *reg;
Peter De Schrijvere827ba182017-02-28 16:37:21 +0200724 struct tegra_clk_frac_div frac_div;
725 const struct clk_ops *div_ops;
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530726 u8 width;
727 u8 flags;
728 u8 div2_index;
729 u8 pllx_index;
730 spinlock_t *lock;
731};
732
733#define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw)
734
735#define TEGRA_DIVIDER_2 BIT(0)
Sowjanya Komatineni68a14a52019-08-16 12:41:54 -0700736#define TEGRA210_CPU_CLK BIT(1)
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530737
738extern const struct clk_ops tegra_clk_super_ops;
739struct clk *tegra_clk_register_super_mux(const char *name,
740 const char **parent_names, u8 num_parents,
741 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
742 u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock);
Peter De Schrijvere827ba182017-02-28 16:37:21 +0200743struct clk *tegra_clk_register_super_clk(const char *name,
744 const char * const *parent_names, u8 num_parents,
745 unsigned long flags, void __iomem *reg, u8 clk_super_flags,
746 spinlock_t *lock);
Peter De-Schrijver633e7962018-07-12 14:53:01 +0300747
748/**
749 * struct tegra_sdmmc_mux - switch divider with Low Jitter inputs for SDMMC
750 *
751 * @hw: handle between common and hardware-specific interfaces
752 * @reg: register controlling mux and divider
753 * @flags: hardware-specific flags
754 * @lock: optional register lock
755 * @gate: gate clock
756 * @gate_ops: gate clock ops
757 */
758struct tegra_sdmmc_mux {
759 struct clk_hw hw;
760 void __iomem *reg;
761 spinlock_t *lock;
762 const struct clk_ops *gate_ops;
763 struct tegra_clk_periph_gate gate;
764 u8 div_flags;
765};
766
767#define to_clk_sdmmc_mux(_hw) container_of(_hw, struct tegra_sdmmc_mux, hw)
768
769struct clk *tegra_clk_register_sdmmc_mux_div(const char *name,
770 void __iomem *clk_base, u32 offset, u32 clk_num, u8 div_flags,
771 unsigned long flags, void *lock);
772
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530773/**
Thierry Reding81064622014-08-05 13:26:12 +0200774 * struct clk_init_table - clock initialization table
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530775 * @clk_id: clock id as mentioned in device tree bindings
776 * @parent_id: parent clock id as mentioned in device tree bindings
777 * @rate: rate to set
778 * @state: enable/disable
779 */
780struct tegra_clk_init_table {
781 unsigned int clk_id;
782 unsigned int parent_id;
783 unsigned long rate;
784 int state;
785};
786
787/**
788 * struct clk_duplicate - duplicate clocks
789 * @clk_id: clock id as mentioned in device tree bindings
790 * @lookup: duplicate lookup entry for the clock
791 */
792struct tegra_clk_duplicate {
793 int clk_id;
794 struct clk_lookup lookup;
795};
796
797#define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \
798 { \
799 .clk_id = _clk_id, \
800 .lookup = { \
801 .dev_id = _dev, \
802 .con_id = _con, \
803 }, \
804 }
805
Peter De Schrijverb8700d52013-10-14 16:47:37 +0300806struct tegra_clk {
807 int dt_id;
808 bool present;
809};
810
Peter De Schrijver73d37e42013-10-09 14:47:57 +0300811struct tegra_devclk {
812 int dt_id;
813 char *dev_id;
814 char *con_id;
815};
816
Mikko Perttunen66b6f3d2015-05-20 09:27:05 +0300817void tegra_init_special_resets(unsigned int num, int (*assert)(unsigned long),
818 int (*deassert)(unsigned long));
819
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530820void tegra_init_from_table(struct tegra_clk_init_table *tbl,
821 struct clk *clks[], int clk_max);
822
823void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list,
824 struct clk *clks[], int clk_max);
825
Thierry Reding7e14f222015-04-20 14:38:39 +0200826const struct tegra_clk_periph_regs *get_reg_bank(int clkid);
Stephen Warren6d5b9882013-11-05 17:33:17 -0700827struct clk **tegra_clk_init(void __iomem *clk_base, int num, int periph_banks);
Peter De Schrijver343a6072013-09-02 15:22:02 +0300828
Peter De Schrijverb8700d52013-10-14 16:47:37 +0300829struct clk **tegra_lookup_dt_id(int clk_id, struct tegra_clk *tegra_clk);
830
Dmitry Osipenko5d797112018-05-08 19:26:06 +0300831void tegra_add_of_provider(struct device_node *np, void *clk_src_onecell_get);
Peter De Schrijver73d37e42013-10-09 14:47:57 +0300832void tegra_register_devclks(struct tegra_devclk *dev_clks, int num);
Peter De Schrijverd5ff89a2013-08-22 18:44:06 +0300833
Peter De Schrijver6609dbe2013-09-17 15:42:24 +0300834void tegra_audio_clk_init(void __iomem *clk_base,
835 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
Rhyland Klein88d909b2015-06-18 17:28:17 -0400836 struct tegra_audio_clk_info *audio_info,
Jon Hunter845d7822018-12-03 10:28:40 +0000837 unsigned int num_plls, unsigned long sync_max_rate);
Peter De Schrijver6609dbe2013-09-17 15:42:24 +0300838
Peter De Schrijver76ebc132013-09-04 17:04:19 +0300839void tegra_periph_clk_init(void __iomem *clk_base, void __iomem *pmc_base,
840 struct tegra_clk *tegra_clks,
841 struct tegra_clk_pll_params *pll_params);
842
Peter De Schrijverde4f30f2013-10-15 17:19:13 +0300843void tegra_pmc_clk_init(void __iomem *pmc_base, struct tegra_clk *tegra_clks);
844void tegra_fixed_clk_init(struct tegra_clk *tegra_clks);
Thierry Reding63cc5a42015-03-26 17:43:56 +0100845int tegra_osc_clk_init(void __iomem *clk_base, struct tegra_clk *clks,
846 unsigned long *input_freqs, unsigned int num,
847 unsigned int clk_m_div, unsigned long *osc_freq,
848 unsigned long *pll_ref_freq);
Peter De Schrijvera7c84852013-09-03 15:46:01 +0300849void tegra_super_clk_gen4_init(void __iomem *clk_base,
850 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
851 struct tegra_clk_pll_params *pll_params);
Bill Huang139fd302015-06-18 17:28:35 -0400852void tegra_super_clk_gen5_init(void __iomem *clk_base,
853 void __iomem *pmc_base, struct tegra_clk *tegra_clks,
854 struct tegra_clk_pll_params *pll_params);
Peter De Schrijverde4f30f2013-10-15 17:19:13 +0300855
Thierry Reding31b52ba2015-04-01 09:10:58 +0200856#ifdef CONFIG_TEGRA_CLK_EMC
Mikko Perttunen2db04f12015-03-12 15:48:05 +0100857struct clk *tegra_clk_register_emc(void __iomem *base, struct device_node *np,
858 spinlock_t *lock);
Thierry Reding31b52ba2015-04-01 09:10:58 +0200859#else
860static inline struct clk *tegra_clk_register_emc(void __iomem *base,
861 struct device_node *np,
862 spinlock_t *lock)
863{
864 return NULL;
865}
866#endif
Mikko Perttunen2db04f12015-03-12 15:48:05 +0100867
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600868void tegra114_clock_tune_cpu_trimmers_high(void);
869void tegra114_clock_tune_cpu_trimmers_low(void);
870void tegra114_clock_tune_cpu_trimmers_init(void);
Paul Walmsley1c472d82013-06-07 06:19:09 -0600871void tegra114_clock_assert_dfll_dvco_reset(void);
872void tegra114_clock_deassert_dfll_dvco_reset(void);
Paul Walmsley25c9ded2013-06-07 06:18:58 -0600873
Stephen Warren441f1992013-03-25 13:22:24 -0600874typedef void (*tegra_clk_apply_init_table_func)(void);
875extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
Rhyland Klein6583a632015-06-18 17:28:19 -0400876int tegra_pll_wait_for_lock(struct tegra_clk_pll *pll);
Rhyland Klein407254d2015-06-18 17:28:25 -0400877u16 tegra_pll_get_fixed_mdiv(struct clk_hw *hw, unsigned long input_rate);
Rhyland Klein6b301a02015-06-18 17:28:36 -0400878int tegra_pll_p_div_to_hw(struct tegra_clk_pll *pll, u8 p_div);
Peter De Schrijvercb3ac592018-07-12 14:53:00 +0300879int div_frac_get(unsigned long rate, unsigned parent_rate, u8 width,
880 u8 frac_width, u8 flags);
Sowjanya Komatineni50d4da92019-08-16 12:41:51 -0700881void tegra_clk_osc_resume(void __iomem *clk_base);
Sowjanya Komatineni68a14a52019-08-16 12:41:54 -0700882void tegra_clk_set_pllp_out_cpu(bool enable);
Peter De Schrijvercb3ac592018-07-12 14:53:00 +0300883
Stephen Warren441f1992013-03-25 13:22:24 -0600884
Peter De Schrijvercbfc8d02018-01-25 16:00:11 +0200885/* Combined read fence with delay */
886#define fence_udelay(delay, reg) \
887 do { \
888 readl(reg); \
889 udelay(delay); \
890 } while (0)
891
Dmitry Osipenkoed1a2452019-08-12 00:00:29 +0300892bool tegra20_clk_emc_driver_available(struct clk_hw *emc_hw);
893struct clk *tegra20_clk_register_emc(void __iomem *ioaddr, bool low_jitter);
894
Prashant Gaikwad8f8f4842013-01-11 13:16:20 +0530895#endif /* TEGRA_CLK_H */