patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-parisc / pgtable.h
1 #ifndef _PARISC_PGTABLE_H
2 #define _PARISC_PGTABLE_H
3
4 #include <linux/config.h>
5 #include <asm/fixmap.h>
6
7 #ifndef __ASSEMBLY__
8 /*
9  * we simulate an x86-style page table for the linux mm code
10  */
11
12 #include <linux/spinlock.h>
13 #include <asm/processor.h>
14 #include <asm/cache.h>
15 #include <asm/bitops.h>
16
17 /*
18  * kern_addr_valid(ADDR) tests if ADDR is pointing to valid kernel
19  * memory.  For the return value to be meaningful, ADDR must be >=
20  * PAGE_OFFSET.  This operation can be relatively expensive (e.g.,
21  * require a hash-, or multi-level tree-lookup or something of that
22  * sort) but it guarantees to return TRUE only if accessing the page
23  * at that address does not cause an error.  Note that there may be
24  * addresses for which kern_addr_valid() returns FALSE even though an
25  * access would not cause an error (e.g., this is typically true for
26  * memory mapped I/O regions.
27  *
28  * XXX Need to implement this for parisc.
29  */
30 #define kern_addr_valid(addr)   (1)
31
32 /* Certain architectures need to do special things when PTEs
33  * within a page table are directly modified.  Thus, the following
34  * hook is made available.
35  */
36 #define set_pte(pteptr, pteval)                                 \
37         do{                                                     \
38                 *(pteptr) = (pteval);                           \
39         } while(0)
40
41 #endif /* !__ASSEMBLY__ */
42
43 #define pte_ERROR(e) \
44         printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
45 #define pmd_ERROR(e) \
46         printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, (unsigned long)pmd_val(e))
47 #define pgd_ERROR(e) \
48         printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, (unsigned long)pgd_val(e))
49
50  /* Note: If you change ISTACK_SIZE, you need to change the corresponding
51   * values in vmlinux.lds and vmlinux64.lds (init_istack section). Also,
52   * the "order" and size need to agree.
53   */
54
55 #define  ISTACK_SIZE  32768 /* Interrupt Stack Size */
56 #define  ISTACK_ORDER 3
57
58 /* This is the size of the initially mapped kernel memory (i.e. currently
59  * 0 to 1<<23 == 8MB */
60 #define KERNEL_INITIAL_ORDER    23
61 #define KERNEL_INITIAL_SIZE     (1 << KERNEL_INITIAL_ORDER)
62
63 #ifdef __LP64__
64 #define PT_NLEVELS      3
65 #define PGD_ORDER       1 /* Number of pages per pgd */
66 #define PMD_ORDER       1 /* Number of pages per pmd */
67 #define PGD_ALLOC_ORDER 2 /* first pgd contains pmd */
68 #else
69 #define PT_NLEVELS      2
70 #define PGD_ORDER       1 /* Number of pages per pgd */
71 #define PGD_ALLOC_ORDER PGD_ORDER
72 #endif
73
74 /* Definitions for 3rd level (we use PLD here for Page Lower directory
75  * because PTE_SHIFT is used lower down to mean shift that has to be
76  * done to get usable bits out of the PTE) */
77 #define PLD_SHIFT       PAGE_SHIFT
78 #define PLD_SIZE        PAGE_SIZE
79 #define BITS_PER_PTE    (PAGE_SHIFT - BITS_PER_PTE_ENTRY)
80 #define PTRS_PER_PTE    (1UL << BITS_PER_PTE)
81
82 /* Definitions for 2nd level */
83 #define pgtable_cache_init()    do { } while (0)
84
85 #define PMD_SHIFT       (PLD_SHIFT + BITS_PER_PTE)
86 #define PMD_SIZE        (1UL << PMD_SHIFT)
87 #define PMD_MASK        (~(PMD_SIZE-1))
88 #if PT_NLEVELS == 3
89 #define BITS_PER_PMD    (PAGE_SHIFT + PMD_ORDER - BITS_PER_PMD_ENTRY)
90 #else
91 #define BITS_PER_PMD    0
92 #endif
93 #define PTRS_PER_PMD    (1UL << BITS_PER_PMD)
94
95 /* Definitions for 1st level */
96 #define PGDIR_SHIFT     (PMD_SHIFT + BITS_PER_PMD)
97 #define BITS_PER_PGD    (PAGE_SHIFT + PGD_ORDER - BITS_PER_PGD_ENTRY)
98 #define PGDIR_SIZE      (1UL << PGDIR_SHIFT)
99 #define PGDIR_MASK      (~(PGDIR_SIZE-1))
100 #define PTRS_PER_PGD    (1UL << BITS_PER_PGD)
101 #define USER_PTRS_PER_PGD       PTRS_PER_PGD
102
103 #define MAX_ADDRBITS    (PGDIR_SHIFT + BITS_PER_PGD)
104 #define MAX_ADDRESS     (1UL << MAX_ADDRBITS)
105
106 #define SPACEID_SHIFT (MAX_ADDRBITS - 32)
107
108 /* This calculates the number of initial pages we need for the initial
109  * page tables */
110 #define PT_INITIAL      (1 << (KERNEL_INITIAL_ORDER - PMD_SHIFT))
111
112 /*
113  * pgd entries used up by user/kernel:
114  */
115
116 #define FIRST_USER_PGD_NR       0
117
118 #ifndef __ASSEMBLY__
119 extern  void *vmalloc_start;
120 #define PCXL_DMA_MAP_SIZE   (8*1024*1024)
121 #define VMALLOC_START   ((unsigned long)vmalloc_start)
122 /* this is a fixmap remnant, see fixmap.h */
123 #define VMALLOC_END     (KERNEL_MAP_END)
124 #endif
125
126 /* NB: The tlb miss handlers make certain assumptions about the order */
127 /*     of the following bits, so be careful (One example, bits 25-31  */
128 /*     are moved together in one instruction).                        */
129
130 #define _PAGE_READ_BIT     31   /* (0x001) read access allowed */
131 #define _PAGE_WRITE_BIT    30   /* (0x002) write access allowed */
132 #define _PAGE_EXEC_BIT     29   /* (0x004) execute access allowed */
133 #define _PAGE_GATEWAY_BIT  28   /* (0x008) privilege promotion allowed */
134 #define _PAGE_DMB_BIT      27   /* (0x010) Data Memory Break enable (B bit) */
135 #define _PAGE_DIRTY_BIT    26   /* (0x020) Page Dirty (D bit) */
136 #define _PAGE_FILE_BIT  _PAGE_DIRTY_BIT /* overload this bit */
137 #define _PAGE_REFTRAP_BIT  25   /* (0x040) Page Ref. Trap enable (T bit) */
138 #define _PAGE_NO_CACHE_BIT 24   /* (0x080) Uncached Page (U bit) */
139 #define _PAGE_ACCESSED_BIT 23   /* (0x100) Software: Page Accessed */
140 #define _PAGE_PRESENT_BIT  22   /* (0x200) Software: translation valid */
141 #define _PAGE_FLUSH_BIT    21   /* (0x400) Software: translation valid */
142                                 /*             for cache flushing only */
143 #define _PAGE_USER_BIT     20   /* (0x800) Software: User accessible page */
144
145 /* N.B. The bits are defined in terms of a 32 bit word above, so the */
146 /*      following macro is ok for both 32 and 64 bit.                */
147
148 #define xlate_pabit(x) (31 - x)
149
150 /* this defines the shift to the usable bits in the PTE it is set so
151  * that the valid bits _PAGE_PRESENT_BIT and _PAGE_USER_BIT are set
152  * to zero */
153 #define PTE_SHIFT               xlate_pabit(_PAGE_USER_BIT)
154
155 /* this is how many bits may be used by the file functions */
156 #define PTE_FILE_MAX_BITS       (BITS_PER_LONG - PTE_SHIFT)
157
158 #define pte_to_pgoff(pte) (pte_val(pte) >> PTE_SHIFT)
159 #define pgoff_to_pte(off) ((pte_t) { ((off) << PTE_SHIFT) | _PAGE_FILE })
160
161 #define _PAGE_READ     (1 << xlate_pabit(_PAGE_READ_BIT))
162 #define _PAGE_WRITE    (1 << xlate_pabit(_PAGE_WRITE_BIT))
163 #define _PAGE_RW       (_PAGE_READ | _PAGE_WRITE)
164 #define _PAGE_EXEC     (1 << xlate_pabit(_PAGE_EXEC_BIT))
165 #define _PAGE_GATEWAY  (1 << xlate_pabit(_PAGE_GATEWAY_BIT))
166 #define _PAGE_DMB      (1 << xlate_pabit(_PAGE_DMB_BIT))
167 #define _PAGE_DIRTY    (1 << xlate_pabit(_PAGE_DIRTY_BIT))
168 #define _PAGE_REFTRAP  (1 << xlate_pabit(_PAGE_REFTRAP_BIT))
169 #define _PAGE_NO_CACHE (1 << xlate_pabit(_PAGE_NO_CACHE_BIT))
170 #define _PAGE_ACCESSED (1 << xlate_pabit(_PAGE_ACCESSED_BIT))
171 #define _PAGE_PRESENT  (1 << xlate_pabit(_PAGE_PRESENT_BIT))
172 #define _PAGE_FLUSH    (1 << xlate_pabit(_PAGE_FLUSH_BIT))
173 #define _PAGE_USER     (1 << xlate_pabit(_PAGE_USER_BIT))
174 #define _PAGE_FILE     (1 << xlate_pabit(_PAGE_FILE_BIT))
175
176 #define _PAGE_TABLE     (_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE |  _PAGE_DIRTY | _PAGE_ACCESSED)
177 #define _PAGE_CHG_MASK  (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
178 #define _PAGE_KERNEL    (_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_WRITE | _PAGE_DIRTY | _PAGE_ACCESSED)
179
180 #ifndef __ASSEMBLY__
181
182 #define PAGE_NONE       __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
183 #define PAGE_SHARED     __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_ACCESSED)
184 /* Others seem to make this executable, I don't know if that's correct
185    or not.  The stack is mapped this way though so this is necessary
186    in the short term - dhd@linuxcare.com, 2000-08-08 */
187 #define PAGE_READONLY   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_ACCESSED)
188 #define PAGE_WRITEONLY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITE | _PAGE_ACCESSED)
189 #define PAGE_EXECREAD   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_EXEC |_PAGE_ACCESSED)
190 #define PAGE_COPY       PAGE_EXECREAD
191 #define PAGE_RWX        __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_EXEC |_PAGE_ACCESSED)
192 #define PAGE_KERNEL     __pgprot(_PAGE_KERNEL)
193 #define PAGE_KERNEL_RO  __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_DIRTY | _PAGE_ACCESSED)
194 #define PAGE_KERNEL_UNC __pgprot(_PAGE_KERNEL | _PAGE_NO_CACHE)
195 #define PAGE_GATEWAY    __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_GATEWAY| _PAGE_READ)
196 #define PAGE_FLUSH      __pgprot(_PAGE_FLUSH)
197
198
199 /*
200  * We could have an execute only page using "gateway - promote to priv
201  * level 3", but that is kind of silly. So, the way things are defined
202  * now, we must always have read permission for pages with execute
203  * permission. For the fun of it we'll go ahead and support write only
204  * pages.
205  */
206
207          /*xwr*/
208 #define __P000  PAGE_NONE
209 #define __P001  PAGE_READONLY
210 #define __P010  __P000 /* copy on write */
211 #define __P011  __P001 /* copy on write */
212 #define __P100  PAGE_EXECREAD
213 #define __P101  PAGE_EXECREAD
214 #define __P110  __P100 /* copy on write */
215 #define __P111  __P101 /* copy on write */
216
217 #define __S000  PAGE_NONE
218 #define __S001  PAGE_READONLY
219 #define __S010  PAGE_WRITEONLY
220 #define __S011  PAGE_SHARED
221 #define __S100  PAGE_EXECREAD
222 #define __S101  PAGE_EXECREAD
223 #define __S110  PAGE_RWX
224 #define __S111  PAGE_RWX
225
226 extern pgd_t swapper_pg_dir[]; /* declared in init_task.c */
227
228 /* initial page tables for 0-8MB for kernel */
229
230 extern pte_t pg0[];
231
232 /* zero page used for uninitialized stuff */
233
234 extern unsigned long *empty_zero_page;
235
236 /*
237  * ZERO_PAGE is a global shared page that is always zero: used
238  * for zero-mapped memory areas etc..
239  */
240
241 #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
242
243 #define pte_none(x)     ((pte_val(x) == 0) || (pte_val(x) & _PAGE_FLUSH))
244 #define pte_present(x)  (pte_val(x) & _PAGE_PRESENT)
245 #define pte_clear(xp)   do { pte_val(*(xp)) = 0; } while (0)
246
247 #ifdef __LP64__
248 /* The first entry of the permanent pmd is not there if it contains
249  * the gateway marker */
250 #define pmd_none(x)     (!pmd_val(x) || pmd_val(x) == _PAGE_GATEWAY)
251 #define pmd_bad(x)      ((pmd_val(x) & ~PAGE_MASK) != _PAGE_TABLE && (pmd_val(x) & ~PAGE_MASK) != (_PAGE_TABLE | _PAGE_GATEWAY))
252 #else
253 #define pmd_none(x)     (!pmd_val(x))
254 #define pmd_bad(x)      ((pmd_val(x) & ~PAGE_MASK) != _PAGE_TABLE)
255 #endif
256 #define pmd_present(x)  (pmd_val(x) & _PAGE_PRESENT)
257 static inline void pmd_clear(pmd_t *pmd) {
258 #ifdef __LP64__
259         if(pmd_val(*pmd) & _PAGE_GATEWAY)
260                 /* This is the entry pointing to the permanent pmd
261                  * attached to the pgd; cannot clear it */
262                 pmd_val(*pmd) = _PAGE_GATEWAY;
263         else
264 #endif
265                 pmd_val(*pmd) = 0;
266 }
267
268
269
270 #if PT_NLEVELS == 3
271 #define pgd_page(pgd) ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
272
273 /* For 64 bit we have three level tables */
274
275 #define pgd_none(x)     (!pgd_val(x))
276 #ifdef __LP64__
277 #define pgd_bad(x)      ((pgd_val(x) & ~PAGE_MASK) != _PAGE_TABLE && (pgd_val(x) & ~PAGE_MASK) != (_PAGE_TABLE | _PAGE_GATEWAY))
278 #else
279 #define pgd_bad(x)      ((pgd_val(x) & ~PAGE_MASK) != _PAGE_TABLE)
280 #endif
281 #define pgd_present(x)  (pgd_val(x) & _PAGE_PRESENT)
282 static inline void pgd_clear(pgd_t *pgd) {
283 #ifdef __LP64__
284         if(pgd_val(*pgd) & _PAGE_GATEWAY)
285                 /* This is the permanent pmd attached to the pgd; cannot
286                  * free it */
287                 return;
288 #endif
289         pgd_val(*pgd) = 0;
290 }
291 #else
292 /*
293  * The "pgd_xxx()" functions here are trivial for a folded two-level
294  * setup: the pgd is never bad, and a pmd always exists (as it's folded
295  * into the pgd entry)
296  */
297 extern inline int pgd_none(pgd_t pgd)           { return 0; }
298 extern inline int pgd_bad(pgd_t pgd)            { return 0; }
299 extern inline int pgd_present(pgd_t pgd)        { return 1; }
300 extern inline void pgd_clear(pgd_t * pgdp)      { }
301 #endif
302
303 /*
304  * The following only work if pte_present() is true.
305  * Undefined behaviour if not..
306  */
307 extern inline int pte_read(pte_t pte)           { return pte_val(pte) & _PAGE_READ; }
308 extern inline int pte_dirty(pte_t pte)          { return pte_val(pte) & _PAGE_DIRTY; }
309 extern inline int pte_young(pte_t pte)          { return pte_val(pte) & _PAGE_ACCESSED; }
310 extern inline int pte_write(pte_t pte)          { return pte_val(pte) & _PAGE_WRITE; }
311 extern inline int pte_file(pte_t pte)           { return pte_val(pte) & _PAGE_FILE; }
312 extern inline int pte_user(pte_t pte)           { return pte_val(pte) & _PAGE_USER; }
313
314 extern inline pte_t pte_rdprotect(pte_t pte)    { pte_val(pte) &= ~_PAGE_READ; return pte; }
315 extern inline pte_t pte_mkclean(pte_t pte)      { pte_val(pte) &= ~_PAGE_DIRTY; return pte; }
316 extern inline pte_t pte_mkold(pte_t pte)        { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
317 extern inline pte_t pte_wrprotect(pte_t pte)    { pte_val(pte) &= ~_PAGE_WRITE; return pte; }
318 extern inline pte_t pte_mkread(pte_t pte)       { pte_val(pte) |= _PAGE_READ; return pte; }
319 extern inline pte_t pte_mkdirty(pte_t pte)      { pte_val(pte) |= _PAGE_DIRTY; return pte; }
320 extern inline pte_t pte_mkyoung(pte_t pte)      { pte_val(pte) |= _PAGE_ACCESSED; return pte; }
321 extern inline pte_t pte_mkwrite(pte_t pte)      { pte_val(pte) |= _PAGE_WRITE; return pte; }
322
323 /*
324  * Conversion functions: convert a page and protection to a page entry,
325  * and a page entry and page directory to the page they refer to.
326  */
327 #define __mk_pte(addr,pgprot) \
328 ({                                                                      \
329         pte_t __pte;                                                    \
330                                                                         \
331         pte_val(__pte) = ((addr)+pgprot_val(pgprot));                   \
332                                                                         \
333         __pte;                                                          \
334 })
335
336 #define mk_pte(page, pgprot)    pfn_pte(page_to_pfn(page), (pgprot))
337
338 static inline pte_t pfn_pte(unsigned long pfn, pgprot_t pgprot)
339 {
340         pte_t pte;
341         pte_val(pte) = (pfn << PAGE_SHIFT) | pgprot_val(pgprot);
342         return pte;
343 }
344
345 /* This takes a physical page address that is used by the remapping functions */
346 #define mk_pte_phys(physpage, pgprot) \
347 ({ pte_t __pte; pte_val(__pte) = physpage + pgprot_val(pgprot); __pte; })
348
349 extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
350 { pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; }
351
352 /* Permanent address of a page.  On parisc we don't have highmem. */
353
354 #define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT)
355
356 #ifdef CONFIG_DISCONTIGMEM
357 #define pte_page(x) (phys_to_page(pte_val(x)))
358 #else
359 #define pte_page(x) (mem_map+(pte_val(x) >> PAGE_SHIFT))
360 #endif
361
362 #define pmd_page_kernel(pmd)    ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
363
364 #define __pmd_page(pmd) ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
365 #define pmd_page(pmd)   virt_to_page((void *)__pmd_page(pmd))
366
367 #define pgd_index(address) ((address) >> PGDIR_SHIFT)
368
369 /* to find an entry in a page-table-directory */
370 #define pgd_offset(mm, address) \
371 ((mm)->pgd + ((address) >> PGDIR_SHIFT))
372
373 /* to find an entry in a kernel page-table-directory */
374 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
375
376 /* Find an entry in the second-level page table.. */
377
378 #if PT_NLEVELS == 3
379 #define pmd_offset(dir,address) \
380 ((pmd_t *) pgd_page(*(dir)) + (((address)>>PMD_SHIFT) & (PTRS_PER_PMD-1)))
381 #else
382 #define pmd_offset(dir,addr) ((pmd_t *) dir)
383 #endif
384
385 /* Find an entry in the third-level page table.. */ 
386 #define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE-1))
387 #define pte_offset_kernel(pmd, address) \
388         ((pte_t *) pmd_page_kernel(*(pmd)) + pte_index(address))
389 #define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address)
390 #define pte_offset_map_nested(pmd, address) pte_offset_kernel(pmd, address)
391 #define pte_unmap(pte) do { } while (0)
392 #define pte_unmap_nested(pte) do { } while (0)
393
394 #define pte_unmap(pte)                  do { } while (0)
395 #define pte_unmap_nested(pte)           do { } while (0)
396
397 extern void paging_init (void);
398
399 /* Used for deferring calls to flush_dcache_page() */
400
401 #define PG_dcache_dirty         PG_arch_1
402
403 struct vm_area_struct; /* forward declaration (include/linux/mm.h) */
404 extern void update_mmu_cache(struct vm_area_struct *, unsigned long, pte_t);
405
406 /* Encode and de-code a swap entry */
407
408 #define __swp_type(x)                     ((x).val & 0x1f)
409 #define __swp_offset(x)                   ( (((x).val >> 6) &  0x7) | \
410                                           (((x).val >> 8) & ~0x7) )
411 #define __swp_entry(type, offset)         ((swp_entry_t) { (type) | \
412                                             ((offset &  0x7) << 6) | \
413                                             ((offset & ~0x7) << 8) })
414 #define __pte_to_swp_entry(pte)         ((swp_entry_t) { pte_val(pte) })
415 #define __swp_entry_to_pte(x)           ((pte_t) { (x).val })
416
417 static inline int ptep_test_and_clear_young(pte_t *ptep)
418 {
419 #ifdef CONFIG_SMP
420         return test_and_clear_bit(xlate_pabit(_PAGE_ACCESSED_BIT), ptep);
421 #else
422         pte_t pte = *ptep;
423         if (!pte_young(pte))
424                 return 0;
425         set_pte(ptep, pte_mkold(pte));
426         return 1;
427 #endif
428 }
429
430 static inline int ptep_test_and_clear_dirty(pte_t *ptep)
431 {
432 #ifdef CONFIG_SMP
433         return test_and_clear_bit(xlate_pabit(_PAGE_DIRTY_BIT), ptep);
434 #else
435         pte_t pte = *ptep;
436         if (!pte_dirty(pte))
437                 return 0;
438         set_pte(ptep, pte_mkclean(pte));
439         return 1;
440 #endif
441 }
442
443 #ifdef CONFIG_SMP
444 extern spinlock_t pa_dbit_lock;
445 #else
446 static int pa_dbit_lock; /* dummy to keep the compilers happy */
447 #endif
448
449 static inline pte_t ptep_get_and_clear(pte_t *ptep)
450 {
451         pte_t old_pte;
452         pte_t pte;
453
454         spin_lock(&pa_dbit_lock);
455         pte = old_pte = *ptep;
456         pte_val(pte) &= ~_PAGE_PRESENT;
457         pte_val(pte) |= _PAGE_FLUSH;
458         set_pte(ptep,pte);
459         spin_unlock(&pa_dbit_lock);
460
461         return old_pte;
462 }
463
464 static inline void ptep_set_wrprotect(pte_t *ptep)
465 {
466 #ifdef CONFIG_SMP
467         unsigned long new, old;
468
469         do {
470                 old = pte_val(*ptep);
471                 new = pte_val(pte_wrprotect(__pte (old)));
472         } while (cmpxchg((unsigned long *) ptep, old, new) != old);
473 #else
474         pte_t old_pte = *ptep;
475         set_pte(ptep, pte_wrprotect(old_pte));
476 #endif
477 }
478
479 static inline void ptep_mkdirty(pte_t *ptep)
480 {
481 #ifdef CONFIG_SMP
482         set_bit(xlate_pabit(_PAGE_DIRTY_BIT), ptep);
483 #else
484         pte_t old_pte = *ptep;
485         set_pte(ptep, pte_mkdirty(old_pte));
486 #endif
487 }
488
489 #define pte_same(A,B)   (pte_val(A) == pte_val(B))
490
491 #endif /* !__ASSEMBLY__ */
492
493 #define io_remap_page_range remap_page_range
494
495 /* We provide our own get_unmapped_area to provide cache coherency */
496
497 #define HAVE_ARCH_UNMAPPED_AREA
498
499 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
500 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
501 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
502 #define __HAVE_ARCH_PTEP_SET_WRPROTECT
503 #define __HAVE_ARCH_PTEP_MKDIRTY
504 #define __HAVE_ARCH_PTE_SAME
505 #include <asm-generic/pgtable.h>
506
507 #endif /* _PARISC_PGTABLE_H */