immap_lsch3.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * LayerScape Internal Memory Map
  3. *
  4. * Copyright 2014 Freescale Semiconductor, Inc.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __ARCH_FSL_LSCH3_IMMAP_H
  9. #define __ARCH_FSL_LSCH3_IMMAP_H_
  10. /* This is chassis generation 3 */
  11. struct sys_info {
  12. unsigned long freq_processor[CONFIG_MAX_CPUS];
  13. unsigned long freq_systembus;
  14. unsigned long freq_ddrbus;
  15. unsigned long freq_localbus;
  16. unsigned long freq_qe;
  17. #ifdef CONFIG_SYS_DPAA_FMAN
  18. unsigned long freq_fman[CONFIG_SYS_NUM_FMAN];
  19. #endif
  20. #ifdef CONFIG_SYS_DPAA_QBMAN
  21. unsigned long freq_qman;
  22. #endif
  23. #ifdef CONFIG_SYS_DPAA_PME
  24. unsigned long freq_pme;
  25. #endif
  26. };
  27. /* Global Utilities Block */
  28. struct ccsr_gur {
  29. u32 porsr1; /* POR status 1 */
  30. u32 porsr2; /* POR status 2 */
  31. u8 res_008[0x20-0x8];
  32. u32 gpporcr1; /* General-purpose POR configuration */
  33. u32 gpporcr2; /* General-purpose POR configuration 2 */
  34. u32 dcfg_fusesr; /* Fuse status register */
  35. u32 gpporcr3;
  36. u32 gpporcr4;
  37. u8 res_034[0x70-0x34];
  38. u32 devdisr; /* Device disable control */
  39. u32 devdisr2; /* Device disable control 2 */
  40. u32 devdisr3; /* Device disable control 3 */
  41. u32 devdisr4; /* Device disable control 4 */
  42. u32 devdisr5; /* Device disable control 5 */
  43. u32 devdisr6; /* Device disable control 6 */
  44. u32 devdisr7; /* Device disable control 7 */
  45. u8 res_08c[0x90-0x8c];
  46. u32 coredisru; /* uppper portion for support of 64 cores */
  47. u32 coredisrl; /* lower portion for support of 64 cores */
  48. u8 res_098[0xa0-0x98];
  49. u32 pvr; /* Processor version */
  50. u32 svr; /* System version */
  51. u32 mvr; /* Manufacturing version */
  52. u8 res_0ac[0x100-0xac];
  53. u32 rcwsr[32]; /* Reset control word status */
  54. #define FSL_CHASSIS3_RCWSR0_SYS_PLL_RAT_SHIFT 2
  55. #define FSL_CHASSIS3_RCWSR0_SYS_PLL_RAT_MASK 0x1f
  56. #define FSL_CHASSIS3_RCWSR0_MEM_PLL_RAT_SHIFT 10
  57. #define FSL_CHASSIS3_RCWSR0_MEM_PLL_RAT_MASK 0x3f
  58. u8 res_180[0x200-0x180];
  59. u32 scratchrw[32]; /* Scratch Read/Write */
  60. u8 res_280[0x300-0x280];
  61. u32 scratchw1r[4]; /* Scratch Read (Write once) */
  62. u8 res_310[0x400-0x310];
  63. u32 bootlocptrl; /* Boot location pointer low-order addr */
  64. u32 bootlocptrh; /* Boot location pointer high-order addr */
  65. u8 res_408[0x500-0x408];
  66. u8 res_500[0x740-0x500]; /* add more registers when needed */
  67. u32 tp_ityp[64]; /* Topology Initiator Type Register */
  68. struct {
  69. u32 upper;
  70. u32 lower;
  71. } tp_cluster[3]; /* Core Cluster n Topology Register */
  72. u8 res_858[0x1000-0x858];
  73. };
  74. #define TP_ITYP_AV 0x00000001 /* Initiator available */
  75. #define TP_ITYP_TYPE(x) (((x) & 0x6) >> 1) /* Initiator Type */
  76. #define TP_ITYP_TYPE_ARM 0x0
  77. #define TP_ITYP_TYPE_PPC 0x1 /* PowerPC */
  78. #define TP_ITYP_TYPE_OTHER 0x2 /* StarCore DSP */
  79. #define TP_ITYP_TYPE_HA 0x3 /* HW Accelerator */
  80. #define TP_ITYP_THDS(x) (((x) & 0x18) >> 3) /* # threads */
  81. #define TP_ITYP_VER(x) (((x) & 0xe0) >> 5) /* Initiator Version */
  82. #define TY_ITYP_VER_A7 0x1
  83. #define TY_ITYP_VER_A53 0x2
  84. #define TY_ITYP_VER_A57 0x3
  85. #define TP_CLUSTER_EOC 0x80000000 /* end of clusters */
  86. #define TP_CLUSTER_INIT_MASK 0x0000003f /* initiator mask */
  87. #define TP_INIT_PER_CLUSTER 4
  88. struct ccsr_clk_cluster_group {
  89. struct {
  90. u8 res_00[0x10];
  91. u32 csr;
  92. u8 res_14[0x20-0x14];
  93. } hwncsr[3];
  94. u8 res_60[0x80-0x60];
  95. struct {
  96. u32 gsr;
  97. u8 res_84[0xa0-0x84];
  98. } pllngsr[3];
  99. u8 res_e0[0x100-0xe0];
  100. };
  101. struct ccsr_clk_ctrl {
  102. struct {
  103. u32 csr; /* core cluster n clock control status */
  104. u8 res_04[0x20-0x04];
  105. } clkcncsr[8];
  106. };
  107. #endif /* __ARCH_FSL_LSCH3_IMMAP_H */