addrspace.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. #include <linux/config.h>
  13. #include <spaces.h>
  14. /*
  15. * Configure language
  16. */
  17. #ifdef __ASSEMBLY__
  18. #define _ATYPE_
  19. #define _ATYPE32_
  20. #define _ATYPE64_
  21. #else
  22. #define _ATYPE_ __PTRDIFF_TYPE__
  23. #define _ATYPE32_ int
  24. #define _ATYPE64_ long long
  25. #endif
  26. /*
  27. * 32-bit MIPS address spaces
  28. */
  29. #ifdef __ASSEMBLY__
  30. #define _ACAST32_
  31. #define _ACAST64_
  32. #else
  33. #define _ACAST32_ (_ATYPE_)(_ATYPE32_) /* widen if necessary */
  34. #define _ACAST64_ (_ATYPE64_) /* do _not_ narrow */
  35. #endif
  36. /*
  37. * Returns the kernel segment base of a given address
  38. */
  39. #define KSEGX(a) ((_ACAST32_ (a)) & 0xe0000000)
  40. /*
  41. * Returns the physical address of a CKSEGx / XKPHYS address
  42. */
  43. #define CPHYSADDR(a) ((_ACAST32_ (a)) & 0x1fffffff)
  44. #define XPHYSADDR(a) ((_ACAST64_ (a)) & 0x000000ffffffffff)
  45. #ifdef CONFIG_MIPS64
  46. /*
  47. * Memory segments (64bit kernel mode addresses)
  48. * The compatibility segments use the full 64-bit sign extended value. Note
  49. * the R8000 doesn't have them so don't reference these in generic MIPS code.
  50. */
  51. #define XKUSEG 0x0000000000000000
  52. #define XKSSEG 0x4000000000000000
  53. #define XKPHYS 0x8000000000000000
  54. #define XKSEG 0xc000000000000000
  55. #define CKSEG0 0xffffffff80000000
  56. #define CKSEG1 0xffffffffa0000000
  57. #define CKSSEG 0xffffffffc0000000
  58. #define CKSEG3 0xffffffffe0000000
  59. #define CKSEG0ADDR(a) (CPHYSADDR(a) | CKSEG0)
  60. #define CKSEG1ADDR(a) (CPHYSADDR(a) | CKSEG1)
  61. #define CKSEG2ADDR(a) (CPHYSADDR(a) | CKSEG2)
  62. #define CKSEG3ADDR(a) (CPHYSADDR(a) | CKSEG3)
  63. #else
  64. #define CKSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
  65. #define CKSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
  66. #define CKSEG2ADDR(a) (CPHYSADDR(a) | KSEG2)
  67. #define CKSEG3ADDR(a) (CPHYSADDR(a) | KSEG3)
  68. /*
  69. * Map an address to a certain kernel segment
  70. */
  71. #define KSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
  72. #define KSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
  73. #define KSEG2ADDR(a) (CPHYSADDR(a) | KSEG2)
  74. #define KSEG3ADDR(a) (CPHYSADDR(a) | KSEG3)
  75. /*
  76. * Memory segments (32bit kernel mode addresses)
  77. * These are the traditional names used in the 32-bit universe.
  78. */
  79. #define KUSEG 0x00000000
  80. #define KSEG0 0x80000000
  81. #define KSEG1 0xa0000000
  82. #define KSEG2 0xc0000000
  83. #define KSEG3 0xe0000000
  84. #define CKUSEG 0x00000000
  85. #define CKSEG0 0x80000000
  86. #define CKSEG1 0xa0000000
  87. #define CKSEG2 0xc0000000
  88. #define CKSEG3 0xe0000000
  89. #endif
  90. /*
  91. * Cache modes for XKPHYS address conversion macros
  92. */
  93. #define K_CALG_COH_EXCL1_NOL2 0
  94. #define K_CALG_COH_SHRL1_NOL2 1
  95. #define K_CALG_UNCACHED 2
  96. #define K_CALG_NONCOHERENT 3
  97. #define K_CALG_COH_EXCL 4
  98. #define K_CALG_COH_SHAREABLE 5
  99. #define K_CALG_NOTUSED 6
  100. #define K_CALG_UNCACHED_ACCEL 7
  101. /*
  102. * 64-bit address conversions
  103. */
  104. #define PHYS_TO_XKSEG_UNCACHED(p) PHYS_TO_XKPHYS(K_CALG_UNCACHED,(p))
  105. #define PHYS_TO_XKSEG_CACHED(p) PHYS_TO_XKPHYS(K_CALG_COH_SHAREABLE,(p))
  106. #define XKPHYS_TO_PHYS(p) ((p) & TO_PHYS_MASK)
  107. #define PHYS_TO_XKPHYS(cm,a) (0x8000000000000000 | ((cm)<<59) | (a))
  108. #if defined (CONFIG_CPU_R4300) \
  109. || defined (CONFIG_CPU_R4X00) \
  110. || defined (CONFIG_CPU_R5000) \
  111. || defined (CONFIG_CPU_NEVADA) \
  112. || defined (CONFIG_CPU_TX49XX) \
  113. || defined (CONFIG_CPU_MIPS64)
  114. #define KUSIZE 0x0000010000000000 /* 2^^40 */
  115. #define KUSIZE_64 0x0000010000000000 /* 2^^40 */
  116. #define K0SIZE 0x0000001000000000 /* 2^^36 */
  117. #define K1SIZE 0x0000001000000000 /* 2^^36 */
  118. #define K2SIZE 0x000000ff80000000
  119. #define KSEGSIZE 0x000000ff80000000 /* max syssegsz */
  120. #define TO_PHYS_MASK 0x0000000fffffffff /* 2^^36 - 1 */
  121. #endif
  122. #if defined (CONFIG_CPU_R8000)
  123. /* We keep KUSIZE consistent with R4000 for now (2^^40) instead of (2^^48) */
  124. #define KUSIZE 0x0000010000000000 /* 2^^40 */
  125. #define KUSIZE_64 0x0000010000000000 /* 2^^40 */
  126. #define K0SIZE 0x0000010000000000 /* 2^^40 */
  127. #define K1SIZE 0x0000010000000000 /* 2^^40 */
  128. #define K2SIZE 0x0001000000000000
  129. #define KSEGSIZE 0x0000010000000000 /* max syssegsz */
  130. #define TO_PHYS_MASK 0x000000ffffffffff /* 2^^40 - 1 */
  131. #endif
  132. #if defined (CONFIG_CPU_R10000)
  133. #define KUSIZE 0x0000010000000000 /* 2^^40 */
  134. #define KUSIZE_64 0x0000010000000000 /* 2^^40 */
  135. #define K0SIZE 0x0000010000000000 /* 2^^40 */
  136. #define K1SIZE 0x0000010000000000 /* 2^^40 */
  137. #define K2SIZE 0x00000fff80000000
  138. #define KSEGSIZE 0x00000fff80000000 /* max syssegsz */
  139. #define TO_PHYS_MASK 0x000000ffffffffff /* 2^^40 - 1 */
  140. #endif
  141. /*
  142. * Further names for SGI source compatibility. These are stolen from
  143. * IRIX's <sys/mips_addrspace.h>.
  144. */
  145. #define KUBASE 0
  146. #define KUSIZE_32 0x0000000080000000 /* KUSIZE
  147. for a 32 bit proc */
  148. #define K0BASE_EXL_WR 0xa800000000000000 /* exclusive on write */
  149. #define K0BASE_NONCOH 0x9800000000000000 /* noncoherent */
  150. #define K0BASE_EXL 0xa000000000000000 /* exclusive */
  151. #ifndef CONFIG_CPU_R8000
  152. /*
  153. * The R8000 doesn't have the 32-bit compat spaces so we don't define them
  154. * in order to catch bugs in the source code.
  155. */
  156. #define COMPAT_K1BASE32 0xffffffffa0000000
  157. #define PHYS_TO_COMPATK1(x) ((x) | COMPAT_K1BASE32) /* 32-bit compat k1 */
  158. #endif
  159. #define KDM_TO_PHYS(x) (_ACAST64_ (x) & TO_PHYS_MASK)
  160. #define PHYS_TO_K0(x) (_ACAST64_ (x) | CAC_BASE)
  161. #endif /* _ASM_ADDRSPACE_H */