upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / include / asm-ppc64 / pgtable.h
1 #ifndef _PPC64_PGTABLE_H
2 #define _PPC64_PGTABLE_H
3
4 /*
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>
16 #endif /* __ASSEMBLY__ */
17
18 /* PMD_SHIFT determines what a second-level page table entry can map */
19 #define PMD_SHIFT       (PAGE_SHIFT + PAGE_SHIFT - 3)
20 #define PMD_SIZE        (1UL << PMD_SHIFT)
21 #define PMD_MASK        (~(PMD_SIZE-1))
22
23 /* PGDIR_SHIFT determines what a third-level page table entry can map */
24 #define PGDIR_SHIFT     (PAGE_SHIFT + (PAGE_SHIFT - 3) + (PAGE_SHIFT - 2))
25 #define PGDIR_SIZE      (1UL << PGDIR_SHIFT)
26 #define PGDIR_MASK      (~(PGDIR_SIZE-1))
27
28 /*
29  * Entries per page directory level.  The PTE level must use a 64b record
30  * for each page table entry.  The PMD and PGD level use a 32b record for 
31  * each entry by assuming that each entry is page aligned.
32  */
33 #define PTE_INDEX_SIZE  9
34 #define PMD_INDEX_SIZE  10
35 #define PGD_INDEX_SIZE  10
36
37 #define PTRS_PER_PTE    (1 << PTE_INDEX_SIZE)
38 #define PTRS_PER_PMD    (1 << PMD_INDEX_SIZE)
39 #define PTRS_PER_PGD    (1 << PGD_INDEX_SIZE)
40
41 #define USER_PTRS_PER_PGD       (1024)
42 #define FIRST_USER_PGD_NR       0
43
44 #define EADDR_SIZE (PTE_INDEX_SIZE + PMD_INDEX_SIZE + \
45                     PGD_INDEX_SIZE + PAGE_SHIFT) 
46
47 /*
48  * Size of EA range mapped by our pagetables.
49  */
50 #define PGTABLE_EA_BITS 41
51 #define PGTABLE_EA_MASK ((1UL<<PGTABLE_EA_BITS)-1)
52
53 /*
54  * Define the address range of the vmalloc VM area.
55  */
56 #define VMALLOC_START (0xD000000000000000ul)
57 #define VMALLOC_END   (VMALLOC_START + PGTABLE_EA_MASK)
58
59 /*
60  * Define the address range of the imalloc VM area.
61  * (used for ioremap)
62  */
63 #define IMALLOC_START     (ioremap_bot)
64 #define IMALLOC_VMADDR(x) ((unsigned long)(x))
65 #define PHBS_IO_BASE      (0xE000000000000000ul)        /* Reserve 2 gigs for PHBs */
66 #define IMALLOC_BASE      (0xE000000080000000ul)  
67 #define IMALLOC_END       (IMALLOC_BASE + PGTABLE_EA_MASK)
68
69 /*
70  * Define the user address range
71  */
72 #define USER_START (0UL)
73 #define USER_END   (USER_START + PGTABLE_EA_MASK)
74
75
76 /*
77  * Bits in a linux-style PTE.  These match the bits in the
78  * (hardware-defined) PowerPC PTE as closely as possible.
79  */
80 #define _PAGE_PRESENT   0x0001 /* software: pte contains a translation */
81 #define _PAGE_USER      0x0002 /* matches one of the PP bits */
82 #define _PAGE_FILE      0x0002 /* (!present only) software: pte holds file offset */
83 #define _PAGE_RW        0x0004 /* software: user write access allowed */
84 #define _PAGE_GUARDED   0x0008
85 #define _PAGE_COHERENT  0x0010 /* M: enforce memory coherence (SMP systems) */
86 #define _PAGE_NO_CACHE  0x0020 /* I: cache inhibit */
87 #define _PAGE_WRITETHRU 0x0040 /* W: cache write-through */
88 #define _PAGE_DIRTY     0x0080 /* C: page changed */
89 #define _PAGE_ACCESSED  0x0100 /* R: page referenced */
90 #define _PAGE_EXEC      0x0200 /* software: i-cache coherence required */
91 #define _PAGE_HASHPTE   0x0400 /* software: pte has an associated HPTE */
92 #define _PAGE_BUSY      0x0800 /* software: PTE & hash are busy */ 
93 #define _PAGE_SECONDARY 0x8000 /* software: HPTE is in secondary group */
94 #define _PAGE_GROUP_IX  0x7000 /* software: HPTE index within group */
95 #define _PAGE_HUGE      0x10000 /* 16MB page */
96 /* Bits 0x7000 identify the index within an HPT Group */
97 #define _PAGE_HPTEFLAGS (_PAGE_BUSY | _PAGE_HASHPTE | _PAGE_SECONDARY | _PAGE_GROUP_IX)
98 /* PAGE_MASK gives the right answer below, but only by accident */
99 /* It should be preserving the high 48 bits and then specifically */
100 /* preserving _PAGE_SECONDARY | _PAGE_GROUP_IX */
101 #define _PAGE_CHG_MASK  (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_HPTEFLAGS)
102
103 #define _PAGE_BASE      (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_COHERENT)
104
105 #define _PAGE_WRENABLE  (_PAGE_RW | _PAGE_DIRTY)
106
107 /* __pgprot defined in asm-ppc64/page.h */
108 #define PAGE_NONE       __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED)
109
110 #define PAGE_SHARED     __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER)
111 #define PAGE_SHARED_X   __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER | _PAGE_EXEC)
112 #define PAGE_COPY       __pgprot(_PAGE_BASE | _PAGE_USER)
113 #define PAGE_COPY_X     __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
114 #define PAGE_READONLY   __pgprot(_PAGE_BASE | _PAGE_USER)
115 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
116 #define PAGE_KERNEL     __pgprot(_PAGE_BASE | _PAGE_WRENABLE)
117 #define PAGE_KERNEL_CI  __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
118                                _PAGE_WRENABLE | _PAGE_NO_CACHE | _PAGE_GUARDED)
119
120 /*
121  * The PowerPC can only do execute protection on a segment (256MB) basis,
122  * not on a page basis.  So we consider execute permission the same as read.
123  * Also, write permissions imply read permissions.
124  * This is the closest we can get..
125  */
126 #define __P000  PAGE_NONE
127 #define __P001  PAGE_READONLY_X
128 #define __P010  PAGE_COPY
129 #define __P011  PAGE_COPY_X
130 #define __P100  PAGE_READONLY
131 #define __P101  PAGE_READONLY_X
132 #define __P110  PAGE_COPY
133 #define __P111  PAGE_COPY_X
134
135 #define __S000  PAGE_NONE
136 #define __S001  PAGE_READONLY_X
137 #define __S010  PAGE_SHARED
138 #define __S011  PAGE_SHARED_X
139 #define __S100  PAGE_READONLY
140 #define __S101  PAGE_READONLY_X
141 #define __S110  PAGE_SHARED
142 #define __S111  PAGE_SHARED_X
143
144 #ifndef __ASSEMBLY__
145
146 /*
147  * ZERO_PAGE is a global shared page that is always zero: used
148  * for zero-mapped memory areas etc..
149  */
150 extern unsigned long empty_zero_page[PAGE_SIZE/sizeof(unsigned long)];
151 #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
152 #endif /* __ASSEMBLY__ */
153
154 /* shift to put page number into pte */
155 #define PTE_SHIFT (17)
156
157 /* We allow 2^41 bytes of real memory, so we need 29 bits in the PMD
158  * to give the PTE page number.  The bottom two bits are for flags. */
159 #define PMD_TO_PTEPAGE_SHIFT (2)
160
161 #ifdef CONFIG_HUGETLB_PAGE
162
163 #ifndef __ASSEMBLY__
164 int hash_huge_page(struct mm_struct *mm, unsigned long access,
165                    unsigned long ea, unsigned long vsid, int local);
166
167 void hugetlb_mm_free_pgd(struct mm_struct *mm);
168 #endif /* __ASSEMBLY__ */
169
170 #define HAVE_ARCH_UNMAPPED_AREA
171 #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
172 #else
173
174 #define hash_huge_page(mm,a,ea,vsid,local)      -1
175 #define hugetlb_mm_free_pgd(mm)                 do {} while (0)
176
177 #endif
178
179 #ifndef __ASSEMBLY__
180
181 /*
182  * Conversion functions: convert a page and protection to a page entry,
183  * and a page entry and page directory to the page they refer to.
184  *
185  * mk_pte takes a (struct page *) as input
186  */
187 #define mk_pte(page, pgprot)    pfn_pte(page_to_pfn(page), (pgprot))
188
189 #define pfn_pte(pfn,pgprot)                                             \
190 ({                                                                      \
191         pte_t pte;                                                      \
192         pte_val(pte) = ((unsigned long)(pfn) << PTE_SHIFT) |            \
193                         pgprot_val(pgprot);                             \
194         pte;                                                            \
195 })
196
197 #define pte_modify(_pte, newprot) \
198   (__pte((pte_val(_pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)))
199
200 #define pte_none(pte)           ((pte_val(pte) & ~_PAGE_HPTEFLAGS) == 0)
201 #define pte_present(pte)        (pte_val(pte) & _PAGE_PRESENT)
202
203 /* pte_clear moved to later in this file */
204
205 #define pte_pfn(x)              ((unsigned long)((pte_val(x) >> PTE_SHIFT)))
206 #define pte_page(x)             pfn_to_page(pte_pfn(x))
207
208 #define pmd_set(pmdp, ptep)     \
209         (pmd_val(*(pmdp)) = (__ba_to_bpn(ptep) << PMD_TO_PTEPAGE_SHIFT))
210 #define pmd_none(pmd)           (!pmd_val(pmd))
211 #define pmd_bad(pmd)            (pmd_val(pmd) == 0)
212 #define pmd_present(pmd)        (pmd_val(pmd) != 0)
213 #define pmd_clear(pmdp)         (pmd_val(*(pmdp)) = 0)
214 #define pmd_page_kernel(pmd)    \
215         (__bpn_to_ba(pmd_val(pmd) >> PMD_TO_PTEPAGE_SHIFT))
216 #define pmd_page(pmd)           virt_to_page(pmd_page_kernel(pmd))
217 #define pgd_set(pgdp, pmdp)     (pgd_val(*(pgdp)) = (__ba_to_bpn(pmdp)))
218 #define pgd_none(pgd)           (!pgd_val(pgd))
219 #define pgd_bad(pgd)            ((pgd_val(pgd)) == 0)
220 #define pgd_present(pgd)        (pgd_val(pgd) != 0UL)
221 #define pgd_clear(pgdp)         (pgd_val(*(pgdp)) = 0UL)
222 #define pgd_page(pgd)           (__bpn_to_ba(pgd_val(pgd))) 
223
224 /* 
225  * Find an entry in a page-table-directory.  We combine the address region 
226  * (the high order N bits) and the pgd portion of the address.
227  */
228 /* to avoid overflow in free_pgtables we don't use PTRS_PER_PGD here */
229 #define pgd_index(address) (((address) >> (PGDIR_SHIFT)) & 0x7ff)
230
231 #define pgd_offset(mm, address)  ((mm)->pgd + pgd_index(address))
232
233 /* Find an entry in the second-level page table.. */
234 #define pmd_offset(dir,addr) \
235   ((pmd_t *) pgd_page(*(dir)) + (((addr) >> PMD_SHIFT) & (PTRS_PER_PMD - 1)))
236
237 /* Find an entry in the third-level page table.. */
238 #define pte_offset_kernel(dir,addr) \
239   ((pte_t *) pmd_page_kernel(*(dir)) + (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)))
240
241 #define pte_offset_map(dir,addr)        pte_offset_kernel((dir), (addr))
242 #define pte_offset_map_nested(dir,addr) pte_offset_kernel((dir), (addr))
243 #define pte_unmap(pte)                  do { } while(0)
244 #define pte_unmap_nested(pte)           do { } while(0)
245
246 /* to find an entry in a kernel page-table-directory */
247 /* This now only contains the vmalloc pages */
248 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
249
250 /* to find an entry in the ioremap page-table-directory */
251 #define pgd_offset_i(address) (ioremap_pgd + pgd_index(address))
252
253 #define pages_to_mb(x)          ((x) >> (20-PAGE_SHIFT))
254
255 /*
256  * The following only work if pte_present() is true.
257  * Undefined behaviour if not..
258  */
259 static inline int pte_read(pte_t pte)  { return pte_val(pte) & _PAGE_USER;}
260 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW;}
261 static inline int pte_exec(pte_t pte)  { return pte_val(pte) & _PAGE_EXEC;}
262 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY;}
263 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED;}
264 static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE;}
265 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE;}
266
267 static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; }
268 static inline void pte_cache(pte_t pte)   { pte_val(pte) &= ~_PAGE_NO_CACHE; }
269
270 static inline pte_t pte_rdprotect(pte_t pte) {
271         pte_val(pte) &= ~_PAGE_USER; return pte; }
272 static inline pte_t pte_exprotect(pte_t pte) {
273         pte_val(pte) &= ~_PAGE_EXEC; return pte; }
274 static inline pte_t pte_wrprotect(pte_t pte) {
275         pte_val(pte) &= ~(_PAGE_RW); return pte; }
276 static inline pte_t pte_mkclean(pte_t pte) {
277         pte_val(pte) &= ~(_PAGE_DIRTY); return pte; }
278 static inline pte_t pte_mkold(pte_t pte) {
279         pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
280
281 static inline pte_t pte_mkread(pte_t pte) {
282         pte_val(pte) |= _PAGE_USER; return pte; }
283 static inline pte_t pte_mkexec(pte_t pte) {
284         pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; }
285 static inline pte_t pte_mkwrite(pte_t pte) {
286         pte_val(pte) |= _PAGE_RW; return pte; }
287 static inline pte_t pte_mkdirty(pte_t pte) {
288         pte_val(pte) |= _PAGE_DIRTY; return pte; }
289 static inline pte_t pte_mkyoung(pte_t pte) {
290         pte_val(pte) |= _PAGE_ACCESSED; return pte; }
291 static inline pte_t pte_mkhuge(pte_t pte) {
292         pte_val(pte) |= _PAGE_HUGE; return pte; }
293
294 /* Atomic PTE updates */
295 static inline unsigned long pte_update(pte_t *p, unsigned long clr)
296 {
297         unsigned long old, tmp;
298
299         __asm__ __volatile__(
300         "1:     ldarx   %0,0,%3         # pte_update\n\
301         andi.   %1,%0,%6\n\
302         bne-    1b \n\
303         andc    %1,%0,%4 \n\
304         stdcx.  %1,0,%3 \n\
305         bne-    1b"
306         : "=&r" (old), "=&r" (tmp), "=m" (*p)
307         : "r" (p), "r" (clr), "m" (*p), "i" (_PAGE_BUSY)
308         : "cc" );
309         return old;
310 }
311
312 /* PTE updating functions, this function puts the PTE in the
313  * batch, doesn't actually triggers the hash flush immediately,
314  * you need to call flush_tlb_pending() to do that.
315  */
316 extern void hpte_update(pte_t *ptep, unsigned long pte, int wrprot);
317
318 static inline int ptep_test_and_clear_young(pte_t *ptep)
319 {
320         unsigned long old;
321
322         if ((pte_val(*ptep) & (_PAGE_ACCESSED | _PAGE_HASHPTE)) == 0)
323                 return 0;
324         old = pte_update(ptep, _PAGE_ACCESSED);
325         if (old & _PAGE_HASHPTE) {
326                 hpte_update(ptep, old, 0);
327                 flush_tlb_pending();
328         }
329         return (old & _PAGE_ACCESSED) != 0;
330 }
331
332 /*
333  * On RW/DIRTY bit transitions we can avoid flushing the hpte. For the
334  * moment we always flush but we need to fix hpte_update and test if the
335  * optimisation is worth it.
336  */
337 static inline int ptep_test_and_clear_dirty(pte_t *ptep)
338 {
339         unsigned long old;
340
341         if ((pte_val(*ptep) & _PAGE_DIRTY) == 0)
342                 return 0;
343         old = pte_update(ptep, _PAGE_DIRTY);
344         if (old & _PAGE_HASHPTE)
345                 hpte_update(ptep, old, 0);
346         return (old & _PAGE_DIRTY) != 0;
347 }
348
349 static inline void ptep_set_wrprotect(pte_t *ptep)
350 {
351         unsigned long old;
352
353         if ((pte_val(*ptep) & _PAGE_RW) == 0)
354                 return;
355         old = pte_update(ptep, _PAGE_RW);
356         if (old & _PAGE_HASHPTE)
357                 hpte_update(ptep, old, 0);
358 }
359
360 /*
361  * We currently remove entries from the hashtable regardless of whether
362  * the entry was young or dirty. The generic routines only flush if the
363  * entry was young or dirty which is not good enough.
364  *
365  * We should be more intelligent about this but for the moment we override
366  * these functions and force a tlb flush unconditionally
367  */
368 #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
369 #define ptep_clear_flush_young(__vma, __address, __ptep)                \
370 ({                                                                      \
371         int __young = ptep_test_and_clear_young(__ptep);                \
372         __young;                                                        \
373 })
374
375 #define __HAVE_ARCH_PTEP_CLEAR_DIRTY_FLUSH
376 #define ptep_clear_flush_dirty(__vma, __address, __ptep)                \
377 ({                                                                      \
378         int __dirty = ptep_test_and_clear_dirty(__ptep);                \
379         flush_tlb_page(__vma, __address);                               \
380         __dirty;                                                        \
381 })
382
383 static inline pte_t ptep_get_and_clear(pte_t *ptep)
384 {
385         unsigned long old = pte_update(ptep, ~0UL);
386
387         if (old & _PAGE_HASHPTE)
388                 hpte_update(ptep, old, 0);
389         return __pte(old);
390 }
391
392 static inline void pte_clear(pte_t * ptep)
393 {
394         unsigned long old = pte_update(ptep, ~0UL);
395
396         if (old & _PAGE_HASHPTE)
397                 hpte_update(ptep, old, 0);
398 }
399
400 /*
401  * set_pte stores a linux PTE into the linux page table.
402  */
403 static inline void set_pte(pte_t *ptep, pte_t pte)
404 {
405         if (pte_present(*ptep)) {
406                 pte_clear(ptep);
407                 flush_tlb_pending();
408         }
409         *ptep = __pte(pte_val(pte)) & ~_PAGE_HPTEFLAGS;
410 }
411
412 /* Set the dirty and/or accessed bits atomically in a linux PTE, this
413  * function doesn't need to flush the hash entry
414  */
415 #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
416 static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry, int dirty)
417 {
418         unsigned long bits = pte_val(entry) &
419                 (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW);
420         unsigned long old, tmp;
421
422         __asm__ __volatile__(
423         "1:     ldarx   %0,0,%4\n\
424                 andi.   %1,%0,%6\n\
425                 bne-    1b \n\
426                 or      %0,%3,%0\n\
427                 stdcx.  %0,0,%4\n\
428                 bne-    1b"
429         :"=&r" (old), "=&r" (tmp), "=m" (*ptep)
430         :"r" (bits), "r" (ptep), "m" (*ptep), "i" (_PAGE_BUSY)
431         :"cc");
432 }
433 #define  ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
434         do {                                                               \
435                 __ptep_set_access_flags(__ptep, __entry, __dirty);         \
436                 flush_tlb_page_nohash(__vma, __address);                   \
437         } while(0)
438
439 /*
440  * Macro to mark a page protection value as "uncacheable".
441  */
442 #define pgprot_noncached(prot)  (__pgprot(pgprot_val(prot) | _PAGE_NO_CACHE | _PAGE_GUARDED))
443
444 #define pte_same(A,B)   (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HPTEFLAGS) == 0)
445
446 extern unsigned long ioremap_bot, ioremap_base;
447
448 #define USER_PGD_PTRS (PAGE_OFFSET >> PGDIR_SHIFT)
449 #define KERNEL_PGD_PTRS (PTRS_PER_PGD-USER_PGD_PTRS)
450
451 #define pte_ERROR(e) \
452         printk("%s:%d: bad pte %016lx.\n", __FILE__, __LINE__, pte_val(e))
453 #define pmd_ERROR(e) \
454         printk("%s:%d: bad pmd %08x.\n", __FILE__, __LINE__, pmd_val(e))
455 #define pgd_ERROR(e) \
456         printk("%s:%d: bad pgd %08x.\n", __FILE__, __LINE__, pgd_val(e))
457
458 extern pgd_t swapper_pg_dir[1024];
459 extern pgd_t ioremap_dir[1024];
460
461 extern void paging_init(void);
462
463 struct mmu_gather;
464 void hugetlb_free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *prev,
465                            unsigned long start, unsigned long end);
466
467 /*
468  * This gets called at the end of handling a page fault, when
469  * the kernel has put a new PTE into the page table for the process.
470  * We use it to put a corresponding HPTE into the hash table
471  * ahead of time, instead of waiting for the inevitable extra
472  * hash-table miss exception.
473  */
474 struct vm_area_struct;
475 extern void update_mmu_cache(struct vm_area_struct *, unsigned long, pte_t);
476
477 /* Encode and de-code a swap entry */
478 #define __swp_type(entry)       (((entry).val >> 1) & 0x3f)
479 #define __swp_offset(entry)     ((entry).val >> 8)
480 #define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) })
481 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> PTE_SHIFT })
482 #define __swp_entry_to_pte(x)   ((pte_t) { (x).val << PTE_SHIFT })
483 #define pte_to_pgoff(pte)       (pte_val(pte) >> PTE_SHIFT)
484 #define pgoff_to_pte(off)       ((pte_t) {((off) << PTE_SHIFT)|_PAGE_FILE})
485 #define PTE_FILE_MAX_BITS       (BITS_PER_LONG - PTE_SHIFT)
486
487 /*
488  * kern_addr_valid is intended to indicate whether an address is a valid
489  * kernel address.  Most 32-bit archs define it as always true (like this)
490  * but most 64-bit archs actually perform a test.  What should we do here?
491  * The only use is in fs/ncpfs/dir.c
492  */
493 #define kern_addr_valid(addr)   (1)
494
495 #define io_remap_page_range(vma, vaddr, paddr, size, prot)              \
496                 remap_pfn_range(vma, vaddr, (paddr) >> PAGE_SHIFT, size, prot)
497
498 void pgtable_cache_init(void);
499
500 extern void hpte_init_native(void);
501 extern void hpte_init_lpar(void);
502 extern void hpte_init_iSeries(void);
503
504 /* imalloc region types */
505 #define IM_REGION_UNUSED        0x1
506 #define IM_REGION_SUBSET        0x2
507 #define IM_REGION_EXISTS        0x4
508 #define IM_REGION_OVERLAP       0x8
509 #define IM_REGION_SUPERSET      0x10
510
511 extern struct vm_struct * im_get_free_area(unsigned long size);
512 extern struct vm_struct * im_get_area(unsigned long v_addr, unsigned long size,
513                         int region_type);
514 unsigned long im_free(void *addr);
515
516 extern long pSeries_lpar_hpte_insert(unsigned long hpte_group,
517                                      unsigned long va, unsigned long prpn,
518                                      int secondary, unsigned long hpteflags,
519                                      int bolted, int large);
520
521 extern long native_hpte_insert(unsigned long hpte_group, unsigned long va,
522                                unsigned long prpn, int secondary,
523                                unsigned long hpteflags, int bolted, int large);
524
525 /*
526  * find_linux_pte returns the address of a linux pte for a given 
527  * effective address and directory.  If not found, it returns zero.
528  */
529 static inline pte_t *find_linux_pte(pgd_t *pgdir, unsigned long ea)
530 {
531         pgd_t *pg;
532         pmd_t *pm;
533         pte_t *pt = NULL;
534         pte_t pte;
535
536         pg = pgdir + pgd_index(ea);
537         if (!pgd_none(*pg)) {
538
539                 pm = pmd_offset(pg, ea);
540                 if (pmd_present(*pm)) { 
541                         pt = pte_offset_kernel(pm, ea);
542                         pte = *pt;
543                         if (!pte_present(pte))
544                                 pt = NULL;
545                 }
546         }
547
548         return pt;
549 }
550
551 #endif /* __ASSEMBLY__ */
552
553 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
554 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
555 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
556 #define __HAVE_ARCH_PTEP_SET_WRPROTECT
557 #define __HAVE_ARCH_PTEP_MKDIRTY
558 #define __HAVE_ARCH_PTE_SAME
559 #include <asm-generic/pgtable.h>
560
561 #endif /* _PPC64_PGTABLE_H */