blob: b9391d6933cab46a95ce54828cb3ea2dc79d9162 [file] [log] [blame]
Tom Warren1b245fe2012-12-11 13:34:13 +00001/*
Tom Warren7aaa5a62015-03-04 16:36:00 -07002 * Copyright (c) 2010-2015, NVIDIA CORPORATION. All rights reserved.
Tom Warren1b245fe2012-12-11 13:34:13 +00003 *
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#include <common.h>
18#include <asm/io.h>
19#include <asm/arch/clock.h>
20#include <asm/arch/gp_padctrl.h>
21#include <asm/arch/pinmux.h>
22#include <asm/arch/tegra.h>
23#include <asm/arch-tegra/clk_rst.h>
24#include <asm/arch-tegra/pmc.h>
25#include <asm/arch-tegra/scu.h>
26#include "cpu.h"
27
Tom Warren1b245fe2012-12-11 13:34:13 +000028int get_num_cpus(void)
29{
Tom Warren4040ec12013-01-28 13:32:08 +000030 struct apb_misc_gp_ctlr *gp;
31 uint rev;
Tom Warren7aaa5a62015-03-04 16:36:00 -070032 debug("%s entry\n", __func__);
Tom Warren4040ec12013-01-28 13:32:08 +000033
34 gp = (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
35 rev = (readl(&gp->hidrev) & HIDREV_CHIPID_MASK) >> HIDREV_CHIPID_SHIFT;
36
37 switch (rev) {
38 case CHIPID_TEGRA20:
39 return 2;
40 break;
41 case CHIPID_TEGRA30:
42 case CHIPID_TEGRA114:
Tom Warren7aaa5a62015-03-04 16:36:00 -070043 case CHIPID_TEGRA124:
44 case CHIPID_TEGRA210:
Tom Warren4040ec12013-01-28 13:32:08 +000045 default:
46 return 4;
47 break;
48 }
Tom Warren1b245fe2012-12-11 13:34:13 +000049}
50
51/*
52 * Timing tables for each SOC for all four oscillator options.
53 */
54struct clk_pll_table tegra_pll_x_table[TEGRA_SOC_CNT][CLOCK_OSC_FREQ_COUNT] = {
Jimmy Zhang44de8e22013-09-23 22:07:49 +020055 /*
56 * T20: 1 GHz
57 *
58 * Register Field Bits Width
59 * ------------------------------
60 * PLLX_BASE p 22:20 3
61 * PLLX_BASE n 17: 8 10
62 * PLLX_BASE m 4: 0 5
63 * PLLX_MISC cpcon 11: 8 4
64 */
65 {
66 { .n = 1000, .m = 13, .p = 0, .cpcon = 12 }, /* OSC: 13.0 MHz */
67 { .n = 625, .m = 12, .p = 0, .cpcon = 8 }, /* OSC: 19.2 MHz */
68 { .n = 1000, .m = 12, .p = 0, .cpcon = 12 }, /* OSC: 12.0 MHz */
69 { .n = 1000, .m = 26, .p = 0, .cpcon = 12 }, /* OSC: 26.0 MHz */
Tom Warren3e8650c2015-06-22 13:03:44 -070070 { .n = 0, .m = 0, .p = 0, .cpcon = 0 }, /* OSC: 38.4 MHz (N/A) */
71 { .n = 0, .m = 0, .p = 0, .cpcon = 0 }, /* OSC: 48.0 MHz (N/A) */
Tom Warren1b245fe2012-12-11 13:34:13 +000072 },
Jimmy Zhang44de8e22013-09-23 22:07:49 +020073 /*
74 * T25: 1.2 GHz
75 *
76 * Register Field Bits Width
77 * ------------------------------
78 * PLLX_BASE p 22:20 3
79 * PLLX_BASE n 17: 8 10
80 * PLLX_BASE m 4: 0 5
81 * PLLX_MISC cpcon 11: 8 4
82 */
83 {
84 { .n = 923, .m = 10, .p = 0, .cpcon = 12 }, /* OSC: 13.0 MHz */
85 { .n = 750, .m = 12, .p = 0, .cpcon = 8 }, /* OSC: 19.2 MHz */
86 { .n = 600, .m = 6, .p = 0, .cpcon = 12 }, /* OSC: 12.0 MHz */
87 { .n = 600, .m = 13, .p = 0, .cpcon = 12 }, /* OSC: 26.0 MHz */
Tom Warren3e8650c2015-06-22 13:03:44 -070088 { .n = 0, .m = 0, .p = 0, .cpcon = 0 }, /* OSC: 38.4 MHz (N/A) */
89 { .n = 0, .m = 0, .p = 0, .cpcon = 0 }, /* OSC: 48.0 MHz (N/A) */
Tom Warren1b245fe2012-12-11 13:34:13 +000090 },
Jimmy Zhang44de8e22013-09-23 22:07:49 +020091 /*
Stephen Warren2364e152014-05-08 09:33:45 -060092 * T30: 600 MHz
Jimmy Zhang44de8e22013-09-23 22:07:49 +020093 *
94 * Register Field Bits Width
95 * ------------------------------
96 * PLLX_BASE p 22:20 3
97 * PLLX_BASE n 17: 8 10
98 * PLLX_BASE m 4: 0 5
99 * PLLX_MISC cpcon 11: 8 4
100 */
101 {
Stephen Warren2364e152014-05-08 09:33:45 -0600102 { .n = 600, .m = 13, .p = 0, .cpcon = 8 }, /* OSC: 13.0 MHz */
103 { .n = 500, .m = 16, .p = 0, .cpcon = 8 }, /* OSC: 19.2 MHz */
104 { .n = 600, .m = 12, .p = 0, .cpcon = 8 }, /* OSC: 12.0 MHz */
105 { .n = 600, .m = 26, .p = 0, .cpcon = 8 }, /* OSC: 26.0 MHz */
Tom Warren3e8650c2015-06-22 13:03:44 -0700106 { .n = 0, .m = 0, .p = 0, .cpcon = 0 }, /* OSC: 38.4 MHz (N/A) */
107 { .n = 0, .m = 0, .p = 0, .cpcon = 0 }, /* OSC: 48.0 MHz (N/A) */
Tom Warren1b245fe2012-12-11 13:34:13 +0000108 },
Jimmy Zhang44de8e22013-09-23 22:07:49 +0200109 /*
110 * T114: 700 MHz
111 *
112 * Register Field Bits Width
113 * ------------------------------
114 * PLLX_BASE p 23:20 4
115 * PLLX_BASE n 15: 8 8
116 * PLLX_BASE m 7: 0 8
117 */
118 {
119 { .n = 108, .m = 1, .p = 1 }, /* OSC: 13.0 MHz */
120 { .n = 73, .m = 1, .p = 1 }, /* OSC: 19.2 MHz */
121 { .n = 116, .m = 1, .p = 1 }, /* OSC: 12.0 MHz */
122 { .n = 108, .m = 2, .p = 1 }, /* OSC: 26.0 MHz */
Tom Warren3e8650c2015-06-22 13:03:44 -0700123 { .n = 0, .m = 0, .p = 0 }, /* OSC: 38.4 MHz (N/A) */
124 { .n = 0, .m = 0, .p = 0 }, /* OSC: 48.0 MHz (N/A) */
Tom Warren4040ec12013-01-28 13:32:08 +0000125 },
Tom Warren32edd2e2014-01-24 12:46:14 -0700126
127 /*
128 * T124: 700 MHz
129 *
130 * Register Field Bits Width
131 * ------------------------------
132 * PLLX_BASE p 23:20 4
133 * PLLX_BASE n 15: 8 8
134 * PLLX_BASE m 7: 0 8
135 */
136 {
137 { .n = 108, .m = 1, .p = 1 }, /* OSC: 13.0 MHz */
138 { .n = 73, .m = 1, .p = 1 }, /* OSC: 19.2 MHz */
139 { .n = 116, .m = 1, .p = 1 }, /* OSC: 12.0 MHz */
140 { .n = 108, .m = 2, .p = 1 }, /* OSC: 26.0 MHz */
Tom Warren3e8650c2015-06-22 13:03:44 -0700141 { .n = 0, .m = 0, .p = 0 }, /* OSC: 38.4 MHz (N/A) */
142 { .n = 0, .m = 0, .p = 0 }, /* OSC: 48.0 MHz (N/A) */
Tom Warren32edd2e2014-01-24 12:46:14 -0700143 },
Tom Warren7aaa5a62015-03-04 16:36:00 -0700144
145 /*
146 * T210: 700 MHz
147 *
148 * Register Field Bits Width
149 * ------------------------------
150 * PLLX_BASE p 24:20 5
151 * PLLX_BASE n 15: 8 8
152 * PLLX_BASE m 7: 0 8
153 */
154 {
155 { .n = 108, .m = 1, .p = 1 }, /* OSC: 13.0 MHz = 702 MHz*/
156 { .n = 73, .m = 1, .p = 1 }, /* OSC: 19.2 MHz = 700.8 MHz*/
157 { .n = 116, .m = 1, .p = 1 }, /* OSC: 12.0 MHz = 696 MHz*/
158 { .n = 108, .m = 2, .p = 1 }, /* OSC: 26.0 MHz = 702 MHz*/
Tom Warren3e8650c2015-06-22 13:03:44 -0700159 { .n = 36, .m = 1, .p = 1 }, /* OSC: 38.4 MHz = 691.2 MHz */
160 { .n = 58, .m = 2, .p = 1 }, /* OSC: 48.0 MHz = 696 MHz */
Tom Warren7aaa5a62015-03-04 16:36:00 -0700161 },
Tom Warren1b245fe2012-12-11 13:34:13 +0000162};
163
Tom Warren32edd2e2014-01-24 12:46:14 -0700164static inline void pllx_set_iddq(void)
165{
Tom Warren7aaa5a62015-03-04 16:36:00 -0700166#if defined(CONFIG_TEGRA124) || defined(CONFIG_TEGRA210)
Tom Warren32edd2e2014-01-24 12:46:14 -0700167 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
168 u32 reg;
Tom Warren7aaa5a62015-03-04 16:36:00 -0700169 debug("%s entry\n", __func__);
Tom Warren32edd2e2014-01-24 12:46:14 -0700170
171 /* Disable IDDQ */
172 reg = readl(&clkrst->crc_pllx_misc3);
173 reg &= ~PLLX_IDDQ_MASK;
174 writel(reg, &clkrst->crc_pllx_misc3);
175 udelay(2);
176 debug("%s: IDDQ: PLLX IDDQ = 0x%08X\n", __func__,
177 readl(&clkrst->crc_pllx_misc3));
178#endif
179}
180
Tom Warren1b245fe2012-12-11 13:34:13 +0000181int pllx_set_rate(struct clk_pll_simple *pll , u32 divn, u32 divm,
182 u32 divp, u32 cpcon)
183{
Thierry Reding4475c772013-10-01 17:04:45 +0200184 int chip = tegra_get_chip();
Tom Warren1b245fe2012-12-11 13:34:13 +0000185 u32 reg;
Tom Warren7aaa5a62015-03-04 16:36:00 -0700186 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000187
188 /* If PLLX is already enabled, just return */
189 if (readl(&pll->pll_base) & PLL_ENABLE_MASK) {
Tom Warren7aaa5a62015-03-04 16:36:00 -0700190 debug("%s: PLLX already enabled, returning\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000191 return 0;
192 }
193
Tom Warren32edd2e2014-01-24 12:46:14 -0700194 pllx_set_iddq();
195
Tom Warren1b245fe2012-12-11 13:34:13 +0000196 /* Set BYPASS, m, n and p to PLLX_BASE */
197 reg = PLL_BYPASS_MASK | (divm << PLL_DIVM_SHIFT);
198 reg |= ((divn << PLL_DIVN_SHIFT) | (divp << PLL_DIVP_SHIFT));
199 writel(reg, &pll->pll_base);
200
201 /* Set cpcon to PLLX_MISC */
Thierry Reding4475c772013-10-01 17:04:45 +0200202 if (chip == CHIPID_TEGRA20 || chip == CHIPID_TEGRA30)
203 reg = (cpcon << PLL_CPCON_SHIFT);
204 else
205 reg = 0;
Tom Warren1b245fe2012-12-11 13:34:13 +0000206
207 /* Set dccon to PLLX_MISC if freq > 600MHz */
208 if (divn > 600)
209 reg |= (1 << PLL_DCCON_SHIFT);
210 writel(reg, &pll->pll_misc);
211
Tom Warren1b245fe2012-12-11 13:34:13 +0000212 /* Disable BYPASS */
Stephen Warren41447fb2014-01-24 12:46:09 -0700213 reg = readl(&pll->pll_base);
Tom Warren1b245fe2012-12-11 13:34:13 +0000214 reg &= ~PLL_BYPASS_MASK;
215 writel(reg, &pll->pll_base);
Tom Warren7aaa5a62015-03-04 16:36:00 -0700216 debug("%s: base = 0x%08X\n", __func__, reg);
Tom Warren1b245fe2012-12-11 13:34:13 +0000217
218 /* Set lock_enable to PLLX_MISC */
219 reg = readl(&pll->pll_misc);
220 reg |= PLL_LOCK_ENABLE_MASK;
221 writel(reg, &pll->pll_misc);
Tom Warren7aaa5a62015-03-04 16:36:00 -0700222 debug("%s: misc = 0x%08X\n", __func__, reg);
Stephen Warren41447fb2014-01-24 12:46:09 -0700223
224 /* Enable PLLX last, once it's all configured */
225 reg = readl(&pll->pll_base);
226 reg |= PLL_ENABLE_MASK;
227 writel(reg, &pll->pll_base);
Tom Warren7aaa5a62015-03-04 16:36:00 -0700228 debug("%s: base final = 0x%08X\n", __func__, reg);
Tom Warren1b245fe2012-12-11 13:34:13 +0000229
230 return 0;
231}
232
233void init_pllx(void)
234{
235 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
236 struct clk_pll_simple *pll = &clkrst->crc_pll_simple[SIMPLE_PLLX];
Tom Warren49493cb2013-04-10 10:32:32 -0700237 int soc_type, sku_info, chip_sku;
Tom Warren1b245fe2012-12-11 13:34:13 +0000238 enum clock_osc_freq osc;
239 struct clk_pll_table *sel;
Tom Warren7aaa5a62015-03-04 16:36:00 -0700240 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000241
Tom Warren49493cb2013-04-10 10:32:32 -0700242 /* get SOC (chip) type */
243 soc_type = tegra_get_chip();
Tom Warren7aaa5a62015-03-04 16:36:00 -0700244 debug("%s: SoC = 0x%02X\n", __func__, soc_type);
Tom Warren49493cb2013-04-10 10:32:32 -0700245
246 /* get SKU info */
247 sku_info = tegra_get_sku_info();
Tom Warren7aaa5a62015-03-04 16:36:00 -0700248 debug("%s: SKU info byte = 0x%02X\n", __func__, sku_info);
Tom Warren49493cb2013-04-10 10:32:32 -0700249
250 /* get chip SKU, combo of the above info */
251 chip_sku = tegra_get_chip_sku();
Tom Warren7aaa5a62015-03-04 16:36:00 -0700252 debug("%s: Chip SKU = %d\n", __func__, chip_sku);
Tom Warren1b245fe2012-12-11 13:34:13 +0000253
254 /* get osc freq */
255 osc = clock_get_osc_freq();
Tom Warren7aaa5a62015-03-04 16:36:00 -0700256 debug("%s: osc = %d\n", __func__, osc);
Tom Warren1b245fe2012-12-11 13:34:13 +0000257
258 /* set pllx */
Tom Warren49493cb2013-04-10 10:32:32 -0700259 sel = &tegra_pll_x_table[chip_sku][osc];
Tom Warren1b245fe2012-12-11 13:34:13 +0000260 pllx_set_rate(pll, sel->n, sel->m, sel->p, sel->cpcon);
Tom Warren1b245fe2012-12-11 13:34:13 +0000261}
262
263void enable_cpu_clock(int enable)
264{
265 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
266 u32 clk;
Tom Warren7aaa5a62015-03-04 16:36:00 -0700267 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000268
269 /*
270 * NOTE:
271 * Regardless of whether the request is to enable or disable the CPU
272 * clock, every processor in the CPU complex except the master (CPU 0)
273 * will have it's clock stopped because the AVP only talks to the
274 * master.
275 */
276
277 if (enable) {
278 /* Initialize PLLX */
279 init_pllx();
280
281 /* Wait until all clocks are stable */
282 udelay(PLL_STABILIZATION_DELAY);
283
284 writel(CCLK_BURST_POLICY, &clkrst->crc_cclk_brst_pol);
285 writel(SUPER_CCLK_DIVIDER, &clkrst->crc_super_cclk_div);
286 }
287
288 /*
289 * Read the register containing the individual CPU clock enables and
290 * always stop the clocks to CPUs > 0.
291 */
292 clk = readl(&clkrst->crc_clk_cpu_cmplx);
293 clk |= 1 << CPU1_CLK_STP_SHIFT;
Tom Warren4040ec12013-01-28 13:32:08 +0000294 if (get_num_cpus() == 4)
295 clk |= (1 << CPU2_CLK_STP_SHIFT) + (1 << CPU3_CLK_STP_SHIFT);
296
Tom Warren1b245fe2012-12-11 13:34:13 +0000297 /* Stop/Unstop the CPU clock */
298 clk &= ~CPU0_CLK_STP_MASK;
299 clk |= !enable << CPU0_CLK_STP_SHIFT;
300 writel(clk, &clkrst->crc_clk_cpu_cmplx);
301
302 clock_enable(PERIPH_ID_CPU);
303}
304
305static int is_cpu_powered(void)
306{
307 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
308
309 return (readl(&pmc->pmc_pwrgate_status) & CPU_PWRED) ? 1 : 0;
310}
311
312static void remove_cpu_io_clamps(void)
313{
314 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
315 u32 reg;
Tom Warren7aaa5a62015-03-04 16:36:00 -0700316 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000317
318 /* Remove the clamps on the CPU I/O signals */
319 reg = readl(&pmc->pmc_remove_clamping);
320 reg |= CPU_CLMP;
321 writel(reg, &pmc->pmc_remove_clamping);
322
323 /* Give I/O signals time to stabilize */
324 udelay(IO_STABILIZATION_DELAY);
325}
326
327void powerup_cpu(void)
328{
329 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
330 u32 reg;
331 int timeout = IO_STABILIZATION_DELAY;
Tom Warren7aaa5a62015-03-04 16:36:00 -0700332 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000333
334 if (!is_cpu_powered()) {
335 /* Toggle the CPU power state (OFF -> ON) */
336 reg = readl(&pmc->pmc_pwrgate_toggle);
337 reg &= PARTID_CP;
338 reg |= START_CP;
339 writel(reg, &pmc->pmc_pwrgate_toggle);
340
341 /* Wait for the power to come up */
342 while (!is_cpu_powered()) {
343 if (timeout-- == 0)
344 printf("CPU failed to power up!\n");
345 else
346 udelay(10);
347 }
348
349 /*
350 * Remove the I/O clamps from CPU power partition.
351 * Recommended only on a Warm boot, if the CPU partition gets
352 * power gated. Shouldn't cause any harm when called after a
353 * cold boot according to HW, probably just redundant.
354 */
355 remove_cpu_io_clamps();
356 }
357}
358
359void reset_A9_cpu(int reset)
360{
361 /*
362 * NOTE: Regardless of whether the request is to hold the CPU in reset
363 * or take it out of reset, every processor in the CPU complex
364 * except the master (CPU 0) will be held in reset because the
365 * AVP only talks to the master. The AVP does not know that there
366 * are multiple processors in the CPU complex.
367 */
368 int mask = crc_rst_cpu | crc_rst_de | crc_rst_debug;
369 int num_cpus = get_num_cpus();
370 int cpu;
371
Tom Warren7aaa5a62015-03-04 16:36:00 -0700372 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000373 /* Hold CPUs 1 onwards in reset, and CPU 0 if asked */
374 for (cpu = 1; cpu < num_cpus; cpu++)
375 reset_cmplx_set_enable(cpu, mask, 1);
376 reset_cmplx_set_enable(0, mask, reset);
377
378 /* Enable/Disable master CPU reset */
379 reset_set_enable(PERIPH_ID_CPU, reset);
380}
381
382void clock_enable_coresight(int enable)
383{
Tom Warren4040ec12013-01-28 13:32:08 +0000384 u32 rst, src = 2;
Tom Warren1b245fe2012-12-11 13:34:13 +0000385
Tom Warren7aaa5a62015-03-04 16:36:00 -0700386 debug("%s entry\n", __func__);
Tom Warren1b245fe2012-12-11 13:34:13 +0000387 clock_set_enable(PERIPH_ID_CORESIGHT, enable);
388 reset_set_enable(PERIPH_ID_CORESIGHT, !enable);
389
390 if (enable) {
391 /*
Tom Warren49493cb2013-04-10 10:32:32 -0700392 * Put CoreSight on PLLP_OUT0 and divide it down as per
Tom Warren32edd2e2014-01-24 12:46:14 -0700393 * PLLP base frequency based on SoC type (T20/T30+).
Tom Warren49493cb2013-04-10 10:32:32 -0700394 * Clock divider request would setup CSITE clock as 144MHz
395 * for PLLP base 216MHz and 204MHz for PLLP base 408MHz
Tom Warren1b245fe2012-12-11 13:34:13 +0000396 */
Stephen Warrena4bcd672014-01-24 12:46:10 -0700397 src = CLK_DIVIDER(NVBL_PLLP_KHZ, CSITE_KHZ);
Tom Warren1b245fe2012-12-11 13:34:13 +0000398 clock_ll_set_source_divisor(PERIPH_ID_CSI, 0, src);
399
400 /* Unlock the CPU CoreSight interfaces */
401 rst = CORESIGHT_UNLOCK;
402 writel(rst, CSITE_CPU_DBG0_LAR);
403 writel(rst, CSITE_CPU_DBG1_LAR);
Tom Warren4040ec12013-01-28 13:32:08 +0000404 if (get_num_cpus() == 4) {
405 writel(rst, CSITE_CPU_DBG2_LAR);
406 writel(rst, CSITE_CPU_DBG3_LAR);
407 }
Tom Warren1b245fe2012-12-11 13:34:13 +0000408 }
409}
410
411void halt_avp(void)
412{
Tom Warren7aaa5a62015-03-04 16:36:00 -0700413 debug("%s entry\n", __func__);
414
Tom Warren1b245fe2012-12-11 13:34:13 +0000415 for (;;) {
Stephen Warren716ff5c2014-02-03 14:03:27 -0700416 writel(HALT_COP_EVENT_JTAG | (FLOW_MODE_STOP << 29),
417 FLOW_CTLR_HALT_COP_EVENTS);
Tom Warren1b245fe2012-12-11 13:34:13 +0000418 }
419}