pgtable.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  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 - 2005 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. * traditional two-level paging structure
  28. */
  29. /* PTE bits */
  30. #ifdef CONFIG_X2TLB
  31. # define PTE_MAGNITUDE 3 /* 64-bit PTEs on extended mode SH-X2 TLB */
  32. #else
  33. # define PTE_MAGNITUDE 2 /* 32-bit PTEs */
  34. #endif
  35. #define PTE_SHIFT PAGE_SHIFT
  36. #define PTE_BITS (PTE_SHIFT - PTE_MAGNITUDE)
  37. /* PGD bits */
  38. #define PGDIR_SHIFT (PTE_SHIFT + PTE_BITS)
  39. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  40. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  41. /* Entries per level */
  42. #define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE))
  43. #define PTRS_PER_PGD (PAGE_SIZE / sizeof(pgd_t))
  44. #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
  45. #define FIRST_USER_ADDRESS 0
  46. #define PTE_PHYS_MASK (0x20000000 - PAGE_SIZE)
  47. #define VMALLOC_START (P3SEG)
  48. #define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
  49. /*
  50. * Linux PTEL encoding.
  51. *
  52. * Hardware and software bit definitions for the PTEL value (see below for
  53. * notes on SH-X2 MMUs and 64-bit PTEs):
  54. *
  55. * - Bits 0 and 7 are reserved on SH-3 (_PAGE_WT and _PAGE_SZ1 on SH-4).
  56. *
  57. * - Bit 1 is the SH-bit, but is unused on SH-3 due to an MMU bug (the
  58. * hardware PTEL value can't have the SH-bit set when MMUCR.IX is set,
  59. * which is the default in cpu-sh3/mmu_context.h:MMU_CONTROL_INIT).
  60. *
  61. * In order to keep this relatively clean, do not use these for defining
  62. * SH-3 specific flags until all of the other unused bits have been
  63. * exhausted.
  64. *
  65. * - Bit 9 is reserved by everyone and used by _PAGE_PROTNONE.
  66. *
  67. * - Bits 10 and 11 are low bits of the PPN that are reserved on >= 4K pages.
  68. * Bit 10 is used for _PAGE_ACCESSED, bit 11 remains unused.
  69. *
  70. * - Bits 31, 30, and 29 remain unused by everyone and can be used for future
  71. * software flags, although care must be taken to update _PAGE_CLEAR_FLAGS.
  72. *
  73. * XXX: Leave the _PAGE_FILE and _PAGE_WT overhaul for a rainy day.
  74. *
  75. * SH-X2 MMUs and extended PTEs
  76. *
  77. * SH-X2 supports an extended mode TLB with split data arrays due to the
  78. * number of bits needed for PR and SZ (now EPR and ESZ) encodings. The PR and
  79. * SZ bit placeholders still exist in data array 1, but are implemented as
  80. * reserved bits, with the real logic existing in data array 2.
  81. *
  82. * The downside to this is that we can no longer fit everything in to a 32-bit
  83. * PTE encoding, so a 64-bit pte_t is necessary for these parts. On the plus
  84. * side, this gives us quite a few spare bits to play with for future usage.
  85. */
  86. /* Legacy and compat mode bits */
  87. #define _PAGE_WT 0x001 /* WT-bit on SH-4, 0 on SH-3 */
  88. #define _PAGE_HW_SHARED 0x002 /* SH-bit : shared among processes */
  89. #define _PAGE_DIRTY 0x004 /* D-bit : page changed */
  90. #define _PAGE_CACHABLE 0x008 /* C-bit : cachable */
  91. #define _PAGE_SZ0 0x010 /* SZ0-bit : Size of page */
  92. #define _PAGE_RW 0x020 /* PR0-bit : write access allowed */
  93. #define _PAGE_USER 0x040 /* PR1-bit : user space access allowed*/
  94. #define _PAGE_SZ1 0x080 /* SZ1-bit : Size of page (on SH-4) */
  95. #define _PAGE_PRESENT 0x100 /* V-bit : page is valid */
  96. #define _PAGE_PROTNONE 0x200 /* software: if not present */
  97. #define _PAGE_ACCESSED 0x400 /* software: page referenced */
  98. #define _PAGE_FILE _PAGE_WT /* software: pagecache or swap? */
  99. #define _PAGE_SZ_MASK (_PAGE_SZ0 | _PAGE_SZ1)
  100. #define _PAGE_PR_MASK (_PAGE_RW | _PAGE_USER)
  101. /* Extended mode bits */
  102. #define _PAGE_EXT_ESZ0 0x0010 /* ESZ0-bit: Size of page */
  103. #define _PAGE_EXT_ESZ1 0x0020 /* ESZ1-bit: Size of page */
  104. #define _PAGE_EXT_ESZ2 0x0040 /* ESZ2-bit: Size of page */
  105. #define _PAGE_EXT_ESZ3 0x0080 /* ESZ3-bit: Size of page */
  106. #define _PAGE_EXT_USER_EXEC 0x0100 /* EPR0-bit: User space executable */
  107. #define _PAGE_EXT_USER_WRITE 0x0200 /* EPR1-bit: User space writable */
  108. #define _PAGE_EXT_USER_READ 0x0400 /* EPR2-bit: User space readable */
  109. #define _PAGE_EXT_KERN_EXEC 0x0800 /* EPR3-bit: Kernel space executable */
  110. #define _PAGE_EXT_KERN_WRITE 0x1000 /* EPR4-bit: Kernel space writable */
  111. #define _PAGE_EXT_KERN_READ 0x2000 /* EPR5-bit: Kernel space readable */
  112. /* Wrapper for extended mode pgprot twiddling */
  113. #define _PAGE_EXT(x) ((unsigned long long)(x) << 32)
  114. /* software: moves to PTEA.TC (Timing Control) */
  115. #define _PAGE_PCC_AREA5 0x00000000 /* use BSC registers for area5 */
  116. #define _PAGE_PCC_AREA6 0x80000000 /* use BSC registers for area6 */
  117. /* software: moves to PTEA.SA[2:0] (Space Attributes) */
  118. #define _PAGE_PCC_IODYN 0x00000001 /* IO space, dynamically sized bus */
  119. #define _PAGE_PCC_IO8 0x20000000 /* IO space, 8 bit bus */
  120. #define _PAGE_PCC_IO16 0x20000001 /* IO space, 16 bit bus */
  121. #define _PAGE_PCC_COM8 0x40000000 /* Common Memory space, 8 bit bus */
  122. #define _PAGE_PCC_COM16 0x40000001 /* Common Memory space, 16 bit bus */
  123. #define _PAGE_PCC_ATR8 0x60000000 /* Attribute Memory space, 8 bit bus */
  124. #define _PAGE_PCC_ATR16 0x60000001 /* Attribute Memory space, 6 bit bus */
  125. /* Mask which drops unused bits from the PTEL value */
  126. #if defined(CONFIG_CPU_SH3)
  127. #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED| \
  128. _PAGE_FILE | _PAGE_SZ1 | \
  129. _PAGE_HW_SHARED)
  130. #elif defined(CONFIG_X2TLB)
  131. /* Get rid of the legacy PR/SZ bits when using extended mode */
  132. #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | \
  133. _PAGE_FILE | _PAGE_PR_MASK | _PAGE_SZ_MASK)
  134. #else
  135. #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | _PAGE_FILE)
  136. #endif
  137. #define _PAGE_FLAGS_HARDWARE_MASK (0x1fffffff & ~(_PAGE_CLEAR_FLAGS))
  138. /* Hardware flags, page size encoding */
  139. #if defined(CONFIG_X2TLB)
  140. # if defined(CONFIG_PAGE_SIZE_4KB)
  141. # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ0)
  142. # elif defined(CONFIG_PAGE_SIZE_8KB)
  143. # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ1)
  144. # elif defined(CONFIG_PAGE_SIZE_64KB)
  145. # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ2)
  146. # endif
  147. #else
  148. # if defined(CONFIG_PAGE_SIZE_4KB)
  149. # define _PAGE_FLAGS_HARD _PAGE_SZ0
  150. # elif defined(CONFIG_PAGE_SIZE_64KB)
  151. # define _PAGE_FLAGS_HARD _PAGE_SZ1
  152. # endif
  153. #endif
  154. #if defined(CONFIG_X2TLB)
  155. # if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
  156. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2)
  157. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_256K)
  158. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ2)
  159. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
  160. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ1 | _PAGE_EXT_ESZ2)
  161. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_4MB)
  162. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ3)
  163. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_64MB)
  164. # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2 | _PAGE_EXT_ESZ3)
  165. # endif
  166. #else
  167. # if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
  168. # define _PAGE_SZHUGE (_PAGE_SZ1)
  169. # elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
  170. # define _PAGE_SZHUGE (_PAGE_SZ0 | _PAGE_SZ1)
  171. # endif
  172. #endif
  173. /*
  174. * Stub out _PAGE_SZHUGE if we don't have a good definition for it,
  175. * to make pte_mkhuge() happy.
  176. */
  177. #ifndef _PAGE_SZHUGE
  178. # define _PAGE_SZHUGE (_PAGE_FLAGS_HARD)
  179. #endif
  180. #define _PAGE_CHG_MASK \
  181. (PTE_MASK | _PAGE_ACCESSED | _PAGE_CACHABLE | _PAGE_DIRTY)
  182. #ifndef __ASSEMBLY__
  183. #if defined(CONFIG_X2TLB) /* SH-X2 TLB */
  184. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
  185. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  186. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  187. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  188. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  189. _PAGE_EXT_KERN_WRITE | \
  190. _PAGE_EXT_USER_READ | \
  191. _PAGE_EXT_USER_WRITE))
  192. #define PAGE_EXECREAD __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  193. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  194. _PAGE_EXT(_PAGE_EXT_KERN_EXEC | \
  195. _PAGE_EXT_KERN_READ | \
  196. _PAGE_EXT_USER_EXEC | \
  197. _PAGE_EXT_USER_READ))
  198. #define PAGE_COPY PAGE_EXECREAD
  199. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  200. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  201. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  202. _PAGE_EXT_USER_READ))
  203. #define PAGE_WRITEONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  204. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  205. _PAGE_EXT(_PAGE_EXT_KERN_WRITE | \
  206. _PAGE_EXT_USER_WRITE))
  207. #define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  208. _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
  209. _PAGE_EXT(_PAGE_EXT_KERN_WRITE | \
  210. _PAGE_EXT_KERN_READ | \
  211. _PAGE_EXT_KERN_EXEC | \
  212. _PAGE_EXT_USER_WRITE | \
  213. _PAGE_EXT_USER_READ | \
  214. _PAGE_EXT_USER_EXEC))
  215. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
  216. _PAGE_DIRTY | _PAGE_ACCESSED | \
  217. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \
  218. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  219. _PAGE_EXT_KERN_WRITE | \
  220. _PAGE_EXT_KERN_EXEC))
  221. #define PAGE_KERNEL_NOCACHE \
  222. __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \
  223. _PAGE_ACCESSED | _PAGE_HW_SHARED | \
  224. _PAGE_FLAGS_HARD | \
  225. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  226. _PAGE_EXT_KERN_WRITE | \
  227. _PAGE_EXT_KERN_EXEC))
  228. #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
  229. _PAGE_DIRTY | _PAGE_ACCESSED | \
  230. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \
  231. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  232. _PAGE_EXT_KERN_EXEC))
  233. #define PAGE_KERNEL_PCC(slot, type) \
  234. __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \
  235. _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \
  236. _PAGE_EXT(_PAGE_EXT_KERN_READ | \
  237. _PAGE_EXT_KERN_WRITE | \
  238. _PAGE_EXT_KERN_EXEC) \
  239. (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \
  240. (type))
  241. #elif defined(CONFIG_MMU) /* SH-X TLB */
  242. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
  243. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  244. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
  245. _PAGE_CACHABLE | _PAGE_ACCESSED | \
  246. _PAGE_FLAGS_HARD)
  247. #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
  248. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  249. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
  250. _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
  251. #define PAGE_EXECREAD PAGE_READONLY
  252. #define PAGE_RWX PAGE_SHARED
  253. #define PAGE_WRITEONLY PAGE_SHARED
  254. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_CACHABLE | \
  255. _PAGE_DIRTY | _PAGE_ACCESSED | \
  256. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD)
  257. #define PAGE_KERNEL_NOCACHE \
  258. __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
  259. _PAGE_ACCESSED | _PAGE_HW_SHARED | \
  260. _PAGE_FLAGS_HARD)
  261. #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
  262. _PAGE_DIRTY | _PAGE_ACCESSED | \
  263. _PAGE_HW_SHARED | _PAGE_FLAGS_HARD)
  264. #define PAGE_KERNEL_PCC(slot, type) \
  265. __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
  266. _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \
  267. (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \
  268. (type))
  269. #else /* no mmu */
  270. #define PAGE_NONE __pgprot(0)
  271. #define PAGE_SHARED __pgprot(0)
  272. #define PAGE_COPY __pgprot(0)
  273. #define PAGE_EXECREAD __pgprot(0)
  274. #define PAGE_RWX __pgprot(0)
  275. #define PAGE_READONLY __pgprot(0)
  276. #define PAGE_WRITEONLY __pgprot(0)
  277. #define PAGE_KERNEL __pgprot(0)
  278. #define PAGE_KERNEL_NOCACHE __pgprot(0)
  279. #define PAGE_KERNEL_RO __pgprot(0)
  280. #define PAGE_KERNEL_PCC __pgprot(0)
  281. #endif
  282. #endif /* __ASSEMBLY__ */
  283. /*
  284. * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page
  285. * protection for execute, and considers it the same as a read. Also, write
  286. * permission implies read permission. This is the closest we can get..
  287. *
  288. * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme,
  289. * not only supporting separate execute, read, and write bits, but having
  290. * completely separate permission bits for user and kernel space.
  291. */
  292. /*xwr*/
  293. #define __P000 PAGE_NONE
  294. #define __P001 PAGE_READONLY
  295. #define __P010 PAGE_COPY
  296. #define __P011 PAGE_COPY
  297. #define __P100 PAGE_EXECREAD
  298. #define __P101 PAGE_EXECREAD
  299. #define __P110 PAGE_COPY
  300. #define __P111 PAGE_COPY
  301. #define __S000 PAGE_NONE
  302. #define __S001 PAGE_READONLY
  303. #define __S010 PAGE_WRITEONLY
  304. #define __S011 PAGE_SHARED
  305. #define __S100 PAGE_EXECREAD
  306. #define __S101 PAGE_EXECREAD
  307. #define __S110 PAGE_RWX
  308. #define __S111 PAGE_RWX
  309. #ifndef __ASSEMBLY__
  310. /*
  311. * Certain architectures need to do special things when PTEs
  312. * within a page table are directly modified. Thus, the following
  313. * hook is made available.
  314. */
  315. #ifdef CONFIG_X2TLB
  316. static inline void set_pte(pte_t *ptep, pte_t pte)
  317. {
  318. ptep->pte_high = pte.pte_high;
  319. smp_wmb();
  320. ptep->pte_low = pte.pte_low;
  321. }
  322. #else
  323. #define set_pte(pteptr, pteval) (*(pteptr) = pteval)
  324. #endif
  325. #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
  326. /*
  327. * (pmds are folded into pgds so this doesn't get actually called,
  328. * but the define is needed for a generic inline function.)
  329. */
  330. #define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval)
  331. #define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT)))
  332. #define pfn_pte(pfn, prot) \
  333. __pte(((unsigned long long)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
  334. #define pfn_pmd(pfn, prot) \
  335. __pmd(((unsigned long long)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
  336. #define pte_none(x) (!pte_val(x))
  337. #define pte_present(x) ((x).pte_low & (_PAGE_PRESENT | _PAGE_PROTNONE))
  338. #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
  339. #define pmd_none(x) (!pmd_val(x))
  340. #define pmd_present(x) (pmd_val(x))
  341. #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
  342. #define pmd_bad(x) (pmd_val(x) & ~PAGE_MASK)
  343. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
  344. #define pte_page(x) phys_to_page(pte_val(x)&PTE_PHYS_MASK)
  345. /*
  346. * The following only work if pte_present() is true.
  347. * Undefined behaviour if not..
  348. */
  349. #define pte_not_present(pte) (!((pte).pte_low & _PAGE_PRESENT))
  350. #define pte_dirty(pte) ((pte).pte_low & _PAGE_DIRTY)
  351. #define pte_young(pte) ((pte).pte_low & _PAGE_ACCESSED)
  352. #define pte_file(pte) ((pte).pte_low & _PAGE_FILE)
  353. #ifdef CONFIG_X2TLB
  354. #define pte_write(pte) ((pte).pte_high & _PAGE_EXT_USER_WRITE)
  355. #else
  356. #define pte_write(pte) ((pte).pte_low & _PAGE_RW)
  357. #endif
  358. #define PTE_BIT_FUNC(h,fn,op) \
  359. static inline pte_t pte_##fn(pte_t pte) { pte.pte_##h op; return pte; }
  360. #ifdef CONFIG_X2TLB
  361. /*
  362. * We cheat a bit in the SH-X2 TLB case. As the permission bits are
  363. * individually toggled (and user permissions are entirely decoupled from
  364. * kernel permissions), we attempt to couple them a bit more sanely here.
  365. */
  366. PTE_BIT_FUNC(high, wrprotect, &= ~_PAGE_EXT_USER_WRITE);
  367. PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
  368. PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
  369. #else
  370. PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
  371. PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
  372. PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
  373. #endif
  374. PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
  375. PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
  376. PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED);
  377. PTE_BIT_FUNC(low, mkyoung, |= _PAGE_ACCESSED);
  378. /*
  379. * Macro and implementation to make a page protection as uncachable.
  380. */
  381. #define pgprot_writecombine(prot) \
  382. __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE)
  383. #define pgprot_noncached pgprot_writecombine
  384. /*
  385. * Conversion functions: convert a page and protection to a page entry,
  386. * and a page entry and page directory to the page they refer to.
  387. *
  388. * extern pte_t mk_pte(struct page *page, pgprot_t pgprot)
  389. */
  390. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  391. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  392. {
  393. pte.pte_low &= _PAGE_CHG_MASK;
  394. pte.pte_low |= pgprot_val(newprot);
  395. #ifdef CONFIG_X2TLB
  396. pte.pte_high |= pgprot_val(newprot) >> 32;
  397. #endif
  398. return pte;
  399. }
  400. #define pmd_page_vaddr(pmd) ((unsigned long)pmd_val(pmd))
  401. #define pmd_page(pmd) (virt_to_page(pmd_val(pmd)))
  402. /* to find an entry in a page-table-directory. */
  403. #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  404. #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
  405. /* to find an entry in a kernel page-table-directory */
  406. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  407. /* Find an entry in the third-level page table.. */
  408. #define pte_index(address) ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  409. #define pte_offset_kernel(dir, address) \
  410. ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address))
  411. #define pte_offset_map(dir, address) pte_offset_kernel(dir, address)
  412. #define pte_offset_map_nested(dir, address) pte_offset_kernel(dir, address)
  413. #define pte_unmap(pte) do { } while (0)
  414. #define pte_unmap_nested(pte) do { } while (0)
  415. #ifdef CONFIG_X2TLB
  416. #define pte_ERROR(e) \
  417. printk("%s:%d: bad pte %p(%08lx%08lx).\n", __FILE__, __LINE__, \
  418. &(e), (e).pte_high, (e).pte_low)
  419. #define pgd_ERROR(e) \
  420. printk("%s:%d: bad pgd %016llx.\n", __FILE__, __LINE__, pgd_val(e))
  421. #else
  422. #define pte_ERROR(e) \
  423. printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
  424. #define pgd_ERROR(e) \
  425. printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
  426. #endif
  427. struct vm_area_struct;
  428. extern void update_mmu_cache(struct vm_area_struct * vma,
  429. unsigned long address, pte_t pte);
  430. /*
  431. * Encode and de-code a swap entry
  432. *
  433. * Constraints:
  434. * _PAGE_FILE at bit 0
  435. * _PAGE_PRESENT at bit 8
  436. * _PAGE_PROTNONE at bit 9
  437. *
  438. * For the normal case, we encode the swap type into bits 0:7 and the
  439. * swap offset into bits 10:30. For the 64-bit PTE case, we keep the
  440. * preserved bits in the low 32-bits and use the upper 32 as the swap
  441. * offset (along with a 5-bit type), following the same approach as x86
  442. * PAE. This keeps the logic quite simple, and allows for a full 32
  443. * PTE_FILE_MAX_BITS, as opposed to the 29-bits we're constrained with
  444. * in the pte_low case.
  445. *
  446. * As is evident by the Alpha code, if we ever get a 64-bit unsigned
  447. * long (swp_entry_t) to match up with the 64-bit PTEs, this all becomes
  448. * much cleaner..
  449. *
  450. * NOTE: We should set ZEROs at the position of _PAGE_PRESENT
  451. * and _PAGE_PROTNONE bits
  452. */
  453. #ifdef CONFIG_X2TLB
  454. #define __swp_type(x) ((x).val & 0x1f)
  455. #define __swp_offset(x) ((x).val >> 5)
  456. #define __swp_entry(type, offset) ((swp_entry_t){ (type) | (offset) << 5})
  457. #define __pte_to_swp_entry(pte) ((swp_entry_t){ (pte).pte_high })
  458. #define __swp_entry_to_pte(x) ((pte_t){ 0, (x).val })
  459. /*
  460. * Encode and decode a nonlinear file mapping entry
  461. */
  462. #define pte_to_pgoff(pte) ((pte).pte_high)
  463. #define pgoff_to_pte(off) ((pte_t) { _PAGE_FILE, (off) })
  464. #define PTE_FILE_MAX_BITS 32
  465. #else
  466. #define __swp_type(x) ((x).val & 0xff)
  467. #define __swp_offset(x) ((x).val >> 10)
  468. #define __swp_entry(type, offset) ((swp_entry_t){(type) | (offset) <<10})
  469. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 1 })
  470. #define __swp_entry_to_pte(x) ((pte_t) { (x).val << 1 })
  471. /*
  472. * Encode and decode a nonlinear file mapping entry
  473. */
  474. #define PTE_FILE_MAX_BITS 29
  475. #define pte_to_pgoff(pte) (pte_val(pte) >> 1)
  476. #define pgoff_to_pte(off) ((pte_t) { ((off) << 1) | _PAGE_FILE })
  477. #endif
  478. typedef pte_t *pte_addr_t;
  479. #define kern_addr_valid(addr) (1)
  480. #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
  481. remap_pfn_range(vma, vaddr, pfn, size, prot)
  482. struct mm_struct;
  483. /*
  484. * No page table caches to initialise
  485. */
  486. #define pgtable_cache_init() do { } while (0)
  487. #ifndef CONFIG_MMU
  488. extern unsigned int kobjsize(const void *objp);
  489. #endif /* !CONFIG_MMU */
  490. #if !defined(CONFIG_CACHE_OFF) && (defined(CONFIG_CPU_SH4) || \
  491. defined(CONFIG_SH7705_CACHE_32KB))
  492. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  493. extern pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
  494. #endif
  495. extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
  496. extern void paging_init(void);
  497. #include <asm-generic/pgtable.h>
  498. #endif /* !__ASSEMBLY__ */
  499. #endif /* __ASM_SH_PAGE_H */