lowlevel_init.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /*
  2. * Lowlevel setup for EXYNOS5 based board
  3. *
  4. * Copyright (C) 2013 Samsung Electronics
  5. * Rajeshwari Shinde <rajeshwari.s@samsung.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <config.h>
  27. #include <asm/arch/cpu.h>
  28. #include <asm/arch/dmc.h>
  29. #include <asm/arch/power.h>
  30. #include <asm/arch/tzpc.h>
  31. #include <asm/arch/periph.h>
  32. #include <asm/arch/pinmux.h>
  33. #include <asm/arch/system.h>
  34. #include <asm/armv7.h>
  35. #include "common_setup.h"
  36. #include "exynos5_setup.h"
  37. /* These are the things we can do during low-level init */
  38. enum {
  39. DO_WAKEUP = 1 << 0,
  40. DO_CLOCKS = 1 << 1,
  41. DO_MEM_RESET = 1 << 2,
  42. DO_UART = 1 << 3,
  43. DO_POWER = 1 << 4,
  44. };
  45. #ifdef CONFIG_EXYNOS5420
  46. /*
  47. * Power up secondary CPUs.
  48. */
  49. static void secondary_cpu_start(void)
  50. {
  51. v7_enable_smp(EXYNOS5420_INFORM_BASE);
  52. svc32_mode_en();
  53. branch_bx(CONFIG_EXYNOS_RELOCATE_CODE_BASE);
  54. }
  55. /*
  56. * This is the entry point of hotplug-in and
  57. * cluster switching.
  58. */
  59. static void low_power_start(void)
  60. {
  61. uint32_t val, reg_val;
  62. reg_val = readl(EXYNOS5420_SPARE_BASE);
  63. if (reg_val != CPU_RST_FLAG_VAL) {
  64. writel(0x0, CONFIG_LOWPOWER_FLAG);
  65. branch_bx(0x0);
  66. }
  67. reg_val = readl(CONFIG_PHY_IRAM_BASE + 0x4);
  68. if (reg_val != (uint32_t)&low_power_start) {
  69. /* Store jump address as low_power_start if not present */
  70. writel((uint32_t)&low_power_start, CONFIG_PHY_IRAM_BASE + 0x4);
  71. dsb();
  72. sev();
  73. }
  74. /* Set the CPU to SVC32 mode */
  75. svc32_mode_en();
  76. #ifndef CONFIG_SYS_L2CACHE_OFF
  77. /* Read MIDR for Primary Part Number */
  78. mrc_midr(val);
  79. val = (val >> 4);
  80. val &= 0xf;
  81. if (val == 0xf) {
  82. configure_l2_ctlr();
  83. configure_l2_actlr();
  84. v7_enable_l2_hazard_detect();
  85. }
  86. #endif
  87. /* Invalidate L1 & TLB */
  88. val = 0x0;
  89. mcr_tlb(val);
  90. mcr_icache(val);
  91. /* Disable MMU stuff and caches */
  92. mrc_sctlr(val);
  93. val &= ~((0x2 << 12) | 0x7);
  94. val |= ((0x1 << 12) | (0x8 << 8) | 0x2);
  95. mcr_sctlr(val);
  96. /* CPU state is hotplug or reset */
  97. secondary_cpu_start();
  98. /* Core should not enter into WFI here */
  99. wfi();
  100. }
  101. /*
  102. * Pointer to this function is stored in iRam which is used
  103. * for jump and power down of a specific core.
  104. */
  105. static void power_down_core(void)
  106. {
  107. uint32_t tmp, core_id, core_config;
  108. /* Get the unique core id */
  109. /*
  110. * Multiprocessor Affinity Register
  111. * [11:8] Cluster ID
  112. * [1:0] CPU ID
  113. */
  114. mrc_mpafr(core_id);
  115. tmp = core_id & 0x3;
  116. core_id = (core_id >> 6) & ~3;
  117. core_id |= tmp;
  118. core_id &= 0x3f;
  119. /* Set the status of the core to low */
  120. core_config = (core_id * CPU_CONFIG_STATUS_OFFSET);
  121. core_config += EXYNOS5420_CPU_CONFIG_BASE;
  122. writel(0x0, core_config);
  123. /* Core enter WFI */
  124. wfi();
  125. }
  126. /*
  127. * Configurations for secondary cores are inapt at this stage.
  128. * Reconfigure secondary cores. Shutdown and change the status
  129. * of all cores except the primary core.
  130. */
  131. static void secondary_cores_configure(void)
  132. {
  133. /* Clear secondary boot iRAM base */
  134. writel(0x0, (CONFIG_EXYNOS_RELOCATE_CODE_BASE + 0x1C));
  135. /* set lowpower flag and address */
  136. writel(CPU_RST_FLAG_VAL, CONFIG_LOWPOWER_FLAG);
  137. writel((uint32_t)&low_power_start, CONFIG_LOWPOWER_ADDR);
  138. writel(CPU_RST_FLAG_VAL, EXYNOS5420_SPARE_BASE);
  139. /* Store jump address for power down */
  140. writel((uint32_t)&power_down_core, CONFIG_PHY_IRAM_BASE + 0x4);
  141. /* Need all core power down check */
  142. dsb();
  143. sev();
  144. }
  145. extern void relocate_wait_code(void);
  146. #endif
  147. int do_lowlevel_init(void)
  148. {
  149. uint32_t reset_status;
  150. int actions = 0;
  151. arch_cpu_init();
  152. #ifndef CONFIG_SYS_L2CACHE_OFF
  153. /*
  154. * Init L2 cache parameters here for use by boot and resume
  155. *
  156. * These are here instead of in v7_outer_cache_enable() so that the
  157. * L2 cache settings get properly set even at resume time or if we're
  158. * running U-Boot with the cache off. The kernel still needs us to
  159. * set these for it.
  160. */
  161. configure_l2_ctlr();
  162. configure_l2_actlr();
  163. dsb();
  164. isb();
  165. #endif
  166. #ifdef CONFIG_EXYNOS5420
  167. relocate_wait_code();
  168. /* Reconfigure secondary cores */
  169. secondary_cores_configure();
  170. #endif
  171. reset_status = get_reset_status();
  172. switch (reset_status) {
  173. case S5P_CHECK_SLEEP:
  174. actions = DO_CLOCKS | DO_WAKEUP;
  175. break;
  176. case S5P_CHECK_DIDLE:
  177. case S5P_CHECK_LPA:
  178. actions = DO_WAKEUP;
  179. break;
  180. default:
  181. /* This is a normal boot (not a wake from sleep) */
  182. actions = DO_CLOCKS | DO_MEM_RESET | DO_POWER;
  183. }
  184. if (actions & DO_POWER)
  185. set_ps_hold_ctrl();
  186. if (actions & DO_CLOCKS) {
  187. system_clock_init();
  188. mem_ctrl_init(actions & DO_MEM_RESET);
  189. tzpc_init();
  190. }
  191. return actions & DO_WAKEUP;
  192. }