platform_def.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * Copyright (c) 2022-2024, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PLATFORM_DEF_H
  7. #define PLATFORM_DEF_H
  8. #include <arch_def.h>
  9. #define PLAT_PRIMARY_CPU (0x0)
  10. #define MT_GIC_BASE (0x0C000000)
  11. #define MCUCFG_BASE (0x0C530000)
  12. #define MCUCFG_REG_SIZE (0x10000)
  13. #define IO_PHYS (0x10000000)
  14. /* Aggregate of all devices for MMU mapping */
  15. #define MTK_DEV_RNG0_BASE (MT_GIC_BASE)
  16. #define MTK_DEV_RNG0_SIZE (0x600000)
  17. #define MTK_DEV_RNG1_BASE (IO_PHYS)
  18. #define MTK_DEV_RNG1_SIZE (0x10000000)
  19. #define TOPCKGEN_BASE (IO_PHYS)
  20. /*******************************************************************************
  21. * APUSYS related constants
  22. ******************************************************************************/
  23. #define BCRM_FMEM_PDN_BASE (IO_PHYS + 0x00276000)
  24. #define APU_MD32_SYSCTRL (IO_PHYS + 0x09001000)
  25. #define APU_MD32_WDT (IO_PHYS + 0x09002000)
  26. #define APU_RCX_CONFIG (IO_PHYS + 0x09020000)
  27. #define APU_CTRL_DAPC_RCX_BASE (IO_PHYS + 0x09034000)
  28. #define APU_NOC_DAPC_RCX_BASE (IO_PHYS + 0x09038000)
  29. #define APU_REVISER (IO_PHYS + 0x0903c000)
  30. #define APU_RCX_VCORE_CONFIG (IO_PHYS + 0x090e0000)
  31. #define APU_MBOX0 (IO_PHYS + 0x090e1000)
  32. #define APU_MBOX1 (IO_PHYS + 0x090e2000)
  33. #define APU_RPCTOP (IO_PHYS + 0x090f0000)
  34. #define APU_PCUTOP (IO_PHYS + 0x090f1000)
  35. #define APU_AO_CTRL (IO_PHYS + 0x090f2000)
  36. #define APU_PLL (IO_PHYS + 0x090f3000)
  37. #define APU_ACC (IO_PHYS + 0x090f4000)
  38. #define APU_SEC_CON (IO_PHYS + 0x090f5000)
  39. #define APU_ARETOP_ARE0 (IO_PHYS + 0x090f6000)
  40. #define APU_ARETOP_ARE1 (IO_PHYS + 0x090f7000)
  41. #define APU_ARETOP_ARE2 (IO_PHYS + 0x090f8000)
  42. #define APU_CTRL_DAPC_AO_BASE (IO_PHYS + 0x090fc000)
  43. #define APU_ACX0_RPC_LITE (IO_PHYS + 0x09140000)
  44. #define BCRM_FMEM_PDN_SIZE (0x1000)
  45. /*******************************************************************************
  46. * AUDIO related constants
  47. ******************************************************************************/
  48. #define AUDIO_BASE (IO_PHYS + 0x00b10000)
  49. /*******************************************************************************
  50. * SPM related constants
  51. ******************************************************************************/
  52. #define SPM_BASE (IO_PHYS + 0x00006000)
  53. /*******************************************************************************
  54. * GPIO related constants
  55. ******************************************************************************/
  56. #define GPIO_BASE (IO_PHYS + 0x00005000)
  57. #define RGU_BASE (IO_PHYS + 0x00007000)
  58. #define DRM_BASE (IO_PHYS + 0x0000D000)
  59. #define IOCFG_RM_BASE (IO_PHYS + 0x01C00000)
  60. #define IOCFG_LT_BASE (IO_PHYS + 0x01E10000)
  61. #define IOCFG_LM_BASE (IO_PHYS + 0x01E20000)
  62. #define IOCFG_RT_BASE (IO_PHYS + 0x01EA0000)
  63. /*******************************************************************************
  64. * UART related constants
  65. ******************************************************************************/
  66. #define UART0_BASE (IO_PHYS + 0x01002000)
  67. #define UART_BAUDRATE (115200)
  68. /*******************************************************************************
  69. * PMIC related constants
  70. ******************************************************************************/
  71. #define PMIC_WRAP_BASE (IO_PHYS + 0x00024000)
  72. /*******************************************************************************
  73. * Infra IOMMU related constants
  74. ******************************************************************************/
  75. #define INFRACFG_AO_BASE (IO_PHYS + 0x00001000)
  76. #define INFRACFG_AO_MEM_BASE (IO_PHYS + 0x00002000)
  77. #define PERICFG_AO_BASE (IO_PHYS + 0x01003000)
  78. #define PERICFG_AO_REG_SIZE (0x1000)
  79. /*******************************************************************************
  80. * GIC-600 & interrupt handling related constants
  81. ******************************************************************************/
  82. /* Base MTK_platform compatible GIC memory map */
  83. #define BASE_GICD_BASE (MT_GIC_BASE)
  84. #define MT_GIC_RDIST_BASE (MT_GIC_BASE + 0x40000)
  85. #define DEV_IRQ_ID 580
  86. #define PLAT_MTK_G1S_IRQ_PROPS(grp) \
  87. INTR_PROP_DESC(DEV_IRQ_ID, GIC_HIGHEST_SEC_PRIORITY, grp, \
  88. GIC_INTR_CFG_LEVEL)
  89. /*******************************************************************************
  90. * CIRQ related constants
  91. ******************************************************************************/
  92. #define SYS_CIRQ_BASE (IO_PHYS + 0x204000)
  93. #define MD_WDT_IRQ_BIT_ID (141)
  94. #define CIRQ_IRQ_NUM (730)
  95. #define CIRQ_REG_NUM (23)
  96. #define CIRQ_SPI_START (96)
  97. /*******************************************************************************
  98. * MM IOMMU related constants
  99. ******************************************************************************/
  100. #define VDO_SECURE_IOMMU_BASE (IO_PHYS + 0x0c028000 + 0x4000)
  101. #define VPP_SECURE_IOMMU_BASE (IO_PHYS + 0x04018000 + 0x4000)
  102. /*******************************************************************************
  103. * SMI larb constants
  104. ******************************************************************************/
  105. #define SMI_LARB_0_BASE (IO_PHYS + 0x0c022000)
  106. #define SMI_LARB_1_BASE (IO_PHYS + 0x0c023000)
  107. #define SMI_LARB_2_BASE (IO_PHYS + 0x0c102000)
  108. #define SMI_LARB_3_BASE (IO_PHYS + 0x0c103000)
  109. #define SMI_LARB_4_BASE (IO_PHYS + 0x04013000)
  110. #define SMI_LARB_5_BASE (IO_PHYS + 0x04f02000)
  111. #define SMI_LARB_6_BASE (IO_PHYS + 0x04f03000)
  112. #define SMI_LARB_7_BASE (IO_PHYS + 0x04e04000)
  113. #define SMI_LARB_9_BASE (IO_PHYS + 0x05001000)
  114. #define SMI_LARB_10_BASE (IO_PHYS + 0x05120000)
  115. #define SMI_LARB_11A_BASE (IO_PHYS + 0x05230000)
  116. #define SMI_LARB_11B_BASE (IO_PHYS + 0x05530000)
  117. #define SMI_LARB_11C_BASE (IO_PHYS + 0x05630000)
  118. #define SMI_LARB_12_BASE (IO_PHYS + 0x05340000)
  119. #define SMI_LARB_13_BASE (IO_PHYS + 0x06001000)
  120. #define SMI_LARB_14_BASE (IO_PHYS + 0x06002000)
  121. #define SMI_LARB_15_BASE (IO_PHYS + 0x05140000)
  122. #define SMI_LARB_16A_BASE (IO_PHYS + 0x06008000)
  123. #define SMI_LARB_16B_BASE (IO_PHYS + 0x0600a000)
  124. #define SMI_LARB_17A_BASE (IO_PHYS + 0x06009000)
  125. #define SMI_LARB_17B_BASE (IO_PHYS + 0x0600b000)
  126. #define SMI_LARB_19_BASE (IO_PHYS + 0x0a010000)
  127. #define SMI_LARB_21_BASE (IO_PHYS + 0x0802e000)
  128. #define SMI_LARB_23_BASE (IO_PHYS + 0x0800d000)
  129. #define SMI_LARB_27_BASE (IO_PHYS + 0x07201000)
  130. #define SMI_LARB_28_BASE (IO_PHYS + 0x00000000)
  131. #define SMI_LARB_REG_RNG_SIZE (0x1000)
  132. /*******************************************************************************
  133. * SPM related constants
  134. ******************************************************************************/
  135. #define SPM_BASE (IO_PHYS + 0x00006000)
  136. /*******************************************************************************
  137. * APMIXEDSYS related constants
  138. ******************************************************************************/
  139. #define APMIXEDSYS (IO_PHYS + 0x0000C000)
  140. /*******************************************************************************
  141. * VPPSYS related constants
  142. ******************************************************************************/
  143. #define VPPSYS0_BASE (IO_PHYS + 0x04000000)
  144. #define VPPSYS1_BASE (IO_PHYS + 0x04f00000)
  145. /*******************************************************************************
  146. * VDOSYS related constants
  147. ******************************************************************************/
  148. #define VDOSYS0_BASE (IO_PHYS + 0x0C01D000)
  149. #define VDOSYS1_BASE (IO_PHYS + 0x0C100000)
  150. /*******************************************************************************
  151. * SSPM_MBOX_3 related constants
  152. ******************************************************************************/
  153. #define SSPM_MBOX_3_BASE (IO_PHYS + 0x00480000)
  154. /*******************************************************************************
  155. * DP related constants
  156. ******************************************************************************/
  157. #define EDP_SEC_BASE (IO_PHYS + 0x0C504000)
  158. #define DP_SEC_BASE (IO_PHYS + 0x0C604000)
  159. #define EDP_SEC_SIZE (0x1000)
  160. #define DP_SEC_SIZE (0x1000)
  161. /*******************************************************************************
  162. * EMI MPU related constants
  163. *******************************************************************************/
  164. #define EMI_MPU_BASE (IO_PHYS + 0x00226000)
  165. #define SUB_EMI_MPU_BASE (IO_PHYS + 0x00225000)
  166. /*******************************************************************************
  167. * TRNG related constants
  168. ******************************************************************************/
  169. #define TRNG_BASE (IO_PHYS + 0x0020F000)
  170. /*******************************************************************************
  171. * System counter frequency related constants
  172. ******************************************************************************/
  173. #define SYS_COUNTER_FREQ_IN_HZ (13000000)
  174. #define SYS_COUNTER_FREQ_IN_MHZ (13)
  175. /*******************************************************************************
  176. * Platform binary types for linking
  177. ******************************************************************************/
  178. #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
  179. #define PLATFORM_LINKER_ARCH aarch64
  180. /*******************************************************************************
  181. * Generic platform constants
  182. ******************************************************************************/
  183. #define PLATFORM_STACK_SIZE (0x800)
  184. #define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n"
  185. #define SOC_CHIP_ID U(0x8188)
  186. /*******************************************************************************
  187. * Platform memory map related constants
  188. ******************************************************************************/
  189. #define TZRAM_BASE (0x54600000)
  190. #define TZRAM_SIZE (0x00040000)
  191. /*******************************************************************************
  192. * BL31 specific defines.
  193. ******************************************************************************/
  194. /*
  195. * Put BL3-1 at the top of the Trusted SRAM (just below the shared memory, if
  196. * present). BL31_BASE is calculated using the current BL3-1 debug size plus a
  197. * little space for growth.
  198. */
  199. #define BL31_BASE (TZRAM_BASE + 0x1000)
  200. #define BL31_LIMIT (TZRAM_BASE + TZRAM_SIZE)
  201. /*******************************************************************************
  202. * Platform specific page table and MMU setup constants
  203. ******************************************************************************/
  204. #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
  205. #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
  206. #define MAX_XLAT_TABLES (16)
  207. #define MAX_MMAP_REGIONS (16)
  208. /*******************************************************************************
  209. * CPU_EB TCM handling related constants
  210. ******************************************************************************/
  211. #define CPU_EB_TCM_BASE (0x0C550000)
  212. #define CPU_EB_TCM_SIZE (0x10000)
  213. #define CPU_EB_MBOX3_OFFSET (0xFCE0)
  214. /*******************************************************************************
  215. * CPU PM definitions
  216. *******************************************************************************/
  217. #define PLAT_CPU_PM_B_BUCK_ISO_ID (6)
  218. #define PLAT_CPU_PM_ILDO_ID (6)
  219. #define CPU_IDLE_SRAM_BASE (0x11B000)
  220. #define CPU_IDLE_SRAM_SIZE (0x1000)
  221. #endif /* PLATFORM_DEF_H */