pgtable.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * This file contains the functions and defines necessary to modify and
  3. * use the SuperH page table tree.
  4. *
  5. * Copyright (C) 1999 Niibe Yutaka
  6. * Copyright (C) 2002 - 2007 Paul Mundt
  7. *
  8. * This file is subject to the terms and conditions of the GNU General
  9. * Public License. See the file "COPYING" in the main directory of this
  10. * archive for more details.
  11. */
  12. #ifndef __ASM_SH_PGTABLE_H
  13. #define __ASM_SH_PGTABLE_H
  14. #include <asm-generic/pgtable-nopmd.h>
  15. #include <asm/page.h>
  16. #ifndef __ASSEMBLY__
  17. #include <asm/addrspace.h>
  18. #include <asm/fixmap.h>
  19. /*
  20. * ZERO_PAGE is a global shared page that is always zero: used
  21. * for zero-mapped memory areas etc..
  22. */
  23. extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
  24. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  25. #endif /* !__ASSEMBLY__ */
  26. /*
  27. * Effective and physical address definitions, to aid with sign
  28. * extension.
  29. */
  30. #define NEFF 32
  31. #define NEFF_SIGN (1LL << (NEFF - 1))
  32. #define NEFF_MASK (-1LL << NEFF)
  33. static inline unsigned long long neff_sign_extend(unsigned long val)
  34. {
  35. unsigned long long extended = val;
  36. return (extended & NEFF_SIGN) ? (extended | NEFF_MASK) : extended;
  37. }
  38. #ifdef CONFIG_29BIT
  39. #define NPHYS 29
  40. #else
  41. #define NPHYS 32
  42. #endif
  43. #define NPHYS_SIGN (1LL << (NPHYS - 1))
  44. #define NPHYS_MASK (-1LL << NPHYS)
  45. /*
  46. * traditional two-level paging structure
  47. */
  48. /* PTE bits */
  49. #if defined(CONFIG_X2TLB) || defined(CONFIG_SUPERH64)
  50. # define PTE_MAGNITUDE 3 /* 64-bit PTEs on extended mode SH-X2 TLB */
  51. #else
  52. # define PTE_MAGNITUDE 2 /* 32-bit PTEs */
  53. #endif
  54. #define PTE_SHIFT PAGE_SHIFT
  55. #define PTE_BITS (PTE_SHIFT - PTE_MAGNITUDE)
  56. /* PGD bits */
  57. #define PGDIR_SHIFT (PTE_SHIFT + PTE_BITS)
  58. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  59. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  60. /* Entries per level */
  61. #define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE))
  62. #define PTRS_PER_PGD (PAGE_SIZE / sizeof(pgd_t))
  63. #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
  64. #define FIRST_USER_ADDRESS 0
  65. #ifdef CONFIG_32BIT
  66. #define PHYS_ADDR_MASK 0xffffffff
  67. #else
  68. #define PHYS_ADDR_MASK 0x1fffffff
  69. #endif
  70. #define PTE_PHYS_MASK (PHYS_ADDR_MASK & PAGE_MASK)
  71. #define PTE_FLAGS_MASK (~(PTE_PHYS_MASK) << PAGE_SHIFT)
  72. #ifdef CONFIG_SUPERH32
  73. #define VMALLOC_START (P3SEG)
  74. #else
  75. #define VMALLOC_START (0xf0000000)
  76. #endif
  77. #define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
  78. #if defined(CONFIG_SUPERH32)
  79. #include <asm/pgtable_32.h>
  80. #else
  81. #include <asm/pgtable_64.h>
  82. #endif
  83. /*
  84. * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page
  85. * protection for execute, and considers it the same as a read. Also, write
  86. * permission implies read permission. This is the closest we can get..
  87. *
  88. * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme,
  89. * not only supporting separate execute, read, and write bits, but having
  90. * completely separate permission bits for user and kernel space.
  91. */
  92. /*xwr*/
  93. #define __P000 PAGE_NONE
  94. #define __P001 PAGE_READONLY
  95. #define __P010 PAGE_COPY
  96. #define __P011 PAGE_COPY
  97. #define __P100 PAGE_EXECREAD
  98. #define __P101 PAGE_EXECREAD
  99. #define __P110 PAGE_COPY
  100. #define __P111 PAGE_COPY
  101. #define __S000 PAGE_NONE
  102. #define __S001 PAGE_READONLY
  103. #define __S010 PAGE_WRITEONLY
  104. #define __S011 PAGE_SHARED
  105. #define __S100 PAGE_EXECREAD
  106. #define __S101 PAGE_EXECREAD
  107. #define __S110 PAGE_RWX
  108. #define __S111 PAGE_RWX
  109. typedef pte_t *pte_addr_t;
  110. #define kern_addr_valid(addr) (1)
  111. #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
  112. remap_pfn_range(vma, vaddr, pfn, size, prot)
  113. #define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT)))
  114. /*
  115. * No page table caches to initialise
  116. */
  117. #define pgtable_cache_init() do { } while (0)
  118. struct vm_area_struct;
  119. extern void __update_cache(struct vm_area_struct *vma,
  120. unsigned long address, pte_t pte);
  121. extern void __update_tlb(struct vm_area_struct *vma,
  122. unsigned long address, pte_t pte);
  123. static inline void
  124. update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
  125. {
  126. __update_cache(vma, address, pte);
  127. __update_tlb(vma, address, pte);
  128. }
  129. extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
  130. extern void paging_init(void);
  131. extern void page_table_range_init(unsigned long start, unsigned long end,
  132. pgd_t *pgd);
  133. /* arch/sh/mm/mmap.c */
  134. #define HAVE_ARCH_UNMAPPED_AREA
  135. #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
  136. #include <asm-generic/pgtable.h>
  137. #endif /* __ASM_SH_PGTABLE_H */