Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 1 | /* |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 2 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ |
| 16 | |
| 17 | #ifndef __TEGRA_CLK_H |
| 18 | #define __TEGRA_CLK_H |
| 19 | |
| 20 | #include <linux/clk-provider.h> |
| 21 | #include <linux/clkdev.h> |
| 22 | |
| 23 | /** |
| 24 | * struct tegra_clk_sync_source - external clock source from codec |
| 25 | * |
| 26 | * @hw: handle between common and hardware-specific interfaces |
| 27 | * @rate: input frequency from source |
| 28 | * @max_rate: max rate allowed |
| 29 | */ |
| 30 | struct 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 | |
| 39 | extern const struct clk_ops tegra_clk_sync_source_ops; |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 40 | extern int *periph_clk_enb_refcnt; |
| 41 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 42 | struct 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 | */ |
| 67 | struct 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 | |
| 84 | extern const struct clk_ops tegra_clk_frac_div_ops; |
| 85 | struct 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 Reding | 4f4f85f | 2014-07-29 10:17:53 +0200 | [diff] [blame] | 89 | struct clk *tegra_clk_register_mc(const char *name, const char *parent_name, |
| 90 | void __iomem *reg, spinlock_t *lock); |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 91 | |
| 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 Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 113 | * @sdm_data: fraction divider setting (0 = disabled) |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 114 | */ |
| 115 | struct tegra_clk_pll_freq_table { |
| 116 | unsigned long input_rate; |
| 117 | unsigned long output_rate; |
Rhyland Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 118 | u32 n; |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 119 | u16 m; |
| 120 | u8 p; |
| 121 | u8 cpcon; |
Rhyland Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 122 | u16 sdm_data; |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | /** |
Peter De Schrijver | 0b6525a | 2013-04-03 17:40:39 +0300 | [diff] [blame] | 126 | * 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 | */ |
| 131 | struct pdiv_map { |
| 132 | u8 pdiv; |
| 133 | u8 hw_val; |
| 134 | }; |
| 135 | |
| 136 | /** |
Peter De Schrijver | aa6fefd | 2013-06-05 16:51:25 +0300 | [diff] [blame] | 137 | * 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 Schrijver | 7b781c7 | 2013-06-06 13:47:28 +0300 | [diff] [blame] | 145 | * @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 Schrijver | aa6fefd | 2013-06-05 16:51:25 +0300 | [diff] [blame] | 148 | */ |
| 149 | struct 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 Schrijver | 7b781c7 | 2013-06-06 13:47:28 +0300 | [diff] [blame] | 156 | u8 override_divn_shift; |
| 157 | u8 override_divm_shift; |
| 158 | u8 override_divp_shift; |
Peter De Schrijver | aa6fefd | 2013-06-05 16:51:25 +0300 | [diff] [blame] | 159 | }; |
| 160 | |
Bill Huang | 56fd27b | 2015-06-18 17:28:22 -0400 | [diff] [blame] | 161 | #define MAX_PLL_MISC_REG_COUNT 6 |
| 162 | |
Bill Huang | b985114 | 2015-06-18 17:28:31 -0400 | [diff] [blame^] | 163 | struct tegra_clk_pll; |
| 164 | |
Peter De Schrijver | aa6fefd | 2013-06-05 16:51:25 +0300 | [diff] [blame] | 165 | /** |
Thierry Reding | db592c4 | 2015-06-18 17:28:16 -0400 | [diff] [blame] | 166 | * struct tegra_clk_pll_params - PLL parameters |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 167 | * |
| 168 | * @input_min: Minimum input frequency |
| 169 | * @input_max: Maximum input frequency |
| 170 | * @cf_min: Minimum comparison frequency |
| 171 | * @cf_max: Maximum comparison frequency |
| 172 | * @vco_min: Minimum VCO frequency |
| 173 | * @vco_max: Maximum VCO frequency |
| 174 | * @base_reg: PLL base reg offset |
| 175 | * @misc_reg: PLL misc reg offset |
| 176 | * @lock_reg: PLL lock reg offset |
Thierry Reding | db592c4 | 2015-06-18 17:28:16 -0400 | [diff] [blame] | 177 | * @lock_mask: Bitmask for PLL lock status |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 178 | * @lock_enable_bit_idx: Bit index to enable PLL lock |
Thierry Reding | db592c4 | 2015-06-18 17:28:16 -0400 | [diff] [blame] | 179 | * @iddq_reg: PLL IDDQ register offset |
| 180 | * @iddq_bit_idx: Bit index to enable PLL IDDQ |
Bill Huang | fde207e | 2015-06-18 17:28:26 -0400 | [diff] [blame] | 181 | * @reset_reg: Register offset of where RESET bit is |
| 182 | * @reset_bit_idx: Shift of reset bit in reset_reg |
Rhyland Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 183 | * @sdm_din_reg: Register offset where SDM settings are |
| 184 | * @sdm_din_mask: Mask of SDM divider bits |
| 185 | * @sdm_ctrl_reg: Register offset where SDM enable is |
| 186 | * @sdm_ctrl_en_mask: Mask of SDM enable bit |
Thierry Reding | db592c4 | 2015-06-18 17:28:16 -0400 | [diff] [blame] | 187 | * @aux_reg: AUX register offset |
| 188 | * @dyn_ramp_reg: Dynamic ramp control register offset |
| 189 | * @ext_misc_reg: Miscellaneous control register offsets |
| 190 | * @pmc_divnm_reg: n, m divider PMC override register offset (PLLM) |
| 191 | * @pmc_divp_reg: p divider PMC override register offset (PLLM) |
| 192 | * @flags: PLL flags |
| 193 | * @stepa_shift: Dynamic ramp step A field shift |
| 194 | * @stepb_shift: Dynamic ramp step B field shift |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 195 | * @lock_delay: Delay in us if PLL lock is not used |
Thierry Reding | db592c4 | 2015-06-18 17:28:16 -0400 | [diff] [blame] | 196 | * @max_p: maximum value for the p divider |
Bill Huang | b985114 | 2015-06-18 17:28:31 -0400 | [diff] [blame^] | 197 | * @defaults_set: Boolean signaling all reg defaults for PLL set. |
Thierry Reding | db592c4 | 2015-06-18 17:28:16 -0400 | [diff] [blame] | 198 | * @pdiv_tohw: mapping of p divider to register values |
| 199 | * @div_nmp: offsets and widths on n, m and p fields |
Rhyland Klein | fdc1fea | 2015-04-13 12:38:17 -0400 | [diff] [blame] | 200 | * @freq_table: array of frequencies supported by PLL |
| 201 | * @fixed_rate: PLL rate if it is fixed |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 202 | * @mdiv_default: Default value for fixed mdiv for this PLL |
| 203 | * @round_p_to_pdiv: Callback used to round p to the closed pdiv |
Rhyland Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 204 | * @set_gain: Callback to adjust N div for SDM enabled |
| 205 | * PLL's based on fractional divider value. |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 206 | * @calc_rate: Callback used to change how out of table |
| 207 | * rates (dividers and multipler) are calculated. |
Bill Huang | b5512b4 | 2015-06-18 17:28:30 -0400 | [diff] [blame] | 208 | * @adjust_vco: Callback to adjust the programming range of the |
| 209 | * divider range (if SDM is present) |
Bill Huang | b985114 | 2015-06-18 17:28:31 -0400 | [diff] [blame^] | 210 | * @set_defaults: Callback which will try to initialize PLL |
| 211 | * registers to sane default values. This is first |
| 212 | * tried during PLL registration, but if the PLL |
| 213 | * is already enabled, it will be done the first |
| 214 | * time the rate is changed while the PLL is |
| 215 | * disabled. |
Rhyland Klein | fdc1fea | 2015-04-13 12:38:17 -0400 | [diff] [blame] | 216 | * |
| 217 | * Flags: |
| 218 | * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for |
| 219 | * PLL locking. If not set it will use lock_delay value to wait. |
| 220 | * TEGRA_PLL_HAS_CPCON - This flag indicates that CPCON value needs |
| 221 | * to be programmed to change output frequency of the PLL. |
| 222 | * TEGRA_PLL_SET_LFCON - This flag indicates that LFCON value needs |
| 223 | * to be programmed to change output frequency of the PLL. |
| 224 | * TEGRA_PLL_SET_DCCON - This flag indicates that DCCON value needs |
| 225 | * to be programmed to change output frequency of the PLL. |
| 226 | * TEGRA_PLLU - PLLU has inverted post divider. This flags indicated |
| 227 | * that it is PLLU and invert post divider value. |
| 228 | * TEGRA_PLLM - PLLM has additional override settings in PMC. This |
| 229 | * flag indicates that it is PLLM and use override settings. |
| 230 | * TEGRA_PLL_FIXED - We are not supposed to change output frequency |
| 231 | * of some plls. |
| 232 | * TEGRA_PLLE_CONFIGURE - Configure PLLE when enabling. |
| 233 | * TEGRA_PLL_LOCK_MISC - Lock bit is in the misc register instead of the |
| 234 | * base register. |
| 235 | * TEGRA_PLL_BYPASS - PLL has bypass bit |
| 236 | * TEGRA_PLL_HAS_LOCK_ENABLE - PLL has bit to enable lock monitoring |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 237 | * TEGRA_MDIV_NEW - Switch to new method for calculating fixed mdiv |
| 238 | * it may be more accurate (especially if SDM present) |
Rhyland Klein | 6929715 | 2015-06-18 17:28:29 -0400 | [diff] [blame] | 239 | * TEGRA_PLLMB - PLLMB has should be treated similar to PLLM. This |
| 240 | * flag indicated that it is PLLMB. |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 241 | */ |
| 242 | struct tegra_clk_pll_params { |
| 243 | unsigned long input_min; |
| 244 | unsigned long input_max; |
| 245 | unsigned long cf_min; |
| 246 | unsigned long cf_max; |
| 247 | unsigned long vco_min; |
| 248 | unsigned long vco_max; |
| 249 | |
| 250 | u32 base_reg; |
| 251 | u32 misc_reg; |
| 252 | u32 lock_reg; |
Peter De Schrijver | 3e72771 | 2013-04-03 17:40:40 +0300 | [diff] [blame] | 253 | u32 lock_mask; |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 254 | u32 lock_enable_bit_idx; |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 255 | u32 iddq_reg; |
| 256 | u32 iddq_bit_idx; |
Bill Huang | fde207e | 2015-06-18 17:28:26 -0400 | [diff] [blame] | 257 | u32 reset_reg; |
| 258 | u32 reset_bit_idx; |
Rhyland Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 259 | u32 sdm_din_reg; |
| 260 | u32 sdm_din_mask; |
| 261 | u32 sdm_ctrl_reg; |
| 262 | u32 sdm_ctrl_en_mask; |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 263 | u32 aux_reg; |
| 264 | u32 dyn_ramp_reg; |
Bill Huang | 56fd27b | 2015-06-18 17:28:22 -0400 | [diff] [blame] | 265 | u32 ext_misc_reg[MAX_PLL_MISC_REG_COUNT]; |
Peter De Schrijver | 7b781c7 | 2013-06-06 13:47:28 +0300 | [diff] [blame] | 266 | u32 pmc_divnm_reg; |
| 267 | u32 pmc_divp_reg; |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 268 | u32 flags; |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 269 | int stepa_shift; |
| 270 | int stepb_shift; |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 271 | int lock_delay; |
Peter De Schrijver | 0b6525a | 2013-04-03 17:40:39 +0300 | [diff] [blame] | 272 | int max_p; |
Bill Huang | b985114 | 2015-06-18 17:28:31 -0400 | [diff] [blame^] | 273 | bool defaults_set; |
Thierry Reding | 385f9ad | 2015-11-19 16:34:06 +0100 | [diff] [blame] | 274 | const struct pdiv_map *pdiv_tohw; |
Peter De Schrijver | aa6fefd | 2013-06-05 16:51:25 +0300 | [diff] [blame] | 275 | struct div_nmp *div_nmp; |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 276 | struct tegra_clk_pll_freq_table *freq_table; |
| 277 | unsigned long fixed_rate; |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 278 | u16 mdiv_default; |
| 279 | u32 (*round_p_to_pdiv)(u32 p, u32 *pdiv); |
Rhyland Klein | d907f4b | 2015-06-18 17:28:24 -0400 | [diff] [blame] | 280 | void (*set_gain)(struct tegra_clk_pll_freq_table *cfg); |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 281 | int (*calc_rate)(struct clk_hw *hw, |
| 282 | struct tegra_clk_pll_freq_table *cfg, |
| 283 | unsigned long rate, unsigned long parent_rate); |
Bill Huang | b5512b4 | 2015-06-18 17:28:30 -0400 | [diff] [blame] | 284 | unsigned long (*adjust_vco)(struct tegra_clk_pll_params *pll_params, |
| 285 | unsigned long parent_rate); |
Bill Huang | b985114 | 2015-06-18 17:28:31 -0400 | [diff] [blame^] | 286 | void (*set_defaults)(struct tegra_clk_pll *pll); |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 287 | }; |
| 288 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 289 | #define TEGRA_PLL_USE_LOCK BIT(0) |
| 290 | #define TEGRA_PLL_HAS_CPCON BIT(1) |
| 291 | #define TEGRA_PLL_SET_LFCON BIT(2) |
| 292 | #define TEGRA_PLL_SET_DCCON BIT(3) |
| 293 | #define TEGRA_PLLU BIT(4) |
| 294 | #define TEGRA_PLLM BIT(5) |
| 295 | #define TEGRA_PLL_FIXED BIT(6) |
| 296 | #define TEGRA_PLLE_CONFIGURE BIT(7) |
Peter De Schrijver | dba4072 | 2013-04-03 17:40:36 +0300 | [diff] [blame] | 297 | #define TEGRA_PLL_LOCK_MISC BIT(8) |
Peter De Schrijver | dd93587 | 2013-04-03 17:40:37 +0300 | [diff] [blame] | 298 | #define TEGRA_PLL_BYPASS BIT(9) |
Peter De Schrijver | 7ba2881 | 2013-04-03 17:40:38 +0300 | [diff] [blame] | 299 | #define TEGRA_PLL_HAS_LOCK_ENABLE BIT(10) |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 300 | #define TEGRA_MDIV_NEW BIT(11) |
Rhyland Klein | 6929715 | 2015-06-18 17:28:29 -0400 | [diff] [blame] | 301 | #define TEGRA_PLLMB BIT(12) |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 302 | |
Rhyland Klein | fdc1fea | 2015-04-13 12:38:17 -0400 | [diff] [blame] | 303 | /** |
| 304 | * struct tegra_clk_pll - Tegra PLL clock |
| 305 | * |
| 306 | * @hw: handle between common and hardware-specifix interfaces |
| 307 | * @clk_base: address of CAR controller |
| 308 | * @pmc: address of PMC, required to read override bits |
| 309 | * @lock: register lock |
| 310 | * @params: PLL parameters |
| 311 | */ |
| 312 | struct tegra_clk_pll { |
| 313 | struct clk_hw hw; |
| 314 | void __iomem *clk_base; |
| 315 | void __iomem *pmc; |
| 316 | spinlock_t *lock; |
| 317 | struct tegra_clk_pll_params *params; |
| 318 | }; |
| 319 | |
| 320 | #define to_clk_pll(_hw) container_of(_hw, struct tegra_clk_pll, hw) |
| 321 | |
Rhyland Klein | 88d909b | 2015-06-18 17:28:17 -0400 | [diff] [blame] | 322 | /** |
| 323 | * struct tegra_audio_clk_info - Tegra Audio Clk Information |
| 324 | * |
| 325 | * @name: name for the audio pll |
| 326 | * @pll_params: pll_params for audio pll |
| 327 | * @clk_id: clk_ids for the audio pll |
| 328 | * @parent: name of the parent of the audio pll |
| 329 | */ |
| 330 | struct tegra_audio_clk_info { |
| 331 | char *name; |
| 332 | struct tegra_clk_pll_params *pll_params; |
| 333 | int clk_id; |
| 334 | char *parent; |
| 335 | }; |
| 336 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 337 | extern const struct clk_ops tegra_clk_pll_ops; |
| 338 | extern const struct clk_ops tegra_clk_plle_ops; |
| 339 | struct clk *tegra_clk_register_pll(const char *name, const char *parent_name, |
| 340 | void __iomem *clk_base, void __iomem *pmc, |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 341 | unsigned long flags, struct tegra_clk_pll_params *pll_params, |
| 342 | spinlock_t *lock); |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 343 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 344 | struct clk *tegra_clk_register_plle(const char *name, const char *parent_name, |
| 345 | void __iomem *clk_base, void __iomem *pmc, |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 346 | unsigned long flags, struct tegra_clk_pll_params *pll_params, |
| 347 | spinlock_t *lock); |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 348 | |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 349 | struct clk *tegra_clk_register_pllxc(const char *name, const char *parent_name, |
| 350 | void __iomem *clk_base, void __iomem *pmc, |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 351 | unsigned long flags, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 352 | struct tegra_clk_pll_params *pll_params, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 353 | spinlock_t *lock); |
| 354 | |
Rhyland Klein | dd322f0 | 2015-06-18 17:28:28 -0400 | [diff] [blame] | 355 | struct clk *tegra_clk_register_pllxc_tegra210(const char *name, |
| 356 | const char *parent_name, void __iomem *clk_base, |
| 357 | void __iomem *pmc, unsigned long flags, |
| 358 | struct tegra_clk_pll_params *pll_params, |
| 359 | spinlock_t *lock); |
| 360 | |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 361 | struct clk *tegra_clk_register_pllm(const char *name, const char *parent_name, |
| 362 | void __iomem *clk_base, void __iomem *pmc, |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 363 | unsigned long flags, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 364 | struct tegra_clk_pll_params *pll_params, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 365 | spinlock_t *lock); |
| 366 | |
| 367 | struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name, |
| 368 | void __iomem *clk_base, void __iomem *pmc, |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 369 | unsigned long flags, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 370 | struct tegra_clk_pll_params *pll_params, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 371 | spinlock_t *lock); |
| 372 | |
| 373 | struct clk *tegra_clk_register_pllre(const char *name, const char *parent_name, |
| 374 | void __iomem *clk_base, void __iomem *pmc, |
Peter De Schrijver | ebe142b | 2013-10-04 17:28:34 +0300 | [diff] [blame] | 375 | unsigned long flags, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 376 | struct tegra_clk_pll_params *pll_params, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 377 | spinlock_t *lock, unsigned long parent_rate); |
| 378 | |
| 379 | struct clk *tegra_clk_register_plle_tegra114(const char *name, |
| 380 | const char *parent_name, |
| 381 | void __iomem *clk_base, unsigned long flags, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 382 | struct tegra_clk_pll_params *pll_params, |
Peter De Schrijver | c1d1939 | 2013-04-03 17:40:41 +0300 | [diff] [blame] | 383 | spinlock_t *lock); |
| 384 | |
Rhyland Klein | dd322f0 | 2015-06-18 17:28:28 -0400 | [diff] [blame] | 385 | struct clk *tegra_clk_register_plle_tegra210(const char *name, |
| 386 | const char *parent_name, |
| 387 | void __iomem *clk_base, unsigned long flags, |
| 388 | struct tegra_clk_pll_params *pll_params, |
| 389 | spinlock_t *lock); |
| 390 | |
| 391 | struct clk *tegra_clk_register_pllc_tegra210(const char *name, |
| 392 | const char *parent_name, void __iomem *clk_base, |
| 393 | void __iomem *pmc, unsigned long flags, |
| 394 | struct tegra_clk_pll_params *pll_params, |
| 395 | spinlock_t *lock); |
| 396 | |
| 397 | struct clk *tegra_clk_register_pllss_tegra210(const char *name, |
| 398 | const char *parent_name, void __iomem *clk_base, |
| 399 | unsigned long flags, |
| 400 | struct tegra_clk_pll_params *pll_params, |
| 401 | spinlock_t *lock); |
| 402 | |
Peter De Schrijver | 798e910 | 2013-09-09 13:22:55 +0300 | [diff] [blame] | 403 | struct clk *tegra_clk_register_pllss(const char *name, const char *parent_name, |
| 404 | void __iomem *clk_base, unsigned long flags, |
| 405 | struct tegra_clk_pll_params *pll_params, |
| 406 | spinlock_t *lock); |
| 407 | |
Rhyland Klein | 6929715 | 2015-06-18 17:28:29 -0400 | [diff] [blame] | 408 | struct clk *tegra_clk_register_pllmb(const char *name, const char *parent_name, |
| 409 | void __iomem *clk_base, void __iomem *pmc, |
| 410 | unsigned long flags, |
| 411 | struct tegra_clk_pll_params *pll_params, |
| 412 | spinlock_t *lock); |
| 413 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 414 | /** |
| 415 | * struct tegra_clk_pll_out - PLL divider down clock |
| 416 | * |
| 417 | * @hw: handle between common and hardware-specific interfaces |
| 418 | * @reg: register containing the PLL divider |
| 419 | * @enb_bit_idx: bit to enable/disable PLL divider |
| 420 | * @rst_bit_idx: bit to reset PLL divider |
| 421 | * @lock: register lock |
| 422 | * @flags: hardware-specific flags |
| 423 | */ |
| 424 | struct tegra_clk_pll_out { |
| 425 | struct clk_hw hw; |
| 426 | void __iomem *reg; |
| 427 | u8 enb_bit_idx; |
| 428 | u8 rst_bit_idx; |
| 429 | spinlock_t *lock; |
| 430 | u8 flags; |
| 431 | }; |
| 432 | |
| 433 | #define to_clk_pll_out(_hw) container_of(_hw, struct tegra_clk_pll_out, hw) |
| 434 | |
| 435 | extern const struct clk_ops tegra_clk_pll_out_ops; |
| 436 | struct clk *tegra_clk_register_pll_out(const char *name, |
| 437 | const char *parent_name, void __iomem *reg, u8 enb_bit_idx, |
| 438 | u8 rst_bit_idx, unsigned long flags, u8 pll_div_flags, |
| 439 | spinlock_t *lock); |
| 440 | |
| 441 | /** |
| 442 | * struct tegra_clk_periph_regs - Registers controlling peripheral clock |
| 443 | * |
| 444 | * @enb_reg: read the enable status |
| 445 | * @enb_set_reg: write 1 to enable clock |
| 446 | * @enb_clr_reg: write 1 to disable clock |
| 447 | * @rst_reg: read the reset status |
| 448 | * @rst_set_reg: write 1 to assert the reset of peripheral |
| 449 | * @rst_clr_reg: write 1 to deassert the reset of peripheral |
| 450 | */ |
| 451 | struct tegra_clk_periph_regs { |
| 452 | u32 enb_reg; |
| 453 | u32 enb_set_reg; |
| 454 | u32 enb_clr_reg; |
| 455 | u32 rst_reg; |
| 456 | u32 rst_set_reg; |
| 457 | u32 rst_clr_reg; |
| 458 | }; |
| 459 | |
| 460 | /** |
| 461 | * struct tegra_clk_periph_gate - peripheral gate clock |
| 462 | * |
| 463 | * @magic: magic number to validate type |
| 464 | * @hw: handle between common and hardware-specific interfaces |
| 465 | * @clk_base: address of CAR controller |
| 466 | * @regs: Registers to control the peripheral |
| 467 | * @flags: hardware-specific flags |
| 468 | * @clk_num: Clock number |
| 469 | * @enable_refcnt: array to maintain reference count of the clock |
| 470 | * |
| 471 | * Flags: |
| 472 | * TEGRA_PERIPH_NO_RESET - This flag indicates that reset is not allowed |
| 473 | * for this module. |
| 474 | * TEGRA_PERIPH_MANUAL_RESET - This flag indicates not to reset module |
| 475 | * after clock enable and driver for the module is responsible for |
| 476 | * doing reset. |
| 477 | * TEGRA_PERIPH_ON_APB - If peripheral is in the APB bus then read the |
| 478 | * bus to flush the write operation in apb bus. This flag indicates |
| 479 | * that this peripheral is in apb bus. |
Peter De Schrijver | fdcccbd | 2013-04-03 17:40:44 +0300 | [diff] [blame] | 480 | * TEGRA_PERIPH_WAR_1005168 - Apply workaround for Tegra114 MSENC bug |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 481 | */ |
| 482 | struct tegra_clk_periph_gate { |
| 483 | u32 magic; |
| 484 | struct clk_hw hw; |
| 485 | void __iomem *clk_base; |
| 486 | u8 flags; |
| 487 | int clk_num; |
| 488 | int *enable_refcnt; |
| 489 | struct tegra_clk_periph_regs *regs; |
| 490 | }; |
| 491 | |
| 492 | #define to_clk_periph_gate(_hw) \ |
| 493 | container_of(_hw, struct tegra_clk_periph_gate, hw) |
| 494 | |
| 495 | #define TEGRA_CLK_PERIPH_GATE_MAGIC 0x17760309 |
| 496 | |
| 497 | #define TEGRA_PERIPH_NO_RESET BIT(0) |
| 498 | #define TEGRA_PERIPH_MANUAL_RESET BIT(1) |
| 499 | #define TEGRA_PERIPH_ON_APB BIT(2) |
Peter De Schrijver | fdcccbd | 2013-04-03 17:40:44 +0300 | [diff] [blame] | 500 | #define TEGRA_PERIPH_WAR_1005168 BIT(3) |
Peter De Schrijver | 5bb9d26 | 2013-09-02 18:43:56 +0300 | [diff] [blame] | 501 | #define TEGRA_PERIPH_NO_DIV BIT(4) |
Peter De Schrijver | b29f9e9 | 2013-11-18 16:11:38 +0100 | [diff] [blame] | 502 | #define TEGRA_PERIPH_NO_GATE BIT(5) |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 503 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 504 | extern const struct clk_ops tegra_clk_periph_gate_ops; |
| 505 | struct clk *tegra_clk_register_periph_gate(const char *name, |
| 506 | const char *parent_name, u8 gate_flags, void __iomem *clk_base, |
Peter De Schrijver | d5ff89a | 2013-08-22 18:44:06 +0300 | [diff] [blame] | 507 | unsigned long flags, int clk_num, int *enable_refcnt); |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 508 | |
| 509 | /** |
| 510 | * struct clk-periph - peripheral clock |
| 511 | * |
| 512 | * @magic: magic number to validate type |
| 513 | * @hw: handle between common and hardware-specific interfaces |
| 514 | * @mux: mux clock |
| 515 | * @divider: divider clock |
| 516 | * @gate: gate clock |
| 517 | * @mux_ops: mux clock ops |
| 518 | * @div_ops: divider clock ops |
| 519 | * @gate_ops: gate clock ops |
| 520 | */ |
| 521 | struct tegra_clk_periph { |
| 522 | u32 magic; |
| 523 | struct clk_hw hw; |
| 524 | struct clk_mux mux; |
| 525 | struct tegra_clk_frac_div divider; |
| 526 | struct tegra_clk_periph_gate gate; |
| 527 | |
| 528 | const struct clk_ops *mux_ops; |
| 529 | const struct clk_ops *div_ops; |
| 530 | const struct clk_ops *gate_ops; |
| 531 | }; |
| 532 | |
| 533 | #define to_clk_periph(_hw) container_of(_hw, struct tegra_clk_periph, hw) |
| 534 | |
| 535 | #define TEGRA_CLK_PERIPH_MAGIC 0x18221223 |
| 536 | |
| 537 | extern const struct clk_ops tegra_clk_periph_ops; |
| 538 | struct clk *tegra_clk_register_periph(const char *name, |
| 539 | const char **parent_names, int num_parents, |
| 540 | struct tegra_clk_periph *periph, void __iomem *clk_base, |
Peter De Schrijver | a26a029 | 2013-04-03 17:40:42 +0300 | [diff] [blame] | 541 | u32 offset, unsigned long flags); |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 542 | struct clk *tegra_clk_register_periph_nodiv(const char *name, |
| 543 | const char **parent_names, int num_parents, |
| 544 | struct tegra_clk_periph *periph, void __iomem *clk_base, |
| 545 | u32 offset); |
| 546 | |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 547 | #define TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, _mux_flags, \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 548 | _div_shift, _div_width, _div_frac_width, \ |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 549 | _div_flags, _clk_num,\ |
Peter De Schrijver | bc44275 | 2013-11-18 16:11:37 +0100 | [diff] [blame] | 550 | _gate_flags, _table, _lock) \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 551 | { \ |
| 552 | .mux = { \ |
| 553 | .flags = _mux_flags, \ |
| 554 | .shift = _mux_shift, \ |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 555 | .mask = _mux_mask, \ |
| 556 | .table = _table, \ |
Peter De Schrijver | bc44275 | 2013-11-18 16:11:37 +0100 | [diff] [blame] | 557 | .lock = _lock, \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 558 | }, \ |
| 559 | .divider = { \ |
| 560 | .flags = _div_flags, \ |
| 561 | .shift = _div_shift, \ |
| 562 | .width = _div_width, \ |
| 563 | .frac_width = _div_frac_width, \ |
Peter De Schrijver | bc44275 | 2013-11-18 16:11:37 +0100 | [diff] [blame] | 564 | .lock = _lock, \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 565 | }, \ |
| 566 | .gate = { \ |
| 567 | .flags = _gate_flags, \ |
| 568 | .clk_num = _clk_num, \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 569 | }, \ |
| 570 | .mux_ops = &clk_mux_ops, \ |
| 571 | .div_ops = &tegra_clk_frac_div_ops, \ |
| 572 | .gate_ops = &tegra_clk_periph_gate_ops, \ |
| 573 | } |
| 574 | |
| 575 | struct tegra_periph_init_data { |
| 576 | const char *name; |
| 577 | int clk_id; |
Peter De Schrijver | 76ebc13 | 2013-09-04 17:04:19 +0300 | [diff] [blame] | 578 | union { |
| 579 | const char **parent_names; |
| 580 | const char *parent_name; |
| 581 | } p; |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 582 | int num_parents; |
| 583 | struct tegra_clk_periph periph; |
| 584 | u32 offset; |
| 585 | const char *con_id; |
| 586 | const char *dev_id; |
Peter De Schrijver | a26a029 | 2013-04-03 17:40:42 +0300 | [diff] [blame] | 587 | unsigned long flags; |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 588 | }; |
| 589 | |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 590 | #define TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\ |
| 591 | _mux_shift, _mux_mask, _mux_flags, _div_shift, \ |
Peter De Schrijver | d5ff89a | 2013-08-22 18:44:06 +0300 | [diff] [blame] | 592 | _div_width, _div_frac_width, _div_flags, \ |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 593 | _clk_num, _gate_flags, _clk_id, _table, \ |
Peter De Schrijver | bc44275 | 2013-11-18 16:11:37 +0100 | [diff] [blame] | 594 | _flags, _lock) \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 595 | { \ |
| 596 | .name = _name, \ |
| 597 | .clk_id = _clk_id, \ |
Peter De Schrijver | 76ebc13 | 2013-09-04 17:04:19 +0300 | [diff] [blame] | 598 | .p.parent_names = _parent_names, \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 599 | .num_parents = ARRAY_SIZE(_parent_names), \ |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 600 | .periph = TEGRA_CLK_PERIPH(_mux_shift, _mux_mask, \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 601 | _mux_flags, _div_shift, \ |
| 602 | _div_width, _div_frac_width, \ |
| 603 | _div_flags, _clk_num, \ |
Peter De Schrijver | bc44275 | 2013-11-18 16:11:37 +0100 | [diff] [blame] | 604 | _gate_flags, _table, _lock), \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 605 | .offset = _offset, \ |
| 606 | .con_id = _con_id, \ |
| 607 | .dev_id = _dev_id, \ |
Peter De Schrijver | a26a029 | 2013-04-03 17:40:42 +0300 | [diff] [blame] | 608 | .flags = _flags \ |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 609 | } |
| 610 | |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 611 | #define TEGRA_INIT_DATA(_name, _con_id, _dev_id, _parent_names, _offset,\ |
| 612 | _mux_shift, _mux_width, _mux_flags, _div_shift, \ |
Peter De Schrijver | d5ff89a | 2013-08-22 18:44:06 +0300 | [diff] [blame] | 613 | _div_width, _div_frac_width, _div_flags, \ |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 614 | _clk_num, _gate_flags, _clk_id) \ |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 615 | TEGRA_INIT_DATA_TABLE(_name, _con_id, _dev_id, _parent_names, _offset,\ |
| 616 | _mux_shift, BIT(_mux_width) - 1, _mux_flags, \ |
| 617 | _div_shift, _div_width, _div_frac_width, _div_flags, \ |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 618 | _clk_num, _gate_flags, _clk_id,\ |
Peter De Schrijver | bc44275 | 2013-11-18 16:11:37 +0100 | [diff] [blame] | 619 | NULL, 0, NULL) |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 620 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 621 | /** |
| 622 | * struct clk_super_mux - super clock |
| 623 | * |
| 624 | * @hw: handle between common and hardware-specific interfaces |
| 625 | * @reg: register controlling multiplexer |
| 626 | * @width: width of the multiplexer bit field |
| 627 | * @flags: hardware-specific flags |
| 628 | * @div2_index: bit controlling divide-by-2 |
| 629 | * @pllx_index: PLLX index in the parent list |
| 630 | * @lock: register lock |
| 631 | * |
| 632 | * Flags: |
| 633 | * TEGRA_DIVIDER_2 - LP cluster has additional divider. This flag indicates |
| 634 | * that this is LP cluster clock. |
| 635 | */ |
| 636 | struct tegra_clk_super_mux { |
| 637 | struct clk_hw hw; |
| 638 | void __iomem *reg; |
| 639 | u8 width; |
| 640 | u8 flags; |
| 641 | u8 div2_index; |
| 642 | u8 pllx_index; |
| 643 | spinlock_t *lock; |
| 644 | }; |
| 645 | |
| 646 | #define to_clk_super_mux(_hw) container_of(_hw, struct tegra_clk_super_mux, hw) |
| 647 | |
| 648 | #define TEGRA_DIVIDER_2 BIT(0) |
| 649 | |
| 650 | extern const struct clk_ops tegra_clk_super_ops; |
| 651 | struct clk *tegra_clk_register_super_mux(const char *name, |
| 652 | const char **parent_names, u8 num_parents, |
| 653 | unsigned long flags, void __iomem *reg, u8 clk_super_flags, |
| 654 | u8 width, u8 pllx_index, u8 div2_index, spinlock_t *lock); |
| 655 | |
| 656 | /** |
Thierry Reding | 8106462 | 2014-08-05 13:26:12 +0200 | [diff] [blame] | 657 | * struct clk_init_table - clock initialization table |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 658 | * @clk_id: clock id as mentioned in device tree bindings |
| 659 | * @parent_id: parent clock id as mentioned in device tree bindings |
| 660 | * @rate: rate to set |
| 661 | * @state: enable/disable |
| 662 | */ |
| 663 | struct tegra_clk_init_table { |
| 664 | unsigned int clk_id; |
| 665 | unsigned int parent_id; |
| 666 | unsigned long rate; |
| 667 | int state; |
| 668 | }; |
| 669 | |
| 670 | /** |
| 671 | * struct clk_duplicate - duplicate clocks |
| 672 | * @clk_id: clock id as mentioned in device tree bindings |
| 673 | * @lookup: duplicate lookup entry for the clock |
| 674 | */ |
| 675 | struct tegra_clk_duplicate { |
| 676 | int clk_id; |
| 677 | struct clk_lookup lookup; |
| 678 | }; |
| 679 | |
| 680 | #define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \ |
| 681 | { \ |
| 682 | .clk_id = _clk_id, \ |
| 683 | .lookup = { \ |
| 684 | .dev_id = _dev, \ |
| 685 | .con_id = _con, \ |
| 686 | }, \ |
| 687 | } |
| 688 | |
Peter De Schrijver | b8700d5 | 2013-10-14 16:47:37 +0300 | [diff] [blame] | 689 | struct tegra_clk { |
| 690 | int dt_id; |
| 691 | bool present; |
| 692 | }; |
| 693 | |
Peter De Schrijver | 73d37e4 | 2013-10-09 14:47:57 +0300 | [diff] [blame] | 694 | struct tegra_devclk { |
| 695 | int dt_id; |
| 696 | char *dev_id; |
| 697 | char *con_id; |
| 698 | }; |
| 699 | |
Mikko Perttunen | 66b6f3d | 2015-05-20 09:27:05 +0300 | [diff] [blame] | 700 | void tegra_init_special_resets(unsigned int num, int (*assert)(unsigned long), |
| 701 | int (*deassert)(unsigned long)); |
| 702 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 703 | void tegra_init_from_table(struct tegra_clk_init_table *tbl, |
| 704 | struct clk *clks[], int clk_max); |
| 705 | |
| 706 | void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list, |
| 707 | struct clk *clks[], int clk_max); |
| 708 | |
Peter De Schrijver | d5ff89a | 2013-08-22 18:44:06 +0300 | [diff] [blame] | 709 | struct tegra_clk_periph_regs *get_reg_bank(int clkid); |
Stephen Warren | 6d5b988 | 2013-11-05 17:33:17 -0700 | [diff] [blame] | 710 | struct clk **tegra_clk_init(void __iomem *clk_base, int num, int periph_banks); |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 711 | |
Peter De Schrijver | b8700d5 | 2013-10-14 16:47:37 +0300 | [diff] [blame] | 712 | struct clk **tegra_lookup_dt_id(int clk_id, struct tegra_clk *tegra_clk); |
| 713 | |
Peter De Schrijver | 343a607 | 2013-09-02 15:22:02 +0300 | [diff] [blame] | 714 | void tegra_add_of_provider(struct device_node *np); |
Peter De Schrijver | 73d37e4 | 2013-10-09 14:47:57 +0300 | [diff] [blame] | 715 | void tegra_register_devclks(struct tegra_devclk *dev_clks, int num); |
Peter De Schrijver | d5ff89a | 2013-08-22 18:44:06 +0300 | [diff] [blame] | 716 | |
Peter De Schrijver | 6609dbe | 2013-09-17 15:42:24 +0300 | [diff] [blame] | 717 | void tegra_audio_clk_init(void __iomem *clk_base, |
| 718 | void __iomem *pmc_base, struct tegra_clk *tegra_clks, |
Rhyland Klein | 88d909b | 2015-06-18 17:28:17 -0400 | [diff] [blame] | 719 | struct tegra_audio_clk_info *audio_info, |
| 720 | unsigned int num_plls); |
Peter De Schrijver | 6609dbe | 2013-09-17 15:42:24 +0300 | [diff] [blame] | 721 | |
Peter De Schrijver | 76ebc13 | 2013-09-04 17:04:19 +0300 | [diff] [blame] | 722 | void tegra_periph_clk_init(void __iomem *clk_base, void __iomem *pmc_base, |
| 723 | struct tegra_clk *tegra_clks, |
| 724 | struct tegra_clk_pll_params *pll_params); |
| 725 | |
Peter De Schrijver | de4f30f | 2013-10-15 17:19:13 +0300 | [diff] [blame] | 726 | void tegra_pmc_clk_init(void __iomem *pmc_base, struct tegra_clk *tegra_clks); |
| 727 | void tegra_fixed_clk_init(struct tegra_clk *tegra_clks); |
Thierry Reding | 63cc5a4 | 2015-03-26 17:43:56 +0100 | [diff] [blame] | 728 | int tegra_osc_clk_init(void __iomem *clk_base, struct tegra_clk *clks, |
| 729 | unsigned long *input_freqs, unsigned int num, |
| 730 | unsigned int clk_m_div, unsigned long *osc_freq, |
| 731 | unsigned long *pll_ref_freq); |
Peter De Schrijver | a7c8485 | 2013-09-03 15:46:01 +0300 | [diff] [blame] | 732 | void tegra_super_clk_gen4_init(void __iomem *clk_base, |
| 733 | void __iomem *pmc_base, struct tegra_clk *tegra_clks, |
| 734 | struct tegra_clk_pll_params *pll_params); |
Peter De Schrijver | de4f30f | 2013-10-15 17:19:13 +0300 | [diff] [blame] | 735 | |
Thierry Reding | 31b52ba | 2015-04-01 09:10:58 +0200 | [diff] [blame] | 736 | #ifdef CONFIG_TEGRA_CLK_EMC |
Mikko Perttunen | 2db04f1 | 2015-03-12 15:48:05 +0100 | [diff] [blame] | 737 | struct clk *tegra_clk_register_emc(void __iomem *base, struct device_node *np, |
| 738 | spinlock_t *lock); |
Thierry Reding | 31b52ba | 2015-04-01 09:10:58 +0200 | [diff] [blame] | 739 | #else |
| 740 | static inline struct clk *tegra_clk_register_emc(void __iomem *base, |
| 741 | struct device_node *np, |
| 742 | spinlock_t *lock) |
| 743 | { |
| 744 | return NULL; |
| 745 | } |
| 746 | #endif |
Mikko Perttunen | 2db04f1 | 2015-03-12 15:48:05 +0100 | [diff] [blame] | 747 | |
Paul Walmsley | 25c9ded | 2013-06-07 06:18:58 -0600 | [diff] [blame] | 748 | void tegra114_clock_tune_cpu_trimmers_high(void); |
| 749 | void tegra114_clock_tune_cpu_trimmers_low(void); |
| 750 | void tegra114_clock_tune_cpu_trimmers_init(void); |
Paul Walmsley | 1c472d8 | 2013-06-07 06:19:09 -0600 | [diff] [blame] | 751 | void tegra114_clock_assert_dfll_dvco_reset(void); |
| 752 | void tegra114_clock_deassert_dfll_dvco_reset(void); |
Paul Walmsley | 25c9ded | 2013-06-07 06:18:58 -0600 | [diff] [blame] | 753 | |
Stephen Warren | 441f199 | 2013-03-25 13:22:24 -0600 | [diff] [blame] | 754 | typedef void (*tegra_clk_apply_init_table_func)(void); |
| 755 | extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table; |
Rhyland Klein | 6583a63 | 2015-06-18 17:28:19 -0400 | [diff] [blame] | 756 | int tegra_pll_wait_for_lock(struct tegra_clk_pll *pll); |
Rhyland Klein | 407254d | 2015-06-18 17:28:25 -0400 | [diff] [blame] | 757 | u16 tegra_pll_get_fixed_mdiv(struct clk_hw *hw, unsigned long input_rate); |
Stephen Warren | 441f199 | 2013-03-25 13:22:24 -0600 | [diff] [blame] | 758 | |
Prashant Gaikwad | 8f8f484 | 2013-01-11 13:16:20 +0530 | [diff] [blame] | 759 | #endif /* TEGRA_CLK_H */ |