GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / avr32 / include / asm / pgtable.h
blobb4eb04bb09d3579cc26515f3f6e309f1d7d09342
1 /*
2 * Copyright (C) 2004-2006 Atmel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8 #ifndef __ASM_AVR32_PGTABLE_H
9 #define __ASM_AVR32_PGTABLE_H
11 #include <asm/addrspace.h>
13 #ifndef __ASSEMBLY__
14 #include <linux/sched.h>
16 #endif /* !__ASSEMBLY__ */
19 * Use two-level page tables just as the i386 (without PAE)
21 #include <asm/pgtable-2level.h>
24 * The following code might need some cleanup when the values are
25 * final...
27 #define PMD_SIZE (1UL << PMD_SHIFT)
28 #define PMD_MASK (~(PMD_SIZE-1))
29 #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
30 #define PGDIR_MASK (~(PGDIR_SIZE-1))
32 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
33 #define FIRST_USER_ADDRESS 0
35 #ifndef __ASSEMBLY__
36 extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
37 extern void paging_init(void);
40 * ZERO_PAGE is a global shared page that is always zero: used for
41 * zero-mapped memory areas etc.
43 extern struct page *empty_zero_page;
44 #define ZERO_PAGE(vaddr) (empty_zero_page)
47 * Just any arbitrary offset to the start of the vmalloc VM area: the
48 * current 8 MiB value just means that there will be a 8 MiB "hole"
49 * after the uncached physical memory (P2 segment) until the vmalloc
50 * area starts. That means that any out-of-bounds memory accesses will
51 * hopefully be caught; we don't know if the end of the P1/P2 segments
52 * are actually used for anything, but it is anyway safer to let the
53 * MMU catch these kinds of errors than to rely on the memory bus.
55 * A "hole" of the same size is added to the end of the P3 segment as
56 * well. It might seem wasteful to use 16 MiB of virtual address space
57 * on this, but we do have 512 MiB of it...
59 * The vmalloc() routines leave a hole of 4 KiB between each vmalloced
60 * area for the same reason.
62 #define VMALLOC_OFFSET (8 * 1024 * 1024)
63 #define VMALLOC_START (P3SEG + VMALLOC_OFFSET)
64 #define VMALLOC_END (P4SEG - VMALLOC_OFFSET)
65 #endif /* !__ASSEMBLY__ */
68 * Page flags. Some of these flags are not directly supported by
69 * hardware, so we have to emulate them.
71 #define _TLBEHI_BIT_VALID 9
72 #define _TLBEHI_VALID (1 << _TLBEHI_BIT_VALID)
74 #define _PAGE_BIT_WT 0 /* W-bit : write-through */
75 #define _PAGE_BIT_DIRTY 1 /* D-bit : page changed */
76 #define _PAGE_BIT_SZ0 2 /* SZ0-bit : Size of page */
77 #define _PAGE_BIT_SZ1 3 /* SZ1-bit : Size of page */
78 #define _PAGE_BIT_EXECUTE 4 /* X-bit : execute access allowed */
79 #define _PAGE_BIT_RW 5 /* AP0-bit : write access allowed */
80 #define _PAGE_BIT_USER 6 /* AP1-bit : user space access allowed */
81 #define _PAGE_BIT_BUFFER 7 /* B-bit : bufferable */
82 #define _PAGE_BIT_GLOBAL 8 /* G-bit : global (ignore ASID) */
83 #define _PAGE_BIT_CACHABLE 9 /* C-bit : cachable */
85 /* If we drop support for 1K pages, we get two extra bits */
86 #define _PAGE_BIT_PRESENT 10
87 #define _PAGE_BIT_ACCESSED 11 /* software: page was accessed */
89 /* The following flags are only valid when !PRESENT */
90 #define _PAGE_BIT_FILE 0 /* software: pagecache or swap? */
92 #define _PAGE_WT (1 << _PAGE_BIT_WT)
93 #define _PAGE_DIRTY (1 << _PAGE_BIT_DIRTY)
94 #define _PAGE_EXECUTE (1 << _PAGE_BIT_EXECUTE)
95 #define _PAGE_RW (1 << _PAGE_BIT_RW)
96 #define _PAGE_USER (1 << _PAGE_BIT_USER)
97 #define _PAGE_BUFFER (1 << _PAGE_BIT_BUFFER)
98 #define _PAGE_GLOBAL (1 << _PAGE_BIT_GLOBAL)
99 #define _PAGE_CACHABLE (1 << _PAGE_BIT_CACHABLE)
101 /* Software flags */
102 #define _PAGE_ACCESSED (1 << _PAGE_BIT_ACCESSED)
103 #define _PAGE_PRESENT (1 << _PAGE_BIT_PRESENT)
104 #define _PAGE_FILE (1 << _PAGE_BIT_FILE)
106 #define _PAGE_TYPE_MASK ((1 << _PAGE_BIT_SZ0) | (1 << _PAGE_BIT_SZ1))
107 #define _PAGE_TYPE_NONE (0 << _PAGE_BIT_SZ0)
108 #define _PAGE_TYPE_SMALL (1 << _PAGE_BIT_SZ0)
109 #define _PAGE_TYPE_MEDIUM (2 << _PAGE_BIT_SZ0)
110 #define _PAGE_TYPE_LARGE (3 << _PAGE_BIT_SZ0)
113 * Mask which drop software flags. We currently can't handle more than
114 * 512 MiB of physical memory, so we can use bits 29-31 for other
115 * stuff. With a fixed 4K page size, we can use bits 10-11 as well as
116 * bits 2-3 (SZ)
118 #define _PAGE_FLAGS_HARDWARE_MASK 0xfffff3ff
120 #define _PAGE_FLAGS_CACHE_MASK (_PAGE_CACHABLE | _PAGE_BUFFER | _PAGE_WT)
122 /* Flags that may be modified by software */
123 #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY \
124 | _PAGE_FLAGS_CACHE_MASK)
126 #define _PAGE_FLAGS_READ (_PAGE_CACHABLE | _PAGE_BUFFER)
127 #define _PAGE_FLAGS_WRITE (_PAGE_FLAGS_READ | _PAGE_RW | _PAGE_DIRTY)
129 #define _PAGE_NORMAL(x) __pgprot((x) | _PAGE_PRESENT | _PAGE_TYPE_SMALL \
130 | _PAGE_ACCESSED)
132 #define PAGE_NONE (_PAGE_ACCESSED | _PAGE_TYPE_NONE)
133 #define PAGE_READ (_PAGE_FLAGS_READ | _PAGE_USER)
134 #define PAGE_EXEC (_PAGE_FLAGS_READ | _PAGE_EXECUTE | _PAGE_USER)
135 #define PAGE_WRITE (_PAGE_FLAGS_WRITE | _PAGE_USER)
136 #define PAGE_KERNEL _PAGE_NORMAL(_PAGE_FLAGS_WRITE | _PAGE_EXECUTE | _PAGE_GLOBAL)
137 #define PAGE_KERNEL_RO _PAGE_NORMAL(_PAGE_FLAGS_READ | _PAGE_EXECUTE | _PAGE_GLOBAL)
139 #define _PAGE_P(x) _PAGE_NORMAL((x) & ~(_PAGE_RW | _PAGE_DIRTY))
140 #define _PAGE_S(x) _PAGE_NORMAL(x)
142 #define PAGE_COPY _PAGE_P(PAGE_WRITE | PAGE_READ)
143 #define PAGE_SHARED _PAGE_S(PAGE_WRITE | PAGE_READ)
145 #ifndef __ASSEMBLY__
147 * The hardware supports flags for write- and execute access. Read is
148 * always allowed if the page is loaded into the TLB, so the "-w-",
149 * "--x" and "-wx" mappings are implemented as "rw-", "r-x" and "rwx",
150 * respectively.
152 * The "---" case is handled by software; the page will simply not be
153 * loaded into the TLB if the page type is _PAGE_TYPE_NONE.
156 #define __P000 __pgprot(PAGE_NONE)
157 #define __P001 _PAGE_P(PAGE_READ)
158 #define __P010 _PAGE_P(PAGE_WRITE)
159 #define __P011 _PAGE_P(PAGE_WRITE | PAGE_READ)
160 #define __P100 _PAGE_P(PAGE_EXEC)
161 #define __P101 _PAGE_P(PAGE_EXEC | PAGE_READ)
162 #define __P110 _PAGE_P(PAGE_EXEC | PAGE_WRITE)
163 #define __P111 _PAGE_P(PAGE_EXEC | PAGE_WRITE | PAGE_READ)
165 #define __S000 __pgprot(PAGE_NONE)
166 #define __S001 _PAGE_S(PAGE_READ)
167 #define __S010 _PAGE_S(PAGE_WRITE)
168 #define __S011 _PAGE_S(PAGE_WRITE | PAGE_READ)
169 #define __S100 _PAGE_S(PAGE_EXEC)
170 #define __S101 _PAGE_S(PAGE_EXEC | PAGE_READ)
171 #define __S110 _PAGE_S(PAGE_EXEC | PAGE_WRITE)
172 #define __S111 _PAGE_S(PAGE_EXEC | PAGE_WRITE | PAGE_READ)
174 #define pte_none(x) (!pte_val(x))
175 #define pte_present(x) (pte_val(x) & _PAGE_PRESENT)
177 #define pte_clear(mm,addr,xp) \
178 do { \
179 set_pte_at(mm, addr, xp, __pte(0)); \
180 } while (0)
183 * The following only work if pte_present() is true.
184 * Undefined behaviour if not..
186 static inline int pte_write(pte_t pte)
188 return pte_val(pte) & _PAGE_RW;
190 static inline int pte_dirty(pte_t pte)
192 return pte_val(pte) & _PAGE_DIRTY;
194 static inline int pte_young(pte_t pte)
196 return pte_val(pte) & _PAGE_ACCESSED;
198 static inline int pte_special(pte_t pte)
200 return 0;
204 * The following only work if pte_present() is not true.
206 static inline int pte_file(pte_t pte)
208 return pte_val(pte) & _PAGE_FILE;
211 /* Mutator functions for PTE bits */
212 static inline pte_t pte_wrprotect(pte_t pte)
214 set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_RW));
215 return pte;
217 static inline pte_t pte_mkclean(pte_t pte)
219 set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_DIRTY));
220 return pte;
222 static inline pte_t pte_mkold(pte_t pte)
224 set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_ACCESSED));
225 return pte;
227 static inline pte_t pte_mkwrite(pte_t pte)
229 set_pte(&pte, __pte(pte_val(pte) | _PAGE_RW));
230 return pte;
232 static inline pte_t pte_mkdirty(pte_t pte)
234 set_pte(&pte, __pte(pte_val(pte) | _PAGE_DIRTY));
235 return pte;
237 static inline pte_t pte_mkyoung(pte_t pte)
239 set_pte(&pte, __pte(pte_val(pte) | _PAGE_ACCESSED));
240 return pte;
242 static inline pte_t pte_mkspecial(pte_t pte)
244 return pte;
247 #define pmd_none(x) (!pmd_val(x))
248 #define pmd_present(x) (pmd_val(x))
250 static inline void pmd_clear(pmd_t *pmdp)
252 set_pmd(pmdp, __pmd(0));
255 #define pmd_bad(x) (pmd_val(x) & ~PAGE_MASK)
258 * Permanent address of a page. We don't support highmem, so this is
259 * trivial.
261 #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
262 #define pte_page(x) (pfn_to_page(pte_pfn(x)))
265 * Mark the prot value as uncacheable and unbufferable
267 #define pgprot_noncached(prot) \
268 __pgprot(pgprot_val(prot) & ~(_PAGE_BUFFER | _PAGE_CACHABLE))
271 * Mark the prot value as uncacheable but bufferable
273 #define pgprot_writecombine(prot) \
274 __pgprot((pgprot_val(prot) & ~_PAGE_CACHABLE) | _PAGE_BUFFER)
277 * Conversion functions: convert a page and protection to a page entry,
278 * and a page entry and page directory to the page they refer to.
280 * extern pte_t mk_pte(struct page *page, pgprot_t pgprot)
282 #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
284 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
286 set_pte(&pte, __pte((pte_val(pte) & _PAGE_CHG_MASK)
287 | pgprot_val(newprot)));
288 return pte;
291 #define page_pte(page) page_pte_prot(page, __pgprot(0))
293 #define pmd_page_vaddr(pmd) pmd_val(pmd)
294 #define pmd_page(pmd) (virt_to_page(pmd_val(pmd)))
296 /* to find an entry in a page-table-directory. */
297 #define pgd_index(address) (((address) >> PGDIR_SHIFT) \
298 & (PTRS_PER_PGD - 1))
299 #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
301 /* to find an entry in a kernel page-table-directory */
302 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
304 /* Find an entry in the third-level page table.. */
305 #define pte_index(address) \
306 ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
307 #define pte_offset(dir, address) \
308 ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address))
309 #define pte_offset_kernel(dir, address) \
310 ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address))
311 #define pte_offset_map(dir, address) pte_offset_kernel(dir, address)
312 #define pte_offset_map_nested(dir, address) pte_offset_kernel(dir, address)
313 #define pte_unmap(pte) do { } while (0)
314 #define pte_unmap_nested(pte) do { } while (0)
316 struct vm_area_struct;
317 extern void update_mmu_cache(struct vm_area_struct * vma,
318 unsigned long address, pte_t *ptep);
321 * Encode and decode a swap entry
323 * Constraints:
324 * _PAGE_FILE at bit 0
325 * _PAGE_TYPE_* at bits 2-3 (for emulating _PAGE_PROTNONE)
326 * _PAGE_PRESENT at bit 10
328 * We encode the type into bits 4-9 and offset into bits 11-31. This
329 * gives us a 21 bits offset, or 2**21 * 4K = 8G usable swap space per
330 * device, and 64 possible types.
332 * NOTE: We should set ZEROs at the position of _PAGE_PRESENT
333 * and _PAGE_PROTNONE bits
335 #define __swp_type(x) (((x).val >> 4) & 0x3f)
336 #define __swp_offset(x) ((x).val >> 11)
337 #define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 4) | ((offset) << 11) })
338 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
339 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
342 * Encode and decode a nonlinear file mapping entry. We have to
343 * preserve _PAGE_FILE and _PAGE_PRESENT here. _PAGE_TYPE_* isn't
344 * necessary, since _PAGE_FILE implies !_PAGE_PROTNONE (?)
346 #define PTE_FILE_MAX_BITS 30
347 #define pte_to_pgoff(pte) (((pte_val(pte) >> 1) & 0x1ff) \
348 | ((pte_val(pte) >> 11) << 9))
349 #define pgoff_to_pte(off) ((pte_t) { ((((off) & 0x1ff) << 1) \
350 | (((off) >> 9) << 11) \
351 | _PAGE_FILE) })
353 typedef pte_t *pte_addr_t;
355 #define kern_addr_valid(addr) (1)
357 #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
358 remap_pfn_range(vma, vaddr, pfn, size, prot)
360 /* No page table caches to initialize (?) */
361 #define pgtable_cache_init() do { } while(0)
363 #include <asm-generic/pgtable.h>
365 #endif /* !__ASSEMBLY__ */
367 #endif /* __ASM_AVR32_PGTABLE_H */