addrspace.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 1996, 99 Ralf Baechle
  7. * Copyright (C) 2000, 2002 Maciej W. Rozycki
  8. * Copyright (C) 1990, 1999 by Silicon Graphics, Inc.
  9. */
  10. #ifndef _ASM_ADDRSPACE_H
  11. #define _ASM_ADDRSPACE_H
  12. /*
  13. * Configure language
  14. */
  15. #ifdef __ASSEMBLY__
  16. #define _ATYPE_
  17. #define _ATYPE32_
  18. #define _ATYPE64_
  19. #define _CONST64_(x) x
  20. #else
  21. #define _ATYPE_ __PTRDIFF_TYPE__
  22. #define _ATYPE32_ int
  23. #define _ATYPE64_ __s64
  24. #ifdef CONFIG_64BIT
  25. #define _CONST64_(x) x ## L
  26. #else
  27. #define _CONST64_(x) x ## LL
  28. #endif
  29. #endif
  30. /*
  31. * 32-bit MIPS address spaces
  32. */
  33. #ifdef __ASSEMBLY__
  34. #define _ACAST32_
  35. #define _ACAST64_
  36. #else
  37. #define _ACAST32_ (_ATYPE_)(_ATYPE32_) /* widen if necessary */
  38. #define _ACAST64_ (_ATYPE64_) /* do _not_ narrow */
  39. #endif
  40. /*
  41. * Returns the kernel segment base of a given address
  42. */
  43. #define KSEGX(a) ((_ACAST32_ (a)) & 0xe0000000)
  44. /*
  45. * Returns the physical address of a CKSEGx / XKPHYS address
  46. */
  47. #define CPHYSADDR(a) ((_ACAST32_(a)) & 0x1fffffff)
  48. #define XPHYSADDR(a) ((_ACAST64_(a)) & \
  49. _CONST64_(0x000000ffffffffff))
  50. #ifdef CONFIG_64BIT
  51. /*
  52. * Memory segments (64bit kernel mode addresses)
  53. * The compatibility segments use the full 64-bit sign extended value. Note
  54. * the R8000 doesn't have them so don't reference these in generic MIPS code.
  55. */
  56. #define XKUSEG _CONST64_(0x0000000000000000)
  57. #define XKSSEG _CONST64_(0x4000000000000000)
  58. #define XKPHYS _CONST64_(0x8000000000000000)
  59. #define XKSEG _CONST64_(0xc000000000000000)
  60. #define CKSEG0 _CONST64_(0xffffffff80000000)
  61. #define CKSEG1 _CONST64_(0xffffffffa0000000)
  62. #define CKSSEG _CONST64_(0xffffffffc0000000)
  63. #define CKSEG3 _CONST64_(0xffffffffe0000000)
  64. #define CKSEG0ADDR(a) (CPHYSADDR(a) | CKSEG0)
  65. #define CKSEG1ADDR(a) (CPHYSADDR(a) | CKSEG1)
  66. #define CKSEG2ADDR(a) (CPHYSADDR(a) | CKSEG2)
  67. #define CKSEG3ADDR(a) (CPHYSADDR(a) | CKSEG3)
  68. #else
  69. #define CKSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
  70. #define CKSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
  71. #define CKSEG2ADDR(a) (CPHYSADDR(a) | KSEG2)
  72. #define CKSEG3ADDR(a) (CPHYSADDR(a) | KSEG3)
  73. /*
  74. * Map an address to a certain kernel segment
  75. */
  76. #define KSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
  77. #define KSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
  78. #define KSEG2ADDR(a) (CPHYSADDR(a) | KSEG2)
  79. #define KSEG3ADDR(a) (CPHYSADDR(a) | KSEG3)
  80. /*
  81. * Memory segments (32bit kernel mode addresses)
  82. * These are the traditional names used in the 32-bit universe.
  83. */
  84. #define KUSEG 0x00000000
  85. #define KSEG0 0x80000000
  86. #define KSEG1 0xa0000000
  87. #define KSEG2 0xc0000000
  88. #define KSEG3 0xe0000000
  89. #define CKUSEG 0x00000000
  90. #define CKSEG0 0x80000000
  91. #define CKSEG1 0xa0000000
  92. #define CKSEG2 0xc0000000
  93. #define CKSEG3 0xe0000000
  94. #endif
  95. /*
  96. * Cache modes for XKPHYS address conversion macros
  97. */
  98. #define K_CALG_COH_EXCL1_NOL2 0
  99. #define K_CALG_COH_SHRL1_NOL2 1
  100. #define K_CALG_UNCACHED 2
  101. #define K_CALG_NONCOHERENT 3
  102. #define K_CALG_COH_EXCL 4
  103. #define K_CALG_COH_SHAREABLE 5
  104. #define K_CALG_NOTUSED 6
  105. #define K_CALG_UNCACHED_ACCEL 7
  106. /*
  107. * 64-bit address conversions
  108. */
  109. #define PHYS_TO_XKSEG_UNCACHED(p) PHYS_TO_XKPHYS(K_CALG_UNCACHED, (p))
  110. #define PHYS_TO_XKSEG_CACHED(p) PHYS_TO_XKPHYS(K_CALG_COH_SHAREABLE, (p))
  111. #define XKPHYS_TO_PHYS(p) ((p) & TO_PHYS_MASK)
  112. #define PHYS_TO_XKPHYS(cm, a) (_CONST64_(0x8000000000000000) | \
  113. (_CONST64_(cm) << 59) | (a))
  114. /*
  115. * Returns the uncached address of a sdram address
  116. */
  117. #ifndef __ASSEMBLY__
  118. #if defined(CONFIG_AU1X00) || defined(CONFIG_TB0229)
  119. /* We use a 36 bit physical address map here and
  120. cannot access physical memory directly from core */
  121. #define UNCACHED_SDRAM(a) (((unsigned long)(a)) | 0x20000000)
  122. #else /* !CONFIG_AU1X00 */
  123. #define UNCACHED_SDRAM(a) KSEG1ADDR(a)
  124. #endif /* CONFIG_AU1X00 */
  125. #endif /* __ASSEMBLY__ */
  126. /*
  127. * The ultimate limited of the 64-bit MIPS architecture: 2 bits for selecting
  128. * the region, 3 bits for the CCA mode. This leaves 59 bits of which the
  129. * R8000 implements most with its 48-bit physical address space.
  130. */
  131. #define TO_PHYS_MASK _CONST64_(0x07ffffffffffffff) /* 2^^59 - 1 */
  132. #ifndef CONFIG_CPU_R8000
  133. /*
  134. * The R8000 doesn't have the 32-bit compat spaces so we don't define them
  135. * in order to catch bugs in the source code.
  136. */
  137. #define COMPAT_K1BASE32 _CONST64_(0xffffffffa0000000)
  138. #define PHYS_TO_COMPATK1(x) ((x) | COMPAT_K1BASE32) /* 32-bit compat k1 */
  139. #endif
  140. #define KDM_TO_PHYS(x) (_ACAST64_ (x) & TO_PHYS_MASK)
  141. #define PHYS_TO_K0(x) (_ACAST64_ (x) | CAC_BASE)
  142. #endif /* _ASM_ADDRSPACE_H */