platform_def.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
  3. * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
  4. *
  5. * SPDX-License-Identifier: BSD-3-Clause
  6. */
  7. #ifndef PLATFORM_DEF_H
  8. #define PLATFORM_DEF_H
  9. #include <arch.h>
  10. #include <lib/utils_def.h>
  11. #include <tegra_def.h>
  12. /*******************************************************************************
  13. * Check and error if SEPARATE_CODE_AND_RODATA is not set to 1
  14. ******************************************************************************/
  15. #if !SEPARATE_CODE_AND_RODATA
  16. #error "SEPARATE_CODE_AND_RODATA should be set to 1"
  17. #endif
  18. /*
  19. * Platform binary types for linking
  20. */
  21. #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
  22. #define PLATFORM_LINKER_ARCH aarch64
  23. /*
  24. * Platform binary types for linking
  25. */
  26. #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
  27. #define PLATFORM_LINKER_ARCH aarch64
  28. /*******************************************************************************
  29. * Generic platform constants
  30. ******************************************************************************/
  31. /* Size of cacheable stacks */
  32. #ifdef IMAGE_BL31
  33. #define PLATFORM_STACK_SIZE U(0x400)
  34. #endif
  35. #define PLAT_MAX_PWR_LVL MPIDR_AFFLVL2
  36. #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
  37. PLATFORM_MAX_CPUS_PER_CLUSTER)
  38. #define PLAT_NUM_PWR_DOMAINS (PLATFORM_CORE_COUNT + \
  39. PLATFORM_CLUSTER_COUNT + U(1))
  40. /*******************************************************************************
  41. * Platform console related constants
  42. ******************************************************************************/
  43. #define TEGRA_CONSOLE_BAUDRATE U(115200)
  44. #define TEGRA_BOOT_UART_CLK_13_MHZ U(13000000)
  45. #define TEGRA_BOOT_UART_CLK_408_MHZ U(408000000)
  46. /*******************************************************************************
  47. * Platform memory map related constants
  48. ******************************************************************************/
  49. /* Size of trusted dram */
  50. #define TZDRAM_SIZE U(0x00400000)
  51. #define TZDRAM_END (TZDRAM_BASE + TZDRAM_SIZE)
  52. /*******************************************************************************
  53. * BL31 specific defines.
  54. ******************************************************************************/
  55. #define BL31_BASE TZDRAM_BASE
  56. #define BL31_LIMIT (TZDRAM_BASE + BL31_SIZE - 1)
  57. #define BL32_BASE (TZDRAM_BASE + BL31_SIZE)
  58. #define BL32_LIMIT TZDRAM_END
  59. /*******************************************************************************
  60. * Some data must be aligned on the biggest cache line size in the platform.
  61. * This is known only to the platform as it might have a combination of
  62. * integrated and external caches.
  63. ******************************************************************************/
  64. #define CACHE_WRITEBACK_SHIFT 6
  65. #define CACHE_WRITEBACK_GRANULE (0x40) /* (U(1) << CACHE_WRITEBACK_SHIFT) */
  66. /*******************************************************************************
  67. * Dummy macros to compile io_storage support
  68. ******************************************************************************/
  69. #define MAX_IO_DEVICES U(0)
  70. #define MAX_IO_HANDLES U(0)
  71. /*******************************************************************************
  72. * Platforms macros to support SDEI
  73. ******************************************************************************/
  74. #define TEGRA_SDEI_SGI_PRIVATE U(8)
  75. /*******************************************************************************
  76. * Platform macros to support exception handling framework
  77. ******************************************************************************/
  78. #define PLAT_PRI_BITS U(3)
  79. #define PLAT_RAS_PRI U(0x10)
  80. #define PLAT_SDEI_CRITICAL_PRI U(0x20)
  81. #define PLAT_SDEI_NORMAL_PRI U(0x30)
  82. #define PLAT_TEGRA_WDT_PRIO U(0x40)
  83. #define PLAT_EHF_DESC EHF_PRI_DESC(PLAT_PRI_BITS,\
  84. PLAT_TEGRA_WDT_PRIO)
  85. /*******************************************************************************
  86. * SDEI events
  87. ******************************************************************************/
  88. /* SDEI dynamic private event numbers */
  89. #define TEGRA_SDEI_DP_EVENT_0 U(100)
  90. #define TEGRA_SDEI_DP_EVENT_1 U(101)
  91. #define TEGRA_SDEI_DP_EVENT_2 U(102)
  92. /* SDEI dynamic shared event numbers */
  93. #define TEGRA_SDEI_DS_EVENT_0 U(200)
  94. #define TEGRA_SDEI_DS_EVENT_1 U(201)
  95. #define TEGRA_SDEI_DS_EVENT_2 U(202)
  96. /* SDEI explicit events */
  97. #define TEGRA_SDEI_EP_EVENT_0 U(300)
  98. #define TEGRA_SDEI_EP_EVENT_1 U(301)
  99. #define TEGRA_SDEI_EP_EVENT_2 U(302)
  100. #define TEGRA_SDEI_EP_EVENT_3 U(303)
  101. #define TEGRA_SDEI_EP_EVENT_4 U(304)
  102. #define TEGRA_SDEI_EP_EVENT_5 U(305)
  103. #define TEGRA_SDEI_EP_EVENT_6 U(306)
  104. #define TEGRA_SDEI_EP_EVENT_7 U(307)
  105. #define TEGRA_SDEI_EP_EVENT_8 U(308)
  106. #define TEGRA_SDEI_EP_EVENT_9 U(309)
  107. #define TEGRA_SDEI_EP_EVENT_10 U(310)
  108. #define TEGRA_SDEI_EP_EVENT_11 U(311)
  109. #endif /* PLATFORM_DEF_H */