2 * (C) Copyright 2010-2011
3 * NVIDIA Corporation <www.nvidia.com>
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 #include <asm/arch/tegra20.h>
26 #include <asm/arch/clk_rst.h>
27 #include <asm/arch/clock.h>
28 #include <asm/arch/pmc.h>
29 #include <asm/arch/pinmux.h>
30 #include <asm/arch/scu.h>
34 /* Returns 1 if the current CPU executing is a Cortex-A9, else 0 */
35 int ap20_cpu_is_cortexa9(void)
37 u32 id = readb(NV_PA_PG_UP_BASE + PG_UP_TAG_0);
38 return id == (PG_UP_TAG_0_PID_CPU & 0xff);
43 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
44 struct clk_pll *pll = &clkrst->crc_pll[CLOCK_ID_XCPU];
47 /* If PLLX is already enabled, just return */
48 if (readl(&pll->pll_base) & PLL_ENABLE_MASK)
52 writel(1 << PLL_CPCON_SHIFT, &pll->pll_misc);
54 /* Use 12MHz clock here */
55 reg = PLL_BYPASS_MASK | (12 << PLL_DIVM_SHIFT);
56 reg |= 1000 << PLL_DIVN_SHIFT;
57 writel(reg, &pll->pll_base);
59 reg |= PLL_ENABLE_MASK;
60 writel(reg, &pll->pll_base);
62 reg &= ~PLL_BYPASS_MASK;
63 writel(reg, &pll->pll_base);
66 static void enable_cpu_clock(int enable)
68 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
73 * Regardless of whether the request is to enable or disable the CPU
74 * clock, every processor in the CPU complex except the master (CPU 0)
75 * will have it's clock stopped because the AVP only talks to the
76 * master. The AVP does not know (nor does it need to know) that there
77 * are multiple processors in the CPU complex.
84 /* Wait until all clocks are stable */
85 udelay(PLL_STABILIZATION_DELAY);
87 writel(CCLK_BURST_POLICY, &clkrst->crc_cclk_brst_pol);
88 writel(SUPER_CCLK_DIVIDER, &clkrst->crc_super_cclk_div);
92 * Read the register containing the individual CPU clock enables and
93 * always stop the clock to CPU 1.
95 clk = readl(&clkrst->crc_clk_cpu_cmplx);
96 clk |= 1 << CPU1_CLK_STP_SHIFT;
98 /* Stop/Unstop the CPU clock */
99 clk &= ~CPU0_CLK_STP_MASK;
100 clk |= !enable << CPU0_CLK_STP_SHIFT;
101 writel(clk, &clkrst->crc_clk_cpu_cmplx);
103 clock_enable(PERIPH_ID_CPU);
106 static int is_cpu_powered(void)
108 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
110 return (readl(&pmc->pmc_pwrgate_status) & CPU_PWRED) ? 1 : 0;
113 static void remove_cpu_io_clamps(void)
115 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
118 /* Remove the clamps on the CPU I/O signals */
119 reg = readl(&pmc->pmc_remove_clamping);
121 writel(reg, &pmc->pmc_remove_clamping);
123 /* Give I/O signals time to stabilize */
124 udelay(IO_STABILIZATION_DELAY);
127 static void powerup_cpu(void)
129 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
131 int timeout = IO_STABILIZATION_DELAY;
133 if (!is_cpu_powered()) {
134 /* Toggle the CPU power state (OFF -> ON) */
135 reg = readl(&pmc->pmc_pwrgate_toggle);
138 writel(reg, &pmc->pmc_pwrgate_toggle);
140 /* Wait for the power to come up */
141 while (!is_cpu_powered()) {
143 printf("CPU failed to power up!\n");
149 * Remove the I/O clamps from CPU power partition.
150 * Recommended only on a Warm boot, if the CPU partition gets
151 * power gated. Shouldn't cause any harm when called after a
152 * cold boot according to HW, probably just redundant.
154 remove_cpu_io_clamps();
158 static void enable_cpu_power_rail(void)
160 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
163 reg = readl(&pmc->pmc_cntrl);
165 writel(reg, &pmc->pmc_cntrl);
168 * The TI PMU65861C needs a 3.75ms delay between enabling
169 * the power rail and enabling the CPU clock. This delay
170 * between SM1EN and SM1 is for switching time + the ramp
171 * up of the voltage to the CPU (VDD_CPU from PMU).
176 static void reset_A9_cpu(int reset)
179 * NOTE: Regardless of whether the request is to hold the CPU in reset
180 * or take it out of reset, every processor in the CPU complex
181 * except the master (CPU 0) will be held in reset because the
182 * AVP only talks to the master. The AVP does not know that there
183 * are multiple processors in the CPU complex.
186 /* Hold CPU 1 in reset, and CPU 0 if asked */
187 reset_cmplx_set_enable(1, crc_rst_cpu | crc_rst_de | crc_rst_debug, 1);
188 reset_cmplx_set_enable(0, crc_rst_cpu | crc_rst_de | crc_rst_debug,
191 /* Enable/Disable master CPU reset */
192 reset_set_enable(PERIPH_ID_CPU, reset);
195 static void clock_enable_coresight(int enable)
199 clock_set_enable(PERIPH_ID_CORESIGHT, enable);
200 reset_set_enable(PERIPH_ID_CORESIGHT, !enable);
204 * Put CoreSight on PLLP_OUT0 (216 MHz) and divide it down by
205 * 1.5, giving an effective frequency of 144MHz.
206 * Set PLLP_OUT0 [bits31:30 = 00], and use a 7.1 divisor
207 * (bits 7:0), so 00000001b == 1.5 (n+1 + .5)
209 src = CLK_DIVIDER(NVBL_PLLP_KHZ, 144000);
210 clock_ll_set_source_divisor(PERIPH_ID_CSI, 0, src);
212 /* Unlock the CPU CoreSight interfaces */
214 writel(rst, CSITE_CPU_DBG0_LAR);
215 writel(rst, CSITE_CPU_DBG1_LAR);
219 void start_cpu(u32 reset_vector)
222 enable_cpu_power_rail();
224 /* Hold the CPUs in reset */
227 /* Disable the CPU clock */
230 /* Enable CoreSight */
231 clock_enable_coresight(1);
234 * Set the entry point for CPU execution from reset,
235 * if it's a non-zero value.
238 writel(reset_vector, EXCEP_VECTOR_CPU_RESET_VECTOR);
240 /* Enable the CPU clock */
243 /* If the CPU doesn't already have power, power it up */
246 /* Take the CPU out of reset */
254 writel((HALT_COP_EVENT_JTAG | HALT_COP_EVENT_IRQ_1 \
255 | HALT_COP_EVENT_FIQ_1 | (FLOW_MODE_STOP<<29)),
256 FLOW_CTLR_HALT_COP_EVENTS);