warmboot_avp.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * (C) Copyright 2010 - 2011
  3. * NVIDIA Corporation <www.nvidia.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <asm/io.h>
  9. #include <asm/arch/clock.h>
  10. #include <asm/arch/flow.h>
  11. #include <asm/arch/pinmux.h>
  12. #include <asm/arch/tegra.h>
  13. #include <asm/arch-tegra/ap.h>
  14. #include <asm/arch-tegra/apb_misc.h>
  15. #include <asm/arch-tegra/clk_rst.h>
  16. #include <asm/arch-tegra/pmc.h>
  17. #include <asm/arch-tegra/warmboot.h>
  18. #include "warmboot_avp.h"
  19. #define DEBUG_RESET_CORESIGHT
  20. void wb_start(void)
  21. {
  22. struct apb_misc_pp_ctlr *apb_misc =
  23. (struct apb_misc_pp_ctlr *)NV_PA_APB_MISC_BASE;
  24. struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  25. struct flow_ctlr *flow = (struct flow_ctlr *)NV_PA_FLOW_BASE;
  26. struct clk_rst_ctlr *clkrst =
  27. (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
  28. union osc_ctrl_reg osc_ctrl;
  29. union pllx_base_reg pllx_base;
  30. union pllx_misc_reg pllx_misc;
  31. union scratch3_reg scratch3;
  32. u32 reg;
  33. /* enable JTAG & TBE */
  34. writel(CONFIG_CTL_TBE | CONFIG_CTL_JTAG, &apb_misc->cfg_ctl);
  35. /* Are we running where we're supposed to be? */
  36. asm volatile (
  37. "adr %0, wb_start;" /* reg: wb_start address */
  38. : "=r"(reg) /* output */
  39. /* no input, no clobber list */
  40. );
  41. if (reg != NV_WB_RUN_ADDRESS)
  42. goto do_reset;
  43. /* Are we running with AVP? */
  44. if (readl(NV_PA_PG_UP_BASE + PG_UP_TAG_0) != PG_UP_TAG_AVP)
  45. goto do_reset;
  46. #ifdef DEBUG_RESET_CORESIGHT
  47. /* Assert CoreSight reset */
  48. reg = readl(&clkrst->crc_rst_dev[TEGRA_DEV_U]);
  49. reg |= SWR_CSITE_RST;
  50. writel(reg, &clkrst->crc_rst_dev[TEGRA_DEV_U]);
  51. #endif
  52. /* TODO: Set the drive strength - maybe make this a board parameter? */
  53. osc_ctrl.word = readl(&clkrst->crc_osc_ctrl);
  54. osc_ctrl.xofs = 4;
  55. osc_ctrl.xoe = 1;
  56. writel(osc_ctrl.word, &clkrst->crc_osc_ctrl);
  57. /* Power up the CPU complex if necessary */
  58. if (!(readl(&pmc->pmc_pwrgate_status) & PWRGATE_STATUS_CPU)) {
  59. reg = PWRGATE_TOGGLE_PARTID_CPU | PWRGATE_TOGGLE_START;
  60. writel(reg, &pmc->pmc_pwrgate_toggle);
  61. while (!(readl(&pmc->pmc_pwrgate_status) & PWRGATE_STATUS_CPU))
  62. ;
  63. }
  64. /* Remove the I/O clamps from the CPU power partition. */
  65. reg = readl(&pmc->pmc_remove_clamping);
  66. reg |= CPU_CLMP;
  67. writel(reg, &pmc->pmc_remove_clamping);
  68. reg = EVENT_ZERO_VAL_20 | EVENT_MSEC | EVENT_MODE_STOP;
  69. writel(reg, &flow->halt_cop_events);
  70. /* Assert CPU complex reset */
  71. reg = readl(&clkrst->crc_rst_dev[TEGRA_DEV_L]);
  72. reg |= CPU_RST;
  73. writel(reg, &clkrst->crc_rst_dev[TEGRA_DEV_L]);
  74. /* Hold both CPUs in reset */
  75. reg = CPU_CMPLX_CPURESET0 | CPU_CMPLX_CPURESET1 | CPU_CMPLX_DERESET0 |
  76. CPU_CMPLX_DERESET1 | CPU_CMPLX_DBGRESET0 | CPU_CMPLX_DBGRESET1;
  77. writel(reg, &clkrst->crc_cpu_cmplx_set);
  78. /* Halt CPU1 at the flow controller for uni-processor configurations */
  79. writel(EVENT_MODE_STOP, &flow->halt_cpu1_events);
  80. /*
  81. * Set the CPU reset vector. SCRATCH41 contains the physical
  82. * address of the CPU-side restoration code.
  83. */
  84. reg = readl(&pmc->pmc_scratch41);
  85. writel(reg, EXCEP_VECTOR_CPU_RESET_VECTOR);
  86. /* Select CPU complex clock source */
  87. writel(CCLK_PLLP_BURST_POLICY, &clkrst->crc_cclk_brst_pol);
  88. /* Start the CPU0 clock and stop the CPU1 clock */
  89. reg = CPU_CMPLX_CPU_BRIDGE_CLKDIV_4 | CPU_CMPLX_CPU0_CLK_STP_RUN |
  90. CPU_CMPLX_CPU1_CLK_STP_STOP;
  91. writel(reg, &clkrst->crc_clk_cpu_cmplx);
  92. /* Enable the CPU complex clock */
  93. reg = readl(&clkrst->crc_clk_out_enb[TEGRA_DEV_L]);
  94. reg |= CLK_ENB_CPU;
  95. writel(reg, &clkrst->crc_clk_out_enb[TEGRA_DEV_L]);
  96. /* Make sure the resets were held for at least 2 microseconds */
  97. reg = readl(TIMER_USEC_CNTR);
  98. while (readl(TIMER_USEC_CNTR) <= (reg + 2))
  99. ;
  100. #ifdef DEBUG_RESET_CORESIGHT
  101. /*
  102. * De-assert CoreSight reset.
  103. * NOTE: We're leaving the CoreSight clock on the oscillator for
  104. * now. It will be restored to its original clock source
  105. * when the CPU-side restoration code runs.
  106. */
  107. reg = readl(&clkrst->crc_rst_dev[TEGRA_DEV_U]);
  108. reg &= ~SWR_CSITE_RST;
  109. writel(reg, &clkrst->crc_rst_dev[TEGRA_DEV_U]);
  110. #endif
  111. /* Unlock the CPU CoreSight interfaces */
  112. reg = 0xC5ACCE55;
  113. writel(reg, CSITE_CPU_DBG0_LAR);
  114. writel(reg, CSITE_CPU_DBG1_LAR);
  115. /*
  116. * Sample the microsecond timestamp again. This is the time we must
  117. * use when returning from LP0 for PLL stabilization delays.
  118. */
  119. reg = readl(TIMER_USEC_CNTR);
  120. writel(reg, &pmc->pmc_scratch1);
  121. pllx_base.word = 0;
  122. pllx_misc.word = 0;
  123. scratch3.word = readl(&pmc->pmc_scratch3);
  124. /* Get the OSC. For 19.2 MHz, use 19 to make the calculations easier */
  125. reg = (readl(TIMER_USEC_CFG) & USEC_CFG_DIVISOR_MASK) + 1;
  126. /*
  127. * According to the TRM, for 19.2MHz OSC, the USEC_DIVISOR is 0x5f, and
  128. * USEC_DIVIDEND is 0x04. So, if USEC_DIVISOR > 26, OSC is 19.2 MHz.
  129. *
  130. * reg is used to calculate the pllx freq, which is used to determine if
  131. * to set dccon or not.
  132. */
  133. if (reg > 26)
  134. reg = 19;
  135. /* PLLX_BASE.PLLX_DIVM */
  136. if (scratch3.pllx_base_divm == reg)
  137. reg = 0;
  138. else
  139. reg = 1;
  140. /* PLLX_BASE.PLLX_DIVN */
  141. pllx_base.divn = scratch3.pllx_base_divn;
  142. reg = scratch3.pllx_base_divn << reg;
  143. /* PLLX_BASE.PLLX_DIVP */
  144. pllx_base.divp = scratch3.pllx_base_divp;
  145. reg = reg >> scratch3.pllx_base_divp;
  146. pllx_base.bypass = 1;
  147. /* PLLX_MISC_DCCON must be set for pllx frequency > 600 MHz. */
  148. if (reg > 600)
  149. pllx_misc.dccon = 1;
  150. /* PLLX_MISC_LFCON */
  151. pllx_misc.lfcon = scratch3.pllx_misc_lfcon;
  152. /* PLLX_MISC_CPCON */
  153. pllx_misc.cpcon = scratch3.pllx_misc_cpcon;
  154. writel(pllx_misc.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_misc);
  155. writel(pllx_base.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_base);
  156. pllx_base.enable = 1;
  157. writel(pllx_base.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_base);
  158. pllx_base.bypass = 0;
  159. writel(pllx_base.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_base);
  160. writel(0, flow->halt_cpu_events);
  161. reg = CPU_CMPLX_CPURESET0 | CPU_CMPLX_DBGRESET0 | CPU_CMPLX_DERESET0;
  162. writel(reg, &clkrst->crc_cpu_cmplx_clr);
  163. reg = PLLM_OUT1_RSTN_RESET_DISABLE | PLLM_OUT1_CLKEN_ENABLE |
  164. PLLM_OUT1_RATIO_VAL_8;
  165. writel(reg, &clkrst->crc_pll[CLOCK_ID_MEMORY].pll_out[0]);
  166. reg = SCLK_SWAKE_FIQ_SRC_PLLM_OUT1 | SCLK_SWAKE_IRQ_SRC_PLLM_OUT1 |
  167. SCLK_SWAKE_RUN_SRC_PLLM_OUT1 | SCLK_SWAKE_IDLE_SRC_PLLM_OUT1 |
  168. SCLK_SYS_STATE_IDLE;
  169. writel(reg, &clkrst->crc_sclk_brst_pol);
  170. /* avp_resume: no return after the write */
  171. reg = readl(&clkrst->crc_rst_dev[TEGRA_DEV_L]);
  172. reg &= ~CPU_RST;
  173. writel(reg, &clkrst->crc_rst_dev[TEGRA_DEV_L]);
  174. /* avp_halt: */
  175. avp_halt:
  176. reg = EVENT_MODE_STOP | EVENT_JTAG;
  177. writel(reg, flow->halt_cop_events);
  178. goto avp_halt;
  179. do_reset:
  180. /*
  181. * Execution comes here if something goes wrong. The chip is reset and
  182. * a cold boot is performed.
  183. */
  184. writel(SWR_TRIG_SYS_RST, &clkrst->crc_rst_dev[TEGRA_DEV_L]);
  185. goto do_reset;
  186. }
  187. /*
  188. * wb_end() is a dummy function, and must be directly following wb_start(),
  189. * and is used to calculate the size of wb_start().
  190. */
  191. void wb_end(void)
  192. {
  193. }