pgtable-ppc64.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. #ifndef _ASM_POWERPC_PGTABLE_PPC64_H_
  2. #define _ASM_POWERPC_PGTABLE_PPC64_H_
  3. /*
  4. * This file contains the functions and defines necessary to modify and use
  5. * the ppc64 hashed page table.
  6. */
  7. #ifndef __ASSEMBLY__
  8. #include <linux/stddef.h>
  9. #include <asm/tlbflush.h>
  10. #endif /* __ASSEMBLY__ */
  11. #ifdef CONFIG_PPC_64K_PAGES
  12. #include <asm/pgtable-64k.h>
  13. #else
  14. #include <asm/pgtable-4k.h>
  15. #endif
  16. #define FIRST_USER_ADDRESS 0
  17. /*
  18. * Size of EA range mapped by our pagetables.
  19. */
  20. #define PGTABLE_EADDR_SIZE (PTE_INDEX_SIZE + PMD_INDEX_SIZE + \
  21. PUD_INDEX_SIZE + PGD_INDEX_SIZE + PAGE_SHIFT)
  22. #define PGTABLE_RANGE (ASM_CONST(1) << PGTABLE_EADDR_SIZE)
  23. #if TASK_SIZE_USER64 > PGTABLE_RANGE
  24. #error TASK_SIZE_USER64 exceeds pagetable range
  25. #endif
  26. #if TASK_SIZE_USER64 > (1UL << (USER_ESID_BITS + SID_SHIFT))
  27. #error TASK_SIZE_USER64 exceeds user VSID range
  28. #endif
  29. /*
  30. * Define the address range of the vmalloc VM area.
  31. */
  32. #define VMALLOC_START ASM_CONST(0xD000000000000000)
  33. #define VMALLOC_SIZE (PGTABLE_RANGE >> 1)
  34. #define VMALLOC_END (VMALLOC_START + VMALLOC_SIZE)
  35. /*
  36. * Define the address ranges for MMIO and IO space :
  37. *
  38. * ISA_IO_BASE = VMALLOC_END, 64K reserved area
  39. * PHB_IO_BASE = ISA_IO_BASE + 64K to ISA_IO_BASE + 2G, PHB IO spaces
  40. * IOREMAP_BASE = ISA_IO_BASE + 2G to VMALLOC_START + PGTABLE_RANGE
  41. */
  42. #define FULL_IO_SIZE 0x80000000ul
  43. #define ISA_IO_BASE (VMALLOC_END)
  44. #define ISA_IO_END (VMALLOC_END + 0x10000ul)
  45. #define PHB_IO_BASE (ISA_IO_END)
  46. #define PHB_IO_END (VMALLOC_END + FULL_IO_SIZE)
  47. #define IOREMAP_BASE (PHB_IO_END)
  48. #define IOREMAP_END (VMALLOC_START + PGTABLE_RANGE)
  49. /*
  50. * Region IDs
  51. */
  52. #define REGION_SHIFT 60UL
  53. #define REGION_MASK (0xfUL << REGION_SHIFT)
  54. #define REGION_ID(ea) (((unsigned long)(ea)) >> REGION_SHIFT)
  55. #define VMALLOC_REGION_ID (REGION_ID(VMALLOC_START))
  56. #define KERNEL_REGION_ID (REGION_ID(PAGE_OFFSET))
  57. #define VMEMMAP_REGION_ID (0xfUL)
  58. #define USER_REGION_ID (0UL)
  59. /*
  60. * Defines the address of the vmemap area, in its own region
  61. */
  62. #define VMEMMAP_BASE (VMEMMAP_REGION_ID << REGION_SHIFT)
  63. #define vmemmap ((struct page *)VMEMMAP_BASE)
  64. /*
  65. * Common bits in a linux-style PTE. These match the bits in the
  66. * (hardware-defined) PowerPC PTE as closely as possible. Additional
  67. * bits may be defined in pgtable-*.h
  68. */
  69. #define _PAGE_PRESENT 0x0001 /* software: pte contains a translation */
  70. #define _PAGE_USER 0x0002 /* matches one of the PP bits */
  71. #define _PAGE_FILE 0x0002 /* (!present only) software: pte holds file offset */
  72. #define _PAGE_EXEC 0x0004 /* No execute on POWER4 and newer (we invert) */
  73. #define _PAGE_GUARDED 0x0008
  74. #define _PAGE_COHERENT 0x0010 /* M: enforce memory coherence (SMP systems) */
  75. #define _PAGE_NO_CACHE 0x0020 /* I: cache inhibit */
  76. #define _PAGE_WRITETHRU 0x0040 /* W: cache write-through */
  77. #define _PAGE_DIRTY 0x0080 /* C: page changed */
  78. #define _PAGE_ACCESSED 0x0100 /* R: page referenced */
  79. #define _PAGE_RW 0x0200 /* software: user write access allowed */
  80. #define _PAGE_BUSY 0x0800 /* software: PTE & hash are busy */
  81. /* Strong Access Ordering */
  82. #define _PAGE_SAO (_PAGE_WRITETHRU | _PAGE_NO_CACHE | _PAGE_COHERENT)
  83. #define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_COHERENT)
  84. #define _PAGE_WRENABLE (_PAGE_RW | _PAGE_DIRTY)
  85. /* __pgprot defined in arch/powerpc/incliude/asm/page.h */
  86. #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED)
  87. #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER)
  88. #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER | _PAGE_EXEC)
  89. #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
  90. #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  91. #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
  92. #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  93. #define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_WRENABLE)
  94. #define PAGE_KERNEL_CI __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
  95. _PAGE_WRENABLE | _PAGE_NO_CACHE | _PAGE_GUARDED)
  96. #define PAGE_KERNEL_EXEC __pgprot(_PAGE_BASE | _PAGE_WRENABLE | _PAGE_EXEC)
  97. #define PAGE_AGP __pgprot(_PAGE_BASE | _PAGE_WRENABLE | _PAGE_NO_CACHE)
  98. #define HAVE_PAGE_AGP
  99. #define PAGE_PROT_BITS __pgprot(_PAGE_GUARDED | _PAGE_COHERENT | \
  100. _PAGE_NO_CACHE | _PAGE_WRITETHRU | \
  101. _PAGE_4K_PFN | _PAGE_RW | _PAGE_USER | \
  102. _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_EXEC)
  103. /* PTEIDX nibble */
  104. #define _PTEIDX_SECONDARY 0x8
  105. #define _PTEIDX_GROUP_IX 0x7
  106. /*
  107. * POWER4 and newer have per page execute protection, older chips can only
  108. * do this on a segment (256MB) basis.
  109. *
  110. * Also, write permissions imply read permissions.
  111. * This is the closest we can get..
  112. *
  113. * Note due to the way vm flags are laid out, the bits are XWR
  114. */
  115. #define __P000 PAGE_NONE
  116. #define __P001 PAGE_READONLY
  117. #define __P010 PAGE_COPY
  118. #define __P011 PAGE_COPY
  119. #define __P100 PAGE_READONLY_X
  120. #define __P101 PAGE_READONLY_X
  121. #define __P110 PAGE_COPY_X
  122. #define __P111 PAGE_COPY_X
  123. #define __S000 PAGE_NONE
  124. #define __S001 PAGE_READONLY
  125. #define __S010 PAGE_SHARED
  126. #define __S011 PAGE_SHARED
  127. #define __S100 PAGE_READONLY_X
  128. #define __S101 PAGE_READONLY_X
  129. #define __S110 PAGE_SHARED_X
  130. #define __S111 PAGE_SHARED_X
  131. #ifdef CONFIG_PPC_MM_SLICES
  132. #define HAVE_ARCH_UNMAPPED_AREA
  133. #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
  134. #endif /* CONFIG_PPC_MM_SLICES */
  135. #ifndef __ASSEMBLY__
  136. /*
  137. * Conversion functions: convert a page and protection to a page entry,
  138. * and a page entry and page directory to the page they refer to.
  139. *
  140. * mk_pte takes a (struct page *) as input
  141. */
  142. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  143. static inline pte_t pfn_pte(unsigned long pfn, pgprot_t pgprot)
  144. {
  145. pte_t pte;
  146. pte_val(pte) = (pfn << PTE_RPN_SHIFT) | pgprot_val(pgprot);
  147. return pte;
  148. }
  149. #define pte_modify(_pte, newprot) \
  150. (__pte((pte_val(_pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)))
  151. #define pte_none(pte) ((pte_val(pte) & ~_PAGE_HPTEFLAGS) == 0)
  152. #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
  153. /* pte_clear moved to later in this file */
  154. #define pte_pfn(x) ((unsigned long)((pte_val(x)>>PTE_RPN_SHIFT)))
  155. #define pte_page(x) pfn_to_page(pte_pfn(x))
  156. #define PMD_BAD_BITS (PTE_TABLE_SIZE-1)
  157. #define PUD_BAD_BITS (PMD_TABLE_SIZE-1)
  158. #define pmd_set(pmdp, pmdval) (pmd_val(*(pmdp)) = (pmdval))
  159. #define pmd_none(pmd) (!pmd_val(pmd))
  160. #define pmd_bad(pmd) (!is_kernel_addr(pmd_val(pmd)) \
  161. || (pmd_val(pmd) & PMD_BAD_BITS))
  162. #define pmd_present(pmd) (pmd_val(pmd) != 0)
  163. #define pmd_clear(pmdp) (pmd_val(*(pmdp)) = 0)
  164. #define pmd_page_vaddr(pmd) (pmd_val(pmd) & ~PMD_MASKED_BITS)
  165. #define pmd_page(pmd) virt_to_page(pmd_page_vaddr(pmd))
  166. #define pud_set(pudp, pudval) (pud_val(*(pudp)) = (pudval))
  167. #define pud_none(pud) (!pud_val(pud))
  168. #define pud_bad(pud) (!is_kernel_addr(pud_val(pud)) \
  169. || (pud_val(pud) & PUD_BAD_BITS))
  170. #define pud_present(pud) (pud_val(pud) != 0)
  171. #define pud_clear(pudp) (pud_val(*(pudp)) = 0)
  172. #define pud_page_vaddr(pud) (pud_val(pud) & ~PUD_MASKED_BITS)
  173. #define pud_page(pud) virt_to_page(pud_page_vaddr(pud))
  174. #define pgd_set(pgdp, pudp) ({pgd_val(*(pgdp)) = (unsigned long)(pudp);})
  175. /*
  176. * Find an entry in a page-table-directory. We combine the address region
  177. * (the high order N bits) and the pgd portion of the address.
  178. */
  179. /* to avoid overflow in free_pgtables we don't use PTRS_PER_PGD here */
  180. #define pgd_index(address) (((address) >> (PGDIR_SHIFT)) & 0x1ff)
  181. #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
  182. #define pmd_offset(pudp,addr) \
  183. (((pmd_t *) pud_page_vaddr(*(pudp))) + (((addr) >> PMD_SHIFT) & (PTRS_PER_PMD - 1)))
  184. #define pte_offset_kernel(dir,addr) \
  185. (((pte_t *) pmd_page_vaddr(*(dir))) + (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)))
  186. #define pte_offset_map(dir,addr) pte_offset_kernel((dir), (addr))
  187. #define pte_offset_map_nested(dir,addr) pte_offset_kernel((dir), (addr))
  188. #define pte_unmap(pte) do { } while(0)
  189. #define pte_unmap_nested(pte) do { } while(0)
  190. /* to find an entry in a kernel page-table-directory */
  191. /* This now only contains the vmalloc pages */
  192. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  193. /*
  194. * The following only work if pte_present() is true.
  195. * Undefined behaviour if not..
  196. */
  197. static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW;}
  198. static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY;}
  199. static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED;}
  200. static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE;}
  201. static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; }
  202. static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; }
  203. static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; }
  204. static inline pte_t pte_wrprotect(pte_t pte) {
  205. pte_val(pte) &= ~(_PAGE_RW); return pte; }
  206. static inline pte_t pte_mkclean(pte_t pte) {
  207. pte_val(pte) &= ~(_PAGE_DIRTY); return pte; }
  208. static inline pte_t pte_mkold(pte_t pte) {
  209. pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
  210. static inline pte_t pte_mkwrite(pte_t pte) {
  211. pte_val(pte) |= _PAGE_RW; return pte; }
  212. static inline pte_t pte_mkdirty(pte_t pte) {
  213. pte_val(pte) |= _PAGE_DIRTY; return pte; }
  214. static inline pte_t pte_mkyoung(pte_t pte) {
  215. pte_val(pte) |= _PAGE_ACCESSED; return pte; }
  216. static inline pte_t pte_mkhuge(pte_t pte) {
  217. return pte; }
  218. static inline pte_t pte_mkspecial(pte_t pte) {
  219. pte_val(pte) |= _PAGE_SPECIAL; return pte; }
  220. static inline unsigned long pte_pgprot(pte_t pte)
  221. {
  222. return __pgprot(pte_val(pte)) & PAGE_PROT_BITS;
  223. }
  224. /* Atomic PTE updates */
  225. static inline unsigned long pte_update(struct mm_struct *mm,
  226. unsigned long addr,
  227. pte_t *ptep, unsigned long clr,
  228. int huge)
  229. {
  230. unsigned long old, tmp;
  231. __asm__ __volatile__(
  232. "1: ldarx %0,0,%3 # pte_update\n\
  233. andi. %1,%0,%6\n\
  234. bne- 1b \n\
  235. andc %1,%0,%4 \n\
  236. stdcx. %1,0,%3 \n\
  237. bne- 1b"
  238. : "=&r" (old), "=&r" (tmp), "=m" (*ptep)
  239. : "r" (ptep), "r" (clr), "m" (*ptep), "i" (_PAGE_BUSY)
  240. : "cc" );
  241. if (old & _PAGE_HASHPTE)
  242. hpte_need_flush(mm, addr, ptep, old, huge);
  243. return old;
  244. }
  245. static inline int __ptep_test_and_clear_young(struct mm_struct *mm,
  246. unsigned long addr, pte_t *ptep)
  247. {
  248. unsigned long old;
  249. if ((pte_val(*ptep) & (_PAGE_ACCESSED | _PAGE_HASHPTE)) == 0)
  250. return 0;
  251. old = pte_update(mm, addr, ptep, _PAGE_ACCESSED, 0);
  252. return (old & _PAGE_ACCESSED) != 0;
  253. }
  254. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
  255. #define ptep_test_and_clear_young(__vma, __addr, __ptep) \
  256. ({ \
  257. int __r; \
  258. __r = __ptep_test_and_clear_young((__vma)->vm_mm, __addr, __ptep); \
  259. __r; \
  260. })
  261. #define __HAVE_ARCH_PTEP_SET_WRPROTECT
  262. static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr,
  263. pte_t *ptep)
  264. {
  265. unsigned long old;
  266. if ((pte_val(*ptep) & _PAGE_RW) == 0)
  267. return;
  268. old = pte_update(mm, addr, ptep, _PAGE_RW, 0);
  269. }
  270. static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
  271. unsigned long addr, pte_t *ptep)
  272. {
  273. unsigned long old;
  274. if ((pte_val(*ptep) & _PAGE_RW) == 0)
  275. return;
  276. old = pte_update(mm, addr, ptep, _PAGE_RW, 1);
  277. }
  278. /*
  279. * We currently remove entries from the hashtable regardless of whether
  280. * the entry was young or dirty. The generic routines only flush if the
  281. * entry was young or dirty which is not good enough.
  282. *
  283. * We should be more intelligent about this but for the moment we override
  284. * these functions and force a tlb flush unconditionally
  285. */
  286. #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
  287. #define ptep_clear_flush_young(__vma, __address, __ptep) \
  288. ({ \
  289. int __young = __ptep_test_and_clear_young((__vma)->vm_mm, __address, \
  290. __ptep); \
  291. __young; \
  292. })
  293. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  294. static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
  295. unsigned long addr, pte_t *ptep)
  296. {
  297. unsigned long old = pte_update(mm, addr, ptep, ~0UL, 0);
  298. return __pte(old);
  299. }
  300. static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
  301. pte_t * ptep)
  302. {
  303. pte_update(mm, addr, ptep, ~0UL, 0);
  304. }
  305. /*
  306. * set_pte stores a linux PTE into the linux page table.
  307. */
  308. static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
  309. pte_t *ptep, pte_t pte)
  310. {
  311. if (pte_present(*ptep))
  312. pte_clear(mm, addr, ptep);
  313. pte = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS);
  314. *ptep = pte;
  315. }
  316. /* Set the dirty and/or accessed bits atomically in a linux PTE, this
  317. * function doesn't need to flush the hash entry
  318. */
  319. #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
  320. static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry, int dirty)
  321. {
  322. unsigned long bits = pte_val(entry) &
  323. (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC);
  324. unsigned long old, tmp;
  325. __asm__ __volatile__(
  326. "1: ldarx %0,0,%4\n\
  327. andi. %1,%0,%6\n\
  328. bne- 1b \n\
  329. or %0,%3,%0\n\
  330. stdcx. %0,0,%4\n\
  331. bne- 1b"
  332. :"=&r" (old), "=&r" (tmp), "=m" (*ptep)
  333. :"r" (bits), "r" (ptep), "m" (*ptep), "i" (_PAGE_BUSY)
  334. :"cc");
  335. }
  336. #define ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
  337. ({ \
  338. int __changed = !pte_same(*(__ptep), __entry); \
  339. if (__changed) { \
  340. __ptep_set_access_flags(__ptep, __entry, __dirty); \
  341. flush_tlb_page_nohash(__vma, __address); \
  342. } \
  343. __changed; \
  344. })
  345. /*
  346. * Macro to mark a page protection value as "uncacheable".
  347. */
  348. #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_NO_CACHE | _PAGE_GUARDED))
  349. struct file;
  350. extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
  351. unsigned long size, pgprot_t vma_prot);
  352. #define __HAVE_PHYS_MEM_ACCESS_PROT
  353. #define __HAVE_ARCH_PTE_SAME
  354. #define pte_same(A,B) (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HPTEFLAGS) == 0)
  355. #define pte_ERROR(e) \
  356. printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
  357. #define pmd_ERROR(e) \
  358. printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e))
  359. #define pgd_ERROR(e) \
  360. printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
  361. /* Encode and de-code a swap entry */
  362. #define __swp_type(entry) (((entry).val >> 1) & 0x3f)
  363. #define __swp_offset(entry) ((entry).val >> 8)
  364. #define __swp_entry(type, offset) ((swp_entry_t){((type)<< 1)|((offset)<<8)})
  365. #define __pte_to_swp_entry(pte) ((swp_entry_t){pte_val(pte) >> PTE_RPN_SHIFT})
  366. #define __swp_entry_to_pte(x) ((pte_t) { (x).val << PTE_RPN_SHIFT })
  367. #define pte_to_pgoff(pte) (pte_val(pte) >> PTE_RPN_SHIFT)
  368. #define pgoff_to_pte(off) ((pte_t) {((off) << PTE_RPN_SHIFT)|_PAGE_FILE})
  369. #define PTE_FILE_MAX_BITS (BITS_PER_LONG - PTE_RPN_SHIFT)
  370. void pgtable_cache_init(void);
  371. /*
  372. * find_linux_pte returns the address of a linux pte for a given
  373. * effective address and directory. If not found, it returns zero.
  374. */static inline pte_t *find_linux_pte(pgd_t *pgdir, unsigned long ea)
  375. {
  376. pgd_t *pg;
  377. pud_t *pu;
  378. pmd_t *pm;
  379. pte_t *pt = NULL;
  380. pg = pgdir + pgd_index(ea);
  381. if (!pgd_none(*pg)) {
  382. pu = pud_offset(pg, ea);
  383. if (!pud_none(*pu)) {
  384. pm = pmd_offset(pu, ea);
  385. if (pmd_present(*pm))
  386. pt = pte_offset_kernel(pm, ea);
  387. }
  388. }
  389. return pt;
  390. }
  391. pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long address);
  392. #endif /* __ASSEMBLY__ */
  393. #endif /* _ASM_POWERPC_PGTABLE_PPC64_H_ */