blob: a9783ba7fe9898f87291bc59168a7452b656b24d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _PPC64_PGTABLE_H
2#define _PPC64_PGTABLE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004/*
5 * This file contains the functions and defines necessary to modify and use
6 * the ppc64 hashed page table.
7 */
8
9#ifndef __ASSEMBLY__
10#include <linux/config.h>
11#include <linux/stddef.h>
12#include <asm/processor.h> /* For TASK_SIZE */
13#include <asm/mmu.h>
14#include <asm/page.h>
15#include <asm/tlbflush.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080016struct mm_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#endif /* __ASSEMBLY__ */
18
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110019#ifdef CONFIG_PPC_64K_PAGES
20#include <asm/pgtable-64k.h>
21#else
22#include <asm/pgtable-4k.h>
23#endif
David Gibson1f8d4192005-05-05 16:15:13 -070024
25#define FIRST_USER_ADDRESS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/*
28 * Size of EA range mapped by our pagetables.
29 */
David Gibsone28f7fa2005-08-05 19:39:06 +100030#define PGTABLE_EADDR_SIZE (PTE_INDEX_SIZE + PMD_INDEX_SIZE + \
31 PUD_INDEX_SIZE + PGD_INDEX_SIZE + PAGE_SHIFT)
32#define PGTABLE_RANGE (1UL << PGTABLE_EADDR_SIZE)
33
34#if TASK_SIZE_USER64 > PGTABLE_RANGE
35#error TASK_SIZE_USER64 exceeds pagetable range
36#endif
37
38#if TASK_SIZE_USER64 > (1UL << (USER_ESID_BITS + SID_SHIFT))
39#error TASK_SIZE_USER64 exceeds user VSID range
40#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Define the address range of the vmalloc VM area.
44 */
45#define VMALLOC_START (0xD000000000000000ul)
David Gibsone28f7fa2005-08-05 19:39:06 +100046#define VMALLOC_SIZE (0x80000000000UL)
David Gibson20cee162005-06-21 17:15:31 -070047#define VMALLOC_END (VMALLOC_START + VMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110050 * Common bits in a linux-style PTE. These match the bits in the
51 * (hardware-defined) PowerPC PTE as closely as possible. Additional
52 * bits may be defined in pgtable-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
54#define _PAGE_PRESENT 0x0001 /* software: pte contains a translation */
55#define _PAGE_USER 0x0002 /* matches one of the PP bits */
56#define _PAGE_FILE 0x0002 /* (!present only) software: pte holds file offset */
57#define _PAGE_EXEC 0x0004 /* No execute on POWER4 and newer (we invert) */
58#define _PAGE_GUARDED 0x0008
59#define _PAGE_COHERENT 0x0010 /* M: enforce memory coherence (SMP systems) */
60#define _PAGE_NO_CACHE 0x0020 /* I: cache inhibit */
61#define _PAGE_WRITETHRU 0x0040 /* W: cache write-through */
62#define _PAGE_DIRTY 0x0080 /* C: page changed */
63#define _PAGE_ACCESSED 0x0100 /* R: page referenced */
64#define _PAGE_RW 0x0200 /* software: user write access allowed */
65#define _PAGE_HASHPTE 0x0400 /* software: pte has an associated HPTE */
66#define _PAGE_BUSY 0x0800 /* software: PTE & hash are busy */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_COHERENT)
69
70#define _PAGE_WRENABLE (_PAGE_RW | _PAGE_DIRTY)
71
72/* __pgprot defined in asm-ppc64/page.h */
73#define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED)
74
75#define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER)
76#define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER | _PAGE_EXEC)
77#define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
78#define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
79#define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
80#define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
81#define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_WRENABLE)
82#define PAGE_KERNEL_CI __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
83 _PAGE_WRENABLE | _PAGE_NO_CACHE | _PAGE_GUARDED)
84#define PAGE_KERNEL_EXEC __pgprot(_PAGE_BASE | _PAGE_WRENABLE | _PAGE_EXEC)
85
86#define PAGE_AGP __pgprot(_PAGE_BASE | _PAGE_WRENABLE | _PAGE_NO_CACHE)
87#define HAVE_PAGE_AGP
88
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110089/* PTEIDX nibble */
90#define _PTEIDX_SECONDARY 0x8
91#define _PTEIDX_GROUP_IX 0x7
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/*
95 * POWER4 and newer have per page execute protection, older chips can only
96 * do this on a segment (256MB) basis.
97 *
98 * Also, write permissions imply read permissions.
99 * This is the closest we can get..
100 *
101 * Note due to the way vm flags are laid out, the bits are XWR
102 */
103#define __P000 PAGE_NONE
104#define __P001 PAGE_READONLY
105#define __P010 PAGE_COPY
106#define __P011 PAGE_COPY
107#define __P100 PAGE_READONLY_X
108#define __P101 PAGE_READONLY_X
109#define __P110 PAGE_COPY_X
110#define __P111 PAGE_COPY_X
111
112#define __S000 PAGE_NONE
113#define __S001 PAGE_READONLY
114#define __S010 PAGE_SHARED
115#define __S011 PAGE_SHARED
116#define __S100 PAGE_READONLY_X
117#define __S101 PAGE_READONLY_X
118#define __S110 PAGE_SHARED_X
119#define __S111 PAGE_SHARED_X
120
121#ifndef __ASSEMBLY__
122
123/*
124 * ZERO_PAGE is a global shared page that is always zero: used
125 * for zero-mapped memory areas etc..
126 */
127extern unsigned long empty_zero_page[PAGE_SIZE/sizeof(unsigned long)];
128#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
129#endif /* __ASSEMBLY__ */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#ifdef CONFIG_HUGETLB_PAGE
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define HAVE_ARCH_UNMAPPED_AREA
134#define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#endif
137
138#ifndef __ASSEMBLY__
139
140/*
141 * Conversion functions: convert a page and protection to a page entry,
142 * and a page entry and page directory to the page they refer to.
143 *
144 * mk_pte takes a (struct page *) as input
145 */
146#define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
147
David Gibson1f8d4192005-05-05 16:15:13 -0700148static inline pte_t pfn_pte(unsigned long pfn, pgprot_t pgprot)
149{
150 pte_t pte;
151
152
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100153 pte_val(pte) = (pfn << PTE_RPN_SHIFT) | pgprot_val(pgprot);
David Gibson1f8d4192005-05-05 16:15:13 -0700154 return pte;
155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157#define pte_modify(_pte, newprot) \
158 (__pte((pte_val(_pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)))
159
160#define pte_none(pte) ((pte_val(pte) & ~_PAGE_HPTEFLAGS) == 0)
161#define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
162
163/* pte_clear moved to later in this file */
164
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100165#define pte_pfn(x) ((unsigned long)((pte_val(x)>>PTE_RPN_SHIFT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define pte_page(x) pfn_to_page(pte_pfn(x))
167
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100168#define pmd_set(pmdp, pmdval) (pmd_val(*(pmdp)) = (pmdval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#define pmd_none(pmd) (!pmd_val(pmd))
170#define pmd_bad(pmd) (pmd_val(pmd) == 0)
171#define pmd_present(pmd) (pmd_val(pmd) != 0)
172#define pmd_clear(pmdp) (pmd_val(*(pmdp)) = 0)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100173#define pmd_page_kernel(pmd) (pmd_val(pmd) & ~PMD_MASKED_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define pmd_page(pmd) virt_to_page(pmd_page_kernel(pmd))
Benjamin Herrenschmidt58366af2005-05-01 08:58:44 -0700175
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100176#define pud_set(pudp, pudval) (pud_val(*(pudp)) = (pudval))
Benjamin Herrenschmidt58366af2005-05-01 08:58:44 -0700177#define pud_none(pud) (!pud_val(pud))
David Gibsone28f7fa2005-08-05 19:39:06 +1000178#define pud_bad(pud) ((pud_val(pud)) == 0)
179#define pud_present(pud) (pud_val(pud) != 0)
180#define pud_clear(pudp) (pud_val(*(pudp)) = 0)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100181#define pud_page(pud) (pud_val(pud) & ~PUD_MASKED_BITS)
David Gibsone28f7fa2005-08-05 19:39:06 +1000182
183#define pgd_set(pgdp, pudp) ({pgd_val(*(pgdp)) = (unsigned long)(pudp);})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185/*
186 * Find an entry in a page-table-directory. We combine the address region
187 * (the high order N bits) and the pgd portion of the address.
188 */
189/* to avoid overflow in free_pgtables we don't use PTRS_PER_PGD here */
David Gibsone28f7fa2005-08-05 19:39:06 +1000190#define pgd_index(address) (((address) >> (PGDIR_SHIFT)) & 0x1ff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
193
David Gibsone28f7fa2005-08-05 19:39:06 +1000194#define pmd_offset(pudp,addr) \
195 (((pmd_t *) pud_page(*(pudp))) + (((addr) >> PMD_SHIFT) & (PTRS_PER_PMD - 1)))
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define pte_offset_kernel(dir,addr) \
David Gibsone28f7fa2005-08-05 19:39:06 +1000198 (((pte_t *) pmd_page_kernel(*(dir))) + (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200#define pte_offset_map(dir,addr) pte_offset_kernel((dir), (addr))
201#define pte_offset_map_nested(dir,addr) pte_offset_kernel((dir), (addr))
202#define pte_unmap(pte) do { } while(0)
203#define pte_unmap_nested(pte) do { } while(0)
204
205/* to find an entry in a kernel page-table-directory */
206/* This now only contains the vmalloc pages */
207#define pgd_offset_k(address) pgd_offset(&init_mm, address)
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/*
210 * The following only work if pte_present() is true.
211 * Undefined behaviour if not..
212 */
213static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER;}
214static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW;}
215static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC;}
216static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY;}
217static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED;}
218static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE;}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; }
221static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; }
222
223static inline pte_t pte_rdprotect(pte_t pte) {
224 pte_val(pte) &= ~_PAGE_USER; return pte; }
225static inline pte_t pte_exprotect(pte_t pte) {
226 pte_val(pte) &= ~_PAGE_EXEC; return pte; }
227static inline pte_t pte_wrprotect(pte_t pte) {
228 pte_val(pte) &= ~(_PAGE_RW); return pte; }
229static inline pte_t pte_mkclean(pte_t pte) {
230 pte_val(pte) &= ~(_PAGE_DIRTY); return pte; }
231static inline pte_t pte_mkold(pte_t pte) {
232 pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static inline pte_t pte_mkread(pte_t pte) {
234 pte_val(pte) |= _PAGE_USER; return pte; }
235static inline pte_t pte_mkexec(pte_t pte) {
236 pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; }
237static inline pte_t pte_mkwrite(pte_t pte) {
238 pte_val(pte) |= _PAGE_RW; return pte; }
239static inline pte_t pte_mkdirty(pte_t pte) {
240 pte_val(pte) |= _PAGE_DIRTY; return pte; }
241static inline pte_t pte_mkyoung(pte_t pte) {
242 pte_val(pte) |= _PAGE_ACCESSED; return pte; }
243static inline pte_t pte_mkhuge(pte_t pte) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100244 return pte; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246/* Atomic PTE updates */
247static inline unsigned long pte_update(pte_t *p, unsigned long clr)
248{
249 unsigned long old, tmp;
250
251 __asm__ __volatile__(
252 "1: ldarx %0,0,%3 # pte_update\n\
253 andi. %1,%0,%6\n\
254 bne- 1b \n\
255 andc %1,%0,%4 \n\
256 stdcx. %1,0,%3 \n\
257 bne- 1b"
258 : "=&r" (old), "=&r" (tmp), "=m" (*p)
259 : "r" (p), "r" (clr), "m" (*p), "i" (_PAGE_BUSY)
260 : "cc" );
261 return old;
262}
263
264/* PTE updating functions, this function puts the PTE in the
265 * batch, doesn't actually triggers the hash flush immediately,
266 * you need to call flush_tlb_pending() to do that.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100267 * Pass -1 for "normal" size (4K or 64K)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100269extern void hpte_update(struct mm_struct *mm, unsigned long addr,
270 pte_t *ptep, unsigned long pte, int huge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100272static inline int __ptep_test_and_clear_young(struct mm_struct *mm,
273 unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 unsigned long old;
276
277 if ((pte_val(*ptep) & (_PAGE_ACCESSED | _PAGE_HASHPTE)) == 0)
278 return 0;
279 old = pte_update(ptep, _PAGE_ACCESSED);
280 if (old & _PAGE_HASHPTE) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100281 hpte_update(mm, addr, ptep, old, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 flush_tlb_pending();
283 }
284 return (old & _PAGE_ACCESSED) != 0;
285}
286#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
287#define ptep_test_and_clear_young(__vma, __addr, __ptep) \
288({ \
289 int __r; \
290 __r = __ptep_test_and_clear_young((__vma)->vm_mm, __addr, __ptep); \
291 __r; \
292})
293
294/*
295 * On RW/DIRTY bit transitions we can avoid flushing the hpte. For the
296 * moment we always flush but we need to fix hpte_update and test if the
297 * optimisation is worth it.
298 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100299static inline int __ptep_test_and_clear_dirty(struct mm_struct *mm,
300 unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 unsigned long old;
303
304 if ((pte_val(*ptep) & _PAGE_DIRTY) == 0)
305 return 0;
306 old = pte_update(ptep, _PAGE_DIRTY);
307 if (old & _PAGE_HASHPTE)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100308 hpte_update(mm, addr, ptep, old, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return (old & _PAGE_DIRTY) != 0;
310}
311#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
312#define ptep_test_and_clear_dirty(__vma, __addr, __ptep) \
313({ \
314 int __r; \
315 __r = __ptep_test_and_clear_dirty((__vma)->vm_mm, __addr, __ptep); \
316 __r; \
317})
318
319#define __HAVE_ARCH_PTEP_SET_WRPROTECT
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100320static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr,
321 pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 unsigned long old;
324
325 if ((pte_val(*ptep) & _PAGE_RW) == 0)
326 return;
327 old = pte_update(ptep, _PAGE_RW);
328 if (old & _PAGE_HASHPTE)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100329 hpte_update(mm, addr, ptep, old, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/*
333 * We currently remove entries from the hashtable regardless of whether
334 * the entry was young or dirty. The generic routines only flush if the
335 * entry was young or dirty which is not good enough.
336 *
337 * We should be more intelligent about this but for the moment we override
338 * these functions and force a tlb flush unconditionally
339 */
340#define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
341#define ptep_clear_flush_young(__vma, __address, __ptep) \
342({ \
343 int __young = __ptep_test_and_clear_young((__vma)->vm_mm, __address, \
344 __ptep); \
345 __young; \
346})
347
348#define __HAVE_ARCH_PTEP_CLEAR_DIRTY_FLUSH
349#define ptep_clear_flush_dirty(__vma, __address, __ptep) \
350({ \
351 int __dirty = __ptep_test_and_clear_dirty((__vma)->vm_mm, __address, \
352 __ptep); \
353 flush_tlb_page(__vma, __address); \
354 __dirty; \
355})
356
357#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100358static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
359 unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 unsigned long old = pte_update(ptep, ~0UL);
362
363 if (old & _PAGE_HASHPTE)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100364 hpte_update(mm, addr, ptep, old, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return __pte(old);
366}
367
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100368static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
369 pte_t * ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 unsigned long old = pte_update(ptep, ~0UL);
372
373 if (old & _PAGE_HASHPTE)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100374 hpte_update(mm, addr, ptep, old, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377/*
378 * set_pte stores a linux PTE into the linux page table.
379 */
380static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
381 pte_t *ptep, pte_t pte)
382{
383 if (pte_present(*ptep)) {
384 pte_clear(mm, addr, ptep);
385 flush_tlb_pending();
386 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100387 pte = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS);
388
389#ifdef CONFIG_PPC_64K_PAGES
390 if (mmu_virtual_psize != MMU_PAGE_64K)
391 pte = __pte(pte_val(pte) | _PAGE_COMBO);
392#endif /* CONFIG_PPC_64K_PAGES */
393
394 *ptep = pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397/* Set the dirty and/or accessed bits atomically in a linux PTE, this
398 * function doesn't need to flush the hash entry
399 */
400#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
401static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry, int dirty)
402{
403 unsigned long bits = pte_val(entry) &
404 (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC);
405 unsigned long old, tmp;
406
407 __asm__ __volatile__(
408 "1: ldarx %0,0,%4\n\
409 andi. %1,%0,%6\n\
410 bne- 1b \n\
411 or %0,%3,%0\n\
412 stdcx. %0,0,%4\n\
413 bne- 1b"
414 :"=&r" (old), "=&r" (tmp), "=m" (*ptep)
415 :"r" (bits), "r" (ptep), "m" (*ptep), "i" (_PAGE_BUSY)
416 :"cc");
417}
418#define ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
419 do { \
420 __ptep_set_access_flags(__ptep, __entry, __dirty); \
421 flush_tlb_page_nohash(__vma, __address); \
422 } while(0)
423
424/*
425 * Macro to mark a page protection value as "uncacheable".
426 */
427#define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_NO_CACHE | _PAGE_GUARDED))
428
429struct file;
Roland Dreier8b150472005-10-28 17:46:18 -0700430extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 unsigned long size, pgprot_t vma_prot);
432#define __HAVE_PHYS_MEM_ACCESS_PROT
433
434#define __HAVE_ARCH_PTE_SAME
435#define pte_same(A,B) (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HPTEFLAGS) == 0)
436
Hugh Dickins65500d22005-10-29 18:15:59 -0700437#define pte_ERROR(e) \
438 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439#define pmd_ERROR(e) \
David Gibsone28f7fa2005-08-05 19:39:06 +1000440 printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441#define pgd_ERROR(e) \
David Gibsone28f7fa2005-08-05 19:39:06 +1000442 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
David Gibson1f8d4192005-05-05 16:15:13 -0700444extern pgd_t swapper_pg_dir[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446extern void paging_init(void);
447
Andrew Mortonb74d0bd2005-08-10 13:53:41 +1000448#ifdef CONFIG_HUGETLB_PAGE
Hugh Dickins3bf5ee92005-04-19 13:29:16 -0700449#define hugetlb_free_pgd_range(tlb, addr, end, floor, ceiling) \
David Gibsone28f7fa2005-08-05 19:39:06 +1000450 free_pgd_range(tlb, addr, end, floor, ceiling)
Andrew Mortonb74d0bd2005-08-10 13:53:41 +1000451#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453/*
454 * This gets called at the end of handling a page fault, when
455 * the kernel has put a new PTE into the page table for the process.
456 * We use it to put a corresponding HPTE into the hash table
457 * ahead of time, instead of waiting for the inevitable extra
458 * hash-table miss exception.
459 */
460struct vm_area_struct;
461extern void update_mmu_cache(struct vm_area_struct *, unsigned long, pte_t);
462
463/* Encode and de-code a swap entry */
464#define __swp_type(entry) (((entry).val >> 1) & 0x3f)
465#define __swp_offset(entry) ((entry).val >> 8)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100466#define __swp_entry(type, offset) ((swp_entry_t){((type)<< 1)|((offset)<<8)})
467#define __pte_to_swp_entry(pte) ((swp_entry_t){pte_val(pte) >> PTE_RPN_SHIFT})
468#define __swp_entry_to_pte(x) ((pte_t) { (x).val << PTE_RPN_SHIFT })
469#define pte_to_pgoff(pte) (pte_val(pte) >> PTE_RPN_SHIFT)
470#define pgoff_to_pte(off) ((pte_t) {((off) << PTE_RPN_SHIFT)|_PAGE_FILE})
471#define PTE_FILE_MAX_BITS (BITS_PER_LONG - PTE_RPN_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473/*
474 * kern_addr_valid is intended to indicate whether an address is a valid
475 * kernel address. Most 32-bit archs define it as always true (like this)
476 * but most 64-bit archs actually perform a test. What should we do here?
477 * The only use is in fs/ncpfs/dir.c
478 */
479#define kern_addr_valid(addr) (1)
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
482 remap_pfn_range(vma, vaddr, pfn, size, prot)
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484void pgtable_cache_init(void);
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
487 * find_linux_pte returns the address of a linux pte for a given
488 * effective address and directory. If not found, it returns zero.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100489 */static inline pte_t *find_linux_pte(pgd_t *pgdir, unsigned long ea)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 pgd_t *pg;
Benjamin Herrenschmidt58366af2005-05-01 08:58:44 -0700492 pud_t *pu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 pmd_t *pm;
494 pte_t *pt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 pg = pgdir + pgd_index(ea);
497 if (!pgd_none(*pg)) {
Benjamin Herrenschmidt58366af2005-05-01 08:58:44 -0700498 pu = pud_offset(pg, ea);
499 if (!pud_none(*pu)) {
500 pm = pmd_offset(pu, ea);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100501 if (pmd_present(*pm))
Benjamin Herrenschmidt58366af2005-05-01 08:58:44 -0700502 pt = pte_offset_kernel(pm, ea);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return pt;
506}
507
508#include <asm-generic/pgtable.h>
509
510#endif /* __ASSEMBLY__ */
511
512#endif /* _PPC64_PGTABLE_H */