blob: cbb2f45f84d7e888884677138e7761f276b18717 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/pgtable.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1995-2002 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef _ASMARM_PGTABLE_H
11#define _ASMARM_PGTABLE_H
12
Russell Kingf6e33542010-11-16 00:22:09 +000013#include <linux/const.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm-generic/4level-fixup.h>
Russell King002547b2006-06-20 20:46:52 +010015#include <asm/proc-fns.h>
16
17#ifndef CONFIG_MMU
18
19#include "pgtable-nommu.h"
20
21#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/memory.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/vmalloc.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070025#include <mach/memory.h>
Russell Kingad1ae2f2006-12-13 14:34:43 +000026#include <asm/pgtable-hwdef.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070027#include <asm/tlbflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
Russell King5c3073e2005-05-03 12:20:29 +010030 * Just any arbitrary offset to the start of the vmalloc VM area: the
31 * current 8MB value just means that there will be a 8MB "hole" after the
32 * physical memory until the kernel virtual memory starts. That means that
33 * any out-of-bounds memory accesses will hopefully be caught.
34 * The vmalloc() routines leaves a hole of 4kB between each vmalloced
35 * area for the same reason. ;)
36 *
37 * Note that platforms may override VMALLOC_START, but they must provide
38 * VMALLOC_END. VMALLOC_END defines the (exclusive) limit of this space,
39 * which may not overlap IO space.
40 */
41#ifndef VMALLOC_START
42#define VMALLOC_OFFSET (8*1024*1024)
43#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
44#endif
45
46/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * Hardware-wise, we have a two level page table structure, where the first
48 * level has 4096 entries, and the second level has 256 entries. Each entry
49 * is one 32-bit word. Most of the bits in the second level entry are used
50 * by hardware, and there aren't any "accessed" and "dirty" bits.
51 *
52 * Linux on the other hand has a three level page table structure, which can
53 * be wrapped to fit a two level page table structure easily - using the PGD
54 * and PTE only. However, Linux also expects one "PTE" table per page, and
55 * at least a "dirty" bit.
56 *
57 * Therefore, we tweak the implementation slightly - we tell Linux that we
58 * have 2048 entries in the first level, each of which is 8 bytes (iow, two
59 * hardware pointers to the second level.) The second level contains two
Russell Kingd30e45e2010-11-16 00:16:01 +000060 * hardware PTE tables arranged contiguously, preceded by Linux versions
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * which contain the state information Linux needs. We, therefore, end up
62 * with 512 entries in the "PTE" level.
63 *
64 * This leads to the page tables having the following layout:
65 *
66 * pgd pte
67 * | |
Russell Kingd30e45e2010-11-16 00:16:01 +000068 * +--------+
69 * | | +------------+ +0
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * +- - - - + | Linux pt 0 |
Russell Kingd30e45e2010-11-16 00:16:01 +000071 * | | +------------+ +1024
72 * +--------+ +0 | Linux pt 1 |
73 * | |-----> +------------+ +2048
74 * +- - - - + +4 | h/w pt 0 |
75 * | |-----> +------------+ +3072
76 * +--------+ +8 | h/w pt 1 |
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * | | +------------+ +4096
78 *
79 * See L_PTE_xxx below for definitions of bits in the "Linux pt", and
80 * PTE_xxx for definitions of bits appearing in the "h/w pt".
81 *
82 * PMD_xxx definitions refer to bits in the first level page table.
83 *
84 * The "dirty" bit is emulated by only granting hardware write permission
85 * iff the page is marked "writable" and "dirty" in the Linux PTE. This
86 * means that a write to a clean page will cause a permission fault, and
87 * the Linux MM layer will mark the page dirty via handle_pte_fault().
88 * For the hardware to notice the permission change, the TLB entry must
Martin Schwidefskyf0e47c22007-07-17 04:03:03 -070089 * be flushed, and ptep_set_access_flags() does that for us.
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 *
91 * The "accessed" or "young" bit is emulated by a similar method; we only
92 * allow accesses to the page if the "young" bit is set. Accesses to the
93 * page will cause a fault, and handle_pte_fault() will set the young bit
94 * for us as long as the page is marked present in the corresponding Linux
Martin Schwidefskyf0e47c22007-07-17 04:03:03 -070095 * PTE entry. Again, ptep_set_access_flags() will ensure that the TLB is
96 * up to date.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 *
98 * However, when the "young" bit is cleared, we deny access to the page
99 * by clearing the hardware PTE. Currently Linux does not flush the TLB
100 * for us in this case, which means the TLB will retain the transation
101 * until either the TLB entry is evicted under pressure, or a context
102 * switch which changes the user space mapping occurs.
103 */
104#define PTRS_PER_PTE 512
105#define PTRS_PER_PMD 1
106#define PTRS_PER_PGD 2048
107
Russell Kingd30e45e2010-11-16 00:16:01 +0000108#define PTE_HWTABLE_PTRS (PTRS_PER_PTE)
109#define PTE_HWTABLE_OFF (PTE_HWTABLE_PTRS * sizeof(pte_t))
110#define PTE_HWTABLE_SIZE (PTRS_PER_PTE * sizeof(u32))
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * PMD_SHIFT determines the size of the area a second-level page table can map
114 * PGDIR_SHIFT determines what a third-level page table entry can map
115 */
116#define PMD_SHIFT 21
117#define PGDIR_SHIFT 21
118
119#define LIBRARY_TEXT_START 0x0c000000
120
121#ifndef __ASSEMBLY__
Russell King69529c02010-11-16 00:19:55 +0000122extern void __pte_error(const char *file, int line, pte_t);
123extern void __pmd_error(const char *file, int line, pmd_t);
124extern void __pgd_error(const char *file, int line, pgd_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Russell King69529c02010-11-16 00:19:55 +0000126#define pte_ERROR(pte) __pte_error(__FILE__, __LINE__, pte)
127#define pmd_ERROR(pmd) __pmd_error(__FILE__, __LINE__, pmd)
128#define pgd_ERROR(pgd) __pgd_error(__FILE__, __LINE__, pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif /* !__ASSEMBLY__ */
130
131#define PMD_SIZE (1UL << PMD_SHIFT)
132#define PMD_MASK (~(PMD_SIZE-1))
133#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
134#define PGDIR_MASK (~(PGDIR_SIZE-1))
135
Hugh Dickins6119be02005-04-19 13:29:21 -0700136/*
137 * This is the lowest virtual address we can permit any user space
138 * mapping to be mapped at. This is particularly important for
139 * non-high vector CPUs.
140 */
141#define FIRST_USER_ADDRESS PAGE_SIZE
142
Russell Kinge926f442010-11-21 11:55:37 +0000143#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/*
George G. Davis4052ebb2006-09-22 18:36:38 +0100146 * section address mask and size definitions.
147 */
148#define SECTION_SHIFT 20
149#define SECTION_SIZE (1UL << SECTION_SHIFT)
150#define SECTION_MASK (~(SECTION_SIZE-1))
151
152/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * ARMv6 supersection address mask and size definitions.
154 */
155#define SUPERSECTION_SHIFT 24
156#define SUPERSECTION_SIZE (1UL << SUPERSECTION_SHIFT)
157#define SUPERSECTION_MASK (~(SUPERSECTION_SIZE-1))
158
159/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * "Linux" PTE definitions.
161 *
162 * We keep two sets of PTEs - the hardware and the linux version.
163 * This allows greater flexibility in the way we map the Linux bits
164 * onto the hardware tables, and allows us to have YOUNG and DIRTY
165 * bits.
166 *
167 * The PTE table pointer refers to the hardware entries; the "Linux"
168 * entries are stored 1024 bytes below.
169 */
Russell Kingf6e33542010-11-16 00:22:09 +0000170#define L_PTE_PRESENT (_AT(pteval_t, 1) << 0)
171#define L_PTE_YOUNG (_AT(pteval_t, 1) << 1)
172#define L_PTE_FILE (_AT(pteval_t, 1) << 2) /* only when !PRESENT */
173#define L_PTE_DIRTY (_AT(pteval_t, 1) << 6)
Russell King36bb94b2010-11-16 08:40:36 +0000174#define L_PTE_RDONLY (_AT(pteval_t, 1) << 7)
Russell Kingf6e33542010-11-16 00:22:09 +0000175#define L_PTE_USER (_AT(pteval_t, 1) << 8)
Russell King9522d7e2010-11-16 00:23:31 +0000176#define L_PTE_XN (_AT(pteval_t, 1) << 9)
Russell Kingf6e33542010-11-16 00:22:09 +0000177#define L_PTE_SHARED (_AT(pteval_t, 1) << 10) /* shared(v6), coherent(xsc3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Russell Kingbb30f362008-09-06 20:04:59 +0100179/*
180 * These are the memory types, defined to be compatible with
181 * pre-ARMv6 CPUs cacheable and bufferable bits: XXCB
Russell Kingbb30f362008-09-06 20:04:59 +0100182 */
Russell Kingf6e33542010-11-16 00:22:09 +0000183#define L_PTE_MT_UNCACHED (_AT(pteval_t, 0x00) << 2) /* 0000 */
184#define L_PTE_MT_BUFFERABLE (_AT(pteval_t, 0x01) << 2) /* 0001 */
185#define L_PTE_MT_WRITETHROUGH (_AT(pteval_t, 0x02) << 2) /* 0010 */
186#define L_PTE_MT_WRITEBACK (_AT(pteval_t, 0x03) << 2) /* 0011 */
187#define L_PTE_MT_MINICACHE (_AT(pteval_t, 0x06) << 2) /* 0110 (sa1100, xscale) */
188#define L_PTE_MT_WRITEALLOC (_AT(pteval_t, 0x07) << 2) /* 0111 */
189#define L_PTE_MT_DEV_SHARED (_AT(pteval_t, 0x04) << 2) /* 0100 */
190#define L_PTE_MT_DEV_NONSHARED (_AT(pteval_t, 0x0c) << 2) /* 1100 */
191#define L_PTE_MT_DEV_WC (_AT(pteval_t, 0x09) << 2) /* 1001 */
192#define L_PTE_MT_DEV_CACHED (_AT(pteval_t, 0x0b) << 2) /* 1011 */
193#define L_PTE_MT_MASK (_AT(pteval_t, 0x0f) << 2)
Russell Kingbb30f362008-09-06 20:04:59 +0100194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#ifndef __ASSEMBLY__
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/*
Imre_Deak44b18692007-02-11 13:45:13 +0100198 * The pgprot_* and protection_map entries will be fixed up in runtime
199 * to include the cachable and bufferable bits based on memory policy,
200 * as well as any architecture dependent bits like global/ASID and SMP
201 * shared mapping bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
Russell Kingbb30f362008-09-06 20:04:59 +0100203#define _L_PTE_DEFAULT L_PTE_PRESENT | L_PTE_YOUNG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Imre_Deak44b18692007-02-11 13:45:13 +0100205extern pgprot_t pgprot_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206extern pgprot_t pgprot_kernel;
207
Russell King8ec53662008-09-07 17:16:54 +0100208#define _MOD_PROT(p, b) __pgprot(pgprot_val(p) | (b))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Russell King36bb94b2010-11-16 08:40:36 +0000210#define PAGE_NONE _MOD_PROT(pgprot_user, L_PTE_XN | L_PTE_RDONLY)
211#define PAGE_SHARED _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_XN)
212#define PAGE_SHARED_EXEC _MOD_PROT(pgprot_user, L_PTE_USER)
213#define PAGE_COPY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
214#define PAGE_COPY_EXEC _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY)
215#define PAGE_READONLY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
216#define PAGE_READONLY_EXEC _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY)
Russell King9522d7e2010-11-16 00:23:31 +0000217#define PAGE_KERNEL _MOD_PROT(pgprot_kernel, L_PTE_XN)
218#define PAGE_KERNEL_EXEC pgprot_kernel
Russell King8ec53662008-09-07 17:16:54 +0100219
Russell King36bb94b2010-11-16 08:40:36 +0000220#define __PAGE_NONE __pgprot(_L_PTE_DEFAULT | L_PTE_RDONLY | L_PTE_XN)
221#define __PAGE_SHARED __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_XN)
222#define __PAGE_SHARED_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER)
223#define __PAGE_COPY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
224#define __PAGE_COPY_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY)
225#define __PAGE_READONLY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
226#define __PAGE_READONLY_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY)
Imre_Deak44b18692007-02-11 13:45:13 +0100227
Russell Kingeb9b2b62010-11-26 17:39:28 +0000228#define __pgprot_modify(prot,mask,bits) \
229 __pgprot((pgprot_val(prot) & ~(mask)) | (bits))
230
231#define pgprot_noncached(prot) \
232 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED)
233
234#define pgprot_writecombine(prot) \
235 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE)
236
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700237#define pgprot_device(prot) \
238 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_DEV_NONSHARED)
239
240#define pgprot_writethroughcache(prot) \
241 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_WRITETHROUGH)
242
243#define pgprot_writebackcache(prot) \
244 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_WRITEBACK)
245
246#define pgprot_writebackwacache(prot) \
247 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_WRITEALLOC)
248
Russell Kingeb9b2b62010-11-26 17:39:28 +0000249#ifdef CONFIG_ARM_DMA_MEM_BUFFERABLE
250#define pgprot_dmacoherent(prot) \
Russell King9522d7e2010-11-16 00:23:31 +0000251 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE | L_PTE_XN)
Russell Kingeb9b2b62010-11-26 17:39:28 +0000252#define __HAVE_PHYS_MEM_ACCESS_PROT
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700253#define COHERENT_IS_NORMAL 1
Russell Kingeb9b2b62010-11-26 17:39:28 +0000254struct file;
255extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
256 unsigned long size, pgprot_t vma_prot);
257#else
258#define pgprot_dmacoherent(prot) \
Russell King9522d7e2010-11-16 00:23:31 +0000259 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED | L_PTE_XN)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700260#define COHERENT_IS_NORMAL 0
Russell Kingeb9b2b62010-11-26 17:39:28 +0000261#endif
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#endif /* __ASSEMBLY__ */
264
265/*
266 * The table below defines the page protection levels that we insert into our
267 * Linux page table version. These get translated into the best that the
268 * architecture can perform. Note that on most ARM hardware:
269 * 1) We cannot do execute protection
270 * 2) If we could do execute protection, then read is implied
271 * 3) write implies read permissions
272 */
Imre_Deak44b18692007-02-11 13:45:13 +0100273#define __P000 __PAGE_NONE
274#define __P001 __PAGE_READONLY
275#define __P010 __PAGE_COPY
276#define __P011 __PAGE_COPY
Russell King8ec53662008-09-07 17:16:54 +0100277#define __P100 __PAGE_READONLY_EXEC
278#define __P101 __PAGE_READONLY_EXEC
279#define __P110 __PAGE_COPY_EXEC
280#define __P111 __PAGE_COPY_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Imre_Deak44b18692007-02-11 13:45:13 +0100282#define __S000 __PAGE_NONE
283#define __S001 __PAGE_READONLY
284#define __S010 __PAGE_SHARED
285#define __S011 __PAGE_SHARED
Russell King8ec53662008-09-07 17:16:54 +0100286#define __S100 __PAGE_READONLY_EXEC
287#define __S101 __PAGE_READONLY_EXEC
288#define __S110 __PAGE_SHARED_EXEC
289#define __S111 __PAGE_SHARED_EXEC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291#ifndef __ASSEMBLY__
292/*
293 * ZERO_PAGE is a global shared page that is always zero: used
294 * for zero-mapped memory areas etc..
295 */
296extern struct page *empty_zero_page;
297#define ZERO_PAGE(vaddr) (empty_zero_page)
298
Russell King4eec4b12010-11-26 20:12:12 +0000299
300extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
301
302/* to find an entry in a page-table-directory */
303#define pgd_index(addr) ((addr) >> PGDIR_SHIFT)
304
305#define pgd_offset(mm, addr) ((mm)->pgd + pgd_index(addr))
306
307/* to find an entry in a kernel page-table-directory */
308#define pgd_offset_k(addr) pgd_offset(&init_mm, addr)
309
310/*
311 * The "pgd_xxx()" functions here are trivial for a folded two-level
312 * setup: the pgd is never bad, and a pmd always exists (as it's folded
313 * into the pgd entry)
314 */
315#define pgd_none(pgd) (0)
316#define pgd_bad(pgd) (0)
317#define pgd_present(pgd) (1)
318#define pgd_clear(pgdp) do { } while (0)
319#define set_pgd(pgd,pgdp) do { } while (0)
Russell King516295e2010-11-21 16:27:49 +0000320#define set_pud(pud,pudp) do { } while (0)
Russell King4eec4b12010-11-26 20:12:12 +0000321
322
Russell Kingb510b0492010-11-26 20:35:25 +0000323/* Find an entry in the second-level page table.. */
324#define pmd_offset(dir, addr) ((pmd_t *)(dir))
Nick Piggin7e675132008-04-28 02:13:00 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define pmd_none(pmd) (!pmd_val(pmd))
327#define pmd_present(pmd) (pmd_val(pmd))
328#define pmd_bad(pmd) (pmd_val(pmd) & 2)
329
330#define copy_pmd(pmdpd,pmdps) \
331 do { \
332 pmdpd[0] = pmdps[0]; \
333 pmdpd[1] = pmdps[1]; \
334 flush_pmd_entry(pmdpd); \
335 } while (0)
336
337#define pmd_clear(pmdp) \
338 do { \
339 pmdp[0] = __pmd(0); \
340 pmdp[1] = __pmd(0); \
341 clean_pmd_entry(pmdp); \
342 } while (0)
343
Dave McCracken46a82b22006-09-25 23:31:48 -0700344static inline pte_t *pmd_page_vaddr(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Russell Kingd30e45e2010-11-16 00:16:01 +0000346 return __va(pmd_val(pmd) & PAGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Russell King924a1582009-04-26 13:14:52 +0100349#define pmd_page(pmd) pfn_to_page(__phys_to_pfn(pmd_val(pmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Russell Kingc0ba10b2010-11-21 14:42:47 +0000351/* we don't need complex calculations here as the pmd is folded into the pgd */
352#define pmd_addr_end(addr,end) (end)
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Russell Kingb510b0492010-11-26 20:35:25 +0000355#ifndef CONFIG_HIGHPTE
356#define __pte_map(pmd) pmd_page_vaddr(*(pmd))
357#define __pte_unmap(pte) do { } while (0)
358#else
Russell Kingd30e45e2010-11-16 00:16:01 +0000359#define __pte_map(pmd) (pte_t *)kmap_atomic(pmd_page(*(pmd)))
360#define __pte_unmap(pte) kunmap_atomic(pte)
Russell Kingb510b0492010-11-26 20:35:25 +0000361#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Russell Kingb510b0492010-11-26 20:35:25 +0000363#define pte_index(addr) (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
364
365#define pte_offset_kernel(pmd,addr) (pmd_page_vaddr(*(pmd)) + pte_index(addr))
366
367#define pte_offset_map(pmd,addr) (__pte_map(pmd) + pte_index(addr))
368#define pte_unmap(pte) __pte_unmap(pte)
369
370#define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT)
Will Deaconcae62922011-02-15 12:42:57 +0100371#define pfn_pte(pfn,prot) __pte(__pfn_to_phys(pfn) | pgprot_val(prot))
Russell Kingb510b0492010-11-26 20:35:25 +0000372
373#define pte_page(pte) pfn_to_page(pte_pfn(pte))
374#define mk_pte(page,prot) pfn_pte(page_to_pfn(page), prot)
375
376#define set_pte_ext(ptep,pte,ext) cpu_set_pte_ext(ptep,pte,ext)
377#define pte_clear(mm,addr,ptep) set_pte_ext(ptep, __pte(0), 0)
378
379#if __LINUX_ARM_ARCH__ < 6
380static inline void __sync_icache_dcache(pte_t pteval)
381{
382}
383#else
384extern void __sync_icache_dcache(pte_t pteval);
385#endif
386
387static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
388 pte_t *ptep, pte_t pteval)
389{
390 if (addr >= TASK_SIZE)
391 set_pte_ext(ptep, pteval, 0);
392 else {
393 __sync_icache_dcache(pteval);
394 set_pte_ext(ptep, pteval, PTE_EXT_NG);
395 }
396}
397
398#define pte_none(pte) (!pte_val(pte))
399#define pte_present(pte) (pte_val(pte) & L_PTE_PRESENT)
Russell King36bb94b2010-11-16 08:40:36 +0000400#define pte_write(pte) (!(pte_val(pte) & L_PTE_RDONLY))
Russell Kingb510b0492010-11-26 20:35:25 +0000401#define pte_dirty(pte) (pte_val(pte) & L_PTE_DIRTY)
402#define pte_young(pte) (pte_val(pte) & L_PTE_YOUNG)
Russell King9522d7e2010-11-16 00:23:31 +0000403#define pte_exec(pte) (!(pte_val(pte) & L_PTE_XN))
Russell Kingb510b0492010-11-26 20:35:25 +0000404#define pte_special(pte) (0)
405
406#define pte_present_user(pte) \
407 ((pte_val(pte) & (L_PTE_PRESENT | L_PTE_USER)) == \
408 (L_PTE_PRESENT | L_PTE_USER))
409
410#define PTE_BIT_FUNC(fn,op) \
411static inline pte_t pte_##fn(pte_t pte) { pte_val(pte) op; return pte; }
412
Russell King36bb94b2010-11-16 08:40:36 +0000413PTE_BIT_FUNC(wrprotect, |= L_PTE_RDONLY);
414PTE_BIT_FUNC(mkwrite, &= ~L_PTE_RDONLY);
Russell Kingb510b0492010-11-26 20:35:25 +0000415PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY);
416PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY);
417PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG);
418PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);
419
420static inline pte_t pte_mkspecial(pte_t pte) { return pte; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
423{
Russell King36bb94b2010-11-16 08:40:36 +0000424 const pteval_t mask = L_PTE_XN | L_PTE_RDONLY | L_PTE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 pte_val(pte) = (pte_val(pte) & ~mask) | (pgprot_val(newprot) & mask);
426 return pte;
427}
428
Russell Kingfb93a1c2009-07-05 11:30:15 +0100429/*
430 * Encode and decode a swap entry. Swap entries are stored in the Linux
431 * page tables as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
Russell Kingfb93a1c2009-07-05 11:30:15 +0100433 * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
434 * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
Russell King6a00cde2009-07-11 16:57:20 +0100435 * <--------------- offset --------------------> <- type --> 0 0 0
Russell Kingfb93a1c2009-07-05 11:30:15 +0100436 *
Russell King6a00cde2009-07-11 16:57:20 +0100437 * This gives us up to 63 swap files and 32GB per swap file. Note that
Russell Kingfb93a1c2009-07-05 11:30:15 +0100438 * the offset field is always non-zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 */
Russell King6a00cde2009-07-11 16:57:20 +0100440#define __SWP_TYPE_SHIFT 3
441#define __SWP_TYPE_BITS 6
Russell Kingfb93a1c2009-07-05 11:30:15 +0100442#define __SWP_TYPE_MASK ((1 << __SWP_TYPE_BITS) - 1)
443#define __SWP_OFFSET_SHIFT (__SWP_TYPE_BITS + __SWP_TYPE_SHIFT)
444
445#define __swp_type(x) (((x).val >> __SWP_TYPE_SHIFT) & __SWP_TYPE_MASK)
446#define __swp_offset(x) ((x).val >> __SWP_OFFSET_SHIFT)
447#define __swp_entry(type,offset) ((swp_entry_t) { ((type) << __SWP_TYPE_SHIFT) | ((offset) << __SWP_OFFSET_SHIFT) })
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
450#define __swp_entry_to_pte(swp) ((pte_t) { (swp).val })
451
Russell Kingfb93a1c2009-07-05 11:30:15 +0100452/*
453 * It is an error for the kernel to have more swap files than we can
454 * encode in the PTEs. This ensures that we know when MAX_SWAPFILES
455 * is increased beyond what we presently support.
456 */
457#define MAX_SWAPFILES_CHECK() BUILD_BUG_ON(MAX_SWAPFILES_SHIFT > __SWP_TYPE_BITS)
458
Russell King65b1bfc2009-07-05 11:52:21 +0100459/*
460 * Encode and decode a file entry. File entries are stored in the Linux
461 * page tables as follows:
462 *
463 * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
464 * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
Russell King6a00cde2009-07-11 16:57:20 +0100465 * <----------------------- offset ------------------------> 1 0 0
Russell King65b1bfc2009-07-05 11:52:21 +0100466 */
467#define pte_file(pte) (pte_val(pte) & L_PTE_FILE)
Russell King6a00cde2009-07-11 16:57:20 +0100468#define pte_to_pgoff(x) (pte_val(x) >> 3)
469#define pgoff_to_pte(x) __pte(((x) << 3) | L_PTE_FILE)
Russell King65b1bfc2009-07-05 11:52:21 +0100470
Russell King6a00cde2009-07-11 16:57:20 +0100471#define PTE_FILE_MAX_BITS 29
Russell King65b1bfc2009-07-05 11:52:21 +0100472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
474/* FIXME: this is not correct */
475#define kern_addr_valid(addr) (1)
476
477#include <asm-generic/pgtable.h>
478
479/*
480 * We provide our own arch_get_unmapped_area to cope with VIPT caches.
481 */
482#define HAVE_ARCH_UNMAPPED_AREA
483
484/*
Randy Dunlap33bf5612005-09-13 01:25:50 -0700485 * remap a physical page `pfn' of size `size' with page protection `prot'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * into virtual address `from'
487 */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700488#ifndef HAS_ARCH_IO_REMAP_PFN_RANGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489#define io_remap_pfn_range(vma,from,pfn,size,prot) \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700490 remap_pfn_range(vma,from,pfn,size,prot)
491#else
492extern int arch_io_remap_pfn_range(struct vm_area_struct *vma, unsigned long addr, unsigned long pfn, unsigned long size, pgprot_t prot);
493#define io_remap_pfn_range(vma,from,pfn,size,prot) \
494 arch_io_remap_pfn_range(vma,from,pfn,size,prot)
495#endif
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#define pgtable_cache_init() do { } while (0)
499
Russell King614dd052010-11-21 11:41:57 +0000500void identity_mapping_add(pgd_t *, unsigned long, unsigned long);
501void identity_mapping_del(pgd_t *, unsigned long, unsigned long);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#endif /* !__ASSEMBLY__ */
504
Russell King002547b2006-06-20 20:46:52 +0100505#endif /* CONFIG_MMU */
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#endif /* _ASMARM_PGTABLE_H */