sg-regs.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * UniPhier SG (SoC Glue) block registers
  3. *
  4. * Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef ARCH_SG_REGS_H
  9. #define ARCH_SG_REGS_H
  10. /* Base Address */
  11. #define SG_CTRL_BASE 0x5f800000
  12. #define SG_DBG_BASE 0x5f900000
  13. /* Revision */
  14. #define SG_REVISION (SG_CTRL_BASE | 0x0000)
  15. #define SG_REVISION_TYPE_SHIFT 16
  16. #define SG_REVISION_TYPE_MASK (0xff << SG_REVISION_TYPE_SHIFT)
  17. #define SG_REVISION_MODEL_SHIFT 8
  18. #define SG_REVISION_MODEL_MASK (0x3 << SG_REVISION_MODEL_SHIFT)
  19. #define SG_REVISION_REV_SHIFT 0
  20. #define SG_REVISION_REV_MASK (0x1f << SG_REVISION_REV_SHIFT)
  21. /* Memory Configuration */
  22. #define SG_MEMCONF (SG_CTRL_BASE | 0x0400)
  23. #define SG_MEMCONF_CH0_SZ_MASK ((0x1 << 10) | (0x03 << 0))
  24. #define SG_MEMCONF_CH0_SZ_64M ((0x0 << 10) | (0x01 << 0))
  25. #define SG_MEMCONF_CH0_SZ_128M ((0x0 << 10) | (0x02 << 0))
  26. #define SG_MEMCONF_CH0_SZ_256M ((0x0 << 10) | (0x03 << 0))
  27. #define SG_MEMCONF_CH0_SZ_512M ((0x1 << 10) | (0x00 << 0))
  28. #define SG_MEMCONF_CH0_SZ_1G ((0x1 << 10) | (0x01 << 0))
  29. #define SG_MEMCONF_CH0_NUM_MASK (0x1 << 8)
  30. #define SG_MEMCONF_CH0_NUM_1 (0x1 << 8)
  31. #define SG_MEMCONF_CH0_NUM_2 (0x0 << 8)
  32. #define SG_MEMCONF_CH1_SZ_MASK ((0x1 << 11) | (0x03 << 2))
  33. #define SG_MEMCONF_CH1_SZ_64M ((0x0 << 11) | (0x01 << 2))
  34. #define SG_MEMCONF_CH1_SZ_128M ((0x0 << 11) | (0x02 << 2))
  35. #define SG_MEMCONF_CH1_SZ_256M ((0x0 << 11) | (0x03 << 2))
  36. #define SG_MEMCONF_CH1_SZ_512M ((0x1 << 11) | (0x00 << 2))
  37. #define SG_MEMCONF_CH1_SZ_1G ((0x1 << 11) | (0x01 << 2))
  38. #define SG_MEMCONF_CH1_NUM_MASK (0x1 << 9)
  39. #define SG_MEMCONF_CH1_NUM_1 (0x1 << 9)
  40. #define SG_MEMCONF_CH1_NUM_2 (0x0 << 9)
  41. #define SG_MEMCONF_CH2_SZ_MASK ((0x1 << 26) | (0x03 << 16))
  42. #define SG_MEMCONF_CH2_SZ_64M ((0x0 << 26) | (0x01 << 16))
  43. #define SG_MEMCONF_CH2_SZ_128M ((0x0 << 26) | (0x02 << 16))
  44. #define SG_MEMCONF_CH2_SZ_256M ((0x0 << 26) | (0x03 << 16))
  45. #define SG_MEMCONF_CH2_SZ_512M ((0x1 << 26) | (0x00 << 16))
  46. #define SG_MEMCONF_CH2_NUM_MASK (0x1 << 24)
  47. #define SG_MEMCONF_CH2_NUM_1 (0x1 << 24)
  48. #define SG_MEMCONF_CH2_NUM_2 (0x0 << 24)
  49. #define SG_MEMCONF_SPARSEMEM (0x1 << 4)
  50. /* Pin Control */
  51. #define SG_PINCTRL_BASE (SG_CTRL_BASE | 0x1000)
  52. /* PH1-Pro4, PH1-Pro5 */
  53. #define SG_LOADPINCTRL (SG_CTRL_BASE | 0x1700)
  54. /* Input Enable */
  55. #define SG_IECTRL (SG_CTRL_BASE | 0x1d00)
  56. /* Pin Monitor */
  57. #define SG_PINMON0 (SG_DBG_BASE | 0x0100)
  58. #define SG_PINMON0_CLK_MODE_UPLLSRC_MASK (0x3 << 19)
  59. #define SG_PINMON0_CLK_MODE_UPLLSRC_DEFAULT (0x0 << 19)
  60. #define SG_PINMON0_CLK_MODE_UPLLSRC_VPLL27A (0x2 << 19)
  61. #define SG_PINMON0_CLK_MODE_UPLLSRC_VPLL27B (0x3 << 19)
  62. #define SG_PINMON0_CLK_MODE_AXOSEL_MASK (0x3 << 16)
  63. #define SG_PINMON0_CLK_MODE_AXOSEL_24576KHZ (0x0 << 16)
  64. #define SG_PINMON0_CLK_MODE_AXOSEL_25000KHZ (0x1 << 16)
  65. #define SG_PINMON0_CLK_MODE_AXOSEL_6144KHZ (0x2 << 16)
  66. #define SG_PINMON0_CLK_MODE_AXOSEL_6250KHZ (0x3 << 16)
  67. #define SG_PINMON0_CLK_MODE_AXOSEL_DEFAULT (0x0 << 16)
  68. #define SG_PINMON0_CLK_MODE_AXOSEL_25000KHZ_U (0x1 << 16)
  69. #define SG_PINMON0_CLK_MODE_AXOSEL_20480KHZ (0x2 << 16)
  70. #define SG_PINMON0_CLK_MODE_AXOSEL_25000KHZ_A (0x3 << 16)
  71. #ifdef __ASSEMBLY__
  72. .macro sg_set_pinsel, pin, muxval, mux_bits, reg_stride, ra, rd
  73. ldr \ra, =(SG_PINCTRL_BASE + \pin * \mux_bits / 32 * \reg_stride)
  74. ldr \rd, [\ra]
  75. and \rd, \rd, #~(((1 << \mux_bits) - 1) << (\pin * \mux_bits % 32))
  76. orr \rd, \rd, #(\muxval << (\pin * \mux_bits % 32))
  77. str \rd, [\ra]
  78. .endm
  79. #else
  80. #include <linux/types.h>
  81. #include <linux/io.h>
  82. static inline void sg_set_pinsel(unsigned pin, unsigned muxval,
  83. unsigned mux_bits, unsigned reg_stride)
  84. {
  85. unsigned shift = pin * mux_bits % 32;
  86. unsigned reg = SG_PINCTRL_BASE + pin * mux_bits / 32 * reg_stride;
  87. u32 mask = (1U << mux_bits) - 1;
  88. u32 tmp;
  89. tmp = readl(reg);
  90. tmp &= ~(mask << shift);
  91. tmp |= (mask & muxval) << shift;
  92. writel(tmp, reg);
  93. }
  94. #endif /* __ASSEMBLY__ */
  95. #endif /* ARCH_SG_REGS_H */