platform_def.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright 2022-2023 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PLATFORM_DEF_H
  7. #define PLATFORM_DEF_H
  8. #include <lib/utils_def.h>
  9. #include <lib/xlat_tables/xlat_tables_v2.h>
  10. #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
  11. #define PLATFORM_LINKER_ARCH aarch64
  12. #define PLATFORM_STACK_SIZE 0xB00
  13. #define CACHE_WRITEBACK_GRANULE 64
  14. #define PLAT_PRIMARY_CPU U(0x0)
  15. #define PLATFORM_MAX_CPU_PER_CLUSTER U(2)
  16. #define PLATFORM_CLUSTER_COUNT U(1)
  17. #define PLATFORM_CLUSTER0_CORE_COUNT U(2)
  18. #define PLATFORM_CORE_COUNT U(2)
  19. #define IMX_PWR_LVL0 MPIDR_AFFLVL0
  20. #define PWR_DOMAIN_AT_MAX_LVL U(1)
  21. #define PLAT_MAX_PWR_LVL U(2)
  22. #define PLAT_MAX_OFF_STATE U(4)
  23. #define PLAT_MAX_RET_STATE U(2)
  24. #define BL31_BASE U(0x204E0000)
  25. #define BL31_LIMIT U(0x20520000)
  26. #define OCRAM_BASE U(0x20480000)
  27. #define OCRAM_SIZE U(0xA0000)
  28. /* non-secure uboot base */
  29. /* TODO */
  30. #define PLAT_NS_IMAGE_OFFSET U(0x80200000)
  31. #define BL32_FDT_OVERLAY_ADDR (PLAT_NS_IMAGE_OFFSET + 0x3000000)
  32. /* GICv4 base address */
  33. #define PLAT_GICD_BASE U(0x48000000)
  34. #define PLAT_GICR_BASE U(0x48040000)
  35. #define PLAT_VIRT_ADDR_SPACE_SIZE (ULL(1) << 32)
  36. #define PLAT_PHY_ADDR_SPACE_SIZE (ULL(1) << 32)
  37. #define MAX_XLAT_TABLES 8
  38. #define MAX_MMAP_REGIONS 16
  39. #define IMX_LPUART_BASE U(0x44380000)
  40. #define IMX_BOOT_UART_CLK_IN_HZ U(24000000) /* Select 24MHz oscillator */
  41. #define IMX_CONSOLE_BAUDRATE 115200
  42. #define AIPSx_SIZE U(0x800000)
  43. #define AIPS1_BASE U(0x44000000)
  44. #define AIPS2_BASE U(0x42000000)
  45. #define AIPS3_BASE U(0x42800000)
  46. #define AIPS4_BASE U(0x49000000)
  47. #define GPIO1_BASE U(0x47400000)
  48. #define GPIO2_BASE U(0x43810000)
  49. #define GPIO3_BASE U(0x43820000)
  50. #define GPIO4_BASE U(0x43830000)
  51. #define TRDC_A_BASE U(0x44270000)
  52. #define TRDC_W_BASE U(0x42460000)
  53. #define TRDC_M_BASE U(0x42810000)
  54. #define TRDC_N_BASE U(0x49010000)
  55. #define TRDC_x_SISE U(0x20000)
  56. #define WDOG3_BASE U(0x42490000)
  57. #define WDOG_CS U(0x0)
  58. #define WDOG_CS_ULK BIT(11)
  59. #define WDOG_CNT U(0x4)
  60. #define WDOG_TOVAL U(0x8)
  61. #define BBNSM_BASE U(0x44440000)
  62. #define BBNSM_CTRL U(0x8)
  63. #define BBNSM_DP_EN BIT(24)
  64. #define BBNSM_TOSP BIT(25)
  65. #define SRC_BASE U(0x44460000)
  66. #define GPC_BASE U(0x44470000)
  67. #define BLK_CTRL_S_BASE U(0x444F0000)
  68. #define S400_MU_BASE U(0x47520000)
  69. /* system memory map define */
  70. #define AIPS2_MAP MAP_REGION_FLAT(AIPS2_BASE, AIPSx_SIZE, MT_DEVICE | MT_RW | MT_NS)
  71. #define AIPS1_MAP MAP_REGION_FLAT(AIPS1_BASE, AIPSx_SIZE, MT_DEVICE | MT_RW)
  72. #define AIPS4_MAP MAP_REGION_FLAT(AIPS4_BASE, AIPSx_SIZE, MT_DEVICE | MT_RW | MT_NS)
  73. #define GIC_MAP MAP_REGION_FLAT(PLAT_GICD_BASE, 0x200000, MT_DEVICE | MT_RW)
  74. #define TRDC_A_MAP MAP_REGION_FLAT(TRDC_A_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
  75. #define TRDC_W_MAP MAP_REGION_FLAT(TRDC_W_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
  76. #define TRDC_M_MAP MAP_REGION_FLAT(TRDC_M_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
  77. #define TRDC_N_MAP MAP_REGION_FLAT(TRDC_N_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
  78. #define COUNTER_FREQUENCY 24000000
  79. #endif /* platform_def.h */