platform_def.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Copyright (c) 2018-2020, Arm Limited and Contributors. All rights reserved.
  3. * Copyright (c) 2021-2022, Xilinx, Inc. All rights reserved.
  4. * Copyright (c) 2022-2024, 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 "def.h"
  12. /*******************************************************************************
  13. * Generic platform constants
  14. ******************************************************************************/
  15. /* Size of cacheable stacks */
  16. #define PLATFORM_STACK_SIZE U(0x440)
  17. #define PLATFORM_CLUSTER_COUNT U(4)
  18. #define PLATFORM_CORE_COUNT_PER_CLUSTER U(2) /* 2 CPUs per cluster */
  19. #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * PLATFORM_CORE_COUNT_PER_CLUSTER)
  20. #define PLAT_MAX_PWR_LVL U(2)
  21. #define PLAT_MAX_RET_STATE U(1)
  22. #define PLAT_MAX_OFF_STATE U(2)
  23. /*******************************************************************************
  24. * BL31 specific defines.
  25. ******************************************************************************/
  26. /*
  27. * Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
  28. * present). BL31_BASE is calculated using the current BL31 debug size plus a
  29. * little space for growth.
  30. */
  31. #ifndef MEM_BASE
  32. # define BL31_BASE U(0xBBF00000)
  33. # define BL31_LIMIT U(0xBC000000)
  34. #else
  35. # define BL31_BASE U(MEM_BASE)
  36. # define BL31_LIMIT U(MEM_BASE + MEM_SIZE)
  37. # ifdef MEM_PROGBITS_SIZE
  38. # define BL31_PROGBITS_LIMIT U(MEM_BASE + \
  39. MEM_PROGBITS_SIZE)
  40. # endif
  41. #endif
  42. /*******************************************************************************
  43. * BL32 specific defines.
  44. ******************************************************************************/
  45. #ifndef BL32_MEM_BASE
  46. # define BL32_BASE U(0x60000000)
  47. # define BL32_LIMIT U(0x80000000)
  48. #else
  49. # define BL32_BASE U(BL32_MEM_BASE)
  50. # define BL32_LIMIT U(BL32_MEM_BASE + BL32_MEM_SIZE)
  51. #endif
  52. /*******************************************************************************
  53. * BL33 specific defines.
  54. ******************************************************************************/
  55. #ifndef PRELOADED_BL33_BASE
  56. # define PLAT_ARM_NS_IMAGE_BASE U(0x8000000)
  57. #else
  58. # define PLAT_ARM_NS_IMAGE_BASE U(PRELOADED_BL33_BASE)
  59. #endif
  60. /*******************************************************************************
  61. * TSP specific defines.
  62. ******************************************************************************/
  63. #define TSP_SEC_MEM_BASE BL32_BASE
  64. #define TSP_SEC_MEM_SIZE (BL32_LIMIT - BL32_BASE)
  65. /* ID of the secure physical generic timer interrupt used by the TSP */
  66. #define ARM_IRQ_SEC_PHY_TIMER U(29)
  67. #define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER
  68. /*******************************************************************************
  69. * Platform specific page table and MMU setup constants
  70. ******************************************************************************/
  71. #define PLAT_DDR_LOWMEM_MAX U(0x80000000)
  72. #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32U)
  73. #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32U)
  74. #define XILINX_OF_BOARD_DTB_MAX_SIZE U(0x200000)
  75. #define PLAT_OCM_BASE U(0xBBF00000)
  76. #define PLAT_OCM_LIMIT U(0xBC000000)
  77. #if TRANSFER_LIST
  78. /*
  79. * FIXME: This address should come from firmware before TF-A
  80. * Having this to make sure the transfer list functionality works
  81. */
  82. #define FW_HANDOFF_BASE U(0x70000000)
  83. #define FW_HANDOFF_SIZE U(0x10000)
  84. #endif
  85. #define IS_TFA_IN_OCM(x) ((x >= PLAT_OCM_BASE) && (x < PLAT_OCM_LIMIT))
  86. #ifndef MAX_MMAP_REGIONS
  87. #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
  88. #define MAX_MMAP_REGIONS 11
  89. #else
  90. #define MAX_MMAP_REGIONS 10
  91. #endif
  92. #endif
  93. #ifndef MAX_XLAT_TABLES
  94. #define MAX_XLAT_TABLES U(12)
  95. #endif
  96. #define CACHE_WRITEBACK_SHIFT U(6)
  97. #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
  98. #define PLAT_GICD_BASE_VALUE U(0xE2000000)
  99. #define PLAT_GICR_BASE_VALUE U(0xE2060000)
  100. /*
  101. * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
  102. * terminology. On a GICv2 system or mode, the lists will be merged and treated
  103. * as Group 0 interrupts.
  104. */
  105. #define PLAT_IPI_IRQ 89
  106. #define PLAT_VERSAL_IPI_IRQ PLAT_IPI_IRQ
  107. #define PLAT_G1S_IRQ_PROPS(grp) \
  108. INTR_PROP_DESC(IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
  109. GIC_INTR_CFG_LEVEL)
  110. #define PLAT_G0_IRQ_PROPS(grp) \
  111. INTR_PROP_DESC(PLAT_VERSAL_IPI_IRQ, GIC_HIGHEST_SEC_PRIORITY, grp, \
  112. GIC_INTR_CFG_EDGE), \
  113. #define IRQ_MAX 200U
  114. #endif /* PLATFORM_DEF_H */