platform_def.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2014-2022, 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. #ifndef PLATFORM_DEF_H
  9. #define PLATFORM_DEF_H
  10. #include <arch.h>
  11. #include <common/interrupt_props.h>
  12. #include <drivers/arm/gic_common.h>
  13. #include <lib/utils_def.h>
  14. #include "zynqmp_def.h"
  15. /*******************************************************************************
  16. * Generic platform constants
  17. ******************************************************************************/
  18. /* Size of cacheable stacks */
  19. #ifndef PLATFORM_STACK_SIZE
  20. #define PLATFORM_STACK_SIZE 0x440
  21. #endif
  22. #define PLATFORM_CORE_COUNT U(4)
  23. #define PLAT_MAX_PWR_LVL U(1)
  24. #define PLAT_MAX_RET_STATE U(1)
  25. #define PLAT_MAX_OFF_STATE U(2)
  26. /*******************************************************************************
  27. * BL31 specific defines.
  28. ******************************************************************************/
  29. /*
  30. * Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
  31. * present). BL31_BASE is calculated using the current BL31 debug size plus a
  32. * little space for growth.
  33. */
  34. #ifndef ZYNQMP_ATF_MEM_BASE
  35. #if !DEBUG && defined(SPD_none) && !SDEI_SUPPORT
  36. # define BL31_BASE U(0xfffea000)
  37. # define BL31_LIMIT U(0x100000000)
  38. #else
  39. # define BL31_BASE U(0x1000)
  40. # define BL31_LIMIT U(0x80000)
  41. #endif
  42. #else
  43. # define BL31_BASE U(ZYNQMP_ATF_MEM_BASE)
  44. # define BL31_LIMIT (UL(ZYNQMP_ATF_MEM_BASE) + U(ZYNQMP_ATF_MEM_SIZE))
  45. # ifdef ZYNQMP_ATF_MEM_PROGBITS_SIZE
  46. # define BL31_PROGBITS_LIMIT (UL(ZYNQMP_ATF_MEM_BASE) + U(ZYNQMP_ATF_MEM_PROGBITS_SIZE))
  47. # endif
  48. #endif
  49. /*******************************************************************************
  50. * BL32 specific defines.
  51. ******************************************************************************/
  52. #ifndef ZYNQMP_BL32_MEM_BASE
  53. # define BL32_BASE U(0x60000000)
  54. # define BL32_LIMIT U(0x80000000)
  55. #else
  56. # define BL32_BASE U(ZYNQMP_BL32_MEM_BASE)
  57. # define BL32_LIMIT (UL(ZYNQMP_BL32_MEM_BASE) + U(ZYNQMP_BL32_MEM_SIZE))
  58. #endif
  59. /*******************************************************************************
  60. * BL33 specific defines.
  61. ******************************************************************************/
  62. #ifndef PRELOADED_BL33_BASE
  63. # define PLAT_ARM_NS_IMAGE_BASE U(0x8000000)
  64. #else
  65. # define PLAT_ARM_NS_IMAGE_BASE U(PRELOADED_BL33_BASE)
  66. #endif
  67. /*******************************************************************************
  68. * TSP specific defines.
  69. ******************************************************************************/
  70. #define TSP_SEC_MEM_BASE BL32_BASE
  71. #define TSP_SEC_MEM_SIZE (BL32_LIMIT - BL32_BASE)
  72. /* ID of the secure physical generic timer interrupt used by the TSP */
  73. #define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER
  74. /*******************************************************************************
  75. * Platform specific page table and MMU setup constants
  76. ******************************************************************************/
  77. #define XILINX_OF_BOARD_DTB_MAX_SIZE U(0x200000)
  78. #define PLAT_DDR_LOWMEM_MAX U(0x80000000)
  79. #define PLAT_OCM_BASE U(0xFFFC0000)
  80. #define PLAT_OCM_LIMIT U(0xFFFFFFFF)
  81. #define IS_TFA_IN_OCM(x) ((x >= PLAT_OCM_BASE) && (x < PLAT_OCM_LIMIT))
  82. #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
  83. #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
  84. #ifndef MAX_MMAP_REGIONS
  85. #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
  86. #define MAX_MMAP_REGIONS 8
  87. #else
  88. #define MAX_MMAP_REGIONS 7
  89. #endif
  90. #endif
  91. #ifndef MAX_XLAT_TABLES
  92. #if !IS_TFA_IN_OCM(BL31_BASE)
  93. #define MAX_XLAT_TABLES 8
  94. #else
  95. #define MAX_XLAT_TABLES 5
  96. #endif
  97. #endif
  98. #define CACHE_WRITEBACK_SHIFT 6
  99. #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
  100. #define ZYNQMP_SDEI_SGI_PRIVATE U(8)
  101. /* Platform macros to support exception handling framework */
  102. #define PLAT_PRI_BITS U(3)
  103. #define PLAT_SDEI_CRITICAL_PRI 0x10
  104. #define PLAT_SDEI_NORMAL_PRI 0x20
  105. #define PLAT_ARM_GICD_BASE BASE_GICD_BASE
  106. #define PLAT_ARM_GICC_BASE BASE_GICC_BASE
  107. /*
  108. * Define properties of Group 1 Secure and Group 0 interrupts as per GICv3
  109. * terminology. On a GICv2 system or mode, the lists will be merged and treated
  110. * as Group 0 interrupts.
  111. */
  112. #if !ZYNQMP_WDT_RESTART
  113. #define PLAT_ARM_G1S_IRQ_PROPS(grp) \
  114. INTR_PROP_DESC(ARM_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
  115. GIC_INTR_CFG_LEVEL), \
  116. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
  117. GIC_INTR_CFG_EDGE), \
  118. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, grp, \
  119. GIC_INTR_CFG_EDGE), \
  120. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, grp, \
  121. GIC_INTR_CFG_EDGE), \
  122. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, grp, \
  123. GIC_INTR_CFG_EDGE), \
  124. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, grp, \
  125. GIC_INTR_CFG_EDGE), \
  126. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, grp, \
  127. GIC_INTR_CFG_EDGE), \
  128. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \
  129. GIC_INTR_CFG_EDGE)
  130. #else
  131. #define PLAT_ARM_G1S_IRQ_PROPS(grp) \
  132. INTR_PROP_DESC(ARM_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
  133. GIC_INTR_CFG_LEVEL), \
  134. INTR_PROP_DESC(IRQ_TTC3_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
  135. GIC_INTR_CFG_EDGE), \
  136. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
  137. GIC_INTR_CFG_EDGE), \
  138. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, grp, \
  139. GIC_INTR_CFG_EDGE), \
  140. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, grp, \
  141. GIC_INTR_CFG_EDGE), \
  142. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, grp, \
  143. GIC_INTR_CFG_EDGE), \
  144. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, grp, \
  145. GIC_INTR_CFG_EDGE), \
  146. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, grp, \
  147. GIC_INTR_CFG_EDGE), \
  148. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \
  149. GIC_INTR_CFG_EDGE)
  150. #endif
  151. #define PLAT_ARM_G0_IRQ_PROPS(grp) \
  152. INTR_PROP_DESC(ARM_IRQ_SEC_SGI_0, PLAT_SDEI_NORMAL_PRI, grp, \
  153. GIC_INTR_CFG_EDGE)
  154. #endif /* PLATFORM_DEF_H */