Blame view

drivers/clk/tegra/clk-tegra124.c 55.7 KB
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1
  /*
08acae34e   Paul Walmsley   clk: tegra: Add s...
2
   * Copyright (c) 2012-2014 NVIDIA CORPORATION.  All rights reserved.
76da314df   Peter De Schrijver   clk: tegra124: Ad...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms and conditions of the GNU General Public License,
   * version 2, as published by the Free Software Foundation.
   *
   * This program is distributed in the hope it will be useful, but WITHOUT
   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   * more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
   */
  
  #include <linux/io.h>
76da314df   Peter De Schrijver   clk: tegra124: Ad...
18
19
20
21
22
23
24
25
  #include <linux/clk-provider.h>
  #include <linux/clkdev.h>
  #include <linux/of.h>
  #include <linux/of_address.h>
  #include <linux/delay.h>
  #include <linux/export.h>
  #include <linux/clk/tegra.h>
  #include <dt-bindings/clock/tegra124-car.h>
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
26
  #include <dt-bindings/reset/tegra124-car.h>
76da314df   Peter De Schrijver   clk: tegra124: Ad...
27
28
29
  
  #include "clk.h"
  #include "clk-id.h"
08acae34e   Paul Walmsley   clk: tegra: Add s...
30
31
32
33
34
35
36
  /*
   * TEGRA124_CAR_BANK_COUNT: the number of peripheral clock register
   * banks present in the Tegra124/132 CAR IP block.  The banks are
   * identified by single letters, e.g.: L, H, U, V, W, X.  See
   * periph_regs[] in drivers/clk/tegra/clk.c
   */
  #define TEGRA124_CAR_BANK_COUNT			6
61792e40c   Joseph Lo   clk: tegra124: ad...
37
  #define CLK_SOURCE_CSITE 0x1d4
76da314df   Peter De Schrijver   clk: tegra124: Ad...
38
  #define CLK_SOURCE_EMC 0x19c
76da314df   Peter De Schrijver   clk: tegra124: Ad...
39

a3c83ff20   Paul Walmsley   clk: tegra: Add D...
40
41
  #define RST_DFLL_DVCO			0x2f4
  #define DVFS_DFLL_RESET_SHIFT		0
76da314df   Peter De Schrijver   clk: tegra124: Ad...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  #define PLLC_BASE 0x80
  #define PLLC_OUT 0x84
  #define PLLC_MISC2 0x88
  #define PLLC_MISC 0x8c
  #define PLLC2_BASE 0x4e8
  #define PLLC2_MISC 0x4ec
  #define PLLC3_BASE 0x4fc
  #define PLLC3_MISC 0x500
  #define PLLM_BASE 0x90
  #define PLLM_OUT 0x94
  #define PLLM_MISC 0x9c
  #define PLLP_BASE 0xa0
  #define PLLP_MISC 0xac
  #define PLLA_BASE 0xb0
  #define PLLA_MISC 0xbc
  #define PLLD_BASE 0xd0
  #define PLLD_MISC 0xdc
  #define PLLU_BASE 0xc0
  #define PLLU_MISC 0xcc
  #define PLLX_BASE 0xe0
  #define PLLX_MISC 0xe4
  #define PLLX_MISC2 0x514
  #define PLLX_MISC3 0x518
  #define PLLE_BASE 0xe8
  #define PLLE_MISC 0xec
  #define PLLD2_BASE 0x4b8
  #define PLLD2_MISC 0x4bc
  #define PLLE_AUX 0x48c
  #define PLLRE_BASE 0x4c4
  #define PLLRE_MISC 0x4c8
  #define PLLDP_BASE 0x590
  #define PLLDP_MISC 0x594
  #define PLLC4_BASE 0x5a4
  #define PLLC4_MISC 0x5a8
  
  #define PLLC_IDDQ_BIT 26
  #define PLLRE_IDDQ_BIT 16
  #define PLLSS_IDDQ_BIT 19
  
  #define PLL_BASE_LOCK BIT(27)
  #define PLLE_MISC_LOCK BIT(11)
  #define PLLRE_MISC_LOCK BIT(24)
  
  #define PLL_MISC_LOCK_ENABLE 18
  #define PLLC_MISC_LOCK_ENABLE 24
  #define PLLDU_MISC_LOCK_ENABLE 22
  #define PLLE_MISC_LOCK_ENABLE 9
  #define PLLRE_MISC_LOCK_ENABLE 30
  #define PLLSS_MISC_LOCK_ENABLE 30
  
  #define PLLXC_SW_MAX_P 6
  
  #define PMC_PLLM_WB0_OVERRIDE 0x1dc
  #define PMC_PLLM_WB0_OVERRIDE_2 0x2b0
c38864a70   Tuomas Tynkkynen   clk: tegra: Save/...
96
  #define CCLKG_BURST_POLICY 0x368
9e036d3ef   Joseph Lo   clk: tegra124: ad...
97
98
  /* Tegra CPU clock and reset control regs */
  #define CLK_RST_CONTROLLER_CPU_CMPLX_STATUS	0x470
61792e40c   Joseph Lo   clk: tegra124: ad...
99
100
101
  #ifdef CONFIG_PM_SLEEP
  static struct cpu_clk_suspend_context {
  	u32 clk_csite_src;
c38864a70   Tuomas Tynkkynen   clk: tegra: Save/...
102
103
  	u32 cclkg_burst;
  	u32 cclkg_divider;
61792e40c   Joseph Lo   clk: tegra124: ad...
104
105
  } tegra124_cpu_clk_sctx;
  #endif
76da314df   Peter De Schrijver   clk: tegra124: Ad...
106
107
108
109
110
111
112
  static void __iomem *clk_base;
  static void __iomem *pmc_base;
  
  static unsigned long osc_freq;
  static unsigned long pll_ref_freq;
  
  static DEFINE_SPINLOCK(pll_d_lock);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
113
114
115
  static DEFINE_SPINLOCK(pll_e_lock);
  static DEFINE_SPINLOCK(pll_re_lock);
  static DEFINE_SPINLOCK(pll_u_lock);
4f4f85fa0   Thierry Reding   clk: tegra: Imple...
116
  static DEFINE_SPINLOCK(emc_lock);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
117
118
119
  
  /* possible OSC frequencies in Hz */
  static unsigned long tegra124_input_freq[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
120
121
122
123
124
125
  	[ 0] = 13000000,
  	[ 1] = 16800000,
  	[ 4] = 19200000,
  	[ 5] = 38400000,
  	[ 8] = 12000000,
  	[ 9] = 48000000,
c4947e364   Thierry Reding   clk: tegra: Fix 2...
126
  	[12] = 26000000,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
127
  };
76da314df   Peter De Schrijver   clk: tegra124: Ad...
128
129
130
131
132
133
134
135
  static struct div_nmp pllxc_nmp = {
  	.divm_shift = 0,
  	.divm_width = 8,
  	.divn_shift = 8,
  	.divn_width = 8,
  	.divp_shift = 20,
  	.divp_width = 4,
  };
