platform_def.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright (c) 2023, 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.h>
  9. #include <common_def.h>
  10. #include <rk3568_def.h>
  11. #define DEBUG_XLAT_TABLE 0
  12. /*******************************************************************************
  13. * Platform binary types for linking
  14. ******************************************************************************/
  15. #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
  16. #define PLATFORM_LINKER_ARCH aarch64
  17. /*******************************************************************************
  18. * Generic platform constants
  19. ******************************************************************************/
  20. /* Size of cacheable stacks */
  21. #if DEBUG_XLAT_TABLE
  22. #define PLATFORM_STACK_SIZE 0x800
  23. #elif IMAGE_BL1
  24. #define PLATFORM_STACK_SIZE 0x440
  25. #elif IMAGE_BL2
  26. #define PLATFORM_STACK_SIZE 0x400
  27. #elif IMAGE_BL31
  28. #define PLATFORM_STACK_SIZE 0x800
  29. #elif IMAGE_BL32
  30. #define PLATFORM_STACK_SIZE 0x440
  31. #endif
  32. #define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n"
  33. #define PLATFORM_SYSTEM_COUNT 1
  34. #define PLATFORM_CLUSTER_COUNT 1
  35. #define PLATFORM_CLUSTER0_CORE_COUNT 4
  36. #define PLATFORM_CLUSTER1_CORE_COUNT 0
  37. #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER1_CORE_COUNT + \
  38. PLATFORM_CLUSTER0_CORE_COUNT)
  39. #define PLATFORM_NUM_AFFS (PLATFORM_SYSTEM_COUNT + \
  40. PLATFORM_CLUSTER_COUNT + \
  41. PLATFORM_CORE_COUNT)
  42. #define PLAT_MAX_PWR_LVL MPIDR_AFFLVL2
  43. #define PLAT_RK_CLST_TO_CPUID_SHIFT 8
  44. /*
  45. * This macro defines the deepest retention state possible. A higher state
  46. * id will represent an invalid or a power down state.
  47. */
  48. #define PLAT_MAX_RET_STATE 1
  49. /*
  50. * This macro defines the deepest power down states possible. Any state ID
  51. * higher than this is invalid.
  52. */
  53. #define PLAT_MAX_OFF_STATE 2
  54. /*******************************************************************************
  55. * Platform memory map related constants
  56. ******************************************************************************/
  57. /* TF txet, ro, rw, Size: 512KB */
  58. #define TZRAM_BASE (0x0)
  59. #define TZRAM_SIZE (0x100000)
  60. /*******************************************************************************
  61. * BL31 specific defines.
  62. ******************************************************************************/
  63. /*
  64. * Put BL3-1 at the top of the Trusted RAM
  65. */
  66. #define BL31_BASE (TZRAM_BASE + 0x40000)
  67. #define BL31_LIMIT (TZRAM_BASE + TZRAM_SIZE)
  68. /*******************************************************************************
  69. * Platform specific page table and MMU setup constants
  70. ******************************************************************************/
  71. #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
  72. #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
  73. #define ADDR_SPACE_SIZE (1ull << 32)
  74. #define MAX_XLAT_TABLES 18
  75. #define MAX_MMAP_REGIONS 27
  76. /*******************************************************************************
  77. * Declarations and constants to access the mailboxes safely. Each mailbox is
  78. * aligned on the biggest cache line size in the platform. This is known only
  79. * to the platform as it might have a combination of integrated and external
  80. * caches. Such alignment ensures that two maiboxes do not sit on the same cache
  81. * line at any cache level. They could belong to different cpus/clusters &
  82. * get written while being protected by different locks causing corruption of
  83. * a valid mailbox address.
  84. ******************************************************************************/
  85. #define CACHE_WRITEBACK_SHIFT 6
  86. #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
  87. /*
  88. * Define GICD and GICC and GICR base
  89. */
  90. #define PLAT_RK_GICD_BASE PLAT_GICD_BASE
  91. #define PLAT_RK_GICC_BASE PLAT_GICC_BASE
  92. #define PLAT_RK_GICR_BASE PLAT_GICR_BASE
  93. /*
  94. * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
  95. * terminology. On a GICv2 system or mode, the lists will be merged and treated
  96. * as Group 0 interrupts.
  97. */
  98. #define PLAT_RK_GICV3_G1S_IRQS \
  99. INTR_PROP_DESC(RK_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, \
  100. INTR_GROUP1S, GIC_INTR_CFG_LEVEL)
  101. #define PLAT_RK_GICV3_G0_IRQS \
  102. INTR_PROP_DESC(RK_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, \
  103. INTR_GROUP0, GIC_INTR_CFG_LEVEL)
  104. #define PLAT_RK_UART_BASE FPGA_UART_BASE
  105. #define PLAT_RK_UART_CLOCK FPGA_UART_CLOCK
  106. #define PLAT_RK_UART_BAUDRATE FPGA_BAUDRATE
  107. #define PLAT_RK_PRIMARY_CPU 0x0
  108. #define ATAGS_PHYS_SIZE 0x2000
  109. #define ATAGS_PHYS_BASE (0x200000 - ATAGS_PHYS_SIZE)/* [2M-8K, 2M] */
  110. #endif /* __PLATFORM_DEF_H__ */