xref: /rk3399_rockchip-uboot/arch/arm/mach-tegra/cpu.c (revision 3e8650c0f9cc7fb29bd75c11d0173768fcc80203)
1 /*
2  * Copyright (c) 2010-2015, NVIDIA CORPORATION.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms and conditions of the GNU General Public License,
6  * version 2, as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11  * more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #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 
28 int get_num_cpus(void)
29 {
30 	struct apb_misc_gp_ctlr *gp;
31 	uint rev;
32 	debug("%s entry\n", __func__);
33 
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:
43 	case CHIPID_TEGRA124:
44 	case CHIPID_TEGRA210:
45 	default:
46 		return 4;
47 		break;
48 	}
49 }
50 
51 /*
52  * Timing tables for each SOC for all four oscillator options.
53  */
54 struct clk_pll_table tegra_pll_x_table[TEGRA_SOC_CNT][CLOCK_OSC_FREQ_COUNT] = {
55 	/*
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 */
70 		{ .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) */
72 	},
73 	/*
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 */
88 		{ .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) */
90 	},
91 	/*
92 	 * T30: 600 MHz
93 	 *
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 	{
102 		{ .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 */
106 		{ .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) */
108 	},
109 	/*
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 */
123 		{ .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) */
125 	},
126 
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 */
141 		{ .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) */
143 	},
144 
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*/
159 		{ .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 */
161 	},
162 };
163 
164 static inline void pllx_set_iddq(void)
165 {
166 #if defined(CONFIG_TEGRA124) || defined(CONFIG_TEGRA210)
167 	struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
168 	u32 reg;
169 	debug("%s entry\n", __func__);
170 
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 
181 int pllx_set_rate(struct clk_pll_simple *pll , u32 divn, u32 divm,
182 		u32 divp, u32 cpcon)
183 {
184 	int chip = tegra_get_chip();
185 	u32 reg;
186 	debug("%s entry\n", __func__);
187 
188 	/* If PLLX is already enabled, just return */
189 	if (readl(&pll->pll_base) & PLL_ENABLE_MASK) {
190 		debug("%s: PLLX already enabled, returning\n", __func__);
191 		return 0;
192 	}
193 
194 	pllx_set_iddq();
195 
196 	/* 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 */
202 	if (chip == CHIPID_TEGRA20 || chip == CHIPID_TEGRA30)
203 		reg = (cpcon << PLL_CPCON_SHIFT);
204 	else
205 		reg = 0;
206 
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 
212 	/* Disable BYPASS */
213 	reg = readl(&pll->pll_base);
214 	reg &= ~PLL_BYPASS_MASK;
215 	writel(reg, &pll->pll_base);
216 	debug("%s: base = 0x%08X\n", __func__, reg);
217 
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);
222 	debug("%s: misc = 0x%08X\n", __func__, reg);
223 
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);
228 	debug("%s: base final = 0x%08X\n", __func__, reg);
229 
230 	return 0;
231 }
232 
233 void 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];
237 	int soc_type, sku_info, chip_sku;
238 	enum clock_osc_freq osc;
239 	struct clk_pll_table *sel;
240 	debug("%s entry\n", __func__);
241 
242 	/* get SOC (chip) type */
243 	soc_type = tegra_get_chip();
244 	debug("%s: SoC = 0x%02X\n", __func__, soc_type);
245 
246 	/* get SKU info */
247 	sku_info = tegra_get_sku_info();
248 	debug("%s: SKU info byte = 0x%02X\n", __func__, sku_info);
249 
250 	/* get chip SKU, combo of the above info */
251 	chip_sku = tegra_get_chip_sku();
252 	debug("%s: Chip SKU = %d\n", __func__, chip_sku);
253 
254 	/* get osc freq */
255 	osc = clock_get_osc_freq();
256 	debug("%s: osc = %d\n", __func__, osc);
257 
258 	/* set pllx */
259 	sel = &tegra_pll_x_table[chip_sku][osc];
260 	pllx_set_rate(pll, sel->n, sel->m, sel->p, sel->cpcon);
261 }
262 
263 void enable_cpu_clock(int enable)
264 {
265 	struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
266 	u32 clk;
267 	debug("%s entry\n", __func__);
268 
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;
294 	if (get_num_cpus() == 4)
295 		clk |= (1 << CPU2_CLK_STP_SHIFT) + (1 << CPU3_CLK_STP_SHIFT);
296 
297 	/* 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 
305 static 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 
312 static void remove_cpu_io_clamps(void)
313 {
314 	struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
315 	u32 reg;
316 	debug("%s entry\n", __func__);
317 
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 
327 void 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;
332 	debug("%s entry\n", __func__);
333 
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 
359 void 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 
372 	debug("%s entry\n", __func__);
373 	/* 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 
382 void clock_enable_coresight(int enable)
383 {
384 	u32 rst, src = 2;
385 
386 	debug("%s entry\n", __func__);
387 	clock_set_enable(PERIPH_ID_CORESIGHT, enable);
388 	reset_set_enable(PERIPH_ID_CORESIGHT, !enable);
389 
390 	if (enable) {
391 		/*
392 		 * Put CoreSight on PLLP_OUT0 and divide it down as per
393 		 * PLLP base frequency based on SoC type (T20/T30+).
394 		 * Clock divider request would setup CSITE clock as 144MHz
395 		 * for PLLP base 216MHz and 204MHz for PLLP base 408MHz
396 		 */
397 		src = CLK_DIVIDER(NVBL_PLLP_KHZ, CSITE_KHZ);
398 		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);
404 		if (get_num_cpus() == 4) {
405 			writel(rst, CSITE_CPU_DBG2_LAR);
406 			writel(rst, CSITE_CPU_DBG3_LAR);
407 		}
408 	}
409 }
410 
411 void halt_avp(void)
412 {
413 	debug("%s entry\n", __func__);
414 
415 	for (;;) {
416 		writel(HALT_COP_EVENT_JTAG | (FLOW_MODE_STOP << 29),
417 		       FLOW_CTLR_HALT_COP_EVENTS);
418 	}
419 }
420