ap20.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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 <asm/io.h>
  24. #include <asm/arch/tegra20.h>
  25. #include <asm/arch/ap20.h>
  26. #include <asm/arch/clk_rst.h>
  27. #include <asm/arch/clock.h>
  28. #include <asm/arch/fuse.h>
  29. #include <asm/arch/gp_padctrl.h>
  30. #include <asm/arch/pmc.h>
  31. #include <asm/arch/pinmux.h>
  32. #include <asm/arch/scu.h>
  33. #include <asm/arch/warmboot.h>
  34. #include <common.h>
  35. int tegra_get_chip_type(void)
  36. {
  37. struct apb_misc_gp_ctlr *gp;
  38. struct fuse_regs *fuse = (struct fuse_regs *)TEGRA20_FUSE_BASE;
  39. uint tegra_sku_id, rev;
  40. /*
  41. * This is undocumented, Chip ID is bits 15:8 of the register
  42. * APB_MISC + 0x804, and has value 0x20 for Tegra20, 0x30 for
  43. * Tegra30
  44. */
  45. gp = (struct apb_misc_gp_ctlr *)TEGRA20_APB_MISC_GP_BASE;
  46. rev = (readl(&gp->hidrev) & HIDREV_CHIPID_MASK) >> HIDREV_CHIPID_SHIFT;
  47. tegra_sku_id = readl(&fuse->sku_info) & 0xff;
  48. switch (rev) {
  49. case CHIPID_TEGRA20:
  50. switch (tegra_sku_id) {
  51. case SKU_ID_T20:
  52. return TEGRA_SOC_T20;
  53. case SKU_ID_T25SE:
  54. case SKU_ID_AP25:
  55. case SKU_ID_T25:
  56. case SKU_ID_AP25E:
  57. case SKU_ID_T25E:
  58. return TEGRA_SOC_T25;
  59. }
  60. break;
  61. }
  62. /* unknown sku id */
  63. return TEGRA_SOC_UNKNOWN;
  64. }
  65. /* Returns 1 if the current CPU executing is a Cortex-A9, else 0 */
  66. static int ap20_cpu_is_cortexa9(void)
  67. {
  68. u32 id = readb(NV_PA_PG_UP_BASE + PG_UP_TAG_0);
  69. return id == (PG_UP_TAG_0_PID_CPU & 0xff);
  70. }
  71. void init_pllx(void)
  72. {
  73. struct clk_rst_ctlr *clkrst =
  74. (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
  75. struct clk_pll_simple *pll =
  76. &clkrst->crc_pll_simple[CLOCK_ID_XCPU - CLOCK_ID_FIRST_SIMPLE];
  77. u32 reg;
  78. /* If PLLX is already enabled, just return */
  79. if (readl(&pll->pll_base) & PLL_ENABLE_MASK)
  80. return;
  81. /* Set PLLX_MISC */
  82. writel(1 << PLL_CPCON_SHIFT, &pll->pll_misc);
  83. /* Use 12MHz clock here */
  84. reg = PLL_BYPASS_MASK | (12 << PLL_DIVM_SHIFT);
  85. reg |= 1000 << PLL_DIVN_SHIFT;
  86. writel(reg, &pll->pll_base);
  87. reg |= PLL_ENABLE_MASK;
  88. writel(reg, &pll->pll_base);
  89. reg &= ~PLL_BYPASS_MASK;
  90. writel(reg, &pll->pll_base);
  91. }
  92. static void enable_cpu_clock(int enable)
  93. {
  94. struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
  95. u32 clk;
  96. /*
  97. * NOTE:
  98. * Regardless of whether the request is to enable or disable the CPU
  99. * clock, every processor in the CPU complex except the master (CPU 0)
  100. * will have it's clock stopped because the AVP only talks to the
  101. * master. The AVP does not know (nor does it need to know) that there
  102. * are multiple processors in the CPU complex.
  103. */
  104. if (enable) {
  105. /* Initialize PLLX */
  106. init_pllx();
  107. /* Wait until all clocks are stable */
  108. udelay(PLL_STABILIZATION_DELAY);
  109. writel(CCLK_BURST_POLICY, &clkrst->crc_cclk_brst_pol);
  110. writel(SUPER_CCLK_DIVIDER, &clkrst->crc_super_cclk_div);
  111. }
  112. /*
  113. * Read the register containing the individual CPU clock enables and
  114. * always stop the clock to CPU 1.
  115. */
  116. clk = readl(&clkrst->crc_clk_cpu_cmplx);
  117. clk |= 1 << CPU1_CLK_STP_SHIFT;
  118. /* Stop/Unstop the CPU clock */
  119. clk &= ~CPU0_CLK_STP_MASK;
  120. clk |= !enable << CPU0_CLK_STP_SHIFT;
  121. writel(clk, &clkrst->crc_clk_cpu_cmplx);
  122. clock_enable(PERIPH_ID_CPU);
  123. }
  124. static int is_cpu_powered(void)
  125. {
  126. struct pmc_ctlr *pmc = (struct pmc_ctlr *)TEGRA20_PMC_BASE;
  127. return (readl(&pmc->pmc_pwrgate_status) & CPU_PWRED) ? 1 : 0;
  128. }
  129. static void remove_cpu_io_clamps(void)
  130. {
  131. struct pmc_ctlr *pmc = (struct pmc_ctlr *)TEGRA20_PMC_BASE;
  132. u32 reg;
  133. /* Remove the clamps on the CPU I/O signals */
  134. reg = readl(&pmc->pmc_remove_clamping);
  135. reg |= CPU_CLMP;
  136. writel(reg, &pmc->pmc_remove_clamping);
  137. /* Give I/O signals time to stabilize */
  138. udelay(IO_STABILIZATION_DELAY);
  139. }
  140. static void powerup_cpu(void)
  141. {
  142. struct pmc_ctlr *pmc = (struct pmc_ctlr *)TEGRA20_PMC_BASE;
  143. u32 reg;
  144. int timeout = IO_STABILIZATION_DELAY;
  145. if (!is_cpu_powered()) {
  146. /* Toggle the CPU power state (OFF -> ON) */
  147. reg = readl(&pmc->pmc_pwrgate_toggle);
  148. reg &= PARTID_CP;
  149. reg |= START_CP;
  150. writel(reg, &pmc->pmc_pwrgate_toggle);
  151. /* Wait for the power to come up */
  152. while (!is_cpu_powered()) {
  153. if (timeout-- == 0)
  154. printf("CPU failed to power up!\n");
  155. else
  156. udelay(10);
  157. }
  158. /*
  159. * Remove the I/O clamps from CPU power partition.
  160. * Recommended only on a Warm boot, if the CPU partition gets
  161. * power gated. Shouldn't cause any harm when called after a
  162. * cold boot according to HW, probably just redundant.
  163. */
  164. remove_cpu_io_clamps();
  165. }
  166. }
  167. static void enable_cpu_power_rail(void)
  168. {
  169. struct pmc_ctlr *pmc = (struct pmc_ctlr *)TEGRA20_PMC_BASE;
  170. u32 reg;
  171. reg = readl(&pmc->pmc_cntrl);
  172. reg |= CPUPWRREQ_OE;
  173. writel(reg, &pmc->pmc_cntrl);
  174. /*
  175. * The TI PMU65861C needs a 3.75ms delay between enabling
  176. * the power rail and enabling the CPU clock. This delay
  177. * between SM1EN and SM1 is for switching time + the ramp
  178. * up of the voltage to the CPU (VDD_CPU from PMU).
  179. */
  180. udelay(3750);
  181. }
  182. static void reset_A9_cpu(int reset)
  183. {
  184. /*
  185. * NOTE: Regardless of whether the request is to hold the CPU in reset
  186. * or take it out of reset, every processor in the CPU complex
  187. * except the master (CPU 0) will be held in reset because the
  188. * AVP only talks to the master. The AVP does not know that there
  189. * are multiple processors in the CPU complex.
  190. */
  191. /* Hold CPU 1 in reset, and CPU 0 if asked */
  192. reset_cmplx_set_enable(1, crc_rst_cpu | crc_rst_de | crc_rst_debug, 1);
  193. reset_cmplx_set_enable(0, crc_rst_cpu | crc_rst_de | crc_rst_debug,
  194. reset);
  195. /* Enable/Disable master CPU reset */
  196. reset_set_enable(PERIPH_ID_CPU, reset);
  197. }
  198. static void clock_enable_coresight(int enable)
  199. {
  200. u32 rst, src;
  201. clock_set_enable(PERIPH_ID_CORESIGHT, enable);
  202. reset_set_enable(PERIPH_ID_CORESIGHT, !enable);
  203. if (enable) {
  204. /*
  205. * Put CoreSight on PLLP_OUT0 (216 MHz) and divide it down by
  206. * 1.5, giving an effective frequency of 144MHz.
  207. * Set PLLP_OUT0 [bits31:30 = 00], and use a 7.1 divisor
  208. * (bits 7:0), so 00000001b == 1.5 (n+1 + .5)
  209. */
  210. src = CLK_DIVIDER(NVBL_PLLP_KHZ, 144000);
  211. clock_ll_set_source_divisor(PERIPH_ID_CSI, 0, src);
  212. /* Unlock the CPU CoreSight interfaces */
  213. rst = 0xC5ACCE55;
  214. writel(rst, CSITE_CPU_DBG0_LAR);
  215. writel(rst, CSITE_CPU_DBG1_LAR);
  216. }
  217. }
  218. void start_cpu(u32 reset_vector)
  219. {
  220. /* Enable VDD_CPU */
  221. enable_cpu_power_rail();
  222. /* Hold the CPUs in reset */
  223. reset_A9_cpu(1);
  224. /* Disable the CPU clock */
  225. enable_cpu_clock(0);
  226. /* Enable CoreSight */
  227. clock_enable_coresight(1);
  228. /*
  229. * Set the entry point for CPU execution from reset,
  230. * if it's a non-zero value.
  231. */
  232. if (reset_vector)
  233. writel(reset_vector, EXCEP_VECTOR_CPU_RESET_VECTOR);
  234. /* Enable the CPU clock */
  235. enable_cpu_clock(1);
  236. /* If the CPU doesn't already have power, power it up */
  237. powerup_cpu();
  238. /* Take the CPU out of reset */
  239. reset_A9_cpu(0);
  240. }
  241. void halt_avp(void)
  242. {
  243. for (;;) {
  244. writel((HALT_COP_EVENT_JTAG | HALT_COP_EVENT_IRQ_1 \
  245. | HALT_COP_EVENT_FIQ_1 | (FLOW_MODE_STOP<<29)),
  246. FLOW_CTLR_HALT_COP_EVENTS);
  247. }
  248. }
  249. void enable_scu(void)
  250. {
  251. struct scu_ctlr *scu = (struct scu_ctlr *)NV_PA_ARM_PERIPHBASE;
  252. u32 reg;
  253. /* If SCU already setup/enabled, return */
  254. if (readl(&scu->scu_ctrl) & SCU_CTRL_ENABLE)
  255. return;
  256. /* Invalidate all ways for all processors */
  257. writel(0xFFFF, &scu->scu_inv_all);
  258. /* Enable SCU - bit 0 */
  259. reg = readl(&scu->scu_ctrl);
  260. reg |= SCU_CTRL_ENABLE;
  261. writel(reg, &scu->scu_ctrl);
  262. }
  263. static u32 get_odmdata(void)
  264. {
  265. /*
  266. * ODMDATA is stored in the BCT in IRAM by the BootROM.
  267. * The BCT start and size are stored in the BIT in IRAM.
  268. * Read the data @ bct_start + (bct_size - 12). This works
  269. * on T20 and T30 BCTs, which are locked down. If this changes
  270. * in new chips (T114, etc.), we can revisit this algorithm.
  271. */
  272. u32 bct_start, odmdata;
  273. bct_start = readl(AP20_BASE_PA_SRAM + NVBOOTINFOTABLE_BCTPTR);
  274. odmdata = readl(bct_start + BCT_ODMDATA_OFFSET);
  275. return odmdata;
  276. }
  277. void init_pmc_scratch(void)
  278. {
  279. struct pmc_ctlr *const pmc = (struct pmc_ctlr *)TEGRA20_PMC_BASE;
  280. u32 odmdata;
  281. int i;
  282. /* SCRATCH0 is initialized by the boot ROM and shouldn't be cleared */
  283. for (i = 0; i < 23; i++)
  284. writel(0, &pmc->pmc_scratch1+i);
  285. /* ODMDATA is for kernel use to determine RAM size, LP config, etc. */
  286. odmdata = get_odmdata();
  287. writel(odmdata, &pmc->pmc_scratch20);
  288. #ifdef CONFIG_TEGRA20_LP0
  289. /* save Sdram params to PMC 2, 4, and 24 for WB0 */
  290. warmboot_save_sdram_params();
  291. #endif
  292. }
  293. void tegra20_start(void)
  294. {
  295. struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
  296. /* If we are the AVP, start up the first Cortex-A9 */
  297. if (!ap20_cpu_is_cortexa9()) {
  298. /* enable JTAG */
  299. writel(0xC0, &pmt->pmt_cfg_ctl);
  300. /*
  301. * If we are ARM7 - give it a different stack. We are about to
  302. * start up the A9 which will want to use this one.
  303. */
  304. asm volatile("mov sp, %0\n"
  305. : : "r"(AVP_EARLY_BOOT_STACK_LIMIT));
  306. start_cpu((u32)_start);
  307. halt_avp();
  308. /* not reached */
  309. }
  310. /* Init PMC scratch memory */
  311. init_pmc_scratch();
  312. enable_scu();
  313. /* enable SMP mode and FW for CPU0, by writing to Auxiliary Ctl reg */
  314. asm volatile(
  315. "mrc p15, 0, r0, c1, c0, 1\n"
  316. "orr r0, r0, #0x41\n"
  317. "mcr p15, 0, r0, c1, c0, 1\n");
  318. /* FIXME: should have ap20's L2 disabled too? */
  319. }