platform_def.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * Copyright (c) 2021-2024, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef FVP_R_PLATFORM_DEF_H
  7. #define FVP_R_PLATFORM_DEF_H
  8. #define PLAT_V2M_OFFSET 0x80000000
  9. #define BL33_IMAGE_DESC { \
  10. .image_id = BL33_IMAGE_ID, \
  11. SET_STATIC_PARAM_HEAD(image_info, PARAM_EP, \
  12. VERSION_2, image_info_t, 0), \
  13. .image_info.image_base = PLAT_ARM_DRAM1_BASE + 0x1000, \
  14. .image_info.image_max_size = UL(0x3ffff000), \
  15. SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP, \
  16. VERSION_2, entry_point_info_t, SECURE | EXECUTABLE),\
  17. .ep_info.pc = PLAT_ARM_DRAM1_BASE + 0x1000, \
  18. .ep_info.spsr = SPSR_64(MODE_EL2, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS), \
  19. }
  20. #include "../fvp_r_def.h"
  21. #include <drivers/arm/tzc400.h>
  22. #include <lib/utils_def.h>
  23. #include <plat/arm/board/common/v2m_def.h>
  24. /* These are referenced by arm_def.h #included next, so #define first. */
  25. #define PLAT_ARM_TRUSTED_ROM_BASE UL(0x80000000)
  26. #define PLAT_ARM_TRUSTED_SRAM_BASE UL(0x84000000)
  27. #define PLAT_ARM_TRUSTED_DRAM_BASE UL(0x86000000)
  28. #define PLAT_ARM_DRAM1_BASE ULL(0x0)
  29. #define PLAT_ARM_DRAM2_BASE ULL(0x080000000)
  30. #define PLAT_HW_CONFIG_DTB_BASE ULL(0x12000000)
  31. #define PLAT_ARM_SYS_CNTCTL_BASE UL(0xaa430000)
  32. #define PLAT_ARM_SYS_CNTREAD_BASE UL(0xaa800000)
  33. #define PLAT_ARM_SYS_TIMCTL_BASE UL(0xaa810000)
  34. #define PLAT_ARM_SYS_CNT_BASE_S UL(0xaa820000)
  35. #define PLAT_ARM_SYS_CNT_BASE_NS UL(0xaa830000)
  36. #define PLAT_ARM_SP805_TWDG_BASE UL(0xaa490000)
  37. #include <plat/arm/common/arm_def.h>
  38. #include <plat/common/common_def.h>
  39. /* Required to create plat_regions: */
  40. #define MIN_LVL_BLOCK_DESC U(1)
  41. /* Required platform porting definitions */
  42. #define PLATFORM_CORE_COUNT (U(FVP_R_CLUSTER_COUNT) * \
  43. U(FVP_R_MAX_CPUS_PER_CLUSTER) * \
  44. U(FVP_R_MAX_PE_PER_CPU))
  45. #define PLAT_NUM_PWR_DOMAINS (U(FVP_R_CLUSTER_COUNT) + \
  46. PLATFORM_CORE_COUNT + U(1))
  47. #define PLAT_MAX_PWR_LVL ARM_PWR_LVL2
  48. /*
  49. * Other platform porting definitions are provided by included headers
  50. */
  51. /*
  52. * Required ARM standard platform porting definitions
  53. */
  54. #define PLAT_ARM_CLUSTER_COUNT U(FVP_R_CLUSTER_COUNT)
  55. #define PLAT_ARM_DRAM1_SIZE ULL(0x7fffffff)
  56. #define PLAT_ARM_TRUSTED_SRAM_SIZE UL(0x00040000) /* 256 KB */
  57. #define PLAT_ARM_TRUSTED_ROM_SIZE UL(0x04000000) /* 64 MB */
  58. #define PLAT_ARM_TRUSTED_DRAM_SIZE UL(0x02000000) /* 32 MB */
  59. /* These two are defined thus in arm_def.h, but doesn't seem to see it... */
  60. #define PLAT_BL1_RO_LIMIT (BL1_RO_BASE \
  61. + PLAT_ARM_TRUSTED_ROM_SIZE)
  62. /* virtual address used by dynamic mem_protect for chunk_base */
  63. #define PLAT_ARM_MEM_PROTEC_VA_FRAME UL(0xc0000000)
  64. /* No SCP in FVP_R */
  65. #define PLAT_ARM_SCP_TZC_DRAM1_SIZE UL(0x0)
  66. #define PLAT_ARM_DRAM2_SIZE UL(0x80000000)
  67. #define PLAT_ARM_HW_CONFIG_SIZE ULL(0x8000)
  68. #define ARM_DTB_DRAM_NS MAP_REGION_FLAT( \
  69. PLAT_HW_CONFIG_DTB_BASE, \
  70. PLAT_ARM_HW_CONFIG_SIZE, \
  71. MT_MEMORY | MT_RO | MT_NS)
  72. #define V2M_FVP_R_SYSREGS_BASE UL(0x9c010000)
  73. /*
  74. * Load address of BL33 for this platform port,
  75. * U-Boot specifically must be loaded at a 4K aligned address.
  76. */
  77. #define PLAT_ARM_NS_IMAGE_BASE (PLAT_ARM_DRAM1_BASE + 0x1000)
  78. /*
  79. * PLAT_ARM_MMAP_ENTRIES depends on the number of entries in the
  80. * plat_arm_mmap array defined for each BL stage.
  81. */
  82. #if !USE_ROMLIB
  83. # define PLAT_ARM_MMAP_ENTRIES 11
  84. # define MAX_XLAT_TABLES 5
  85. #else
  86. # define PLAT_ARM_MMAP_ENTRIES 12
  87. # define MAX_XLAT_TABLES 6
  88. #endif
  89. # define N_MPU_REGIONS 16 /* number of MPU regions */
  90. # define ALL_MPU_EL2_REGIONS_USED 0xffffffff
  91. /* this is the PRENR_EL2 value if all MPU regions are in use */
  92. /*
  93. * PLAT_ARM_MAX_BL1_RW_SIZE is calculated using the current BL1 RW debug size
  94. * plus a little space for growth.
  95. */
  96. #define PLAT_ARM_MAX_BL1_RW_SIZE UL(0xB000)
  97. /*
  98. * PLAT_ARM_MAX_ROMLIB_RW_SIZE is define to use a full page
  99. */
  100. #if USE_ROMLIB
  101. #define PLAT_ARM_MAX_ROMLIB_RW_SIZE UL(0x1000)
  102. #define PLAT_ARM_MAX_ROMLIB_RO_SIZE UL(0xe000)
  103. #define FVP_R_BL2_ROMLIB_OPTIMIZATION UL(0x6000)
  104. #else
  105. #define PLAT_ARM_MAX_ROMLIB_RW_SIZE UL(0)
  106. #define PLAT_ARM_MAX_ROMLIB_RO_SIZE UL(0)
  107. #define FVP_R_BL2_ROMLIB_OPTIMIZATION UL(0)
  108. #endif
  109. /*
  110. * PLAT_ARM_MAX_BL2_SIZE is calculated using the current BL2 debug size plus a
  111. * little space for growth.
  112. */
  113. #if TRUSTED_BOARD_BOOT
  114. #if COT_DESC_IN_DTB
  115. # define PLAT_ARM_MAX_BL2_SIZE (UL(0x1E000) - FVP_R_BL2_ROMLIB_OPTIMIZATION)
  116. #else
  117. # define PLAT_ARM_MAX_BL2_SIZE (UL(0x1D000) - FVP_R_BL2_ROMLIB_OPTIMIZATION)
  118. #endif
  119. #else
  120. # define PLAT_ARM_MAX_BL2_SIZE (UL(0x13000) - FVP_R_BL2_ROMLIB_OPTIMIZATION)
  121. #endif
  122. /*
  123. * Since BL31 NOBITS overlays BL2 and BL1-RW, PLAT_ARM_MAX_BL31_SIZE is
  124. * calculated using the current BL31 PROGBITS debug size plus the sizes of
  125. * BL2 and BL1-RW
  126. */
  127. #define PLAT_ARM_MAX_BL31_SIZE UL(0x3D000)
  128. /*
  129. * Size of cacheable stacks
  130. */
  131. #if defined(IMAGE_BL1)
  132. # if TRUSTED_BOARD_BOOT
  133. # define PLATFORM_STACK_SIZE UL(0x1000)
  134. # else
  135. # define PLATFORM_STACK_SIZE UL(0x500)
  136. # endif
  137. #endif
  138. #define MAX_IO_DEVICES 3
  139. #define MAX_IO_HANDLES 4
  140. /*
  141. * These nominally reserve the last block of flash for PSCI MEM PROTECT flag,
  142. * but no PSCI in FVP_R platform, so reserve nothing:
  143. */
  144. #define PLAT_ARM_FLASH_IMAGE_BASE (PLAT_ARM_DRAM1_BASE + UL(0x40000000))
  145. #define PLAT_ARM_FLASH_IMAGE_MAX_SIZE (PLAT_ARM_DRAM1_SIZE - UL(0x40000000))
  146. #define PLAT_ARM_NVM_BASE V2M_FLASH0_BASE
  147. #define PLAT_ARM_NVM_SIZE (V2M_FLASH0_SIZE - V2M_FLASH_BLOCK_SIZE)
  148. /*
  149. * PL011 related constants
  150. */
  151. #define PLAT_ARM_BOOT_UART_BASE V2M_IOFPGA_UART0_BASE
  152. #define PLAT_ARM_BOOT_UART_CLK_IN_HZ V2M_IOFPGA_UART0_CLK_IN_HZ
  153. #define PLAT_ARM_RUN_UART_BASE V2M_IOFPGA_UART1_BASE
  154. #define PLAT_ARM_RUN_UART_CLK_IN_HZ V2M_IOFPGA_UART1_CLK_IN_HZ
  155. #define PLAT_ARM_CRASH_UART_BASE PLAT_ARM_RUN_UART_BASE
  156. #define PLAT_ARM_CRASH_UART_CLK_IN_HZ PLAT_ARM_RUN_UART_CLK_IN_HZ
  157. #define PLAT_ARM_TSP_UART_BASE V2M_IOFPGA_UART2_BASE
  158. #define PLAT_ARM_TSP_UART_CLK_IN_HZ V2M_IOFPGA_UART2_CLK_IN_HZ
  159. /* CCI related constants */
  160. #define PLAT_FVP_R_CCI400_BASE UL(0xac090000)
  161. #define PLAT_FVP_R_CCI400_CLUS0_SL_PORT 3
  162. #define PLAT_FVP_R_CCI400_CLUS1_SL_PORT 4
  163. /* CCI-500/CCI-550 on Base platform */
  164. #define PLAT_FVP_R_CCI5XX_BASE UL(0xaa000000)
  165. #define PLAT_FVP_R_CCI5XX_CLUS0_SL_PORT 5
  166. #define PLAT_FVP_R_CCI5XX_CLUS1_SL_PORT 6
  167. /* System timer related constants */
  168. #define PLAT_ARM_NSTIMER_FRAME_ID U(1)
  169. /* Mailbox base address */
  170. #define PLAT_ARM_TRUSTED_MAILBOX_BASE ARM_TRUSTED_SRAM_BASE
  171. /* TrustZone controller related constants
  172. *
  173. * Currently only filters 0 and 2 are connected on Base FVP_R.
  174. * Filter 0 : CPU clusters (no access to DRAM by default)
  175. * Filter 1 : not connected
  176. * Filter 2 : LCDs (access to VRAM allowed by default)
  177. * Filter 3 : not connected
  178. * Programming unconnected filters will have no effect at the
  179. * moment. These filter could, however, be connected in future.
  180. * So care should be taken not to configure the unused filters.
  181. *
  182. * Allow only non-secure access to all DRAM to supported devices.
  183. * Give access to the CPUs and Virtio. Some devices
  184. * would normally use the default ID so allow that too.
  185. */
  186. #define PLAT_ARM_TZC_BASE UL(0xaa4a0000)
  187. #define PLAT_ARM_TZC_FILTERS TZC_400_REGION_ATTR_FILTER_BIT(0)
  188. #define PLAT_ARM_TZC_NS_DEV_ACCESS ( \
  189. TZC_REGION_ACCESS_RDWR(FVP_R_NSAID_DEFAULT) | \
  190. TZC_REGION_ACCESS_RDWR(FVP_R_NSAID_PCI) | \
  191. TZC_REGION_ACCESS_RDWR(FVP_R_NSAID_AP) | \
  192. TZC_REGION_ACCESS_RDWR(FVP_R_NSAID_VIRTIO) | \
  193. TZC_REGION_ACCESS_RDWR(FVP_R_NSAID_VIRTIO_OLD))
  194. /*
  195. * GIC related constants to cater for both GICv2 and GICv3 instances of an
  196. * FVP_R. They could be overridden at runtime in case the FVP_R implements the
  197. * legacy VE memory map.
  198. */
  199. #define PLAT_ARM_GICD_BASE BASE_GICD_BASE
  200. #define PLAT_ARM_GICR_BASE BASE_GICR_BASE
  201. #define PLAT_ARM_GICC_BASE BASE_GICC_BASE
  202. #define PLAT_ARM_SP_IMAGE_STACK_BASE (PLAT_SP_IMAGE_NS_BUF_BASE + \
  203. PLAT_SP_IMAGE_NS_BUF_SIZE)
  204. #define PLAT_SP_PRI PLAT_RAS_PRI
  205. /*
  206. * Physical and virtual address space limits for MPU in AARCH64 & AARCH32 modes
  207. */
  208. #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 36)
  209. #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 36)
  210. #define ARM_SOC_CONTINUATION_SHIFT U(24)
  211. #define ARM_SOC_IDENTIFICATION_SHIFT U(16)
  212. #endif /* FVP_R_PLATFORM_DEF_H */