bl31_plat_setup.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) 2019, MediaTek Inc. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <assert.h>
  7. #include <arch_helpers.h>
  8. #include <common/bl_common.h>
  9. #include <common/desc_image_load.h>
  10. #include <devapc.h>
  11. #include <emi_mpu.h>
  12. #include <plat/common/common_def.h>
  13. #include <drivers/console.h>
  14. #include <common/debug.h>
  15. #include <drivers/generic_delay_timer.h>
  16. #include <mcucfg.h>
  17. #include <mt_gic_v3.h>
  18. #include <mt_timer.h>
  19. #include <lib/coreboot.h>
  20. #include <lib/mmio.h>
  21. #include <mtk_mcdi.h>
  22. #include <mtk_plat_common.h>
  23. #include <mtspmc.h>
  24. #include <plat_debug.h>
  25. #include <plat_params.h>
  26. #include <plat_private.h>
  27. #include <platform_def.h>
  28. #include <scu.h>
  29. #include <spm.h>
  30. #include <drivers/ti/uart/uart_16550.h>
  31. static entry_point_info_t bl32_ep_info;
  32. static entry_point_info_t bl33_ep_info;
  33. static void platform_setup_cpu(void)
  34. {
  35. mmio_write_32((uintptr_t)&mt8183_mcucfg->mp0_rw_rsvd0, 0x00000001);
  36. /* Mcusys dcm control */
  37. /* Enable pll plldiv dcm */
  38. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->bus_pll_divider_cfg,
  39. BUS_PLLDIV_DCM);
  40. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->mp0_pll_divider_cfg,
  41. MP0_PLLDIV_DCM);
  42. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->mp2_pll_divider_cfg,
  43. MP2_PLLDIV_DCM);
  44. /* Enable mscib dcm */
  45. mmio_clrsetbits_32((uintptr_t)&mt8183_mcucfg->mscib_dcm_en,
  46. MCSIB_CACTIVE_SEL_MASK, MCSIB_CACTIVE_SEL);
  47. mmio_clrsetbits_32((uintptr_t)&mt8183_mcucfg->mscib_dcm_en,
  48. MCSIB_DCM_MASK, MCSIB_DCM);
  49. /* Enable adb400 dcm */
  50. mmio_clrsetbits_32((uintptr_t)&mt8183_mcucfg->cci_adb400_dcm_config,
  51. CCI_ADB400_DCM_MASK, CCI_ADB400_DCM);
  52. /* Enable bus clock dcm */
  53. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->cci_clk_ctrl,
  54. MCU_BUS_DCM);
  55. /* Enable bus fabric dcm */
  56. mmio_clrsetbits_32(
  57. (uintptr_t)&mt8183_mcucfg->mcusys_bus_fabric_dcm_ctrl,
  58. MCUSYS_BUS_FABRIC_DCM_MASK,
  59. MCUSYS_BUS_FABRIC_DCM);
  60. /* Enable l2c sram dcm */
  61. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->l2c_sram_ctrl,
  62. L2C_SRAM_DCM);
  63. /* Enable busmp0 sync dcm */
  64. mmio_clrsetbits_32((uintptr_t)&mt8183_mcucfg->sync_dcm_config,
  65. SYNC_DCM_MASK, SYNC_DCM);
  66. /* Enable cntvalue dcm */
  67. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->mcu_misc_dcm_ctrl,
  68. CNTVALUEB_DCM);
  69. /* Enable dcm cluster stall */
  70. mmio_clrsetbits_32(
  71. (uintptr_t)&mt8183_mcucfg->sync_dcm_cluster_config,
  72. MCUSYS_MAX_ACCESS_LATENCY_MASK,
  73. MCUSYS_MAX_ACCESS_LATENCY);
  74. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->sync_dcm_cluster_config,
  75. MCU0_SYNC_DCM_STALL_WR_EN);
  76. /* Enable rgu dcm */
  77. mmio_setbits_32((uintptr_t)&mt8183_mcucfg->mp0_rgu_dcm_config,
  78. CPUSYS_RGU_DCM_CINFIG);
  79. }
  80. /*******************************************************************************
  81. * Return a pointer to the 'entry_point_info' structure of the next image for
  82. * the security state specified. BL33 corresponds to the non-secure image type
  83. * while BL32 corresponds to the secure image type. A NULL pointer is returned
  84. * if the image does not exist.
  85. ******************************************************************************/
  86. entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
  87. {
  88. entry_point_info_t *next_image_info;
  89. next_image_info = (type == NON_SECURE) ? &bl33_ep_info : &bl32_ep_info;
  90. assert(next_image_info->h.type == PARAM_EP);
  91. /* None of the images on this platform can have 0x0 as the entrypoint */
  92. if (next_image_info->pc)
  93. return next_image_info;
  94. else
  95. return NULL;
  96. }
  97. /*******************************************************************************
  98. * Perform any BL31 early platform setup. Here is an opportunity to copy
  99. * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
  100. * are lost (potentially). This needs to be done before the MMU is initialized
  101. * so that the memory layout can be used while creating page tables.
  102. * BL2 has flushed this information to memory, so we are guaranteed to pick up
  103. * good data.
  104. ******************************************************************************/
  105. void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
  106. u_register_t arg2, u_register_t arg3)
  107. {
  108. static console_t console;
  109. params_early_setup(arg1);
  110. #if COREBOOT
  111. if (coreboot_serial.type)
  112. console_16550_register(coreboot_serial.baseaddr,
  113. coreboot_serial.input_hertz,
  114. coreboot_serial.baud,
  115. &console);
  116. #else
  117. console_16550_register(UART0_BASE, UART_CLOCK, UART_BAUDRATE, &console);
  118. #endif
  119. NOTICE("MT8183 bl31_setup\n");
  120. bl31_params_parse_helper(arg0, &bl32_ep_info, &bl33_ep_info);
  121. }
  122. /*******************************************************************************
  123. * Perform any BL31 platform setup code
  124. ******************************************************************************/
  125. void bl31_platform_setup(void)
  126. {
  127. devapc_init();
  128. emi_mpu_init();
  129. platform_setup_cpu();
  130. generic_delay_timer_init();
  131. /* Initialize the GIC driver, CPU and distributor interfaces */
  132. mt_gic_driver_init();
  133. mt_gic_init();
  134. mt_systimer_init();
  135. /* Init mcsi SF */
  136. plat_mtk_cci_init_sf();
  137. #if SPMC_MODE == 1
  138. spmc_init();
  139. #endif
  140. spm_boot_init();
  141. mcdi_init();
  142. }
  143. /*******************************************************************************
  144. * Perform the very early platform specific architectural setup here. At the
  145. * moment this is only initializes the mmu in a quick and dirty way.
  146. ******************************************************************************/
  147. void bl31_plat_arch_setup(void)
  148. {
  149. plat_mtk_cci_init();
  150. plat_mtk_cci_enable();
  151. enable_scu(read_mpidr());
  152. plat_configure_mmu_el3(BL_CODE_BASE,
  153. BL_COHERENT_RAM_END - BL_CODE_BASE,
  154. BL_CODE_BASE,
  155. BL_CODE_END,
  156. BL_COHERENT_RAM_BASE,
  157. BL_COHERENT_RAM_END);
  158. }