pgtsrmmu.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * pgtsrmmu.h: SRMMU page table defines and code.
  3. *
  4. * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5. */
  6. #ifndef _SPARC_PGTSRMMU_H
  7. #define _SPARC_PGTSRMMU_H
  8. #include <asm/page.h>
  9. #ifdef __ASSEMBLY__
  10. #include <asm/thread_info.h> /* TI_UWINMASK for WINDOW_FLUSH */
  11. #endif
  12. /* Number of contexts is implementation-dependent; 64k is the most we support */
  13. #define SRMMU_MAX_CONTEXTS 65536
  14. /* PMD_SHIFT determines the size of the area a second-level page table entry can map */
  15. #define SRMMU_REAL_PMD_SHIFT 18
  16. #define SRMMU_REAL_PMD_SIZE (1UL << SRMMU_REAL_PMD_SHIFT)
  17. #define SRMMU_REAL_PMD_MASK (~(SRMMU_REAL_PMD_SIZE-1))
  18. #define SRMMU_REAL_PMD_ALIGN(__addr) (((__addr)+SRMMU_REAL_PMD_SIZE-1)&SRMMU_REAL_PMD_MASK)
  19. /* PGDIR_SHIFT determines what a third-level page table entry can map */
  20. #define SRMMU_PGDIR_SHIFT 24
  21. #define SRMMU_PGDIR_SIZE (1UL << SRMMU_PGDIR_SHIFT)
  22. #define SRMMU_PGDIR_MASK (~(SRMMU_PGDIR_SIZE-1))
  23. #define SRMMU_PGDIR_ALIGN(addr) (((addr)+SRMMU_PGDIR_SIZE-1)&SRMMU_PGDIR_MASK)
  24. #define SRMMU_REAL_PTRS_PER_PTE 64
  25. #define SRMMU_REAL_PTRS_PER_PMD 64
  26. #define SRMMU_PTRS_PER_PGD 256
  27. #define SRMMU_REAL_PTE_TABLE_SIZE (SRMMU_REAL_PTRS_PER_PTE*4)
  28. #define SRMMU_PMD_TABLE_SIZE (SRMMU_REAL_PTRS_PER_PMD*4)
  29. #define SRMMU_PGD_TABLE_SIZE (SRMMU_PTRS_PER_PGD*4)
  30. /*
  31. * To support pagetables in highmem, Linux introduces APIs which
  32. * return struct page* and generally manipulate page tables when
  33. * they are not mapped into kernel space. Our hardware page tables
  34. * are smaller than pages. We lump hardware tabes into big, page sized
  35. * software tables.
  36. *
  37. * PMD_SHIFT determines the size of the area a second-level page table entry
  38. * can map, and our pmd_t is 16 times larger than normal. The values which
  39. * were once defined here are now generic for 4c and srmmu, so they're
  40. * found in pgtable.h.
  41. */
  42. #define SRMMU_PTRS_PER_PMD 4
  43. /* Definition of the values in the ET field of PTD's and PTE's */
  44. #define SRMMU_ET_MASK 0x3
  45. #define SRMMU_ET_INVALID 0x0
  46. #define SRMMU_ET_PTD 0x1
  47. #define SRMMU_ET_PTE 0x2
  48. #define SRMMU_ET_REPTE 0x3 /* AIEEE, SuperSparc II reverse endian page! */
  49. /* Physical page extraction from PTP's and PTE's. */
  50. #define SRMMU_CTX_PMASK 0xfffffff0
  51. #define SRMMU_PTD_PMASK 0xfffffff0
  52. #define SRMMU_PTE_PMASK 0xffffff00
  53. /* The pte non-page bits. Some notes:
  54. * 1) cache, dirty, valid, and ref are frobbable
  55. * for both supervisor and user pages.
  56. * 2) exec and write will only give the desired effect
  57. * on user pages
  58. * 3) use priv and priv_readonly for changing the
  59. * characteristics of supervisor ptes
  60. */
  61. #define SRMMU_CACHE 0x80
  62. #define SRMMU_DIRTY 0x40
  63. #define SRMMU_REF 0x20
  64. #define SRMMU_NOREAD 0x10
  65. #define SRMMU_EXEC 0x08
  66. #define SRMMU_WRITE 0x04
  67. #define SRMMU_VALID 0x02 /* SRMMU_ET_PTE */
  68. #define SRMMU_PRIV 0x1c
  69. #define SRMMU_PRIV_RDONLY 0x18
  70. #define SRMMU_CHG_MASK (0xffffff00 | SRMMU_REF | SRMMU_DIRTY)
  71. /* SRMMU swap entry encoding
  72. *
  73. * We use 5 bits for the type and 19 for the offset. This gives us
  74. * 32 swapfiles of 4GB each. Encoding looks like:
  75. *
  76. * oooooooooooooooooootttttRRRRRRRR
  77. * fedcba9876543210fedcba9876543210
  78. *
  79. * The bottom 7 bits are reserved for protection and status bits, especially
  80. * PRESENT.
  81. */
  82. #define SRMMU_SWP_TYPE_MASK 0x1f
  83. #define SRMMU_SWP_TYPE_SHIFT 7
  84. #define SRMMU_SWP_OFF_MASK 0xfffff
  85. #define SRMMU_SWP_OFF_SHIFT (SRMMU_SWP_TYPE_SHIFT + 5)
  86. /* Some day I will implement true fine grained access bits for
  87. * user pages because the SRMMU gives us the capabilities to
  88. * enforce all the protection levels that vma's can have.
  89. * XXX But for now...
  90. */
  91. #define SRMMU_PAGE_NONE __pgprot(SRMMU_CACHE | \
  92. SRMMU_PRIV | SRMMU_REF)
  93. #define SRMMU_PAGE_SHARED __pgprot(SRMMU_VALID | SRMMU_CACHE | \
  94. SRMMU_EXEC | SRMMU_WRITE | SRMMU_REF)
  95. #define SRMMU_PAGE_COPY __pgprot(SRMMU_VALID | SRMMU_CACHE | \
  96. SRMMU_EXEC | SRMMU_REF)
  97. #define SRMMU_PAGE_RDONLY __pgprot(SRMMU_VALID | SRMMU_CACHE | \
  98. SRMMU_EXEC | SRMMU_REF)
  99. #define SRMMU_PAGE_KERNEL __pgprot(SRMMU_VALID | SRMMU_CACHE | SRMMU_PRIV | \
  100. SRMMU_DIRTY | SRMMU_REF)
  101. /* SRMMU Register addresses in ASI 0x4. These are valid for all
  102. * current SRMMU implementations that exist.
  103. */
  104. #define SRMMU_CTRL_REG 0x00000000
  105. #define SRMMU_CTXTBL_PTR 0x00000100
  106. #define SRMMU_CTX_REG 0x00000200
  107. #define SRMMU_FAULT_STATUS 0x00000300
  108. #define SRMMU_FAULT_ADDR 0x00000400
  109. #define WINDOW_FLUSH(tmp1, tmp2) \
  110. mov 0, tmp1; \
  111. 98: ld [%g6 + TI_UWINMASK], tmp2; \
  112. orcc %g0, tmp2, %g0; \
  113. add tmp1, 1, tmp1; \
  114. bne 98b; \
  115. save %sp, -64, %sp; \
  116. 99: subcc tmp1, 1, tmp1; \
  117. bne 99b; \
  118. restore %g0, %g0, %g0;
  119. #ifndef __ASSEMBLY__
  120. extern unsigned long last_valid_pfn;
  121. /* This makes sense. Honest it does - Anton */
  122. /* XXX Yes but it's ugly as sin. FIXME. -KMW */
  123. extern void *srmmu_nocache_pool;
  124. #define __nocache_pa(VADDR) (((unsigned long)VADDR) - SRMMU_NOCACHE_VADDR + __pa((unsigned long)srmmu_nocache_pool))
  125. #define __nocache_va(PADDR) (__va((unsigned long)PADDR) - (unsigned long)srmmu_nocache_pool + SRMMU_NOCACHE_VADDR)
  126. #define __nocache_fix(VADDR) __va(__nocache_pa(VADDR))
  127. /* Accessing the MMU control register. */
  128. unsigned int srmmu_get_mmureg(void);
  129. void srmmu_set_mmureg(unsigned long regval);
  130. void srmmu_set_ctable_ptr(unsigned long paddr);
  131. void srmmu_set_context(int context);
  132. int srmmu_get_context(void);
  133. unsigned int srmmu_get_fstatus(void);
  134. unsigned int srmmu_get_faddr(void);
  135. /* This is guaranteed on all SRMMU's. */
  136. static inline void srmmu_flush_whole_tlb(void)
  137. {
  138. __asm__ __volatile__("sta %%g0, [%0] %1\n\t": :
  139. "r" (0x400), /* Flush entire TLB!! */
  140. "i" (ASI_M_FLUSH_PROBE) : "memory");
  141. }
  142. static inline int
  143. srmmu_get_pte (unsigned long addr)
  144. {
  145. register unsigned long entry;
  146. __asm__ __volatile__("\n\tlda [%1] %2,%0\n\t" :
  147. "=r" (entry):
  148. "r" ((addr & 0xfffff000) | 0x400), "i" (ASI_M_FLUSH_PROBE));
  149. return entry;
  150. }
  151. #endif /* !(__ASSEMBLY__) */
  152. #endif /* !(_SPARC_PGTSRMMU_H) */