385f9adf6   Thierry Reding   clk: tegra: Const...
136
  static const struct pdiv_map pllxc_p[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
137
138
139
140
141
142
143
144
145
146
  	{ .pdiv =  1, .hw_val =  0 },
  	{ .pdiv =  2, .hw_val =  1 },
  	{ .pdiv =  3, .hw_val =  2 },
  	{ .pdiv =  4, .hw_val =  3 },
  	{ .pdiv =  5, .hw_val =  4 },
  	{ .pdiv =  6, .hw_val =  5 },
  	{ .pdiv =  8, .hw_val =  6 },
  	{ .pdiv = 10, .hw_val =  7 },
  	{ .pdiv = 12, .hw_val =  8 },
  	{ .pdiv = 16, .hw_val =  9 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
147
148
149
150
151
  	{ .pdiv = 12, .hw_val = 10 },
  	{ .pdiv = 16, .hw_val = 11 },
  	{ .pdiv = 20, .hw_val = 12 },
  	{ .pdiv = 24, .hw_val = 13 },
  	{ .pdiv = 32, .hw_val = 14 },
8d99704fd   Thierry Reding   clk: tegra: Forma...
152
  	{ .pdiv =  0, .hw_val =  0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
153
154
155
156
  };
  
  static struct tegra_clk_pll_freq_table pll_x_freq_table[] = {
  	/* 1 GHz */
86c679a52   Rhyland Klein   clk: tegra: pll: ...
157
158
159
160
161
  	{ 12000000, 1000000000, 83, 1, 1, 0 }, /* actual: 996.0 MHz */
  	{ 13000000, 1000000000, 76, 1, 1, 0 }, /* actual: 988.0 MHz */
  	{ 16800000, 1000000000, 59, 1, 1, 0 }, /* actual: 991.2 MHz */
  	{ 19200000, 1000000000, 52, 1, 1, 0 }, /* actual: 998.4 MHz */
  	{ 26000000, 1000000000, 76, 2, 1, 0 }, /* actual: 988.0 MHz */
8d99704fd   Thierry Reding   clk: tegra: Forma...
162
  	{        0,          0,  0, 0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  };
  
  static struct tegra_clk_pll_params pll_x_params = {
  	.input_min = 12000000,
  	.input_max = 800000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000,	/* s/w policy, h/w capability 50 MHz */
  	.vco_min = 700000000,
  	.vco_max = 3000000000UL,
  	.base_reg = PLLX_BASE,
  	.misc_reg = PLLX_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.iddq_reg = PLLX_MISC3,
  	.iddq_bit_idx = 3,
  	.max_p = 6,
  	.dyn_ramp_reg = PLLX_MISC2,
  	.stepa_shift = 16,
  	.stepb_shift = 24,
  	.pdiv_tohw = pllxc_p,
  	.div_nmp = &pllxc_nmp,
  	.freq_table = pll_x_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
186
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
187
188
189
  };
  
  static struct tegra_clk_pll_freq_table pll_c_freq_table[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
190
191
192
193
194
195
196
  	{ 12000000, 624000000, 104, 1, 2, 0 },
  	{ 12000000, 600000000, 100, 1, 2, 0 },
  	{ 13000000, 600000000,  92, 1, 2, 0 }, /* actual: 598.0 MHz */
  	{ 16800000, 600000000,  71, 1, 2, 0 }, /* actual: 596.4 MHz */
  	{ 19200000, 600000000,  62, 1, 2, 0 }, /* actual: 595.2 MHz */
  	{ 26000000, 600000000,  92, 2, 2, 0 }, /* actual: 598.0 MHz */
  	{        0,         0,   0, 0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
197
198
199
200
201
202
  };
  
  static struct tegra_clk_pll_params pll_c_params = {
  	.input_min = 12000000,
  	.input_max = 800000000,
  	.cf_min = 12000000,
e52d7c04b   Thierry Reding   clk: tegra: Misce...
203
  	.cf_max = 19200000, /* s/w policy, h/w capability 50 MHz */
76da314df   Peter De Schrijver   clk: tegra124: Ad...
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
  	.vco_min = 600000000,
  	.vco_max = 1400000000,
  	.base_reg = PLLC_BASE,
  	.misc_reg = PLLC_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLLC_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.iddq_reg = PLLC_MISC,
  	.iddq_bit_idx = PLLC_IDDQ_BIT,
  	.max_p = PLLXC_SW_MAX_P,
  	.dyn_ramp_reg = PLLC_MISC2,
  	.stepa_shift = 17,
  	.stepb_shift = 9,
  	.pdiv_tohw = pllxc_p,
  	.div_nmp = &pllxc_nmp,
  	.freq_table = pll_c_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
220
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
221
222
223
224
225
226
227
228
229
230
  };
  
  static struct div_nmp pllcx_nmp = {
  	.divm_shift = 0,
  	.divm_width = 2,
  	.divn_shift = 8,
  	.divn_width = 8,
  	.divp_shift = 20,
  	.divp_width = 3,
  };
385f9adf6   Thierry Reding   clk: tegra: Const...
231
  static const struct pdiv_map pllc_p[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
232
233
234
235
236
237
  	{ .pdiv =  1, .hw_val = 0 },
  	{ .pdiv =  2, .hw_val = 1 },
  	{ .pdiv =  3, .hw_val = 2 },
  	{ .pdiv =  4, .hw_val = 3 },
  	{ .pdiv =  6, .hw_val = 4 },
  	{ .pdiv =  8, .hw_val = 5 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
238
239
  	{ .pdiv = 12, .hw_val = 6 },
  	{ .pdiv = 16, .hw_val = 7 },
8d99704fd   Thierry Reding   clk: tegra: Forma...
240
  	{ .pdiv =  0, .hw_val = 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
241
242
243
  };
  
  static struct tegra_clk_pll_freq_table pll_cx_freq_table[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
244
245
246
247
248
249
  	{ 12000000, 600000000, 100, 1, 2, 0 },
  	{ 13000000, 600000000,  92, 1, 2, 0 }, /* actual: 598.0 MHz */
  	{ 16800000, 600000000,  71, 1, 2, 0 }, /* actual: 596.4 MHz */
  	{ 19200000, 600000000,  62, 1, 2, 0 }, /* actual: 595.2 MHz */
  	{ 26000000, 600000000,  92, 2, 2, 0 }, /* actual: 598.0 MHz */
  	{        0,         0,   0, 0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
  };
  
  static struct tegra_clk_pll_params pll_c2_params = {
  	.input_min = 12000000,
  	.input_max = 48000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000,
  	.vco_min = 600000000,
  	.vco_max = 1200000000,
  	.base_reg = PLLC2_BASE,
  	.misc_reg = PLLC2_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.pdiv_tohw = pllc_p,
  	.div_nmp = &pllcx_nmp,
  	.max_p = 7,
  	.ext_misc_reg[0] = 0x4f0,
  	.ext_misc_reg[1] = 0x4f4,
  	.ext_misc_reg[2] = 0x4f8,
  	.freq_table = pll_cx_freq_table,
  	.flags = TEGRA_PLL_USE_LOCK,
  };
  
  static struct tegra_clk_pll_params pll_c3_params = {
  	.input_min = 12000000,
  	.input_max = 48000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000,
  	.vco_min = 600000000,
  	.vco_max = 1200000000,
  	.base_reg = PLLC3_BASE,
  	.misc_reg = PLLC3_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.pdiv_tohw = pllc_p,
  	.div_nmp = &pllcx_nmp,
  	.max_p = 7,
  	.ext_misc_reg[0] = 0x504,
  	.ext_misc_reg[1] = 0x508,
  	.ext_misc_reg[2] = 0x50c,
  	.freq_table = pll_cx_freq_table,
  	.flags = TEGRA_PLL_USE_LOCK,
  };
  
  static struct div_nmp pllss_nmp = {
  	.divm_shift = 0,
  	.divm_width = 8,
  	.divn_shift = 8,
  	.divn_width = 8,
  	.divp_shift = 20,
  	.divp_width = 4,
  };
385f9adf6   Thierry Reding   clk: tegra: Const...
304
  static const struct pdiv_map pll12g_ssd_esd_p[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
305
306
307
308
309
310
311
312
313
314
  	{ .pdiv =  1, .hw_val =  0 },
  	{ .pdiv =  2, .hw_val =  1 },
  	{ .pdiv =  3, .hw_val =  2 },
  	{ .pdiv =  4, .hw_val =  3 },
  	{ .pdiv =  5, .hw_val =  4 },
  	{ .pdiv =  6, .hw_val =  5 },
  	{ .pdiv =  8, .hw_val =  6 },
  	{ .pdiv = 10, .hw_val =  7 },
  	{ .pdiv = 12, .hw_val =  8 },
  	{ .pdiv = 16, .hw_val =  9 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
315
316
317
318
319
  	{ .pdiv = 12, .hw_val = 10 },
  	{ .pdiv = 16, .hw_val = 11 },
  	{ .pdiv = 20, .hw_val = 12 },
  	{ .pdiv = 24, .hw_val = 13 },
  	{ .pdiv = 32, .hw_val = 14 },
8d99704fd   Thierry Reding   clk: tegra: Forma...
320
  	{ .pdiv =  0, .hw_val =  0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
321
322
323
  };
  
  static struct tegra_clk_pll_freq_table pll_c4_freq_table[] = {
86c679a52   Rhyland Klein   clk: tegra: pll: ...
324
325
326
327
328
  	{ 12000000, 600000000, 100, 1, 2, 0 },
  	{ 13000000, 600000000,  92, 1, 2, 0 }, /* actual: 598.0 MHz */
  	{ 16800000, 600000000,  71, 1, 2, 0 }, /* actual: 596.4 MHz */
  	{ 19200000, 600000000,  62, 1, 2, 0 }, /* actual: 595.2 MHz */
  	{ 26000000, 600000000,  92, 2, 2, 0 }, /* actual: 598.0 MHz */
8d99704fd   Thierry Reding   clk: tegra: Forma...
329
  	{        0,         0,   0, 0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
  };
  
  static struct tegra_clk_pll_params pll_c4_params = {
  	.input_min = 12000000,
  	.input_max = 1000000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000, /* s/w policy, h/w capability 38 MHz */
  	.vco_min = 600000000,
  	.vco_max = 1200000000,
  	.base_reg = PLLC4_BASE,
  	.misc_reg = PLLC4_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLLSS_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.iddq_reg = PLLC4_BASE,
  	.iddq_bit_idx = PLLSS_IDDQ_BIT,
  	.pdiv_tohw = pll12g_ssd_esd_p,
  	.div_nmp = &pllss_nmp,
  	.ext_misc_reg[0] = 0x5ac,
  	.ext_misc_reg[1] = 0x5b0,
  	.ext_misc_reg[2] = 0x5b4,
  	.freq_table = pll_c4_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
352
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
353
  };
385f9adf6   Thierry Reding   clk: tegra: Const...
354
  static const struct pdiv_map pllm_p[] = {
86c679a52   Rhyland Klein   clk: tegra: pll: ...
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
  	{ .pdiv =  1, .hw_val =  0 },
  	{ .pdiv =  2, .hw_val =  1 },
  	{ .pdiv =  3, .hw_val =  2 },
  	{ .pdiv =  4, .hw_val =  3 },
  	{ .pdiv =  5, .hw_val =  4 },
  	{ .pdiv =  6, .hw_val =  5 },
  	{ .pdiv =  8, .hw_val =  6 },
  	{ .pdiv = 10, .hw_val =  7 },
  	{ .pdiv = 12, .hw_val =  8 },
  	{ .pdiv = 16, .hw_val =  9 },
  	{ .pdiv = 12, .hw_val = 10 },
  	{ .pdiv = 16, .hw_val = 11 },
  	{ .pdiv = 20, .hw_val = 12 },
  	{ .pdiv = 24, .hw_val = 13 },
  	{ .pdiv = 32, .hw_val = 14 },
  	{ .pdiv =  0, .hw_val =  0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
371
372
373
  };
  
  static struct tegra_clk_pll_freq_table pll_m_freq_table[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
374
375
376
377
378
379
  	{ 12000000, 800000000, 66, 1, 1, 0 }, /* actual: 792.0 MHz */
  	{ 13000000, 800000000, 61, 1, 1, 0 }, /* actual: 793.0 MHz */
  	{ 16800000, 800000000, 47, 1, 1, 0 }, /* actual: 789.6 MHz */
  	{ 19200000, 800000000, 41, 1, 1, 0 }, /* actual: 787.2 MHz */
  	{ 26000000, 800000000, 61, 2, 1, 0 }, /* actual: 793.0 MHz */
  	{        0,         0,  0, 0, 0, 0},
76da314df   Peter De Schrijver   clk: tegra124: Ad...
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
  };
  
  static struct div_nmp pllm_nmp = {
  	.divm_shift = 0,
  	.divm_width = 8,
  	.override_divm_shift = 0,
  	.divn_shift = 8,
  	.divn_width = 8,
  	.override_divn_shift = 8,
  	.divp_shift = 20,
  	.divp_width = 1,
  	.override_divp_shift = 27,
  };
  
  static struct tegra_clk_pll_params pll_m_params = {
  	.input_min = 12000000,
  	.input_max = 500000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000,	/* s/w policy, h/w capability 50 MHz */
  	.vco_min = 400000000,
  	.vco_max = 1066000000,
  	.base_reg = PLLM_BASE,
  	.misc_reg = PLLM_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
86c679a52   Rhyland Klein   clk: tegra: pll: ...
406
  	.max_p = 5,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
407
408
409
410
411
  	.pdiv_tohw = pllm_p,
  	.div_nmp = &pllm_nmp,
  	.pmc_divnm_reg = PMC_PLLM_WB0_OVERRIDE,
  	.pmc_divp_reg = PMC_PLLM_WB0_OVERRIDE_2,
  	.freq_table = pll_m_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
412
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
413
414
415
416
  };
  
  static struct tegra_clk_pll_freq_table pll_e_freq_table[] = {
  	/* PLLE special case: use cpcon field to store cml divider value */
8d99704fd   Thierry Reding   clk: tegra: Forma...
417
418
419
420
421
  	{ 336000000, 100000000, 100, 21, 16, 11 },
  	{ 312000000, 100000000, 200, 26, 24, 13 },
  	{  13000000, 100000000, 200,  1, 26, 13 },
  	{  12000000, 100000000, 200,  1, 24, 13 },
  	{         0,         0,   0,  0,  0,  0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
422
  };
86c679a52   Rhyland Klein   clk: tegra: pll: ...
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
  static const struct pdiv_map plle_p[] = {
  	{ .pdiv =  1, .hw_val =  0 },
  	{ .pdiv =  2, .hw_val =  1 },
  	{ .pdiv =  3, .hw_val =  2 },
  	{ .pdiv =  4, .hw_val =  3 },
  	{ .pdiv =  5, .hw_val =  4 },
  	{ .pdiv =  6, .hw_val =  5 },
  	{ .pdiv =  8, .hw_val =  6 },
  	{ .pdiv = 10, .hw_val =  7 },
  	{ .pdiv = 12, .hw_val =  8 },
  	{ .pdiv = 16, .hw_val =  9 },
  	{ .pdiv = 12, .hw_val = 10 },
  	{ .pdiv = 16, .hw_val = 11 },
  	{ .pdiv = 20, .hw_val = 12 },
  	{ .pdiv = 24, .hw_val = 13 },
  	{ .pdiv = 32, .hw_val = 14 },
  	{ .pdiv =  1, .hw_val =  0 },
  };
76da314df   Peter De Schrijver   clk: tegra124: Ad...
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
  static struct div_nmp plle_nmp = {
  	.divm_shift = 0,
  	.divm_width = 8,
  	.divn_shift = 8,
  	.divn_width = 8,
  	.divp_shift = 24,
  	.divp_width = 4,
  };
  
  static struct tegra_clk_pll_params pll_e_params = {
  	.input_min = 12000000,
  	.input_max = 1000000000,
  	.cf_min = 12000000,
  	.cf_max = 75000000,
  	.vco_min = 1600000000,
  	.vco_max = 2400000000U,
  	.base_reg = PLLE_BASE,
  	.misc_reg = PLLE_MISC,
  	.aux_reg = PLLE_AUX,
  	.lock_mask = PLLE_MISC_LOCK,
  	.lock_enable_bit_idx = PLLE_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
86c679a52   Rhyland Klein   clk: tegra: pll: ...
463
  	.pdiv_tohw = plle_p,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
464
465
  	.div_nmp = &plle_nmp,
  	.freq_table = pll_e_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
466
  	.flags = TEGRA_PLL_FIXED | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
  	.fixed_rate = 100000000,
  };
  
  static const struct clk_div_table pll_re_div_table[] = {
  	{ .val = 0, .div = 1 },
  	{ .val = 1, .div = 2 },
  	{ .val = 2, .div = 3 },
  	{ .val = 3, .div = 4 },
  	{ .val = 4, .div = 5 },
  	{ .val = 5, .div = 6 },
  	{ .val = 0, .div = 0 },
  };
  
  static struct div_nmp pllre_nmp = {
  	.divm_shift = 0,
  	.divm_width = 8,
  	.divn_shift = 8,
  	.divn_width = 8,
  	.divp_shift = 16,
  	.divp_width = 4,
  };
  
  static struct tegra_clk_pll_params pll_re_vco_params = {
  	.input_min = 12000000,
  	.input_max = 1000000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000, /* s/w policy, h/w capability 38 MHz */
  	.vco_min = 300000000,
  	.vco_max = 600000000,
  	.base_reg = PLLRE_BASE,
  	.misc_reg = PLLRE_MISC,
  	.lock_mask = PLLRE_MISC_LOCK,
  	.lock_enable_bit_idx = PLLRE_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.iddq_reg = PLLRE_MISC,
  	.iddq_bit_idx = PLLRE_IDDQ_BIT,
  	.div_nmp = &pllre_nmp,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
504
505
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE |
  		 TEGRA_PLL_LOCK_MISC,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
506
507
508
509
510
511
512
513
514
515
516
517
  };
  
  static struct div_nmp pllp_nmp = {
  	.divm_shift = 0,
  	.divm_width = 5,
  	.divn_shift = 8,
  	.divn_width = 10,
  	.divp_shift = 20,
  	.divp_width = 3,
  };
  
  static struct tegra_clk_pll_freq_table pll_p_freq_table[] = {
86c679a52   Rhyland Klein   clk: tegra: pll: ...
518
519
520
521
522
  	{ 12000000, 408000000, 408, 12, 1, 8 },
  	{ 13000000, 408000000, 408, 13, 1, 8 },
  	{ 16800000, 408000000, 340, 14, 1, 8 },
  	{ 19200000, 408000000, 340, 16, 1, 8 },
  	{ 26000000, 408000000, 408, 26, 1, 8 },
8d99704fd   Thierry Reding   clk: tegra: Forma...
523
  	{        0,         0,   0,  0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
  };
  
  static struct tegra_clk_pll_params pll_p_params = {
  	.input_min = 2000000,
  	.input_max = 31000000,
  	.cf_min = 1000000,
  	.cf_max = 6000000,
  	.vco_min = 200000000,
  	.vco_max = 700000000,
  	.base_reg = PLLP_BASE,
  	.misc_reg = PLLP_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.div_nmp = &pllp_nmp,
  	.freq_table = pll_p_freq_table,
  	.fixed_rate = 408000000,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
541
542
  	.flags = TEGRA_PLL_FIXED | TEGRA_PLL_USE_LOCK |
  		 TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
543
544
545
  };
  
  static struct tegra_clk_pll_freq_table pll_a_freq_table[] = {
86c679a52   Rhyland Klein   clk: tegra: pll: ...
546
547
548
549
550
551
  	{  9600000, 282240000, 147,  5, 1, 4 },
  	{  9600000, 368640000, 192,  5, 1, 4 },
  	{  9600000, 240000000, 200,  8, 1, 8 },
  	{ 28800000, 282240000, 245, 25, 1, 8 },
  	{ 28800000, 368640000, 320, 25, 1, 8 },
  	{ 28800000, 240000000, 200, 24, 1, 8 },
8d99704fd   Thierry Reding   clk: tegra: Forma...
552
  	{        0,         0,   0,  0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
  };
  
  static struct tegra_clk_pll_params pll_a_params = {
  	.input_min = 2000000,
  	.input_max = 31000000,
  	.cf_min = 1000000,
  	.cf_max = 6000000,
  	.vco_min = 200000000,
  	.vco_max = 700000000,
  	.base_reg = PLLA_BASE,
  	.misc_reg = PLLA_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.div_nmp = &pllp_nmp,
  	.freq_table = pll_a_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
569
570
  	.flags = TEGRA_PLL_HAS_CPCON | TEGRA_PLL_USE_LOCK |
  		 TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
571
  };
67fc26bfd   Rhyland Klein   clk: tegra: Fix P...
572
573
574
575
576
577
578
579
  static struct div_nmp plld_nmp = {
  	.divm_shift = 0,
  	.divm_width = 5,
  	.divn_shift = 8,
  	.divn_width = 11,
  	.divp_shift = 20,
  	.divp_width = 3,
  };
76da314df   Peter De Schrijver   clk: tegra124: Ad...
580
  static struct tegra_clk_pll_freq_table pll_d_freq_table[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
  	{ 12000000,  216000000,  864, 12, 4, 12 },
  	{ 13000000,  216000000,  864, 13, 4, 12 },
  	{ 16800000,  216000000,  720, 14, 4, 12 },
  	{ 19200000,  216000000,  720, 16, 4, 12 },
  	{ 26000000,  216000000,  864, 26, 4, 12 },
  	{ 12000000,  594000000,  594, 12, 1, 12 },
  	{ 13000000,  594000000,  594, 13, 1, 12 },
  	{ 16800000,  594000000,  495, 14, 1, 12 },
  	{ 19200000,  594000000,  495, 16, 1, 12 },
  	{ 26000000,  594000000,  594, 26, 1, 12 },
  	{ 12000000, 1000000000, 1000, 12, 1, 12 },
  	{ 13000000, 1000000000, 1000, 13, 1, 12 },
  	{ 19200000, 1000000000,  625, 12, 1, 12 },
  	{ 26000000, 1000000000, 1000, 26, 1, 12 },
  	{        0,          0,    0,  0, 0,  0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
596
597
598
599
600
601
602
603
604
605
606
607
608
609
  };
  
  static struct tegra_clk_pll_params pll_d_params = {
  	.input_min = 2000000,
  	.input_max = 40000000,
  	.cf_min = 1000000,
  	.cf_max = 6000000,
  	.vco_min = 500000000,
  	.vco_max = 1000000000,
  	.base_reg = PLLD_BASE,
  	.misc_reg = PLLD_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLLDU_MISC_LOCK_ENABLE,
  	.lock_delay = 1000,
67fc26bfd   Rhyland Klein   clk: tegra: Fix P...
610
  	.div_nmp = &plld_nmp,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
611
612
  	.freq_table = pll_d_freq_table,
  	.flags = TEGRA_PLL_HAS_CPCON | TEGRA_PLL_SET_LFCON |
3706b4362   Rhyland Klein   clk: tegra: pll: ...
613
  		 TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
614
615
616
  };
  
  static struct tegra_clk_pll_freq_table tegra124_pll_d2_freq_table[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
617
618
619
620
621
622
  	{ 12000000, 594000000, 99, 1, 2, 0 },
  	{ 13000000, 594000000, 91, 1, 2, 0 }, /* actual: 591.5 MHz */
  	{ 16800000, 594000000, 71, 1, 2, 0 }, /* actual: 596.4 MHz */
  	{ 19200000, 594000000, 62, 1, 2, 0 }, /* actual: 595.2 MHz */
  	{ 26000000, 594000000, 91, 2, 2, 0 }, /* actual: 591.5 MHz */
  	{        0,         0,  0, 0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
  };
  
  static struct tegra_clk_pll_params tegra124_pll_d2_params = {
  	.input_min = 12000000,
  	.input_max = 1000000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000, /* s/w policy, h/w capability 38 MHz */
  	.vco_min = 600000000,
  	.vco_max = 1200000000,
  	.base_reg = PLLD2_BASE,
  	.misc_reg = PLLD2_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLLSS_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.iddq_reg = PLLD2_BASE,
  	.iddq_bit_idx = PLLSS_IDDQ_BIT,
  	.pdiv_tohw = pll12g_ssd_esd_p,
  	.div_nmp = &pllss_nmp,
  	.ext_misc_reg[0] = 0x570,
  	.ext_misc_reg[1] = 0x574,
  	.ext_misc_reg[2] = 0x578,
  	.max_p = 15,
  	.freq_table = tegra124_pll_d2_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
646
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
647
648
649
  };
  
  static struct tegra_clk_pll_freq_table pll_dp_freq_table[] = {
86c679a52   Rhyland Klein   clk: tegra: pll: ...
650
651
652
653
654
  	{ 12000000, 600000000, 100, 1, 2, 0 },
  	{ 13000000, 600000000,  92, 1, 2, 0 }, /* actual: 598.0 MHz */
  	{ 16800000, 600000000,  71, 1, 2, 0 }, /* actual: 596.4 MHz */
  	{ 19200000, 600000000,  62, 1, 2, 0 }, /* actual: 595.2 MHz */
  	{ 26000000, 600000000,  92, 2, 2, 0 }, /* actual: 598.0 MHz */
8d99704fd   Thierry Reding   clk: tegra: Forma...
655
  	{        0,         0,   0, 0, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
  };
  
  static struct tegra_clk_pll_params pll_dp_params = {
  	.input_min = 12000000,
  	.input_max = 1000000000,
  	.cf_min = 12000000,
  	.cf_max = 19200000, /* s/w policy, h/w capability 38 MHz */
  	.vco_min = 600000000,
  	.vco_max = 1200000000,
  	.base_reg = PLLDP_BASE,
  	.misc_reg = PLLDP_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLLSS_MISC_LOCK_ENABLE,
  	.lock_delay = 300,
  	.iddq_reg = PLLDP_BASE,
  	.iddq_bit_idx = PLLSS_IDDQ_BIT,
  	.pdiv_tohw = pll12g_ssd_esd_p,
  	.div_nmp = &pllss_nmp,
  	.ext_misc_reg[0] = 0x598,
  	.ext_misc_reg[1] = 0x59c,
  	.ext_misc_reg[2] = 0x5a0,
  	.max_p = 5,
  	.freq_table = pll_dp_freq_table,
3706b4362   Rhyland Klein   clk: tegra: pll: ...
679
  	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
680
  };
385f9adf6   Thierry Reding   clk: tegra: Const...
681
  static const struct pdiv_map pllu_p[] = {
76da314df   Peter De Schrijver   clk: tegra124: Ad...
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
  	{ .pdiv = 1, .hw_val = 1 },
  	{ .pdiv = 2, .hw_val = 0 },
  	{ .pdiv = 0, .hw_val = 0 },
  };
  
  static struct div_nmp pllu_nmp = {
  	.divm_shift = 0,
  	.divm_width = 5,
  	.divn_shift = 8,
  	.divn_width = 10,
  	.divp_shift = 20,
  	.divp_width = 1,
  };
  
  static struct tegra_clk_pll_freq_table pll_u_freq_table[] = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
697
698
699
700
701
702
  	{ 12000000, 480000000, 960, 12, 2, 12 },
  	{ 13000000, 480000000, 960, 13, 2, 12 },
  	{ 16800000, 480000000, 400,  7, 2,  5 },
  	{ 19200000, 480000000, 200,  4, 2,  3 },
  	{ 26000000, 480000000, 960, 26, 2, 12 },
  	{        0,         0,   0,  0, 0,  0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
  };
  
  static struct tegra_clk_pll_params pll_u_params = {
  	.input_min = 2000000,
  	.input_max = 40000000,
  	.cf_min = 1000000,
  	.cf_max = 6000000,
  	.vco_min = 480000000,
  	.vco_max = 960000000,
  	.base_reg = PLLU_BASE,
  	.misc_reg = PLLU_MISC,
  	.lock_mask = PLL_BASE_LOCK,
  	.lock_enable_bit_idx = PLLDU_MISC_LOCK_ENABLE,
  	.lock_delay = 1000,
  	.pdiv_tohw = pllu_p,
  	.div_nmp = &pllu_nmp,
  	.freq_table = pll_u_freq_table,
  	.flags = TEGRA_PLLU | TEGRA_PLL_HAS_CPCON | TEGRA_PLL_SET_LFCON |
3706b4362   Rhyland Klein   clk: tegra: pll: ...
721
  		 TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
76da314df   Peter De Schrijver   clk: tegra124: Ad...
722
  };
76da314df   Peter De Schrijver   clk: tegra124: Ad...
723
724
725
726
727
  static struct tegra_clk tegra124_clks[tegra_clk_max] __initdata = {
  	[tegra_clk_ispb] = { .dt_id = TEGRA124_CLK_ISPB, .present = true },
  	[tegra_clk_rtc] = { .dt_id = TEGRA124_CLK_RTC, .present = true },
  	[tegra_clk_timer] = { .dt_id = TEGRA124_CLK_TIMER, .present = true },
  	[tegra_clk_uarta] = { .dt_id = TEGRA124_CLK_UARTA, .present = true },
20e7c323a   Andrew Bresticker   clk: tegra: fix s...
728
  	[tegra_clk_sdmmc2_8] = { .dt_id = TEGRA124_CLK_SDMMC2, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
729
730
  	[tegra_clk_i2s1] = { .dt_id = TEGRA124_CLK_I2S1, .present = true },
  	[tegra_clk_i2c1] = { .dt_id = TEGRA124_CLK_I2C1, .present = true },
20e7c323a   Andrew Bresticker   clk: tegra: fix s...
731
732
  	[tegra_clk_sdmmc1_8] = { .dt_id = TEGRA124_CLK_SDMMC1, .present = true },
  	[tegra_clk_sdmmc4_8] = { .dt_id = TEGRA124_CLK_SDMMC4, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
733
734
  	[tegra_clk_pwm] = { .dt_id = TEGRA124_CLK_PWM, .present = true },
  	[tegra_clk_i2s2] = { .dt_id = TEGRA124_CLK_I2S2, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
735
736
  	[tegra_clk_usbd] = { .dt_id = TEGRA124_CLK_USBD, .present = true },
  	[tegra_clk_isp_8] = { .dt_id = TEGRA124_CLK_ISP, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
737
738
  	[tegra_clk_disp2] = { .dt_id = TEGRA124_CLK_DISP2, .present = true },
  	[tegra_clk_disp1] = { .dt_id = TEGRA124_CLK_DISP1, .present = true },
82ba1c3c9   Mark Zhang   clk: tegra: fix h...
739
  	[tegra_clk_host1x_8] = { .dt_id = TEGRA124_CLK_HOST1X, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
740
741
742
743
744
745
746
747
748
749
  	[tegra_clk_vcp] = { .dt_id = TEGRA124_CLK_VCP, .present = true },
  	[tegra_clk_i2s0] = { .dt_id = TEGRA124_CLK_I2S0, .present = true },
  	[tegra_clk_apbdma] = { .dt_id = TEGRA124_CLK_APBDMA, .present = true },
  	[tegra_clk_kbc] = { .dt_id = TEGRA124_CLK_KBC, .present = true },
  	[tegra_clk_kfuse] = { .dt_id = TEGRA124_CLK_KFUSE, .present = true },
  	[tegra_clk_sbc1] = { .dt_id = TEGRA124_CLK_SBC1, .present = true },
  	[tegra_clk_nor] = { .dt_id = TEGRA124_CLK_NOR, .present = true },
  	[tegra_clk_sbc2] = { .dt_id = TEGRA124_CLK_SBC2, .present = true },
  	[tegra_clk_sbc3] = { .dt_id = TEGRA124_CLK_SBC3, .present = true },
  	[tegra_clk_i2c5] = { .dt_id = TEGRA124_CLK_I2C5, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
750
751
752
753
754
755
  	[tegra_clk_mipi] = { .dt_id = TEGRA124_CLK_MIPI, .present = true },
  	[tegra_clk_hdmi] = { .dt_id = TEGRA124_CLK_HDMI, .present = true },
  	[tegra_clk_csi] = { .dt_id = TEGRA124_CLK_CSI, .present = true },
  	[tegra_clk_i2c2] = { .dt_id = TEGRA124_CLK_I2C2, .present = true },
  	[tegra_clk_uartc] = { .dt_id = TEGRA124_CLK_UARTC, .present = true },
  	[tegra_clk_mipi_cal] = { .dt_id = TEGRA124_CLK_MIPI_CAL, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
756
757
758
759
760
761
762
763
  	[tegra_clk_usb2] = { .dt_id = TEGRA124_CLK_USB2, .present = true },
  	[tegra_clk_usb3] = { .dt_id = TEGRA124_CLK_USB3, .present = true },
  	[tegra_clk_vde_8] = { .dt_id = TEGRA124_CLK_VDE, .present = true },
  	[tegra_clk_bsea] = { .dt_id = TEGRA124_CLK_BSEA, .present = true },
  	[tegra_clk_bsev] = { .dt_id = TEGRA124_CLK_BSEV, .present = true },
  	[tegra_clk_uartd] = { .dt_id = TEGRA124_CLK_UARTD, .present = true },
  	[tegra_clk_i2c3] = { .dt_id = TEGRA124_CLK_I2C3, .present = true },
  	[tegra_clk_sbc4] = { .dt_id = TEGRA124_CLK_SBC4, .present = true },
20e7c323a   Andrew Bresticker   clk: tegra: fix s...
764
  	[tegra_clk_sdmmc3_8] = { .dt_id = TEGRA124_CLK_SDMMC3, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
765
766
767
768
769
770
771
772
  	[tegra_clk_pcie] = { .dt_id = TEGRA124_CLK_PCIE, .present = true },
  	[tegra_clk_owr] = { .dt_id = TEGRA124_CLK_OWR, .present = true },
  	[tegra_clk_afi] = { .dt_id = TEGRA124_CLK_AFI, .present = true },
  	[tegra_clk_csite] = { .dt_id = TEGRA124_CLK_CSITE, .present = true },
  	[tegra_clk_la] = { .dt_id = TEGRA124_CLK_LA, .present = true },
  	[tegra_clk_trace] = { .dt_id = TEGRA124_CLK_TRACE, .present = true },
  	[tegra_clk_soc_therm] = { .dt_id = TEGRA124_CLK_SOC_THERM, .present = true },
  	[tegra_clk_dtv] = { .dt_id = TEGRA124_CLK_DTV, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
773
  	[tegra_clk_i2cslow] = { .dt_id = TEGRA124_CLK_I2CSLOW, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
  	[tegra_clk_tsec] = { .dt_id = TEGRA124_CLK_TSEC, .present = true },
  	[tegra_clk_xusb_host] = { .dt_id = TEGRA124_CLK_XUSB_HOST, .present = true },
  	[tegra_clk_msenc] = { .dt_id = TEGRA124_CLK_MSENC, .present = true },
  	[tegra_clk_csus] = { .dt_id = TEGRA124_CLK_CSUS, .present = true },
  	[tegra_clk_mselect] = { .dt_id = TEGRA124_CLK_MSELECT, .present = true },
  	[tegra_clk_tsensor] = { .dt_id = TEGRA124_CLK_TSENSOR, .present = true },
  	[tegra_clk_i2s3] = { .dt_id = TEGRA124_CLK_I2S3, .present = true },
  	[tegra_clk_i2s4] = { .dt_id = TEGRA124_CLK_I2S4, .present = true },
  	[tegra_clk_i2c4] = { .dt_id = TEGRA124_CLK_I2C4, .present = true },
  	[tegra_clk_sbc5] = { .dt_id = TEGRA124_CLK_SBC5, .present = true },
  	[tegra_clk_sbc6] = { .dt_id = TEGRA124_CLK_SBC6, .present = true },
  	[tegra_clk_d_audio] = { .dt_id = TEGRA124_CLK_D_AUDIO, .present = true },
  	[tegra_clk_apbif] = { .dt_id = TEGRA124_CLK_APBIF, .present = true },
  	[tegra_clk_dam0] = { .dt_id = TEGRA124_CLK_DAM0, .present = true },
  	[tegra_clk_dam1] = { .dt_id = TEGRA124_CLK_DAM1, .present = true },
  	[tegra_clk_dam2] = { .dt_id = TEGRA124_CLK_DAM2, .present = true },
  	[tegra_clk_hda2codec_2x] = { .dt_id = TEGRA124_CLK_HDA2CODEC_2X, .present = true },
  	[tegra_clk_audio0_2x] = { .dt_id = TEGRA124_CLK_AUDIO0_2X, .present = true },
  	[tegra_clk_audio1_2x] = { .dt_id = TEGRA124_CLK_AUDIO1_2X, .present = true },
  	[tegra_clk_audio2_2x] = { .dt_id = TEGRA124_CLK_AUDIO2_2X, .present = true },
  	[tegra_clk_audio3_2x] = { .dt_id = TEGRA124_CLK_AUDIO3_2X, .present = true },
  	[tegra_clk_audio4_2x] = { .dt_id = TEGRA124_CLK_AUDIO4_2X, .present = true },
  	[tegra_clk_spdif_2x] = { .dt_id = TEGRA124_CLK_SPDIF_2X, .present = true },
  	[tegra_clk_actmon] = { .dt_id = TEGRA124_CLK_ACTMON, .present = true },
  	[tegra_clk_extern1] = { .dt_id = TEGRA124_CLK_EXTERN1, .present = true },
  	[tegra_clk_extern2] = { .dt_id = TEGRA124_CLK_EXTERN2, .present = true },
  	[tegra_clk_extern3] = { .dt_id = TEGRA124_CLK_EXTERN3, .present = true },
  	[tegra_clk_sata_oob] = { .dt_id = TEGRA124_CLK_SATA_OOB, .present = true },
  	[tegra_clk_sata] = { .dt_id = TEGRA124_CLK_SATA, .present = true },
  	[tegra_clk_hda] = { .dt_id = TEGRA124_CLK_HDA, .present = true },
  	[tegra_clk_se] = { .dt_id = TEGRA124_CLK_SE, .present = true },
  	[tegra_clk_hda2hdmi] = { .dt_id = TEGRA124_CLK_HDA2HDMI, .present = true },
  	[tegra_clk_sata_cold] = { .dt_id = TEGRA124_CLK_SATA_COLD, .present = true },
  	[tegra_clk_cilab] = { .dt_id = TEGRA124_CLK_CILAB, .present = true },
  	[tegra_clk_cilcd] = { .dt_id = TEGRA124_CLK_CILCD, .present = true },
  	[tegra_clk_cile] = { .dt_id = TEGRA124_CLK_CILE, .present = true },
  	[tegra_clk_dsialp] = { .dt_id = TEGRA124_CLK_DSIALP, .present = true },
  	[tegra_clk_dsiblp] = { .dt_id = TEGRA124_CLK_DSIBLP, .present = true },
  	[tegra_clk_entropy] = { .dt_id = TEGRA124_CLK_ENTROPY, .present = true },
  	[tegra_clk_dds] = { .dt_id = TEGRA124_CLK_DDS, .present = true },
  	[tegra_clk_dp2] = { .dt_id = TEGRA124_CLK_DP2, .present = true },
  	[tegra_clk_amx] = { .dt_id = TEGRA124_CLK_AMX, .present = true },
  	[tegra_clk_adx] = { .dt_id = TEGRA124_CLK_ADX, .present = true },
  	[tegra_clk_xusb_ss] = { .dt_id = TEGRA124_CLK_XUSB_SS, .present = true },
  	[tegra_clk_i2c6] = { .dt_id = TEGRA124_CLK_I2C6, .present = true },
  	[tegra_clk_vim2_clk] = { .dt_id = TEGRA124_CLK_VIM2_CLK, .present = true },
  	[tegra_clk_hdmi_audio] = { .dt_id = TEGRA124_CLK_HDMI_AUDIO, .present = true },
  	[tegra_clk_clk72Mhz] = { .dt_id = TEGRA124_CLK_CLK72MHZ, .present = true },
  	[tegra_clk_vic03] = { .dt_id = TEGRA124_CLK_VIC03, .present = true },
  	[tegra_clk_adx1] = { .dt_id = TEGRA124_CLK_ADX1, .present = true },
  	[tegra_clk_dpaux] = { .dt_id = TEGRA124_CLK_DPAUX, .present = true },
  	[tegra_clk_sor0] = { .dt_id = TEGRA124_CLK_SOR0, .present = true },
  	[tegra_clk_sor0_lvds] = { .dt_id = TEGRA124_CLK_SOR0_LVDS, .present = true },
  	[tegra_clk_gpu] = { .dt_id = TEGRA124_CLK_GPU, .present = true },
  	[tegra_clk_amx1] = { .dt_id = TEGRA124_CLK_AMX1, .present = true },
  	[tegra_clk_uartb] = { .dt_id = TEGRA124_CLK_UARTB, .present = true },
  	[tegra_clk_vfir] = { .dt_id = TEGRA124_CLK_VFIR, .present = true },
  	[tegra_clk_spdif_in] = { .dt_id = TEGRA124_CLK_SPDIF_IN, .present = true },
  	[tegra_clk_spdif_out] = { .dt_id = TEGRA124_CLK_SPDIF_OUT, .present = true },
  	[tegra_clk_vi_9] = { .dt_id = TEGRA124_CLK_VI, .present = true },
167d5366c   Peter De Schrijver   clk: tegra: fix v...
834
  	[tegra_clk_vi_sensor_8] = { .dt_id = TEGRA124_CLK_VI_SENSOR, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
  	[tegra_clk_fuse] = { .dt_id = TEGRA124_CLK_FUSE, .present = true },
  	[tegra_clk_fuse_burn] = { .dt_id = TEGRA124_CLK_FUSE_BURN, .present = true },
  	[tegra_clk_clk_32k] = { .dt_id = TEGRA124_CLK_CLK_32K, .present = true },
  	[tegra_clk_clk_m] = { .dt_id = TEGRA124_CLK_CLK_M, .present = true },
  	[tegra_clk_clk_m_div2] = { .dt_id = TEGRA124_CLK_CLK_M_DIV2, .present = true },
  	[tegra_clk_clk_m_div4] = { .dt_id = TEGRA124_CLK_CLK_M_DIV4, .present = true },
  	[tegra_clk_pll_ref] = { .dt_id = TEGRA124_CLK_PLL_REF, .present = true },
  	[tegra_clk_pll_c] = { .dt_id = TEGRA124_CLK_PLL_C, .present = true },
  	[tegra_clk_pll_c_out1] = { .dt_id = TEGRA124_CLK_PLL_C_OUT1, .present = true },
  	[tegra_clk_pll_c2] = { .dt_id = TEGRA124_CLK_PLL_C2, .present = true },
  	[tegra_clk_pll_c3] = { .dt_id = TEGRA124_CLK_PLL_C3, .present = true },
  	[tegra_clk_pll_m] = { .dt_id = TEGRA124_CLK_PLL_M, .present = true },
  	[tegra_clk_pll_m_out1] = { .dt_id = TEGRA124_CLK_PLL_M_OUT1, .present = true },
  	[tegra_clk_pll_p] = { .dt_id = TEGRA124_CLK_PLL_P, .present = true },
  	[tegra_clk_pll_p_out1] = { .dt_id = TEGRA124_CLK_PLL_P_OUT1, .present = true },
  	[tegra_clk_pll_p_out2] = { .dt_id = TEGRA124_CLK_PLL_P_OUT2, .present = true },
  	[tegra_clk_pll_p_out3] = { .dt_id = TEGRA124_CLK_PLL_P_OUT3, .present = true },
  	[tegra_clk_pll_p_out4] = { .dt_id = TEGRA124_CLK_PLL_P_OUT4, .present = true },
  	[tegra_clk_pll_a] = { .dt_id = TEGRA124_CLK_PLL_A, .present = true },
  	[tegra_clk_pll_a_out0] = { .dt_id = TEGRA124_CLK_PLL_A_OUT0, .present = true },
  	[tegra_clk_pll_d] = { .dt_id = TEGRA124_CLK_PLL_D, .present = true },
  	[tegra_clk_pll_d_out0] = { .dt_id = TEGRA124_CLK_PLL_D_OUT0, .present = true },
  	[tegra_clk_pll_d2] = { .dt_id = TEGRA124_CLK_PLL_D2, .present = true },
  	[tegra_clk_pll_d2_out0] = { .dt_id = TEGRA124_CLK_PLL_D2_OUT0, .present = true },
  	[tegra_clk_pll_u] = { .dt_id = TEGRA124_CLK_PLL_U, .present = true },
  	[tegra_clk_pll_u_480m] = { .dt_id = TEGRA124_CLK_PLL_U_480M, .present = true },
  	[tegra_clk_pll_u_60m] = { .dt_id = TEGRA124_CLK_PLL_U_60M, .present = true },
  	[tegra_clk_pll_u_48m] = { .dt_id = TEGRA124_CLK_PLL_U_48M, .present = true },
  	[tegra_clk_pll_u_12m] = { .dt_id = TEGRA124_CLK_PLL_U_12M, .present = true },
  	[tegra_clk_pll_x] = { .dt_id = TEGRA124_CLK_PLL_X, .present = true },
  	[tegra_clk_pll_x_out0] = { .dt_id = TEGRA124_CLK_PLL_X_OUT0, .present = true },
  	[tegra_clk_pll_re_vco] = { .dt_id = TEGRA124_CLK_PLL_RE_VCO, .present = true },
  	[tegra_clk_pll_re_out] = { .dt_id = TEGRA124_CLK_PLL_RE_OUT, .present = true },
  	[tegra_clk_spdif_in_sync] = { .dt_id = TEGRA124_CLK_SPDIF_IN_SYNC, .present = true },
  	[tegra_clk_i2s0_sync] = { .dt_id = TEGRA124_CLK_I2S0_SYNC, .present = true },
  	[tegra_clk_i2s1_sync] = { .dt_id = TEGRA124_CLK_I2S1_SYNC, .present = true },
  	[tegra_clk_i2s2_sync] = { .dt_id = TEGRA124_CLK_I2S2_SYNC, .present = true },
  	[tegra_clk_i2s3_sync] = { .dt_id = TEGRA124_CLK_I2S3_SYNC, .present = true },
  	[tegra_clk_i2s4_sync] = { .dt_id = TEGRA124_CLK_I2S4_SYNC, .present = true },
  	[tegra_clk_vimclk_sync] = { .dt_id = TEGRA124_CLK_VIMCLK_SYNC, .present = true },
  	[tegra_clk_audio0] = { .dt_id = TEGRA124_CLK_AUDIO0, .present = true },
  	[tegra_clk_audio1] = { .dt_id = TEGRA124_CLK_AUDIO1, .present = true },
  	[tegra_clk_audio2] = { .dt_id = TEGRA124_CLK_AUDIO2, .present = true },
  	[tegra_clk_audio3] = { .dt_id = TEGRA124_CLK_AUDIO3, .present = true },
  	[tegra_clk_audio4] = { .dt_id = TEGRA124_CLK_AUDIO4, .present = true },
  	[tegra_clk_spdif] = { .dt_id = TEGRA124_CLK_SPDIF, .present = true },
  	[tegra_clk_clk_out_1] = { .dt_id = TEGRA124_CLK_CLK_OUT_1, .present = true },
  	[tegra_clk_clk_out_2] = { .dt_id = TEGRA124_CLK_CLK_OUT_2, .present = true },
  	[tegra_clk_clk_out_3] = { .dt_id = TEGRA124_CLK_CLK_OUT_3, .present = true },
  	[tegra_clk_blink] = { .dt_id = TEGRA124_CLK_BLINK, .present = true },
  	[tegra_clk_xusb_host_src] = { .dt_id = TEGRA124_CLK_XUSB_HOST_SRC, .present = true },
  	[tegra_clk_xusb_falcon_src] = { .dt_id = TEGRA124_CLK_XUSB_FALCON_SRC, .present = true },
  	[tegra_clk_xusb_fs_src] = { .dt_id = TEGRA124_CLK_XUSB_FS_SRC, .present = true },
  	[tegra_clk_xusb_ss_src] = { .dt_id = TEGRA124_CLK_XUSB_SS_SRC, .present = true },
5c992afcf   Andrew Bresticker   clk: tegra: Fix x...
889
  	[tegra_clk_xusb_ss_div2] = { .dt_id = TEGRA124_CLK_XUSB_SS_DIV2, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
  	[tegra_clk_xusb_dev_src] = { .dt_id = TEGRA124_CLK_XUSB_DEV_SRC, .present = true },
  	[tegra_clk_xusb_dev] = { .dt_id = TEGRA124_CLK_XUSB_DEV, .present = true },
  	[tegra_clk_xusb_hs_src] = { .dt_id = TEGRA124_CLK_XUSB_HS_SRC, .present = true },
  	[tegra_clk_sclk] = { .dt_id = TEGRA124_CLK_SCLK, .present = true },
  	[tegra_clk_hclk] = { .dt_id = TEGRA124_CLK_HCLK, .present = true },
  	[tegra_clk_pclk] = { .dt_id = TEGRA124_CLK_PCLK, .present = true },
  	[tegra_clk_cclk_g] = { .dt_id = TEGRA124_CLK_CCLK_G, .present = true },
  	[tegra_clk_cclk_lp] = { .dt_id = TEGRA124_CLK_CCLK_LP, .present = true },
  	[tegra_clk_dfll_ref] = { .dt_id = TEGRA124_CLK_DFLL_REF, .present = true },
  	[tegra_clk_dfll_soc] = { .dt_id = TEGRA124_CLK_DFLL_SOC, .present = true },
  	[tegra_clk_vi_sensor2] = { .dt_id = TEGRA124_CLK_VI_SENSOR2, .present = true },
  	[tegra_clk_pll_p_out5] = { .dt_id = TEGRA124_CLK_PLL_P_OUT5, .present = true },
  	[tegra_clk_pll_c4] = { .dt_id = TEGRA124_CLK_PLL_C4, .present = true },
  	[tegra_clk_pll_dp] = { .dt_id = TEGRA124_CLK_PLL_DP, .present = true },
  	[tegra_clk_audio0_mux] = { .dt_id = TEGRA124_CLK_AUDIO0_MUX, .present = true },
  	[tegra_clk_audio1_mux] = { .dt_id = TEGRA124_CLK_AUDIO1_MUX, .present = true },
  	[tegra_clk_audio2_mux] = { .dt_id = TEGRA124_CLK_AUDIO2_MUX, .present = true },
  	[tegra_clk_audio3_mux] = { .dt_id = TEGRA124_CLK_AUDIO3_MUX, .present = true },
  	[tegra_clk_audio4_mux] = { .dt_id = TEGRA124_CLK_AUDIO4_MUX, .present = true },
  	[tegra_clk_spdif_mux] = { .dt_id = TEGRA124_CLK_SPDIF_MUX, .present = true },
  	[tegra_clk_clk_out_1_mux] = { .dt_id = TEGRA124_CLK_CLK_OUT_1_MUX, .present = true },
  	[tegra_clk_clk_out_2_mux] = { .dt_id = TEGRA124_CLK_CLK_OUT_2_MUX, .present = true },
  	[tegra_clk_clk_out_3_mux] = { .dt_id = TEGRA124_CLK_CLK_OUT_3_MUX, .present = true },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
  };
  
  static struct tegra_devclk devclks[] __initdata = {
  	{ .con_id = "clk_m", .dt_id = TEGRA124_CLK_CLK_M },
  	{ .con_id = "pll_ref", .dt_id = TEGRA124_CLK_PLL_REF },
  	{ .con_id = "clk_32k", .dt_id = TEGRA124_CLK_CLK_32K },
  	{ .con_id = "clk_m_div2", .dt_id = TEGRA124_CLK_CLK_M_DIV2 },
  	{ .con_id = "clk_m_div4", .dt_id = TEGRA124_CLK_CLK_M_DIV4 },
  	{ .con_id = "pll_c", .dt_id = TEGRA124_CLK_PLL_C },
  	{ .con_id = "pll_c_out1", .dt_id = TEGRA124_CLK_PLL_C_OUT1 },
  	{ .con_id = "pll_c2", .dt_id = TEGRA124_CLK_PLL_C2 },
  	{ .con_id = "pll_c3", .dt_id = TEGRA124_CLK_PLL_C3 },
  	{ .con_id = "pll_p", .dt_id = TEGRA124_CLK_PLL_P },
  	{ .con_id = "pll_p_out1", .dt_id = TEGRA124_CLK_PLL_P_OUT1 },
  	{ .con_id = "pll_p_out2", .dt_id = TEGRA124_CLK_PLL_P_OUT2 },
  	{ .con_id = "pll_p_out3", .dt_id = TEGRA124_CLK_PLL_P_OUT3 },
  	{ .con_id = "pll_p_out4", .dt_id = TEGRA124_CLK_PLL_P_OUT4 },
  	{ .con_id = "pll_m", .dt_id = TEGRA124_CLK_PLL_M },
  	{ .con_id = "pll_m_out1", .dt_id = TEGRA124_CLK_PLL_M_OUT1 },
  	{ .con_id = "pll_x", .dt_id = TEGRA124_CLK_PLL_X },
  	{ .con_id = "pll_x_out0", .dt_id = TEGRA124_CLK_PLL_X_OUT0 },
  	{ .con_id = "pll_u", .dt_id = TEGRA124_CLK_PLL_U },
  	{ .con_id = "pll_u_480M", .dt_id = TEGRA124_CLK_PLL_U_480M },
  	{ .con_id = "pll_u_60M", .dt_id = TEGRA124_CLK_PLL_U_60M },
  	{ .con_id = "pll_u_48M", .dt_id = TEGRA124_CLK_PLL_U_48M },
  	{ .con_id = "pll_u_12M", .dt_id = TEGRA124_CLK_PLL_U_12M },
  	{ .con_id = "pll_d", .dt_id = TEGRA124_CLK_PLL_D },
  	{ .con_id = "pll_d_out0", .dt_id = TEGRA124_CLK_PLL_D_OUT0 },
  	{ .con_id = "pll_d2", .dt_id = TEGRA124_CLK_PLL_D2 },
  	{ .con_id = "pll_d2_out0", .dt_id = TEGRA124_CLK_PLL_D2_OUT0 },
  	{ .con_id = "pll_a", .dt_id = TEGRA124_CLK_PLL_A },
  	{ .con_id = "pll_a_out0", .dt_id = TEGRA124_CLK_PLL_A_OUT0 },
  	{ .con_id = "pll_re_vco", .dt_id = TEGRA124_CLK_PLL_RE_VCO },
  	{ .con_id = "pll_re_out", .dt_id = TEGRA124_CLK_PLL_RE_OUT },
  	{ .con_id = "spdif_in_sync", .dt_id = TEGRA124_CLK_SPDIF_IN_SYNC },
  	{ .con_id = "i2s0_sync", .dt_id = TEGRA124_CLK_I2S0_SYNC },
  	{ .con_id = "i2s1_sync", .dt_id = TEGRA124_CLK_I2S1_SYNC },
  	{ .con_id = "i2s2_sync", .dt_id = TEGRA124_CLK_I2S2_SYNC },
  	{ .con_id = "i2s3_sync", .dt_id = TEGRA124_CLK_I2S3_SYNC },
  	{ .con_id = "i2s4_sync", .dt_id = TEGRA124_CLK_I2S4_SYNC },
  	{ .con_id = "vimclk_sync", .dt_id = TEGRA124_CLK_VIMCLK_SYNC },
  	{ .con_id = "audio0", .dt_id = TEGRA124_CLK_AUDIO0 },
  	{ .con_id = "audio1", .dt_id = TEGRA124_CLK_AUDIO1 },
  	{ .con_id = "audio2", .dt_id = TEGRA124_CLK_AUDIO2 },
  	{ .con_id = "audio3", .dt_id = TEGRA124_CLK_AUDIO3 },
  	{ .con_id = "audio4", .dt_id = TEGRA124_CLK_AUDIO4 },
  	{ .con_id = "spdif", .dt_id = TEGRA124_CLK_SPDIF },
  	{ .con_id = "audio0_2x", .dt_id = TEGRA124_CLK_AUDIO0_2X },
  	{ .con_id = "audio1_2x", .dt_id = TEGRA124_CLK_AUDIO1_2X },
  	{ .con_id = "audio2_2x", .dt_id = TEGRA124_CLK_AUDIO2_2X },
  	{ .con_id = "audio3_2x", .dt_id = TEGRA124_CLK_AUDIO3_2X },
  	{ .con_id = "audio4_2x", .dt_id = TEGRA124_CLK_AUDIO4_2X },
  	{ .con_id = "spdif_2x", .dt_id = TEGRA124_CLK_SPDIF_2X },
  	{ .con_id = "extern1", .dev_id = "clk_out_1", .dt_id = TEGRA124_CLK_EXTERN1 },
  	{ .con_id = "extern2", .dev_id = "clk_out_2", .dt_id = TEGRA124_CLK_EXTERN2 },
  	{ .con_id = "extern3", .dev_id = "clk_out_3", .dt_id = TEGRA124_CLK_EXTERN3 },
  	{ .con_id = "blink", .dt_id = TEGRA124_CLK_BLINK },
  	{ .con_id = "cclk_g", .dt_id = TEGRA124_CLK_CCLK_G },
  	{ .con_id = "cclk_lp", .dt_id = TEGRA124_CLK_CCLK_LP },
  	{ .con_id = "sclk", .dt_id = TEGRA124_CLK_SCLK },
  	{ .con_id = "hclk", .dt_id = TEGRA124_CLK_HCLK },
  	{ .con_id = "pclk", .dt_id = TEGRA124_CLK_PCLK },
5ab5d4048   Alexandre Courbot   clk: tegra: add F...
975
  	{ .con_id = "fuse", .dt_id = TEGRA124_CLK_FUSE },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
976
977
  	{ .dev_id = "rtc-tegra", .dt_id = TEGRA124_CLK_RTC },
  	{ .dev_id = "timer", .dt_id = TEGRA124_CLK_TIMER },
04794d982   Dylan Reid   clk: tegra: Enabl...
978
979
980
  	{ .con_id = "hda", .dt_id = TEGRA124_CLK_HDA },
  	{ .con_id = "hda2codec_2x", .dt_id = TEGRA124_CLK_HDA2CODEC_2X },
  	{ .con_id = "hda2hdmi", .dt_id = TEGRA124_CLK_HDA2HDMI },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
981
982
983
  };
  
  static struct clk **clks;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
984
985
986
987
  static __init void tegra124_periph_clk_init(void __iomem *clk_base,
  					    void __iomem *pmc_base)
  {
  	struct clk *clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
988

5c992afcf   Andrew Bresticker   clk: tegra: Fix x...
989
990
991
992
  	/* xusb_ss_div2 */
  	clk = clk_register_fixed_factor(NULL, "xusb_ss_div2", "xusb_ss_src", 0,
  					1, 2);
  	clks[TEGRA124_CLK_XUSB_SS_DIV2] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
993

eede7113a   Thierry Reding   clk: tegra: dpaux...
994
995
996
  	clk = tegra_clk_register_periph_fixed("dpaux", "pll_p", 0, clk_base,
  					      1, 17, 181);
  	clks[TEGRA124_CLK_DPAUX] = clk;
c1d676cec   Thierry Reding   clk: tegra: Use t...
997
  	clk = clk_register_gate(NULL, "pll_d_dsi_out", "pll_d_out0", 0,
b270491eb   Mark Zhang   clk: tegra: Defin...
998
  				clk_base + PLLD_MISC, 30, 0, &pll_d_lock);
c1d676cec   Thierry Reding   clk: tegra: Use t...
999
  	clks[TEGRA124_CLK_PLL_D_DSI_OUT] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1000

c1d676cec   Thierry Reding   clk: tegra: Use t...
1001
1002
1003
  	clk = tegra_clk_register_periph_gate("dsia", "pll_d_dsi_out", 0,
  					     clk_base, 0, 48,
  					     periph_clk_enb_refcnt);
b270491eb   Mark Zhang   clk: tegra: Defin...
1004
  	clks[TEGRA124_CLK_DSIA] = clk;
c1d676cec   Thierry Reding   clk: tegra: Use t...
1005
1006
1007
  	clk = tegra_clk_register_periph_gate("dsib", "pll_d_dsi_out", 0,
  					     clk_base, 0, 82,
  					     periph_clk_enb_refcnt);
b270491eb   Mark Zhang   clk: tegra: Defin...
1008
  	clks[TEGRA124_CLK_DSIB] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1009

ac67477f8   Tomeu Vizoso   clk: tegra: Set t...
1010
  	clk = tegra_clk_register_mc("mc", "emc", clk_base + CLK_SOURCE_EMC,
4f4f85fa0   Thierry Reding   clk: tegra: Imple...
1011
1012
  				    &emc_lock);
  	clks[TEGRA124_CLK_MC] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
  
  	/* cml0 */
  	clk = clk_register_gate(NULL, "cml0", "pll_e", 0, clk_base + PLLE_AUX,
  				0, 0, &pll_e_lock);
  	clk_register_clkdev(clk, "cml0", NULL);
  	clks[TEGRA124_CLK_CML0] = clk;
  
  	/* cml1 */
  	clk = clk_register_gate(NULL, "cml1", "pll_e", 0, clk_base + PLLE_AUX,
  				1, 0, &pll_e_lock);
  	clk_register_clkdev(clk, "cml1", NULL);
  	clks[TEGRA124_CLK_CML1] = clk;
  
  	tegra_periph_clk_init(clk_base, pmc_base, tegra124_clks, &pll_p_params);
  }
  
  static void __init tegra124_pll_init(void __iomem *clk_base,
  				     void __iomem *pmc)
  {
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
  	struct clk *clk;
  
  	/* PLLC */
  	clk = tegra_clk_register_pllxc("pll_c", "pll_ref", clk_base,
  			pmc, 0, &pll_c_params, NULL);
  	clk_register_clkdev(clk, "pll_c", NULL);
  	clks[TEGRA124_CLK_PLL_C] = clk;
  
  	/* PLLC_OUT1 */
  	clk = tegra_clk_register_divider("pll_c_out1_div", "pll_c",
  			clk_base + PLLC_OUT, 0, TEGRA_DIVIDER_ROUND_UP,
  			8, 8, 1, NULL);
  	clk = tegra_clk_register_pll_out("pll_c_out1", "pll_c_out1_div",
  				clk_base + PLLC_OUT, 1, 0,
  				CLK_SET_RATE_PARENT, 0, NULL);
  	clk_register_clkdev(clk, "pll_c_out1", NULL);
  	clks[TEGRA124_CLK_PLL_C_OUT1] = clk;
4c495c204   Mikko Perttunen   clk: tegra124: Ad...
1049
1050
1051
1052
1053
  	/* PLLC_UD */
  	clk = clk_register_fixed_factor(NULL, "pll_c_ud", "pll_c",
  					CLK_SET_RATE_PARENT, 1, 1);
  	clk_register_clkdev(clk, "pll_c_ud", NULL);
  	clks[TEGRA124_CLK_PLL_C_UD] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
  	/* PLLC2 */
  	clk = tegra_clk_register_pllc("pll_c2", "pll_ref", clk_base, pmc, 0,
  			     &pll_c2_params, NULL);
  	clk_register_clkdev(clk, "pll_c2", NULL);
  	clks[TEGRA124_CLK_PLL_C2] = clk;
  
  	/* PLLC3 */
  	clk = tegra_clk_register_pllc("pll_c3", "pll_ref", clk_base, pmc, 0,
  			     &pll_c3_params, NULL);
  	clk_register_clkdev(clk, "pll_c3", NULL);
  	clks[TEGRA124_CLK_PLL_C3] = clk;
  
  	/* PLLM */
  	clk = tegra_clk_register_pllm("pll_m", "pll_ref", clk_base, pmc,
  			     CLK_IGNORE_UNUSED | CLK_SET_RATE_GATE,
  			     &pll_m_params, NULL);
  	clk_register_clkdev(clk, "pll_m", NULL);
  	clks[TEGRA124_CLK_PLL_M] = clk;
  
  	/* PLLM_OUT1 */
  	clk = tegra_clk_register_divider("pll_m_out1_div", "pll_m",
  				clk_base + PLLM_OUT, 0, TEGRA_DIVIDER_ROUND_UP,
  				8, 8, 1, NULL);
  	clk = tegra_clk_register_pll_out("pll_m_out1", "pll_m_out1_div",
  				clk_base + PLLM_OUT, 1, 0, CLK_IGNORE_UNUSED |
  				CLK_SET_RATE_PARENT, 0, NULL);
  	clk_register_clkdev(clk, "pll_m_out1", NULL);
  	clks[TEGRA124_CLK_PLL_M_OUT1] = clk;
  
  	/* PLLM_UD */
  	clk = clk_register_fixed_factor(NULL, "pll_m_ud", "pll_m",
  					CLK_SET_RATE_PARENT, 1, 1);
4c495c204   Mikko Perttunen   clk: tegra124: Ad...
1086
1087
  	clk_register_clkdev(clk, "pll_m_ud", NULL);
  	clks[TEGRA124_CLK_PLL_M_UD] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1088
1089
  
  	/* PLLU */
15d68e8c2   Andrew Bresticker   clk: tegra: Initi...
1090
1091
  	clk = tegra_clk_register_pllu_tegra114("pll_u", "pll_ref", clk_base, 0,
  					       &pll_u_params, &pll_u_lock);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1092
1093
  	clk_register_clkdev(clk, "pll_u", NULL);
  	clks[TEGRA124_CLK_PLL_U] = clk;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
  	/* PLLU_480M */
  	clk = clk_register_gate(NULL, "pll_u_480M", "pll_u",
  				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
  				22, 0, &pll_u_lock);
  	clk_register_clkdev(clk, "pll_u_480M", NULL);
  	clks[TEGRA124_CLK_PLL_U_480M] = clk;
  
  	/* PLLU_60M */
  	clk = clk_register_fixed_factor(NULL, "pll_u_60M", "pll_u",
  					CLK_SET_RATE_PARENT, 1, 8);
  	clk_register_clkdev(clk, "pll_u_60M", NULL);
  	clks[TEGRA124_CLK_PLL_U_60M] = clk;
  
  	/* PLLU_48M */
  	clk = clk_register_fixed_factor(NULL, "pll_u_48M", "pll_u",
  					CLK_SET_RATE_PARENT, 1, 10);
  	clk_register_clkdev(clk, "pll_u_48M", NULL);
  	clks[TEGRA124_CLK_PLL_U_48M] = clk;
  
  	/* PLLU_12M */
  	clk = clk_register_fixed_factor(NULL, "pll_u_12M", "pll_u",
  					CLK_SET_RATE_PARENT, 1, 40);
  	clk_register_clkdev(clk, "pll_u_12M", NULL);
  	clks[TEGRA124_CLK_PLL_U_12M] = clk;
  
  	/* PLLD */
  	clk = tegra_clk_register_pll("pll_d", "pll_ref", clk_base, pmc, 0,
  			    &pll_d_params, &pll_d_lock);
  	clk_register_clkdev(clk, "pll_d", NULL);
  	clks[TEGRA124_CLK_PLL_D] = clk;
  
  	/* PLLD_OUT0 */
  	clk = clk_register_fixed_factor(NULL, "pll_d_out0", "pll_d",
  					CLK_SET_RATE_PARENT, 1, 2);
  	clk_register_clkdev(clk, "pll_d_out0", NULL);
  	clks[TEGRA124_CLK_PLL_D_OUT0] = clk;
  
  	/* PLLRE */
  	clk = tegra_clk_register_pllre("pll_re_vco", "pll_ref", clk_base, pmc,
  			     0, &pll_re_vco_params, &pll_re_lock, pll_ref_freq);
  	clk_register_clkdev(clk, "pll_re_vco", NULL);
  	clks[TEGRA124_CLK_PLL_RE_VCO] = clk;
  
  	clk = clk_register_divider_table(NULL, "pll_re_out", "pll_re_vco", 0,
  					 clk_base + PLLRE_BASE, 16, 4, 0,
  					 pll_re_div_table, &pll_re_lock);
  	clk_register_clkdev(clk, "pll_re_out", NULL);
  	clks[TEGRA124_CLK_PLL_RE_OUT] = clk;
  
  	/* PLLE */
  	clk = tegra_clk_register_plle_tegra114("pll_e", "pll_ref",
  				      clk_base, 0, &pll_e_params, NULL);
  	clk_register_clkdev(clk, "pll_e", NULL);
  	clks[TEGRA124_CLK_PLL_E] = clk;
  
  	/* PLLC4 */
  	clk = tegra_clk_register_pllss("pll_c4", "pll_ref", clk_base, 0,
  					&pll_c4_params, NULL);
  	clk_register_clkdev(clk, "pll_c4", NULL);
  	clks[TEGRA124_CLK_PLL_C4] = clk;
  
  	/* PLLDP */
  	clk = tegra_clk_register_pllss("pll_dp", "pll_ref", clk_base, 0,
  					&pll_dp_params, NULL);
  	clk_register_clkdev(clk, "pll_dp", NULL);
  	clks[TEGRA124_CLK_PLL_DP] = clk;
  
  	/* PLLD2 */
  	clk = tegra_clk_register_pllss("pll_d2", "pll_ref", clk_base, 0,
  					&tegra124_pll_d2_params, NULL);
  	clk_register_clkdev(clk, "pll_d2", NULL);
  	clks[TEGRA124_CLK_PLL_D2] = clk;
0e766c2d9   David Ung   clk: tegra: PLLD2...
1166
  	/* PLLD2_OUT0 */
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1167
  	clk = clk_register_fixed_factor(NULL, "pll_d2_out0", "pll_d2",
0e766c2d9   David Ung   clk: tegra: PLLD2...
1168
  					CLK_SET_RATE_PARENT, 1, 1);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1169
1170
1171
1172
  	clk_register_clkdev(clk, "pll_d2_out0", NULL);
  	clks[TEGRA124_CLK_PLL_D2_OUT0] = clk;
  
  }
9e036d3ef   Joseph Lo   clk: tegra124: ad...
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
  /* Tegra124 CPU clock and reset control functions */
  static void tegra124_wait_cpu_in_reset(u32 cpu)
  {
  	unsigned int reg;
  
  	do {
  		reg = readl(clk_base + CLK_RST_CONTROLLER_CPU_CMPLX_STATUS);
  		cpu_relax();
  	} while (!(reg & (1 << cpu)));  /* check CPU been reset or not */
  }
  
  static void tegra124_disable_cpu_clock(u32 cpu)
  {
  	/* flow controller would take care in the power sequence. */
  }
61792e40c   Joseph Lo   clk: tegra124: ad...
1188
1189
1190
1191
1192
1193
1194
  #ifdef CONFIG_PM_SLEEP
  static void tegra124_cpu_clock_suspend(void)
  {
  	/* switch coresite to clk_m, save off original source */
  	tegra124_cpu_clk_sctx.clk_csite_src =
  				readl(clk_base + CLK_SOURCE_CSITE);
  	writel(3 << 30, clk_base + CLK_SOURCE_CSITE);
c38864a70   Tuomas Tynkkynen   clk: tegra: Save/...
1195
1196
1197
1198
1199
  
  	tegra124_cpu_clk_sctx.cclkg_burst =
  				readl(clk_base + CCLKG_BURST_POLICY);
  	tegra124_cpu_clk_sctx.cclkg_divider =
  				readl(clk_base + CCLKG_BURST_POLICY + 4);
61792e40c   Joseph Lo   clk: tegra124: ad...
1200
1201
1202
1203
1204
1205
  }
  
  static void tegra124_cpu_clock_resume(void)
  {
  	writel(tegra124_cpu_clk_sctx.clk_csite_src,
  				clk_base + CLK_SOURCE_CSITE);
c38864a70   Tuomas Tynkkynen   clk: tegra: Save/...
1206
1207
1208
1209
1210
  
  	writel(tegra124_cpu_clk_sctx.cclkg_burst,
  					clk_base + CCLKG_BURST_POLICY);
  	writel(tegra124_cpu_clk_sctx.cclkg_divider,
  					clk_base + CCLKG_BURST_POLICY + 4);
61792e40c   Joseph Lo   clk: tegra124: ad...
1211
1212
  }
  #endif
9e036d3ef   Joseph Lo   clk: tegra124: ad...
1213
1214
1215
  static struct tegra_cpu_car_ops tegra124_cpu_car_ops = {
  	.wait_for_reset	= tegra124_wait_cpu_in_reset,
  	.disable_clock	= tegra124_disable_cpu_clock,
61792e40c   Joseph Lo   clk: tegra124: ad...
1216
1217
1218
1219
  #ifdef CONFIG_PM_SLEEP
  	.suspend	= tegra124_cpu_clock_suspend,
  	.resume		= tegra124_cpu_clock_resume,
  #endif
9e036d3ef   Joseph Lo   clk: tegra124: ad...
1220
  };
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1221
1222
  static const struct of_device_id pmc_match[] __initconst = {
  	{ .compatible = "nvidia,tegra124-pmc" },
e52d7c04b   Thierry Reding   clk: tegra: Misce...
1223
  	{ },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1224
  };
08acae34e   Paul Walmsley   clk: tegra: Add s...
1225
  static struct tegra_clk_init_table common_init_table[] __initdata = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
  	{ TEGRA124_CLK_UARTA, TEGRA124_CLK_PLL_P, 408000000, 0 },
  	{ TEGRA124_CLK_UARTB, TEGRA124_CLK_PLL_P, 408000000, 0 },
  	{ TEGRA124_CLK_UARTC, TEGRA124_CLK_PLL_P, 408000000, 0 },
  	{ TEGRA124_CLK_UARTD, TEGRA124_CLK_PLL_P, 408000000, 0 },
  	{ TEGRA124_CLK_PLL_A, TEGRA124_CLK_CLK_MAX, 564480000, 1 },
  	{ TEGRA124_CLK_PLL_A_OUT0, TEGRA124_CLK_CLK_MAX, 11289600, 1 },
  	{ TEGRA124_CLK_EXTERN1, TEGRA124_CLK_PLL_A_OUT0, 0, 1 },
  	{ TEGRA124_CLK_CLK_OUT_1_MUX, TEGRA124_CLK_EXTERN1, 0, 1 },
  	{ TEGRA124_CLK_CLK_OUT_1, TEGRA124_CLK_CLK_MAX, 0, 1 },
  	{ TEGRA124_CLK_I2S0, TEGRA124_CLK_PLL_A_OUT0, 11289600, 0 },
  	{ TEGRA124_CLK_I2S1, TEGRA124_CLK_PLL_A_OUT0, 11289600, 0 },
  	{ TEGRA124_CLK_I2S2, TEGRA124_CLK_PLL_A_OUT0, 11289600, 0 },
  	{ TEGRA124_CLK_I2S3, TEGRA124_CLK_PLL_A_OUT0, 11289600, 0 },
  	{ TEGRA124_CLK_I2S4, TEGRA124_CLK_PLL_A_OUT0, 11289600, 0 },
  	{ TEGRA124_CLK_VDE, TEGRA124_CLK_PLL_P, 0, 0 },
  	{ TEGRA124_CLK_HOST1X, TEGRA124_CLK_PLL_P, 136000000, 1 },
  	{ TEGRA124_CLK_DSIALP, TEGRA124_CLK_PLL_P, 68000000, 0 },
  	{ TEGRA124_CLK_DSIBLP, TEGRA124_CLK_PLL_P, 68000000, 0 },
  	{ TEGRA124_CLK_SCLK, TEGRA124_CLK_PLL_P_OUT2, 102000000, 1 },
  	{ TEGRA124_CLK_DFLL_SOC, TEGRA124_CLK_PLL_P, 51000000, 1 },
  	{ TEGRA124_CLK_DFLL_REF, TEGRA124_CLK_PLL_P, 51000000, 1 },
  	{ TEGRA124_CLK_PLL_C, TEGRA124_CLK_CLK_MAX, 768000000, 0 },
  	{ TEGRA124_CLK_PLL_C_OUT1, TEGRA124_CLK_CLK_MAX, 100000000, 0 },
  	{ TEGRA124_CLK_SBC4, TEGRA124_CLK_PLL_P, 12000000, 1 },
  	{ TEGRA124_CLK_TSEC, TEGRA124_CLK_PLL_C3, 0, 0 },
  	{ TEGRA124_CLK_MSENC, TEGRA124_CLK_PLL_C3, 0, 0 },
  	{ TEGRA124_CLK_PLL_RE_VCO, TEGRA124_CLK_CLK_MAX, 672000000, 0 },
  	{ TEGRA124_CLK_XUSB_SS_SRC, TEGRA124_CLK_PLL_U_480M, 120000000, 0 },
  	{ TEGRA124_CLK_XUSB_FS_SRC, TEGRA124_CLK_PLL_U_48M, 48000000, 0 },
  	{ TEGRA124_CLK_XUSB_HS_SRC, TEGRA124_CLK_PLL_U_60M, 60000000, 0 },
  	{ TEGRA124_CLK_XUSB_FALCON_SRC, TEGRA124_CLK_PLL_RE_OUT, 224000000, 0 },
  	{ TEGRA124_CLK_XUSB_HOST_SRC, TEGRA124_CLK_PLL_RE_OUT, 112000000, 0 },
  	{ TEGRA124_CLK_SATA, TEGRA124_CLK_PLL_P, 104000000, 0 },
  	{ TEGRA124_CLK_SATA_OOB, TEGRA124_CLK_PLL_P, 204000000, 0 },
  	{ TEGRA124_CLK_MSELECT, TEGRA124_CLK_CLK_MAX, 0, 1 },
  	{ TEGRA124_CLK_CSITE, TEGRA124_CLK_CLK_MAX, 0, 1 },
  	{ TEGRA124_CLK_TSENSOR, TEGRA124_CLK_CLK_M, 400000, 0 },
  	/* must be the last entry */
  	{ TEGRA124_CLK_CLK_MAX, TEGRA124_CLK_CLK_MAX, 0, 0 },
08acae34e   Paul Walmsley   clk: tegra: Add s...
1265
1266
1267
  };
  
  static struct tegra_clk_init_table tegra124_init_table[] __initdata = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
1268
1269
1270
1271
1272
1273
  	{ TEGRA124_CLK_SOC_THERM, TEGRA124_CLK_PLL_P, 51000000, 0 },
  	{ TEGRA124_CLK_CCLK_G, TEGRA124_CLK_CLK_MAX, 0, 1 },
  	{ TEGRA124_CLK_HDA, TEGRA124_CLK_PLL_P, 102000000, 0 },
  	{ TEGRA124_CLK_HDA2CODEC_2X, TEGRA124_CLK_PLL_P, 48000000, 0 },
  	/* must be the last entry */
  	{ TEGRA124_CLK_CLK_MAX, TEGRA124_CLK_CLK_MAX, 0, 0 },
08acae34e   Paul Walmsley   clk: tegra: Add s...
1274
1275
1276
1277
  };
  
  /* Tegra132 requires the SOC_THERM clock to remain active */
  static struct tegra_clk_init_table tegra132_init_table[] __initdata = {
8d99704fd   Thierry Reding   clk: tegra: Forma...
1278
1279
1280
  	{ TEGRA124_CLK_SOC_THERM, TEGRA124_CLK_PLL_P, 51000000, 1 },
  	/* must be the last entry */
  	{ TEGRA124_CLK_CLK_MAX, TEGRA124_CLK_CLK_MAX, 0, 0 },
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1281
  };
88d909bed   Rhyland Klein   clk: tegra: Modif...
1282
1283
1284
  static struct tegra_audio_clk_info tegra124_audio_plls[] = {
  	{ "pll_a", &pll_a_params, tegra_clk_pll_a, "pll_p_out1" },
  };
08acae34e   Paul Walmsley   clk: tegra: Add s...
1285
1286
1287
1288
1289
1290
1291
1292
  /**
   * tegra124_clock_apply_init_table - initialize clocks on Tegra124 SoCs
   *
   * Program an initial clock rate and enable or disable clocks needed
   * by the rest of the kernel, for Tegra124 SoCs.  It is intended to be
   * called by assigning a pointer to it to tegra_clk_apply_init_table -
   * this will be called as an arch_initcall.  No return value.
   */
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1293
1294
  static void __init tegra124_clock_apply_init_table(void)
  {
08acae34e   Paul Walmsley   clk: tegra: Add s...
1295
1296
  	tegra_init_from_table(common_init_table, clks, TEGRA124_CLK_CLK_MAX);
  	tegra_init_from_table(tegra124_init_table, clks, TEGRA124_CLK_CLK_MAX);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1297
  }
08acae34e   Paul Walmsley   clk: tegra: Add s...
1298
  /**
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
   * tegra124_car_barrier - wait for pending writes to the CAR to complete
   *
   * Wait for any outstanding writes to the CAR MMIO space from this CPU
   * to complete before continuing execution.  No return value.
   */
  static void tegra124_car_barrier(void)
  {
  	readl_relaxed(clk_base + RST_DFLL_DVCO);
  }
  
  /**
   * tegra124_clock_assert_dfll_dvco_reset - assert the DFLL's DVCO reset
   *
   * Assert the reset line of the DFLL's DVCO.  No return value.
   */
c5a132a84   Stephen Boyd   clk: tegra: Fix s...
1314
  static void tegra124_clock_assert_dfll_dvco_reset(void)
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
  {
  	u32 v;
  
  	v = readl_relaxed(clk_base + RST_DFLL_DVCO);
  	v |= (1 << DVFS_DFLL_RESET_SHIFT);
  	writel_relaxed(v, clk_base + RST_DFLL_DVCO);
  	tegra124_car_barrier();
  }
  
  /**
   * tegra124_clock_deassert_dfll_dvco_reset - deassert the DFLL's DVCO reset
   *
   * Deassert the reset line of the DFLL's DVCO, allowing the DVCO to
   * operate.  No return value.
   */
c5a132a84   Stephen Boyd   clk: tegra: Fix s...
1330
  static void tegra124_clock_deassert_dfll_dvco_reset(void)
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
1331
1332
1333
1334
1335
1336
1337
1338
  {
  	u32 v;
  
  	v = readl_relaxed(clk_base + RST_DFLL_DVCO);
  	v &= ~(1 << DVFS_DFLL_RESET_SHIFT);
  	writel_relaxed(v, clk_base + RST_DFLL_DVCO);
  	tegra124_car_barrier();
  }
c5a132a84   Stephen Boyd   clk: tegra: Fix s...
1339
  static int tegra124_reset_assert(unsigned long id)
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
1340
1341
1342
1343
1344
1345
1346
1347
  {
  	if (id == TEGRA124_RST_DFLL_DVCO)
  		tegra124_clock_assert_dfll_dvco_reset();
  	else
  		return -EINVAL;
  
  	return 0;
  }
c5a132a84   Stephen Boyd   clk: tegra: Fix s...
1348
  static int tegra124_reset_deassert(unsigned long id)
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
  {
  	if (id == TEGRA124_RST_DFLL_DVCO)
  		tegra124_clock_deassert_dfll_dvco_reset();
  	else
  		return -EINVAL;
  
  	return 0;
  }
  
  /**
08acae34e   Paul Walmsley   clk: tegra: Add s...
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
   * tegra132_clock_apply_init_table - initialize clocks on Tegra132 SoCs
   *
   * Program an initial clock rate and enable or disable clocks needed
   * by the rest of the kernel, for Tegra132 SoCs.  It is intended to be
   * called by assigning a pointer to it to tegra_clk_apply_init_table -
   * this will be called as an arch_initcall.  No return value.
   */
  static void __init tegra132_clock_apply_init_table(void)
  {
  	tegra_init_from_table(common_init_table, clks, TEGRA124_CLK_CLK_MAX);
  	tegra_init_from_table(tegra132_init_table, clks, TEGRA124_CLK_CLK_MAX);
  }
  
  /**
   * tegra124_132_clock_init_pre - clock initialization preamble for T124/T132
   * @np: struct device_node * of the DT node for the SoC CAR IP block
   *
   * Register most of the clocks controlled by the CAR IP block, along
   * with a few clocks controlled by the PMC IP block.  Everything in
   * this function should be common to Tegra124 and Tegra132.  XXX The
   * PMC clock initialization should probably be moved to PMC-specific
   * driver code.  No return value.
   */
  static void __init tegra124_132_clock_init_pre(struct device_node *np)
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1383
1384
  {
  	struct device_node *node;
b270491eb   Mark Zhang   clk: tegra: Defin...
1385
  	u32 plld_base;
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1386
1387
1388
  
  	clk_base = of_iomap(np, 0);
  	if (!clk_base) {
08acae34e   Paul Walmsley   clk: tegra: Add s...
1389
1390
  		pr_err("ioremap tegra124/tegra132 CAR failed
  ");
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
  		return;
  	}
  
  	node = of_find_matching_node(NULL, pmc_match);
  	if (!node) {
  		pr_err("Failed to find pmc node
  ");
  		WARN_ON(1);
  		return;
  	}
  
  	pmc_base = of_iomap(node, 0);
  	if (!pmc_base) {
  		pr_err("Can't map pmc registers
  ");
  		WARN_ON(1);
  		return;
  	}
08acae34e   Paul Walmsley   clk: tegra: Add s...
1409
1410
  	clks = tegra_clk_init(clk_base, TEGRA124_CLK_CLK_MAX,
  			      TEGRA124_CAR_BANK_COUNT);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1411
1412
1413
1414
  	if (!clks)
  		return;
  
  	if (tegra_osc_clk_init(clk_base, tegra124_clks, tegra124_input_freq,
63cc5a4da   Thierry Reding   clk: tegra: Model...
1415
1416
  			       ARRAY_SIZE(tegra124_input_freq), 1, &osc_freq,
  			       &pll_ref_freq) < 0)
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1417
1418
1419
1420
1421
  		return;
  
  	tegra_fixed_clk_init(tegra124_clks);
  	tegra124_pll_init(clk_base, pmc_base);
  	tegra124_periph_clk_init(clk_base, pmc_base);
88d909bed   Rhyland Klein   clk: tegra: Modif...
1422
1423
1424
  	tegra_audio_clk_init(clk_base, pmc_base, tegra124_clks,
  			     tegra124_audio_plls,
  			     ARRAY_SIZE(tegra124_audio_plls));
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1425
  	tegra_pmc_clk_init(pmc_base, tegra124_clks);
b270491eb   Mark Zhang   clk: tegra: Defin...
1426
1427
1428
1429
1430
  
  	/* For Tegra124 & Tegra132, PLLD is the only source for DSIA & DSIB */
  	plld_base = clk_readl(clk_base + PLLD_BASE);
  	plld_base &= ~BIT(25);
  	clk_writel(plld_base, clk_base + PLLD_BASE);
08acae34e   Paul Walmsley   clk: tegra: Add s...
1431
  }
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1432

08acae34e   Paul Walmsley   clk: tegra: Add s...
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
  /**
   * tegra124_132_clock_init_post - clock initialization postamble for T124/T132
   * @np: struct device_node * of the DT node for the SoC CAR IP block
   *
   * Register most of the along with a few clocks controlled by the PMC
   * IP block.  Everything in this function should be common to Tegra124
   * and Tegra132.  This function must be called after
   * tegra124_132_clock_init_pre(), otherwise clk_base and pmc_base will
   * not be set.  No return value.
   */
  static void __init tegra124_132_clock_init_post(struct device_node *np)
  {
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1445
  	tegra_super_clk_gen4_init(clk_base, pmc_base, tegra124_clks,
08acae34e   Paul Walmsley   clk: tegra: Add s...
1446
  				  &pll_x_params);
a3c83ff20   Paul Walmsley   clk: tegra: Add D...
1447
1448
  	tegra_init_special_resets(1, tegra124_reset_assert,
  				  tegra124_reset_deassert);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1449
  	tegra_add_of_provider(np);
2db04f16b   Mikko Perttunen   clk: tegra: Add E...
1450
1451
1452
  
  	clks[TEGRA124_CLK_EMC] = tegra_clk_register_emc(clk_base, np,
  							&emc_lock);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1453
  	tegra_register_devclks(devclks, ARRAY_SIZE(devclks));
08acae34e   Paul Walmsley   clk: tegra: Add s...
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
  	tegra_cpu_car_ops = &tegra124_cpu_car_ops;
  }
  
  /**
   * tegra124_clock_init - Tegra124-specific clock initialization
   * @np: struct device_node * of the DT node for the SoC CAR IP block
   *
   * Register most SoC clocks for the Tegra124 system-on-chip.  Most of
   * this code is shared between the Tegra124 and Tegra132 SoCs,
   * although some of the initial clock settings and CPU clocks differ.
   * Intended to be called by the OF init code when a DT node with the
   * "nvidia,tegra124-car" string is encountered, and declared with
   * CLK_OF_DECLARE.  No return value.
   */
  static void __init tegra124_clock_init(struct device_node *np)
  {
  	tegra124_132_clock_init_pre(np);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1471
  	tegra_clk_apply_init_table = tegra124_clock_apply_init_table;
08acae34e   Paul Walmsley   clk: tegra: Add s...
1472
1473
  	tegra124_132_clock_init_post(np);
  }
9e036d3ef   Joseph Lo   clk: tegra124: ad...
1474

08acae34e   Paul Walmsley   clk: tegra: Add s...
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
  /**
   * tegra132_clock_init - Tegra132-specific clock initialization
   * @np: struct device_node * of the DT node for the SoC CAR IP block
   *
   * Register most SoC clocks for the Tegra132 system-on-chip.  Most of
   * this code is shared between the Tegra124 and Tegra132 SoCs,
   * although some of the initial clock settings and CPU clocks differ.
   * Intended to be called by the OF init code when a DT node with the
   * "nvidia,tegra132-car" string is encountered, and declared with
   * CLK_OF_DECLARE.  No return value.
   */
  static void __init tegra132_clock_init(struct device_node *np)
  {
  	tegra124_132_clock_init_pre(np);
  
  	/*
  	 * On Tegra132, these clocks are controlled by the
  	 * CLUSTER_clocks IP block, located in the CPU complex
  	 */
  	tegra124_clks[tegra_clk_cclk_g].present = false;
  	tegra124_clks[tegra_clk_cclk_lp].present = false;
  	tegra124_clks[tegra_clk_pll_x].present = false;
  	tegra124_clks[tegra_clk_pll_x_out0].present = false;
  
  	tegra_clk_apply_init_table = tegra132_clock_apply_init_table;
  	tegra124_132_clock_init_post(np);
76da314df   Peter De Schrijver   clk: tegra124: Ad...
1501
1502
  }
  CLK_OF_DECLARE(tegra124, "nvidia,tegra124-car", tegra124_clock_init);
08acae34e   Paul Walmsley   clk: tegra: Add s...
1503
  CLK_OF_DECLARE(tegra132, "nvidia,tegra132-car", tegra132_clock_init);