blob: 69cebbd9f3e01928bc9ca64a27e3a7d98954677a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2003 Ralf Baechle
7 */
8#ifndef _ASM_PGTABLE_H
9#define _ASM_PGTABLE_H
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/config.h>
Ralf Baechle875d43e2005-09-03 15:56:16 -070012#ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/pgtable-32.h>
14#endif
Ralf Baechle875d43e2005-09-03 15:56:16 -070015#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/pgtable-64.h>
17#endif
18
Pete Popovf10fae02005-07-14 00:17:05 +000019#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/pgtable-bits.h>
21
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080022struct mm_struct;
23struct vm_area_struct;
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define PAGE_NONE __pgprot(_PAGE_PRESENT | _CACHE_CACHABLE_NONCOHERENT)
26#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
27 PAGE_CACHABLE_DEFAULT)
28#define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_READ | \
29 PAGE_CACHABLE_DEFAULT)
30#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_READ | \
31 PAGE_CACHABLE_DEFAULT)
32#define PAGE_KERNEL __pgprot(_PAGE_PRESENT | __READABLE | __WRITEABLE | \
33 _PAGE_GLOBAL | PAGE_CACHABLE_DEFAULT)
34#define PAGE_USERIO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
35 PAGE_CACHABLE_DEFAULT)
36#define PAGE_KERNEL_UNCACHED __pgprot(_PAGE_PRESENT | __READABLE | \
37 __WRITEABLE | _PAGE_GLOBAL | _CACHE_UNCACHED)
38
39/*
40 * MIPS can't do page protection for execute, and considers that the same like
41 * read. Also, write permissions imply read permissions. This is the closest
42 * we can get by reasonable means..
43 */
44#define __P000 PAGE_NONE
45#define __P001 PAGE_READONLY
46#define __P010 PAGE_COPY
47#define __P011 PAGE_COPY
48#define __P100 PAGE_READONLY
49#define __P101 PAGE_READONLY
50#define __P110 PAGE_COPY
51#define __P111 PAGE_COPY
52
53#define __S000 PAGE_NONE
54#define __S001 PAGE_READONLY
55#define __S010 PAGE_SHARED
56#define __S011 PAGE_SHARED
57#define __S100 PAGE_READONLY
58#define __S101 PAGE_READONLY
59#define __S110 PAGE_SHARED
60#define __S111 PAGE_SHARED
61
62/*
63 * ZERO_PAGE is a global shared page that is always zero; used
64 * for zero-mapped memory areas etc..
65 */
66
67extern unsigned long empty_zero_page;
68extern unsigned long zero_page_mask;
69
70#define ZERO_PAGE(vaddr) \
71 (virt_to_page(empty_zero_page + (((unsigned long)(vaddr)) & zero_page_mask)))
72
David S. Miller0b0968a2006-06-01 17:47:25 -070073#define __HAVE_ARCH_MOVE_PTE
74#define move_pte(pte, prot, old_addr, new_addr) \
75({ \
76 pte_t newpte = (pte); \
77 if (pte_present(pte) && pfn_valid(pte_pfn(pte)) && \
78 pte_page(pte) == ZERO_PAGE(old_addr)) \
79 newpte = mk_pte(ZERO_PAGE(new_addr), (prot)); \
80 newpte; \
81})
Nick Piggin8b1f3122005-09-27 21:45:18 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083extern void paging_init(void);
84
85/*
86 * Conversion functions: convert a page and protection to a page entry,
87 * and a page entry and page directory to the page they refer to.
88 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define pmd_phys(pmd) (pmd_val(pmd) - PAGE_OFFSET)
90#define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT))
91#define pmd_page_kernel(pmd) pmd_val(pmd)
92
93#define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL))
94#define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
95
Ralf Baechle6e760c82005-07-06 12:08:11 +000096#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static inline void set_pte(pte_t *ptep, pte_t pte)
98{
99 ptep->pte_high = pte.pte_high;
100 smp_wmb();
101 ptep->pte_low = pte.pte_low;
102 //printk("pte_high %x pte_low %x\n", ptep->pte_high, ptep->pte_low);
103
104 if (pte_val(pte) & _PAGE_GLOBAL) {
105 pte_t *buddy = ptep_buddy(ptep);
106 /*
107 * Make sure the buddy is global too (if it's !none,
108 * it better already be global)
109 */
110 if (pte_none(*buddy))
111 buddy->pte_low |= _PAGE_GLOBAL;
112 }
113}
114#define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
115
116static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
117{
118 /* Preserve global status for the pair */
119 if (pte_val(*ptep_buddy(ptep)) & _PAGE_GLOBAL)
120 set_pte_at(mm, addr, ptep, __pte(_PAGE_GLOBAL));
121 else
122 set_pte_at(mm, addr, ptep, __pte(0));
123}
124#else
125/*
126 * Certain architectures need to do special things when pte's
127 * within a page table are directly modified. Thus, the following
128 * hook is made available.
129 */
130static inline void set_pte(pte_t *ptep, pte_t pteval)
131{
132 *ptep = pteval;
133#if !defined(CONFIG_CPU_R3000) && !defined(CONFIG_CPU_TX39XX)
134 if (pte_val(pteval) & _PAGE_GLOBAL) {
135 pte_t *buddy = ptep_buddy(ptep);
136 /*
137 * Make sure the buddy is global too (if it's !none,
138 * it better already be global)
139 */
140 if (pte_none(*buddy))
141 pte_val(*buddy) = pte_val(*buddy) | _PAGE_GLOBAL;
142 }
143#endif
144}
145#define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
146
147static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
148{
149#if !defined(CONFIG_CPU_R3000) && !defined(CONFIG_CPU_TX39XX)
150 /* Preserve global status for the pair */
151 if (pte_val(*ptep_buddy(ptep)) & _PAGE_GLOBAL)
152 set_pte_at(mm, addr, ptep, __pte(_PAGE_GLOBAL));
153 else
154#endif
155 set_pte_at(mm, addr, ptep, __pte(0));
156}
157#endif
158
159/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000160 * (pmds are folded into puds so this doesn't get actually called,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * but the define is needed for a generic inline function.)
162 */
163#define set_pmd(pmdptr, pmdval) do { *(pmdptr) = (pmdval); } while(0)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000164
165#ifdef CONFIG_64BIT
166/*
167 * (puds are folded into pgds so this doesn't get actually called,
168 * but the define is needed for a generic inline function.)
169 */
170#define set_pud(pudptr, pudval) do { *(pudptr) = (pudval); } while(0)
171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173#define PGD_T_LOG2 ffz(~sizeof(pgd_t))
174#define PMD_T_LOG2 ffz(~sizeof(pmd_t))
175#define PTE_T_LOG2 ffz(~sizeof(pte_t))
176
177extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
178
179/*
180 * The following only work if pte_present() is true.
181 * Undefined behaviour if not..
182 */
183static inline int pte_user(pte_t pte) { BUG(); return 0; }
Ralf Baechle6e760c82005-07-06 12:08:11 +0000184#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static inline int pte_read(pte_t pte) { return (pte).pte_low & _PAGE_READ; }
186static inline int pte_write(pte_t pte) { return (pte).pte_low & _PAGE_WRITE; }
187static inline int pte_dirty(pte_t pte) { return (pte).pte_low & _PAGE_MODIFIED; }
188static inline int pte_young(pte_t pte) { return (pte).pte_low & _PAGE_ACCESSED; }
189static inline int pte_file(pte_t pte) { return (pte).pte_low & _PAGE_FILE; }
190static inline pte_t pte_wrprotect(pte_t pte)
191{
192 (pte).pte_low &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE);
193 (pte).pte_high &= ~_PAGE_SILENT_WRITE;
194 return pte;
195}
196
197static inline pte_t pte_rdprotect(pte_t pte)
198{
199 (pte).pte_low &= ~(_PAGE_READ | _PAGE_SILENT_READ);
200 (pte).pte_high &= ~_PAGE_SILENT_READ;
201 return pte;
202}
203
204static inline pte_t pte_mkclean(pte_t pte)
205{
206 (pte).pte_low &= ~(_PAGE_MODIFIED|_PAGE_SILENT_WRITE);
207 (pte).pte_high &= ~_PAGE_SILENT_WRITE;
208 return pte;
209}
210
211static inline pte_t pte_mkold(pte_t pte)
212{
213 (pte).pte_low &= ~(_PAGE_ACCESSED|_PAGE_SILENT_READ);
214 (pte).pte_high &= ~_PAGE_SILENT_READ;
215 return pte;
216}
217
218static inline pte_t pte_mkwrite(pte_t pte)
219{
220 (pte).pte_low |= _PAGE_WRITE;
221 if ((pte).pte_low & _PAGE_MODIFIED) {
222 (pte).pte_low |= _PAGE_SILENT_WRITE;
223 (pte).pte_high |= _PAGE_SILENT_WRITE;
224 }
225 return pte;
226}
227
228static inline pte_t pte_mkread(pte_t pte)
229{
230 (pte).pte_low |= _PAGE_READ;
231 if ((pte).pte_low & _PAGE_ACCESSED) {
232 (pte).pte_low |= _PAGE_SILENT_READ;
233 (pte).pte_high |= _PAGE_SILENT_READ;
234 }
235 return pte;
236}
237
238static inline pte_t pte_mkdirty(pte_t pte)
239{
240 (pte).pte_low |= _PAGE_MODIFIED;
241 if ((pte).pte_low & _PAGE_WRITE) {
242 (pte).pte_low |= _PAGE_SILENT_WRITE;
243 (pte).pte_high |= _PAGE_SILENT_WRITE;
244 }
245 return pte;
246}
247
248static inline pte_t pte_mkyoung(pte_t pte)
249{
250 (pte).pte_low |= _PAGE_ACCESSED;
251 if ((pte).pte_low & _PAGE_READ)
252 (pte).pte_low |= _PAGE_SILENT_READ;
253 (pte).pte_high |= _PAGE_SILENT_READ;
254 return pte;
255}
256#else
257static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_READ; }
258static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
259static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
260static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
261static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
262
263static inline pte_t pte_wrprotect(pte_t pte)
264{
265 pte_val(pte) &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE);
266 return pte;
267}
268
269static inline pte_t pte_rdprotect(pte_t pte)
270{
271 pte_val(pte) &= ~(_PAGE_READ | _PAGE_SILENT_READ);
272 return pte;
273}
274
275static inline pte_t pte_mkclean(pte_t pte)
276{
277 pte_val(pte) &= ~(_PAGE_MODIFIED|_PAGE_SILENT_WRITE);
278 return pte;
279}
280
281static inline pte_t pte_mkold(pte_t pte)
282{
283 pte_val(pte) &= ~(_PAGE_ACCESSED|_PAGE_SILENT_READ);
284 return pte;
285}
286
287static inline pte_t pte_mkwrite(pte_t pte)
288{
289 pte_val(pte) |= _PAGE_WRITE;
290 if (pte_val(pte) & _PAGE_MODIFIED)
291 pte_val(pte) |= _PAGE_SILENT_WRITE;
292 return pte;
293}
294
295static inline pte_t pte_mkread(pte_t pte)
296{
297 pte_val(pte) |= _PAGE_READ;
298 if (pte_val(pte) & _PAGE_ACCESSED)
299 pte_val(pte) |= _PAGE_SILENT_READ;
300 return pte;
301}
302
303static inline pte_t pte_mkdirty(pte_t pte)
304{
305 pte_val(pte) |= _PAGE_MODIFIED;
306 if (pte_val(pte) & _PAGE_WRITE)
307 pte_val(pte) |= _PAGE_SILENT_WRITE;
308 return pte;
309}
310
311static inline pte_t pte_mkyoung(pte_t pte)
312{
313 pte_val(pte) |= _PAGE_ACCESSED;
314 if (pte_val(pte) & _PAGE_READ)
315 pte_val(pte) |= _PAGE_SILENT_READ;
316 return pte;
317}
318#endif
319
320/*
321 * Macro to make mark a page protection value as "uncacheable". Note
322 * that "protection" is really a misnomer here as the protection value
323 * contains the memory attribute bits, dirty bits, and various other
324 * bits as well.
325 */
326#define pgprot_noncached pgprot_noncached
327
328static inline pgprot_t pgprot_noncached(pgprot_t _prot)
329{
330 unsigned long prot = pgprot_val(_prot);
331
332 prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED;
333
334 return __pgprot(prot);
335}
336
337/*
338 * Conversion functions: convert a page and protection to a page entry,
339 * and a page entry and page directory to the page they refer to.
340 */
341#define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
342
Ralf Baechle6e760c82005-07-06 12:08:11 +0000343#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
345{
346 pte.pte_low &= _PAGE_CHG_MASK;
347 pte.pte_low |= pgprot_val(newprot);
348 pte.pte_high |= pgprot_val(newprot) & 0x3f;
349 return pte;
350}
351#else
352static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
353{
354 return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot));
355}
356#endif
357
358
359extern void __update_tlb(struct vm_area_struct *vma, unsigned long address,
360 pte_t pte);
361extern void __update_cache(struct vm_area_struct *vma, unsigned long address,
362 pte_t pte);
363
364static inline void update_mmu_cache(struct vm_area_struct *vma,
365 unsigned long address, pte_t pte)
366{
367 __update_tlb(vma, address, pte);
368 __update_cache(vma, address, pte);
369}
370
Yoichi Yuasab4819b52005-06-25 14:54:31 -0700371#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372#define kern_addr_valid(addr) (1)
373#endif
374
375#ifdef CONFIG_64BIT_PHYS_ADDR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376extern int remap_pfn_range(struct vm_area_struct *vma, unsigned long from, unsigned long pfn, unsigned long size, pgprot_t prot);
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static inline int io_remap_pfn_range(struct vm_area_struct *vma,
379 unsigned long vaddr,
380 unsigned long pfn,
381 unsigned long size,
382 pgprot_t prot)
383{
384 phys_t phys_addr_high = fixup_bigphys_addr(pfn << PAGE_SHIFT, size);
Thiemo Seuferac5d8c02005-04-11 12:24:16 +0000385 return remap_pfn_range(vma, vaddr, phys_addr_high >> PAGE_SHIFT, size, prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
389 remap_pfn_range(vma, vaddr, pfn, size, prot)
390#endif
391
392#define MK_IOSPACE_PFN(space, pfn) (pfn)
393#define GET_IOSPACE(pfn) 0
394#define GET_PFN(pfn) (pfn)
395
396#include <asm-generic/pgtable.h>
397
398/*
399 * We provide our own get_unmapped area to cope with the virtual aliasing
400 * constraints placed on us by the cache architecture.
401 */
402#define HAVE_ARCH_UNMAPPED_AREA
403
404/*
405 * No page table caches to initialise
406 */
407#define pgtable_cache_init() do { } while (0)
408
409#endif /* _ASM_PGTABLE_H */