platform_def.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright (c) 2014-2019, 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 <lib/utils_def.h>
  10. #include <plat/common/common_def.h>
  11. #include <rk3368_def.h>
  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 defined(IMAGE_BL1)
  22. #define PLATFORM_STACK_SIZE 0x440
  23. #elif defined(IMAGE_BL2)
  24. #define PLATFORM_STACK_SIZE 0x400
  25. #elif defined(IMAGE_BL31)
  26. #define PLATFORM_STACK_SIZE 0x800
  27. #elif defined(IMAGE_BL32)
  28. #define PLATFORM_STACK_SIZE 0x440
  29. #endif
  30. #define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n"
  31. #define PLATFORM_MAX_AFFLVL MPIDR_AFFLVL2
  32. #define PLATFORM_SYSTEM_COUNT U(1)
  33. #define PLATFORM_CLUSTER_COUNT U(2)
  34. #define PLATFORM_CLUSTER0_CORE_COUNT U(4)
  35. #define PLATFORM_CLUSTER1_CORE_COUNT U(4)
  36. #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER1_CORE_COUNT + \
  37. PLATFORM_CLUSTER0_CORE_COUNT)
  38. #define PLATFORM_MAX_CPUS_PER_CLUSTER U(4)
  39. #define PLATFORM_NUM_AFFS (PLATFORM_SYSTEM_COUNT + \
  40. PLATFORM_CLUSTER_COUNT + \
  41. PLATFORM_CORE_COUNT)
  42. #define PLAT_RK_CLST_TO_CPUID_SHIFT 6
  43. #define PLAT_MAX_PWR_LVL MPIDR_AFFLVL2
  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 U(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 U(2)
  54. /*******************************************************************************
  55. * Platform memory map related constants
  56. ******************************************************************************/
  57. /* TF text, ro, rw, Size: 1MB */
  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_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
  72. #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
  73. #define MAX_XLAT_TABLES 8
  74. #define MAX_MMAP_REGIONS 20
  75. /*******************************************************************************
  76. * Declarations and constants to access the mailboxes safely. Each mailbox is
  77. * aligned on the biggest cache line size in the platform. This is known only
  78. * to the platform as it might have a combination of integrated and external
  79. * caches. Such alignment ensures that two maiboxes do not sit on the same cache
  80. * line at any cache level. They could belong to different cpus/clusters &
  81. * get written while being protected by different locks causing corruption of
  82. * a valid mailbox address.
  83. ******************************************************************************/
  84. #define CACHE_WRITEBACK_SHIFT 6
  85. #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
  86. /*
  87. * Define GICD and GICC and GICR base
  88. */
  89. #define PLAT_RK_GICD_BASE RK3368_GICD_BASE
  90. #define PLAT_RK_GICC_BASE RK3368_GICC_BASE
  91. #define PLAT_RK_UART_BASE UART2_BASE
  92. #define PLAT_RK_UART_CLOCK RK3368_UART_CLOCK
  93. #define PLAT_RK_UART_BAUDRATE RK3368_BAUDRATE
  94. #define PLAT_RK_CCI_BASE CCI400_BASE
  95. #define PLAT_RK_PRIMARY_CPU 0x0
  96. #define PSRAM_DO_DDR_RESUME 0
  97. #define PSRAM_CHECK_WAKEUP_CPU 0
  98. #endif /* PLATFORM_DEF_H */