k3_bl31_setup.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * Copyright (c) 2017-2024, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <assert.h>
  7. #include <string.h>
  8. #include <platform_def.h>
  9. #include <arch.h>
  10. #include <arch_helpers.h>
  11. #include <common/bl_common.h>
  12. #include <common/debug.h>
  13. #include <lib/mmio.h>
  14. #include <lib/xlat_tables/xlat_tables_v2.h>
  15. #include <k3_console.h>
  16. #include <k3_gicv3.h>
  17. #include <ti_sci.h>
  18. #define ADDR_DOWN(_adr) (_adr & XLAT_ADDR_MASK(2U))
  19. #define SIZE_UP(_adr, _sz) (round_up((_adr + _sz), XLAT_BLOCK_SIZE(2U)) - ADDR_DOWN(_adr))
  20. #define K3_MAP_REGION_FLAT(_adr, _sz, _attr) \
  21. MAP_REGION_FLAT(ADDR_DOWN(_adr), SIZE_UP(_adr, _sz), _attr)
  22. /* Table of regions to map using the MMU */
  23. const mmap_region_t plat_k3_mmap[] = {
  24. K3_MAP_REGION_FLAT(K3_USART_BASE, K3_USART_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
  25. K3_MAP_REGION_FLAT(K3_GIC_BASE, K3_GIC_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
  26. K3_MAP_REGION_FLAT(K3_GTC_BASE, K3_GTC_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
  27. K3_MAP_REGION_FLAT(SEC_PROXY_RT_BASE, SEC_PROXY_RT_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
  28. K3_MAP_REGION_FLAT(SEC_PROXY_SCFG_BASE, SEC_PROXY_SCFG_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
  29. K3_MAP_REGION_FLAT(SEC_PROXY_DATA_BASE, SEC_PROXY_DATA_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
  30. { /* sentinel */ }
  31. };
  32. /*
  33. * Placeholder variables for maintaining information about the next image(s)
  34. */
  35. static entry_point_info_t bl32_image_ep_info;
  36. static entry_point_info_t bl33_image_ep_info;
  37. /*******************************************************************************
  38. * Gets SPSR for BL33 entry
  39. ******************************************************************************/
  40. static uint32_t k3_get_spsr_for_bl33_entry(void)
  41. {
  42. unsigned long el_status;
  43. unsigned int mode;
  44. uint32_t spsr;
  45. /* Figure out what mode we enter the non-secure world in */
  46. el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
  47. el_status &= ID_AA64PFR0_ELX_MASK;
  48. mode = (el_status) ? MODE_EL2 : MODE_EL1;
  49. spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
  50. return spsr;
  51. }
  52. /*******************************************************************************
  53. * Perform any BL3-1 early platform setup, such as console init and deciding on
  54. * memory layout.
  55. ******************************************************************************/
  56. void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
  57. u_register_t arg2, u_register_t arg3)
  58. {
  59. /* Initialize the console to provide early debug support */
  60. k3_console_setup();
  61. #ifdef BL32_BASE
  62. /* Populate entry point information for BL32 */
  63. SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
  64. bl32_image_ep_info.pc = BL32_BASE;
  65. bl32_image_ep_info.spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
  66. DISABLE_ALL_EXCEPTIONS);
  67. SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
  68. #endif
  69. /* Populate entry point information for BL33 */
  70. SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
  71. bl33_image_ep_info.pc = PRELOADED_BL33_BASE;
  72. bl33_image_ep_info.spsr = k3_get_spsr_for_bl33_entry();
  73. SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
  74. #ifdef K3_HW_CONFIG_BASE
  75. /*
  76. * According to the file ``Documentation/arm64/booting.txt`` of the
  77. * Linux kernel tree, Linux expects the physical address of the device
  78. * tree blob (DTB) in x0, while x1-x3 are reserved for future use and
  79. * must be 0.
  80. */
  81. bl33_image_ep_info.args.arg0 = (u_register_t)K3_HW_CONFIG_BASE;
  82. bl33_image_ep_info.args.arg1 = 0U;
  83. bl33_image_ep_info.args.arg2 = 0U;
  84. bl33_image_ep_info.args.arg3 = 0U;
  85. #endif
  86. }
  87. void bl31_plat_arch_setup(void)
  88. {
  89. const mmap_region_t bl_regions[] = {
  90. MAP_REGION_FLAT(BL31_START, BL31_SIZE, MT_MEMORY | MT_RW | MT_SECURE),
  91. MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE, MT_CODE | MT_RO | MT_SECURE),
  92. MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE, MT_RO_DATA | MT_RO | MT_SECURE),
  93. #if USE_COHERENT_MEM
  94. MAP_REGION_FLAT(BL_COHERENT_RAM_BASE, BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE, MT_DEVICE | MT_RW | MT_SECURE),
  95. #endif
  96. { /* sentinel */ }
  97. };
  98. setup_page_tables(bl_regions, plat_k3_mmap);
  99. enable_mmu_el3(0);
  100. }
  101. void bl31_platform_setup(void)
  102. {
  103. struct ti_sci_msg_version version;
  104. int ret;
  105. k3_gic_driver_init(K3_GIC_BASE);
  106. k3_gic_init();
  107. ret = ti_sci_get_revision(&version);
  108. if (ret) {
  109. ERROR("Unable to communicate with the control firmware (%d)\n", ret);
  110. return;
  111. }
  112. INFO("SYSFW ABI: %d.%d (firmware rev 0x%04x '%s')\n",
  113. version.abi_major, version.abi_minor,
  114. version.firmware_revision,
  115. version.firmware_description);
  116. /*
  117. * Older firmware have a timing issue with DM that crashes few TF-A
  118. * lite devices while trying to make calls to DM. Since there is no way
  119. * to detect what current DM version we are running - we rely on the
  120. * corresponding TIFS versioning to handle this check and ensure that
  121. * the platform boots up
  122. *
  123. * Upgrading to TIFS version 9.1.7 along with the corresponding DM from
  124. * ti-linux-firmware will enable this functionality.
  125. */
  126. if (version.firmware_revision > 9 ||
  127. (version.firmware_revision == 9 && version.sub_version > 1) ||
  128. (version.firmware_revision == 9 && version.sub_version == 1 &&
  129. version.patch_version >= 7)
  130. ) {
  131. if (ti_sci_device_get(PLAT_BOARD_DEVICE_ID)) {
  132. WARN("Unable to take system power reference\n");
  133. }
  134. } else {
  135. NOTICE("Upgrade Firmwares for Power off functionality\n");
  136. }
  137. }
  138. void platform_mem_init(void)
  139. {
  140. /* Do nothing for now... */
  141. }
  142. unsigned int plat_get_syscnt_freq2(void)
  143. {
  144. uint32_t gtc_freq;
  145. uint32_t gtc_ctrl;
  146. /* Lets try and provide basic diagnostics - cost is low */
  147. gtc_ctrl = mmio_read_32(K3_GTC_BASE + K3_GTC_CNTCR_OFFSET);
  148. /* Did the bootloader fail to enable timer and OS guys are confused? */
  149. if ((gtc_ctrl & K3_GTC_CNTCR_EN_MASK) == 0U) {
  150. ERROR("GTC is disabled! Timekeeping broken. Fix Bootloader\n");
  151. }
  152. /*
  153. * If debug will not pause time, we will have issues like
  154. * drivers timing out while debugging, in cases of OS like Linux,
  155. * RCU stall errors, which can be hard to differentiate vs real issues.
  156. */
  157. if ((gtc_ctrl & K3_GTC_CNTCR_HDBG_MASK) == 0U) {
  158. WARN("GTC: Debug access doesn't stop time. Fix Bootloader\n");
  159. }
  160. gtc_freq = mmio_read_32(K3_GTC_BASE + K3_GTC_CNTFID0_OFFSET);
  161. /* Many older bootloaders may have missed programming FID0 register */
  162. if (gtc_freq != 0U) {
  163. return gtc_freq;
  164. }
  165. /*
  166. * We could have just warned about this, but this can have serious
  167. * hard to debug side effects if we are NOT sure what the actual
  168. * frequency is. Lets make sure people don't miss this.
  169. */
  170. ERROR("GTC_CNTFID0 is 0! Assuming %d Hz. Fix Bootloader\n",
  171. SYS_COUNTER_FREQ_IN_TICKS);
  172. return SYS_COUNTER_FREQ_IN_TICKS;
  173. }
  174. /*******************************************************************************
  175. * Return a pointer to the 'entry_point_info' structure of the next image
  176. * for the security state specified. BL3-3 corresponds to the non-secure
  177. * image type while BL3-2 corresponds to the secure image type. A NULL
  178. * pointer is returned if the image does not exist.
  179. ******************************************************************************/
  180. entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
  181. {
  182. entry_point_info_t *next_image_info;
  183. assert(sec_state_is_valid(type));
  184. next_image_info = (type == NON_SECURE) ? &bl33_image_ep_info :
  185. &bl32_image_ep_info;
  186. /*
  187. * None of the images on the ARM development platforms can have 0x0
  188. * as the entrypoint
  189. */
  190. if (next_image_info->pc)
  191. return next_image_info;
  192. NOTICE("Requested nonexistent image\n");
  193. return NULL;
  194. }