pgtable_32.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. #ifndef __ASM_SH_PGTABLE_32_H
  2. #define __ASM_SH_PGTABLE_32_H
  3. /*
  4. * Linux PTEL encoding.
  5. *
  6. * Hardware and software bit definitions for the PTEL value (see below for
  7. * notes on SH-X2 MMUs and 64-bit PTEs):
  8. *
  9. * - Bits 0 and 7 are reserved on SH-3 (_PAGE_WT and _PAGE_SZ1 on SH-4).
  10. *
  11. * - Bit 1 is the SH-bit, but is unused on SH-3 due to an MMU bug (the
  12. * hardware PTEL value can't have the SH-bit set when MMUCR.IX is set,
  13. * which is the default in cpu-sh3/mmu_context.h:MMU_CONTROL_INIT).
  14. *
  15. * In order to keep this relatively clean, do not use these for defining
  16. * SH-3 specific flags until all of the other unused bits have been
  17. * exhausted.
  18. *
  19. * - Bit 9 is reserved by everyone and used by _PAGE_PROTNONE.
  20. *
  21. * - Bits 10 and 11 are low bits of the PPN that are reserved on >= 4K pages.
  22. * Bit 10 is used for _PAGE_ACCESSED, and bit 11 is used for _PAGE_SPECIAL.
  23. *
  24. * - On 29 bit platforms, bits 31 to 29 are used for the space attributes
  25. * and timing control which (together with bit 0) are moved into the
  26. * old-style PTEA on the parts that support it.
  27. *
  28. * SH-X2 MMUs and extended PTEs
  29. *
  30. * SH-X2 supports an extended mode TLB with split data arrays due to the
  31. * number of bits needed for PR and SZ (now EPR and ESZ) encodings. The PR and
  32. * SZ bit placeholders still exist in data array 1, but are implemented as
  33. * reserved bits, with the real logic existing in data array 2.
  34. *
  35. * The downside to this is that we can no longer fit everything in to a 32-bit
  36. * PTE encoding, so a 64-bit pte_t is necessary for these parts. On the plus
  37. * side, this gives us quite a few spare bits to play with for future usage.
  38. */
  39. /* Legacy and compat mode bits */
  40. #define _PAGE_WT 0x001 /* WT-bit on SH-4, 0 on SH-3 */
  41. #define _PAGE_HW_SHARED 0x002 /* SH-bit : shared among processes */
  42. #define _PAGE_DIRTY 0x004 /* D-bit : page changed */
  43. #define _PAGE_CACHABLE 0x008 /* C-bit : cachable */
  44. #define _PAGE_SZ0 0x010 /* SZ0-bit : Size of page */
  45. #define _PAGE_RW 0x020 /* PR0-bit : write access allowed */
  46. #define _PAGE_USER 0x040 /* PR1-bit : user space access allowed*/
  47. #define _PAGE_SZ1 0x080 /* SZ1-bit : Size of page (on SH-4) */
  48. #define _PAGE_PRESENT 0x100 /* V-bit : page is valid */
  49. #define _PAGE_PROTNONE 0x200 /* software: if not present */
  50. #define _PAGE_ACCESSED 0x400 /* software: page referenced */
  51. #define _PAGE_SPECIAL 0x800 /* software: special page */
  52. #define _PAGE_SZ_MASK (_PAGE_SZ0 | _PAGE_SZ1)
  53. #define _PAGE_PR_MASK (_PAGE_RW | _PAGE_USER)
  54. /* Extended mode bits */
  55. #define _PAGE_EXT_ESZ0 0x0010 /* ESZ0-bit: Size of page */
  56. #define _PAGE_EXT_ESZ1 0x0020 /* ESZ1-bit: Size of page */
  57. #define _PAGE_EXT_ESZ2 0x0040 /* ESZ2-bit: Size of page */
  58. #define _PAGE_EXT_ESZ3 0x0080 /* ESZ3-bit: Size of page */
  59. #define _PAGE_EXT_USER_EXEC 0x0100 /* EPR0-bit: User space executable */
  60. #define _PAGE_EXT_USER_WRITE 0x0200 /* EPR1-bit: User space writable */
  61. #define _PAGE_EXT_USER_READ 0x0400 /* EPR2-bit: User space readable */
  62. #define _PAGE_EXT_KERN_EXEC 0x0800 /* EPR3-bit: Kernel space executable */
  63. #define _PAGE_EXT_KERN_WRITE 0x1000 /* EPR4-bit: Kernel space writable */
  64. #define _PAGE_EXT_KERN_READ 0x2000 /* EPR5-bit: Kernel space readable */
  65. #define _PAGE_EXT_WIRED 0x4000 /* software: Wire TLB entry */
  66. /* Wrapper for extended mode pgprot twiddling */
  67. #define _PAGE_EXT(x) ((unsigned long long)(x) << 32)
  68. #ifdef CONFIG_X2TLB
  69. #define _PAGE_PCC_MASK 0x00000000 /* No legacy PTEA support */
  70. #else
  71. /* software: moves to PTEA.TC (Timing Control) */
  72. #define _PAGE_PCC_AREA5 0x00000000 /* use BSC registers for area5 */
  73. #define _PAGE_PCC_AREA6 0x80000000 /* use BSC registers for area6 */
  74. /* software: moves to PTEA.SA[2:0] (Space Attributes) */
  75. #define _PAGE_PCC_IODYN 0x00000001 /* IO space, dynamically sized bus */
  76. #define _PAGE_PCC_IO8 0x20000000 /* IO space, 8 bit bus */
  77. #define _PAGE_PCC_IO16 0x20000001 /* IO space, 16 bit bus */
  78. #define _PAGE_PCC_COM8 0x40000000 /* Common Memory space, 8 bit bus */
  79. #define _PAGE_PCC_COM16 0x40000001 /* Common Memory space, 16 bit bus */
  80. #define _PAGE_PCC_ATR8 0x60000000 /* Attribute Memory space, 8 bit bus */
  81. #define _PAGE_PCC_ATR16 0x60000001 /* Attribute Memory space, 6 bit bus */
  82. #define _PAGE_PCC_MASK 0xe0000001
  83. /* copy the ptea attributes */
  84. static inline unsigned long copy_ptea_attributes(unsigned long x)
  85. {
  86. return ((x >> 28) & 0xe) | (x & 0x1);
  87. }
  88. #endif
  89. /* Mask which drops unused bits from the PTEL value */
  90. #if defined(CONFIG_CPU_SH3)
  91. #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED| \
  92. _PAGE_SZ1 | _PAGE_HW_SHARED)
  93. #elif defined(CONFIG_X2TLB)
  94. /* Get rid of the legacy PR/SZ bits when using extended mode */
  95. #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | \
  96. _PAGE_PR_MASK | _PAGE_SZ_MASK)
  97. #else
  98. #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED)
  99. #endif
  100. #define _PAGE_FLAGS_HARDWARE_MASK (phys_addr_mask() & ~(_PAGE_CLEAR_FLAGS))
  101. /* Hardware flags, page size encoding */
  102. #if !defined(CONFIG_MMU)
  103. # define _PAGE_FLAGS_HARD 0ULL
  104. #elif defined(CONFIG_X2TLB)
  105. # if defined(CONFIG_PAGE_SIZE_4KB)
  106. # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ0)
  107. # elif defined(CONFIG_PAGE_SIZE_8KB)
  108. # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ1)
  109. # elif defined(CONFIG_PAGE_SIZE_64KB)
  110. # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ2)
  111. # endif
  112. #else
  113. # if defined(CONFIG_PAGE_SIZE_4KB)
  114. # define _PAGE_FLAGS_HARD _PAGE_SZ0
  115. # elif defined(CONFIG_PAGE_SIZE_64KB)
  116. # define _PAGE_FLAGS_HARD _PAGE_SZ1
  117. # endif
  118. #endif
  119. #if defined(CONFIG_X2TLB)
  120. # if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
  121. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2)
  122. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_256K)
  123. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ2)
  124. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
  125. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ1 | _PAGE_EXT_ESZ2)
  126. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_4MB)
  127. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ3)
  128. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_64MB)
  129. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2 | _PAGE_EXT_ESZ3)
  130. # endif
  131. # define _PAGE_WIRED (_PAGE_EXT(_PAGE_EXT_WIRED))
  132. #else
  133. # if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
  134. # define _PAGE_SZHUGE (_PAGE_SZ1)
  135. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
  136. # define _PAGE_SZHUGE (_PAGE_SZ0 | _PAGE_SZ1)
  137. # endif
  138. # define _PAGE_WIRED (0)
  139. #endif
  140. /*
  141. * Stub out _PAGE_SZHUGE if we don't have a good definition for it,
  142. * to make pte_mkhuge() happy.
  143. */
  144. #ifndef _PAGE_SZHUGE
  145. # define _PAGE_SZHUGE (_PAGE_FLAGS_HARD)
  146. #endif
  147. /*
  148. * Mask of bits that are to be preserved across pgprot changes.
  149. */
  150. #define _PAGE_CHG_MASK \
  151. (PTE_MASK | _PAGE_ACCESSED | _PAGE_CACHABLE | \
  152. _PAGE_DIRTY | _PAGE_SPECIAL)
  153. #ifndef __ASSEMBLY__
  154. #if defined(CONFIG_X2TLB) /* SH-X2 TLB */
  155. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
  156. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  157. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  158. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  159. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  160. _PAGE_EXT_KERN_WRITE | \
  161. _PAGE_EXT_USER_READ | \
  162. _PAGE_EXT_USER_WRITE))
  163. #define PAGE_EXECREAD __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  164. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  165. _PAGE_EXT(_PAGE_EXT_KERN_EXEC | \
  166. _PAGE_EXT_KERN_READ | \
  167. _PAGE_EXT_USER_EXEC | \
  168. _PAGE_EXT_USER_READ))
  169. #define PAGE_COPY PAGE_EXECREAD
  170. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  171. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  172. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  173. _PAGE_EXT_USER_READ))
  174. #define PAGE_WRITEONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  175. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  176. _PAGE_EXT(_PAGE_EXT_KERN_WRITE | \
  177. _PAGE_EXT_USER_WRITE))
  178. #define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  179. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  180. _PAGE_EXT(_PAGE_EXT_KERN_WRITE | \
  181. _PAGE_EXT_KERN_READ | \
  182. _PAGE_EXT_KERN_EXEC | \
  183. _PAGE_EXT_USER_WRITE | \
  184. _PAGE_EXT_USER_READ | \
  185. _PAGE_EXT_USER_EXEC))
  186. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
  187. _PAGE_DIRTY | _PAGE_ACCESSED | \
  188. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \
  189. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  190. _PAGE_EXT_KERN_WRITE | \
  191. _PAGE_EXT_KERN_EXEC))
  192. #define PAGE_KERNEL_NOCACHE \
  193. __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \
  194. _PAGE_ACCESSED | _PAGE_HW_SHARED | \
  195. _PAGE_FLAGS_HARD | \
  196. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  197. _PAGE_EXT_KERN_WRITE | \
  198. _PAGE_EXT_KERN_EXEC))
  199. #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
  200. _PAGE_DIRTY | _PAGE_ACCESSED | \
  201. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \
  202. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  203. _PAGE_EXT_KERN_EXEC))
  204. #define PAGE_KERNEL_PCC(slot, type) \
  205. __pgprot(0)
  206. #elif defined(CONFIG_MMU) /* SH-X TLB */
  207. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
  208. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  209. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
  210. _PAGE_CACHABLE | _PAGE_ACCESSED | \
  211. _PAGE_FLAGS_HARD)
  212. #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
  213. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  214. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
  215. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  216. #define PAGE_EXECREAD PAGE_READONLY
  217. #define PAGE_RWX PAGE_SHARED
  218. #define PAGE_WRITEONLY PAGE_SHARED
  219. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_CACHABLE | \
  220. _PAGE_DIRTY | _PAGE_ACCESSED | \
  221. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD)
  222. #define PAGE_KERNEL_NOCACHE \
  223. __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
  224. _PAGE_ACCESSED | _PAGE_HW_SHARED | \
  225. _PAGE_FLAGS_HARD)
  226. #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
  227. _PAGE_DIRTY | _PAGE_ACCESSED | \
  228. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD)
  229. #define PAGE_KERNEL_PCC(slot, type) \
  230. __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
  231. _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \
  232. (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \
  233. (type))
  234. #else /* no mmu */
  235. #define PAGE_NONE __pgprot(0)
  236. #define PAGE_SHARED __pgprot(0)
  237. #define PAGE_COPY __pgprot(0)
  238. #define PAGE_EXECREAD __pgprot(0)
  239. #define PAGE_RWX __pgprot(0)
  240. #define PAGE_READONLY __pgprot(0)
  241. #define PAGE_WRITEONLY __pgprot(0)
  242. #define PAGE_KERNEL __pgprot(0)
  243. #define PAGE_KERNEL_NOCACHE __pgprot(0)
  244. #define PAGE_KERNEL_RO __pgprot(0)
  245. #define PAGE_KERNEL_PCC(slot, type) \
  246. __pgprot(0)
  247. #endif
  248. #endif /* __ASSEMBLY__ */
  249. #ifndef __ASSEMBLY__
  250. /*
  251. * Certain architectures need to do special things when PTEs
  252. * within a page table are directly modified. Thus, the following
  253. * hook is made available.
  254. */
  255. #ifdef CONFIG_X2TLB
  256. static inline void set_pte(pte_t *ptep, pte_t pte)
  257. {
  258. ptep->pte_high = pte.pte_high;
  259. smp_wmb();
  260. ptep->pte_low = pte.pte_low;
  261. }
  262. #else
  263. #define set_pte(pteptr, pteval) (*(pteptr) = pteval)
  264. #endif
  265. #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
  266. /*
  267. * (pmds are folded into pgds so this doesn't get actually called,
  268. * but the define is needed for a generic inline function.)
  269. */
  270. #define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval)
  271. #define pfn_pte(pfn, prot) \
  272. __pte(((unsigned long long)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
  273. #define pfn_pmd(pfn, prot) \
  274. __pmd(((unsigned long long)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
  275. #define pte_none(x) (!pte_val(x))
  276. #define pte_present(x) ((x).pte_low & (_PAGE_PRESENT | _PAGE_PROTNONE))
  277. #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
  278. #define pmd_none(x) (!pmd_val(x))
  279. #define pmd_present(x) (pmd_val(x))
  280. #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
  281. #define pmd_bad(x) (pmd_val(x) & ~PAGE_MASK)
  282. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
  283. #define pte_page(x) pfn_to_page(pte_pfn(x))
  284. /*
  285. * The following only work if pte_present() is true.
  286. * Undefined behaviour if not..
  287. */
  288. #define pte_not_present(pte) (!((pte).pte_low & _PAGE_PRESENT))
  289. #define pte_dirty(pte) ((pte).pte_low & _PAGE_DIRTY)
  290. #define pte_young(pte) ((pte).pte_low & _PAGE_ACCESSED)
  291. #define pte_special(pte) ((pte).pte_low & _PAGE_SPECIAL)
  292. #ifdef CONFIG_X2TLB
  293. #define pte_write(pte) \
  294. ((pte).pte_high & (_PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE))
  295. #else
  296. #define pte_write(pte) ((pte).pte_low & _PAGE_RW)
  297. #endif
  298. #define PTE_BIT_FUNC(h,fn,op) \
  299. static inline pte_t pte_##fn(pte_t pte) { pte.pte_##h op; return pte; }
  300. #ifdef CONFIG_X2TLB
  301. /*
  302. * We cheat a bit in the SH-X2 TLB case. As the permission bits are
  303. * individually toggled (and user permissions are entirely decoupled from
  304. * kernel permissions), we attempt to couple them a bit more sanely here.
  305. */
  306. PTE_BIT_FUNC(high, wrprotect, &= ~(_PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE));
  307. PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
  308. PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
  309. #else
  310. PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
  311. PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
  312. PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
  313. #endif
  314. PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
  315. PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
  316. PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED);
  317. PTE_BIT_FUNC(low, mkyoung, |= _PAGE_ACCESSED);
  318. PTE_BIT_FUNC(low, mkspecial, |= _PAGE_SPECIAL);
  319. /*
  320. * Macro and implementation to make a page protection as uncachable.
  321. */
  322. #define pgprot_writecombine(prot) \
  323. __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE)
  324. #define pgprot_noncached pgprot_writecombine
  325. /*
  326. * Conversion functions: convert a page and protection to a page entry,
  327. * and a page entry and page directory to the page they refer to.
  328. *
  329. * extern pte_t mk_pte(struct page *page, pgprot_t pgprot)
  330. */
  331. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  332. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  333. {
  334. pte.pte_low &= _PAGE_CHG_MASK;
  335. pte.pte_low |= pgprot_val(newprot);
  336. #ifdef CONFIG_X2TLB
  337. pte.pte_high |= pgprot_val(newprot) >> 32;
  338. #endif
  339. return pte;
  340. }
  341. #define pmd_page_vaddr(pmd) ((unsigned long)pmd_val(pmd))
  342. #define pmd_page(pmd) (virt_to_page(pmd_val(pmd)))
  343. /* to find an entry in a page-table-directory. */
  344. #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  345. #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
  346. #define __pgd_offset(address) pgd_index(address)
  347. /* to find an entry in a kernel page-table-directory */
  348. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  349. #define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
  350. #define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
  351. /* Find an entry in the third-level page table.. */
  352. #define pte_index(address) ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  353. #define __pte_offset(address) pte_index(address)
  354. #define pte_offset_kernel(dir, address) \
  355. ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address))
  356. #define pte_offset_map(dir, address) pte_offset_kernel(dir, address)
  357. #define pte_unmap(pte) do { } while (0)
  358. #ifdef CONFIG_X2TLB
  359. #define pte_ERROR(e) \
  360. printk("%s:%d: bad pte %p(%08lx%08lx).\n", __FILE__, __LINE__, \
  361. &(e), (e).pte_high, (e).pte_low)
  362. #define pgd_ERROR(e) \
  363. printk("%s:%d: bad pgd %016llx.\n", __FILE__, __LINE__, pgd_val(e))
  364. #else
  365. #define pte_ERROR(e) \
  366. printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
  367. #define pgd_ERROR(e) \
  368. printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
  369. #endif
  370. /*
  371. * Encode and de-code a swap entry
  372. *
  373. * Constraints:
  374. * _PAGE_PRESENT at bit 8
  375. * _PAGE_PROTNONE at bit 9
  376. *
  377. * For the normal case, we encode the swap type into bits 0:7 and the
  378. * swap offset into bits 10:30. For the 64-bit PTE case, we keep the
  379. * preserved bits in the low 32-bits and use the upper 32 as the swap
  380. * offset (along with a 5-bit type), following the same approach as x86
  381. * PAE. This keeps the logic quite simple.
  382. *
  383. * As is evident by the Alpha code, if we ever get a 64-bit unsigned
  384. * long (swp_entry_t) to match up with the 64-bit PTEs, this all becomes
  385. * much cleaner..
  386. *
  387. * NOTE: We should set ZEROs at the position of _PAGE_PRESENT
  388. * and _PAGE_PROTNONE bits
  389. */
  390. #ifdef CONFIG_X2TLB
  391. #define __swp_type(x) ((x).val & 0x1f)
  392. #define __swp_offset(x) ((x).val >> 5)
  393. #define __swp_entry(type, offset) ((swp_entry_t){ (type) | (offset) << 5})
  394. #define __pte_to_swp_entry(pte) ((swp_entry_t){ (pte).pte_high })
  395. #define __swp_entry_to_pte(x) ((pte_t){ 0, (x).val })
  396. #else
  397. #define __swp_type(x) ((x).val & 0xff)
  398. #define __swp_offset(x) ((x).val >> 10)
  399. #define __swp_entry(type, offset) ((swp_entry_t){(type) | (offset) <<10})
  400. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 1 })
  401. #define __swp_entry_to_pte(x) ((pte_t) { (x).val << 1 })
  402. #endif
  403. #endif /* __ASSEMBLY__ */
  404. #endif /* __ASM_SH_PGTABLE_32_H */