pgtsrmmu.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * pgtsrmmu.h: SRMMU page table defines and code.
  4. *
  5. * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  6. */
  7. #ifndef _SPARC_PGTSRMMU_H
  8. #define _SPARC_PGTSRMMU_H
  9. #include <asm/page.h>
  10. #ifdef __ASSEMBLY__
  11. #include <asm/thread_info.h> /* TI_UWINMASK for WINDOW_FLUSH */
  12. #endif
  13. /* Number of contexts is implementation-dependent; 64k is the most we support */
  14. #define SRMMU_MAX_CONTEXTS 65536
  15. #define SRMMU_PTE_TABLE_SIZE (PTRS_PER_PTE*4)
  16. #define SRMMU_PMD_TABLE_SIZE (PTRS_PER_PMD*4)
  17. #define SRMMU_PGD_TABLE_SIZE (PTRS_PER_PGD*4)
  18. /* Definition of the values in the ET field of PTD's and PTE's */
  19. #define SRMMU_ET_MASK 0x3
  20. #define SRMMU_ET_INVALID 0x0
  21. #define SRMMU_ET_PTD 0x1
  22. #define SRMMU_ET_PTE 0x2
  23. #define SRMMU_ET_REPTE 0x3 /* AIEEE, SuperSparc II reverse endian page! */
  24. /* Physical page extraction from PTP's and PTE's. */
  25. #define SRMMU_CTX_PMASK 0xfffffff0
  26. #define SRMMU_PTD_PMASK 0xfffffff0
  27. #define SRMMU_PTE_PMASK 0xffffff00
  28. /* The pte non-page bits. Some notes:
  29. * 1) cache, dirty, valid, and ref are frobbable
  30. * for both supervisor and user pages.
  31. * 2) exec and write will only give the desired effect
  32. * on user pages
  33. * 3) use priv and priv_readonly for changing the
  34. * characteristics of supervisor ptes
  35. */
  36. #define SRMMU_CACHE 0x80
  37. #define SRMMU_DIRTY 0x40
  38. #define SRMMU_REF 0x20
  39. #define SRMMU_NOREAD 0x10
  40. #define SRMMU_EXEC 0x08
  41. #define SRMMU_WRITE 0x04
  42. #define SRMMU_VALID 0x02 /* SRMMU_ET_PTE */
  43. #define SRMMU_PRIV 0x1c
  44. #define SRMMU_PRIV_RDONLY 0x18
  45. #define SRMMU_CHG_MASK (0xffffff00 | SRMMU_REF | SRMMU_DIRTY)
  46. /* SRMMU swap entry encoding */
  47. #define SRMMU_SWP_TYPE_MASK 0x1f
  48. #define SRMMU_SWP_TYPE_SHIFT 7
  49. #define SRMMU_SWP_OFF_MASK 0xfffff
  50. #define SRMMU_SWP_OFF_SHIFT (SRMMU_SWP_TYPE_SHIFT + 5)
  51. /* We borrow bit 6 to store the exclusive marker in swap PTEs. */
  52. #define SRMMU_SWP_EXCLUSIVE SRMMU_DIRTY
  53. /* Some day I will implement true fine grained access bits for
  54. * user pages because the SRMMU gives us the capabilities to
  55. * enforce all the protection levels that vma's can have.
  56. * XXX But for now...
  57. */
  58. #define SRMMU_PAGE_NONE __pgprot(SRMMU_CACHE | \
  59. SRMMU_PRIV | SRMMU_REF)
  60. #define SRMMU_PAGE_SHARED __pgprot(SRMMU_VALID | SRMMU_CACHE | \
  61. SRMMU_EXEC | SRMMU_WRITE | SRMMU_REF)
  62. #define SRMMU_PAGE_COPY __pgprot(SRMMU_VALID | SRMMU_CACHE | \
  63. SRMMU_EXEC | SRMMU_REF)
  64. #define SRMMU_PAGE_RDONLY __pgprot(SRMMU_VALID | SRMMU_CACHE | \
  65. SRMMU_EXEC | SRMMU_REF)
  66. #define SRMMU_PAGE_KERNEL __pgprot(SRMMU_VALID | SRMMU_CACHE | SRMMU_PRIV | \
  67. SRMMU_DIRTY | SRMMU_REF)
  68. /* SRMMU Register addresses in ASI 0x4. These are valid for all
  69. * current SRMMU implementations that exist.
  70. */
  71. #define SRMMU_CTRL_REG 0x00000000
  72. #define SRMMU_CTXTBL_PTR 0x00000100
  73. #define SRMMU_CTX_REG 0x00000200
  74. #define SRMMU_FAULT_STATUS 0x00000300
  75. #define SRMMU_FAULT_ADDR 0x00000400
  76. #define WINDOW_FLUSH(tmp1, tmp2) \
  77. mov 0, tmp1; \
  78. 98: ld [%g6 + TI_UWINMASK], tmp2; \
  79. orcc %g0, tmp2, %g0; \
  80. add tmp1, 1, tmp1; \
  81. bne 98b; \
  82. save %sp, -64, %sp; \
  83. 99: subcc tmp1, 1, tmp1; \
  84. bne 99b; \
  85. restore %g0, %g0, %g0;
  86. #ifndef __ASSEMBLY__
  87. extern unsigned long last_valid_pfn;
  88. /* This makes sense. Honest it does - Anton */
  89. /* XXX Yes but it's ugly as sin. FIXME. -KMW */
  90. extern void *srmmu_nocache_pool;
  91. #define __nocache_pa(VADDR) (((unsigned long)VADDR) - SRMMU_NOCACHE_VADDR + __pa((unsigned long)srmmu_nocache_pool))
  92. #define __nocache_va(PADDR) (__va((unsigned long)PADDR) - (unsigned long)srmmu_nocache_pool + SRMMU_NOCACHE_VADDR)
  93. #define __nocache_fix(VADDR) ((__typeof__(VADDR))__va(__nocache_pa(VADDR)))
  94. /* Accessing the MMU control register. */
  95. unsigned int srmmu_get_mmureg(void);
  96. void srmmu_set_mmureg(unsigned long regval);
  97. void srmmu_set_ctable_ptr(unsigned long paddr);
  98. void srmmu_set_context(int context);
  99. int srmmu_get_context(void);
  100. unsigned int srmmu_get_fstatus(void);
  101. unsigned int srmmu_get_faddr(void);
  102. /* This is guaranteed on all SRMMU's. */
  103. static inline void srmmu_flush_whole_tlb(void)
  104. {
  105. __asm__ __volatile__("sta %%g0, [%0] %1\n\t": :
  106. "r" (0x400), /* Flush entire TLB!! */
  107. "i" (ASI_M_FLUSH_PROBE) : "memory");
  108. }
  109. static inline int
  110. srmmu_get_pte (unsigned long addr)
  111. {
  112. register unsigned long entry;
  113. __asm__ __volatile__("\n\tlda [%1] %2,%0\n\t" :
  114. "=r" (entry):
  115. "r" ((addr & 0xfffff000) | 0x400), "i" (ASI_M_FLUSH_PROBE));
  116. return entry;
  117. }
  118. #endif /* !(__ASSEMBLY__) */
  119. #endif /* !(_SPARC_PGTSRMMU_H) */