ap20.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*
  2. * (C) Copyright 2010-2011
  3. * NVIDIA Corporation <www.nvidia.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  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.
  12. *
  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.
  17. *
  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,
  21. * MA 02111-1307 USA
  22. */
  23. #include "ap20.h"
  24. #include <asm/io.h>
  25. #include <asm/arch/tegra2.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>
  31. #include <common.h>
  32. u32 s_first_boot = 1;
  33. void init_pllx(void)
  34. {
  35. struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
  36. struct clk_pll *pll = &clkrst->crc_pll[CLOCK_PLL_ID_XCPU];
  37. u32 reg;
  38. /* If PLLX is already enabled, just return */
  39. if (readl(&pll->pll_base) & PLL_ENABLE_MASK)
  40. return;
  41. /* Set PLLX_MISC */
  42. writel(1 << PLL_CPCON_SHIFT, &pll->pll_misc);
  43. /* Use 12MHz clock here */
  44. reg = PLL_BYPASS_MASK | (12 << PLL_DIVM_SHIFT);
  45. reg |= 1000 << PLL_DIVN_SHIFT;
  46. writel(reg, &pll->pll_base);
  47. reg |= PLL_ENABLE_MASK;
  48. writel(reg, &pll->pll_base);
  49. reg &= ~PLL_BYPASS_MASK;
  50. writel(reg, &pll->pll_base);
  51. }
  52. static void enable_cpu_clock(int enable)
  53. {
  54. struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
  55. u32 clk;
  56. /*
  57. * NOTE:
  58. * Regardless of whether the request is to enable or disable the CPU
  59. * clock, every processor in the CPU complex except the master (CPU 0)
  60. * will have it's clock stopped because the AVP only talks to the
  61. * master. The AVP does not know (nor does it need to know) that there
  62. * are multiple processors in the CPU complex.
  63. */
  64. if (enable) {
  65. /* Initialize PLLX */
  66. init_pllx();
  67. /* Wait until all clocks are stable */
  68. udelay(PLL_STABILIZATION_DELAY);
  69. writel(CCLK_BURST_POLICY, &clkrst->crc_cclk_brst_pol);
  70. writel(SUPER_CCLK_DIVIDER, &clkrst->crc_super_cclk_div);
  71. }
  72. /*
  73. * Read the register containing the individual CPU clock enables and
  74. * always stop the clock to CPU 1.
  75. */
  76. clk = readl(&clkrst->crc_clk_cpu_cmplx);
  77. clk |= 1 << CPU1_CLK_STP_SHIFT;
  78. /* Stop/Unstop the CPU clock */
  79. clk &= ~CPU0_CLK_STP_MASK;
  80. clk |= !enable << CPU0_CLK_STP_SHIFT;
  81. writel(clk, &clkrst->crc_clk_cpu_cmplx);
  82. clock_enable(PERIPH_ID_CPU);
  83. }
  84. static int is_cpu_powered(void)
  85. {
  86. struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  87. return (readl(&pmc->pmc_pwrgate_status) & CPU_PWRED) ? 1 : 0;
  88. }
  89. static void remove_cpu_io_clamps(void)
  90. {
  91. struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  92. u32 reg;
  93. /* Remove the clamps on the CPU I/O signals */
  94. reg = readl(&pmc->pmc_remove_clamping);
  95. reg |= CPU_CLMP;
  96. writel(reg, &pmc->pmc_remove_clamping);
  97. /* Give I/O signals time to stabilize */
  98. udelay(IO_STABILIZATION_DELAY);
  99. }
  100. static void powerup_cpu(void)
  101. {
  102. struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  103. u32 reg;
  104. int timeout = IO_STABILIZATION_DELAY;
  105. if (!is_cpu_powered()) {
  106. /* Toggle the CPU power state (OFF -> ON) */
  107. reg = readl(&pmc->pmc_pwrgate_toggle);
  108. reg &= PARTID_CP;
  109. reg |= START_CP;
  110. writel(reg, &pmc->pmc_pwrgate_toggle);
  111. /* Wait for the power to come up */
  112. while (!is_cpu_powered()) {
  113. if (timeout-- == 0)
  114. printf("CPU failed to power up!\n");
  115. else
  116. udelay(10);
  117. }
  118. /*
  119. * Remove the I/O clamps from CPU power partition.
  120. * Recommended only on a Warm boot, if the CPU partition gets
  121. * power gated. Shouldn't cause any harm when called after a
  122. * cold boot according to HW, probably just redundant.
  123. */
  124. remove_cpu_io_clamps();
  125. }
  126. }
  127. static void enable_cpu_power_rail(void)
  128. {
  129. struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  130. u32 reg;
  131. reg = readl(&pmc->pmc_cntrl);
  132. reg |= CPUPWRREQ_OE;
  133. writel(reg, &pmc->pmc_cntrl);
  134. /*
  135. * The TI PMU65861C needs a 3.75ms delay between enabling
  136. * the power rail and enabling the CPU clock. This delay
  137. * between SM1EN and SM1 is for switching time + the ramp
  138. * up of the voltage to the CPU (VDD_CPU from PMU).
  139. */
  140. udelay(3750);
  141. }
  142. static void reset_A9_cpu(int reset)
  143. {
  144. /*
  145. * NOTE: Regardless of whether the request is to hold the CPU in reset
  146. * or take it out of reset, every processor in the CPU complex
  147. * except the master (CPU 0) will be held in reset because the
  148. * AVP only talks to the master. The AVP does not know that there
  149. * are multiple processors in the CPU complex.
  150. */
  151. /* Hold CPU 1 in reset, and CPU 0 if asked */
  152. reset_cmplx_set_enable(1, crc_rst_cpu | crc_rst_de | crc_rst_debug, 1);
  153. reset_cmplx_set_enable(0, crc_rst_cpu | crc_rst_de | crc_rst_debug,
  154. reset);
  155. /* Enable/Disable master CPU reset */
  156. reset_set_enable(PERIPH_ID_CPU, reset);
  157. }
  158. static void clock_enable_coresight(int enable)
  159. {
  160. struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
  161. u32 rst, src;
  162. clock_set_enable(PERIPH_ID_CORESIGHT, enable);
  163. reset_set_enable(PERIPH_ID_CORESIGHT, !enable);
  164. if (enable) {
  165. /*
  166. * Put CoreSight on PLLP_OUT0 (216 MHz) and divide it down by
  167. * 1.5, giving an effective frequency of 144MHz.
  168. * Set PLLP_OUT0 [bits31:30 = 00], and use a 7.1 divisor
  169. * (bits 7:0), so 00000001b == 1.5 (n+1 + .5)
  170. */
  171. src = CLK_DIVIDER(NVBL_PLLP_KHZ, 144000);
  172. writel(src, &clkrst->crc_clk_src_csite);
  173. /* Unlock the CPU CoreSight interfaces */
  174. rst = 0xC5ACCE55;
  175. writel(rst, CSITE_CPU_DBG0_LAR);
  176. writel(rst, CSITE_CPU_DBG1_LAR);
  177. }
  178. }
  179. void start_cpu(u32 reset_vector)
  180. {
  181. /* Enable VDD_CPU */
  182. enable_cpu_power_rail();
  183. /* Hold the CPUs in reset */
  184. reset_A9_cpu(1);
  185. /* Disable the CPU clock */
  186. enable_cpu_clock(0);
  187. /* Enable CoreSight */
  188. clock_enable_coresight(1);
  189. /*
  190. * Set the entry point for CPU execution from reset,
  191. * if it's a non-zero value.
  192. */
  193. if (reset_vector)
  194. writel(reset_vector, EXCEP_VECTOR_CPU_RESET_VECTOR);
  195. /* Enable the CPU clock */
  196. enable_cpu_clock(1);
  197. /* If the CPU doesn't already have power, power it up */
  198. powerup_cpu();
  199. /* Take the CPU out of reset */
  200. reset_A9_cpu(0);
  201. }
  202. void halt_avp(void)
  203. {
  204. for (;;) {
  205. writel((HALT_COP_EVENT_JTAG | HALT_COP_EVENT_IRQ_1 \
  206. | HALT_COP_EVENT_FIQ_1 | (FLOW_MODE_STOP<<29)),
  207. FLOW_CTLR_HALT_COP_EVENTS);
  208. }
  209. }
  210. void enable_scu(void)
  211. {
  212. struct scu_ctlr *scu = (struct scu_ctlr *)NV_PA_ARM_PERIPHBASE;
  213. u32 reg;
  214. /* If SCU already setup/enabled, return */
  215. if (readl(&scu->scu_ctrl) & SCU_CTRL_ENABLE)
  216. return;
  217. /* Invalidate all ways for all processors */
  218. writel(0xFFFF, &scu->scu_inv_all);
  219. /* Enable SCU - bit 0 */
  220. reg = readl(&scu->scu_ctrl);
  221. reg |= SCU_CTRL_ENABLE;
  222. writel(reg, &scu->scu_ctrl);
  223. }
  224. void init_pmc_scratch(void)
  225. {
  226. struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  227. int i;
  228. /* SCRATCH0 is initialized by the boot ROM and shouldn't be cleared */
  229. for (i = 0; i < 23; i++)
  230. writel(0, &pmc->pmc_scratch1+i);
  231. /* ODMDATA is for kernel use to determine RAM size, LP config, etc. */
  232. writel(CONFIG_SYS_BOARD_ODMDATA, &pmc->pmc_scratch20);
  233. }
  234. void cpu_start(void)
  235. {
  236. struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
  237. /* enable JTAG */
  238. writel(0xC0, &pmt->pmt_cfg_ctl);
  239. if (s_first_boot) {
  240. /*
  241. * Need to set this before cold-booting,
  242. * otherwise we'll end up in an infinite loop.
  243. */
  244. s_first_boot = 0;
  245. cold_boot();
  246. }
  247. }
  248. void tegra2_start()
  249. {
  250. if (s_first_boot) {
  251. /* Init Debug UART Port (115200 8n1) */
  252. uart_init();
  253. /* Init PMC scratch memory */
  254. init_pmc_scratch();
  255. }
  256. #ifdef CONFIG_ENABLE_CORTEXA9
  257. /* take the mpcore out of reset */
  258. cpu_start();
  259. /* configure cache */
  260. cache_configure();
  261. #endif
  262. }