bl31_versal_net_setup.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * Copyright (c) 2018-2024, Arm Limited and Contributors. All rights reserved.
  3. * Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
  4. * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
  5. *
  6. * SPDX-License-Identifier: BSD-3-Clause
  7. */
  8. #include <assert.h>
  9. #include <errno.h>
  10. #include <bl31/bl31.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 <plat/common/platform.h>
  16. #include <plat_arm.h>
  17. #include <plat_console.h>
  18. #include <plat_clkfunc.h>
  19. #include <plat_fdt.h>
  20. #include <plat_private.h>
  21. #include <plat_startup.h>
  22. #include <pm_api_sys.h>
  23. #include <pm_client.h>
  24. #include <pm_ipi.h>
  25. #include <versal_net_def.h>
  26. static entry_point_info_t bl32_image_ep_info;
  27. static entry_point_info_t bl33_image_ep_info;
  28. /*
  29. * Return a pointer to the 'entry_point_info' structure of the next image for
  30. * the security state specified. BL33 corresponds to the non-secure image type
  31. * while BL32 corresponds to the secure image type. A NULL pointer is returned
  32. * if the image does not exist.
  33. */
  34. entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
  35. {
  36. assert(sec_state_is_valid(type));
  37. if (type == NON_SECURE) {
  38. return &bl33_image_ep_info;
  39. }
  40. return &bl32_image_ep_info;
  41. }
  42. /*
  43. * Set the build time defaults,if we can't find any config data.
  44. */
  45. static inline void bl31_set_default_config(void)
  46. {
  47. bl32_image_ep_info.pc = BL32_BASE;
  48. bl32_image_ep_info.spsr = arm_get_spsr_for_bl32_entry();
  49. bl33_image_ep_info.pc = plat_get_ns_image_entrypoint();
  50. bl33_image_ep_info.spsr = SPSR_64(MODE_EL2, MODE_SP_ELX,
  51. DISABLE_ALL_EXCEPTIONS);
  52. }
  53. /* Define read and write function for clusterbusqos register */
  54. DEFINE_RENAME_SYSREG_RW_FUNCS(cluster_bus_qos, S3_0_C15_C4_4)
  55. static void versal_net_setup_qos(void)
  56. {
  57. int ret;
  58. ret = read_cluster_bus_qos();
  59. INFO("BL31: default cluster bus qos: 0x%x\n", ret);
  60. write_cluster_bus_qos(0);
  61. ret = read_cluster_bus_qos();
  62. INFO("BL31: cluster bus qos written: 0x%x\n", ret);
  63. }
  64. /*
  65. * Perform any BL31 specific platform actions. Here is an opportunity to copy
  66. * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
  67. * are lost (potentially). This needs to be done before the MMU is initialized
  68. * so that the memory layout can be used while creating page tables.
  69. */
  70. void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
  71. u_register_t arg2, u_register_t arg3)
  72. {
  73. (void)arg0;
  74. (void)arg1;
  75. (void)arg2;
  76. (void)arg3;
  77. #if !(TFA_NO_PM)
  78. uint64_t tfa_handoff_addr, buff[HANDOFF_PARAMS_MAX_SIZE] = {0};
  79. uint32_t payload[PAYLOAD_ARG_CNT], max_size = HANDOFF_PARAMS_MAX_SIZE;
  80. enum pm_ret_status ret_status;
  81. #endif /* !(TFA_NO_PM) */
  82. board_detection();
  83. switch (platform_id) {
  84. case VERSAL_NET_SPP:
  85. cpu_clock = 1000000;
  86. break;
  87. case VERSAL_NET_EMU:
  88. cpu_clock = 3660000;
  89. break;
  90. case VERSAL_NET_QEMU:
  91. /* Random values now */
  92. cpu_clock = 100000000;
  93. break;
  94. case VERSAL_NET_SILICON:
  95. cpu_clock = 100000000;
  96. break;
  97. default:
  98. panic();
  99. }
  100. syscnt_freq_config_setup();
  101. set_cnt_freq();
  102. setup_console();
  103. NOTICE("TF-A running on %s %d.%d\n", board_name_decode(),
  104. platform_version / 10U, platform_version % 10U);
  105. versal_net_setup_qos();
  106. /* Initialize the platform config for future decision making */
  107. versal_net_config_setup();
  108. /*
  109. * Do initial security configuration to allow DRAM/device access. On
  110. * Base VERSAL_NET only DRAM security is programmable (via TrustZone), but
  111. * other platforms might have more programmable security devices
  112. * present.
  113. */
  114. /* Populate common information for BL32 and BL33 */
  115. SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
  116. SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
  117. SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
  118. SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
  119. #if !(TFA_NO_PM)
  120. PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, 1, PM_LOAD_GET_HANDOFF_PARAMS,
  121. (uintptr_t)buff >> 32U, (uintptr_t)buff, max_size);
  122. ret_status = pm_ipi_send_sync(primary_proc, payload, NULL, 0);
  123. if (ret_status == PM_RET_SUCCESS) {
  124. enum xbl_handoff xbl_ret;
  125. tfa_handoff_addr = (uintptr_t)&buff;
  126. xbl_ret = xbl_handover(&bl32_image_ep_info, &bl33_image_ep_info,
  127. tfa_handoff_addr);
  128. if (xbl_ret != XBL_HANDOFF_SUCCESS) {
  129. ERROR("BL31: PLM to TF-A handover failed %u\n", xbl_ret);
  130. panic();
  131. }
  132. INFO("BL31: PLM to TF-A handover success\n");
  133. } else {
  134. INFO("BL31: setting up default configs\n");
  135. bl31_set_default_config();
  136. }
  137. #else
  138. bl31_set_default_config();
  139. #endif /* !(TFA_NO_PM) */
  140. NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc);
  141. NOTICE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc);
  142. }
  143. static versal_intr_info_type_el3_t type_el3_interrupt_table[MAX_INTR_EL3];
  144. int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
  145. {
  146. static uint32_t index;
  147. uint32_t i;
  148. /* Validate 'handler' and 'id' parameters */
  149. if ((handler == NULL) || (index >= MAX_INTR_EL3)) {
  150. return -EINVAL;
  151. }
  152. /* Check if a handler has already been registered */
  153. for (i = 0; i < index; i++) {
  154. if (id == type_el3_interrupt_table[i].id) {
  155. return -EALREADY;
  156. }
  157. }
  158. type_el3_interrupt_table[index].id = id;
  159. type_el3_interrupt_table[index].handler = handler;
  160. index++;
  161. return 0;
  162. }
  163. static uint64_t rdo_el3_interrupt_handler(uint32_t id, uint32_t flags,
  164. void *handle, void *cookie)
  165. {
  166. uint32_t intr_id;
  167. uint32_t i;
  168. interrupt_type_handler_t handler = NULL;
  169. intr_id = plat_ic_get_pending_interrupt_id();
  170. for (i = 0; i < MAX_INTR_EL3; i++) {
  171. if (intr_id == type_el3_interrupt_table[i].id) {
  172. handler = type_el3_interrupt_table[i].handler;
  173. }
  174. }
  175. if (handler != NULL) {
  176. (void)handler(intr_id, flags, handle, cookie);
  177. }
  178. return 0;
  179. }
  180. void bl31_platform_setup(void)
  181. {
  182. prepare_dtb();
  183. /* Initialize the gic cpu and distributor interfaces */
  184. plat_arm_gic_driver_init();
  185. plat_arm_gic_init();
  186. }
  187. void bl31_plat_runtime_setup(void)
  188. {
  189. uint64_t flags = 0;
  190. int32_t rc;
  191. set_interrupt_rm_flag(flags, NON_SECURE);
  192. rc = register_interrupt_type_handler(INTR_TYPE_EL3,
  193. rdo_el3_interrupt_handler, flags);
  194. if (rc != 0) {
  195. panic();
  196. }
  197. }
  198. /*
  199. * Perform the very early platform specific architectural setup here.
  200. */
  201. void bl31_plat_arch_setup(void)
  202. {
  203. const mmap_region_t bl_regions[] = {
  204. #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
  205. MAP_REGION_FLAT(XILINX_OF_BOARD_DTB_ADDR, XILINX_OF_BOARD_DTB_MAX_SIZE,
  206. MT_MEMORY | MT_RW | MT_NS),
  207. #endif
  208. MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
  209. MT_MEMORY | MT_RW | MT_SECURE),
  210. MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
  211. MT_CODE | MT_SECURE),
  212. MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE,
  213. MT_RO_DATA | MT_SECURE),
  214. {0}
  215. };
  216. setup_page_tables(bl_regions, plat_get_mmap());
  217. enable_mmu(0);
  218. }