Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 11 | #ifdef CONFIG_32BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/pgtable-32.h> |
| 13 | #endif |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 14 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/pgtable-64.h> |
| 16 | #endif |
| 17 | |
Pete Popov | f10fae0 | 2005-07-14 00:17:05 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/pgtable-bits.h> |
| 20 | |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 21 | struct mm_struct; |
| 22 | struct vm_area_struct; |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #define PAGE_NONE __pgprot(_PAGE_PRESENT | _CACHE_CACHABLE_NONCOHERENT) |
Steven J. Hill | 05857c6 | 2012-09-13 16:51:46 -0500 | [diff] [blame] | 25 | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_WRITE | (cpu_has_rixi ? 0 : _PAGE_READ) | \ |
Chris Dearman | 3513369 | 2007-09-19 00:58:24 +0100 | [diff] [blame] | 26 | _page_cachable_default) |
Steven J. Hill | 05857c6 | 2012-09-13 16:51:46 -0500 | [diff] [blame] | 27 | #define PAGE_COPY __pgprot(_PAGE_PRESENT | (cpu_has_rixi ? 0 : _PAGE_READ) | \ |
| 28 | (cpu_has_rixi ? _PAGE_NO_EXEC : 0) | _page_cachable_default) |
| 29 | #define PAGE_READONLY __pgprot(_PAGE_PRESENT | (cpu_has_rixi ? 0 : _PAGE_READ) | \ |
Chris Dearman | 3513369 | 2007-09-19 00:58:24 +0100 | [diff] [blame] | 30 | _page_cachable_default) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | __READABLE | __WRITEABLE | \ |
Chris Dearman | 3513369 | 2007-09-19 00:58:24 +0100 | [diff] [blame] | 32 | _PAGE_GLOBAL | _page_cachable_default) |
Steven J. Hill | 05857c6 | 2012-09-13 16:51:46 -0500 | [diff] [blame] | 33 | #define PAGE_USERIO __pgprot(_PAGE_PRESENT | (cpu_has_rixi ? 0 : _PAGE_READ) | _PAGE_WRITE | \ |
Chris Dearman | 3513369 | 2007-09-19 00:58:24 +0100 | [diff] [blame] | 34 | _page_cachable_default) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #define PAGE_KERNEL_UNCACHED __pgprot(_PAGE_PRESENT | __READABLE | \ |
| 36 | __WRITEABLE | _PAGE_GLOBAL | _CACHE_UNCACHED) |
| 37 | |
| 38 | /* |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 39 | * If _PAGE_NO_EXEC is not defined, we can't do page protection for |
| 40 | * execute, and consider it to be the same as read. Also, write |
| 41 | * permissions imply read permissions. This is the closest we can get |
| 42 | * by reasonable means.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Chris Dearman | 3513369 | 2007-09-19 00:58:24 +0100 | [diff] [blame] | 45 | /* |
| 46 | * Dummy values to fill the table in mmap.c |
| 47 | * The real values will be generated at runtime |
| 48 | */ |
| 49 | #define __P000 __pgprot(0) |
| 50 | #define __P001 __pgprot(0) |
| 51 | #define __P010 __pgprot(0) |
| 52 | #define __P011 __pgprot(0) |
| 53 | #define __P100 __pgprot(0) |
| 54 | #define __P101 __pgprot(0) |
| 55 | #define __P110 __pgprot(0) |
| 56 | #define __P111 __pgprot(0) |
| 57 | |
| 58 | #define __S000 __pgprot(0) |
| 59 | #define __S001 __pgprot(0) |
| 60 | #define __S010 __pgprot(0) |
| 61 | #define __S011 __pgprot(0) |
| 62 | #define __S100 __pgprot(0) |
| 63 | #define __S101 __pgprot(0) |
| 64 | #define __S110 __pgprot(0) |
| 65 | #define __S111 __pgprot(0) |
| 66 | |
| 67 | extern unsigned long _page_cachable_default; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | * ZERO_PAGE is a global shared page that is always zero; used |
| 71 | * for zero-mapped memory areas etc.. |
| 72 | */ |
| 73 | |
| 74 | extern unsigned long empty_zero_page; |
| 75 | extern unsigned long zero_page_mask; |
| 76 | |
| 77 | #define ZERO_PAGE(vaddr) \ |
Franck Bui-Huu | 99e3b94 | 2006-10-19 13:19:59 +0200 | [diff] [blame] | 78 | (virt_to_page((void *)(empty_zero_page + (((unsigned long)(vaddr)) & zero_page_mask)))) |
Kirill A. Shutemov | 816422a | 2012-12-12 13:52:36 -0800 | [diff] [blame^] | 79 | #define __HAVE_COLOR_ZERO_PAGE |
Hugh Dickins | 62eede6 | 2009-09-21 17:03:34 -0700 | [diff] [blame] | 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | extern void paging_init(void); |
| 82 | |
| 83 | /* |
| 84 | * Conversion functions: convert a page and protection to a page entry, |
| 85 | * and a page entry and page directory to the page they refer to. |
| 86 | */ |
Franck Bui-Huu | c9d0696 | 2007-03-19 17:36:42 +0100 | [diff] [blame] | 87 | #define pmd_phys(pmd) virt_to_phys((void *)pmd_val(pmd)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT)) |
Dave McCracken | 46a82b2 | 2006-09-25 23:31:48 -0700 | [diff] [blame] | 89 | #define pmd_page_vaddr(pmd) pmd_val(pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Chris Dearman | 962f480 | 2007-09-19 00:46:32 +0100 | [diff] [blame] | 91 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32) |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 92 | |
| 93 | #define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) |
| 94 | #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static inline void set_pte(pte_t *ptep, pte_t pte) |
| 97 | { |
| 98 | ptep->pte_high = pte.pte_high; |
| 99 | smp_wmb(); |
| 100 | ptep->pte_low = pte.pte_low; |
| 101 | //printk("pte_high %x pte_low %x\n", ptep->pte_high, ptep->pte_low); |
| 102 | |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 103 | if (pte.pte_low & _PAGE_GLOBAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | pte_t *buddy = ptep_buddy(ptep); |
| 105 | /* |
| 106 | * Make sure the buddy is global too (if it's !none, |
| 107 | * it better already be global) |
| 108 | */ |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 109 | if (pte_none(*buddy)) { |
| 110 | buddy->pte_low |= _PAGE_GLOBAL; |
| 111 | buddy->pte_high |= _PAGE_GLOBAL; |
| 112 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | } |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 115 | #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) |
| 118 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 119 | pte_t null = __pte(0); |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | /* Preserve global status for the pair */ |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 122 | if (ptep_buddy(ptep)->pte_low & _PAGE_GLOBAL) |
| 123 | null.pte_low = null.pte_high = _PAGE_GLOBAL; |
| 124 | |
| 125 | set_pte_at(mm, addr, ptep, null); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | #else |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 128 | |
| 129 | #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) |
| 130 | #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* |
| 133 | * Certain architectures need to do special things when pte's |
| 134 | * within a page table are directly modified. Thus, the following |
| 135 | * hook is made available. |
| 136 | */ |
| 137 | static inline void set_pte(pte_t *ptep, pte_t pteval) |
| 138 | { |
| 139 | *ptep = pteval; |
| 140 | #if !defined(CONFIG_CPU_R3000) && !defined(CONFIG_CPU_TX39XX) |
| 141 | if (pte_val(pteval) & _PAGE_GLOBAL) { |
| 142 | pte_t *buddy = ptep_buddy(ptep); |
| 143 | /* |
| 144 | * Make sure the buddy is global too (if it's !none, |
| 145 | * it better already be global) |
| 146 | */ |
| 147 | if (pte_none(*buddy)) |
| 148 | pte_val(*buddy) = pte_val(*buddy) | _PAGE_GLOBAL; |
| 149 | } |
| 150 | #endif |
| 151 | } |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 152 | #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
| 154 | static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) |
| 155 | { |
| 156 | #if !defined(CONFIG_CPU_R3000) && !defined(CONFIG_CPU_TX39XX) |
| 157 | /* Preserve global status for the pair */ |
| 158 | if (pte_val(*ptep_buddy(ptep)) & _PAGE_GLOBAL) |
| 159 | set_pte_at(mm, addr, ptep, __pte(_PAGE_GLOBAL)); |
| 160 | else |
| 161 | #endif |
| 162 | set_pte_at(mm, addr, ptep, __pte(0)); |
| 163 | } |
| 164 | #endif |
| 165 | |
| 166 | /* |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 167 | * (pmds are folded into puds so this doesn't get actually called, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | * but the define is needed for a generic inline function.) |
| 169 | */ |
| 170 | #define set_pmd(pmdptr, pmdval) do { *(pmdptr) = (pmdval); } while(0) |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 171 | |
David Daney | 325f8a0 | 2009-12-04 13:52:36 -0800 | [diff] [blame] | 172 | #ifndef __PAGETABLE_PMD_FOLDED |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 173 | /* |
| 174 | * (puds are folded into pgds so this doesn't get actually called, |
| 175 | * but the define is needed for a generic inline function.) |
| 176 | */ |
| 177 | #define set_pud(pudptr, pudval) do { *(pudptr) = (pudval); } while(0) |
| 178 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Ralf Baechle | 5ff9747 | 2007-08-01 15:25:28 +0100 | [diff] [blame] | 180 | #define PGD_T_LOG2 (__builtin_ffs(sizeof(pgd_t)) - 1) |
| 181 | #define PMD_T_LOG2 (__builtin_ffs(sizeof(pmd_t)) - 1) |
| 182 | #define PTE_T_LOG2 (__builtin_ffs(sizeof(pte_t)) - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Ralf Baechle | 9975e77 | 2007-08-13 12:44:41 +0100 | [diff] [blame] | 184 | /* |
| 185 | * We used to declare this array with size but gcc 3.3 and older are not able |
| 186 | * to find that this expression is a constant, so the size is dropped. |
| 187 | */ |
| 188 | extern pgd_t swapper_pg_dir[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | /* |
| 191 | * The following only work if pte_present() is true. |
| 192 | * Undefined behaviour if not.. |
| 193 | */ |
Chris Dearman | 962f480 | 2007-09-19 00:46:32 +0100 | [diff] [blame] | 194 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32) |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 195 | static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; } |
| 196 | static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; } |
| 197 | static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; } |
| 198 | static inline int pte_file(pte_t pte) { return pte.pte_low & _PAGE_FILE; } |
| 199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | static inline pte_t pte_wrprotect(pte_t pte) |
| 201 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 202 | pte.pte_low &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE); |
| 203 | pte.pte_high &= ~_PAGE_SILENT_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | return pte; |
| 205 | } |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | static inline pte_t pte_mkclean(pte_t pte) |
| 208 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 209 | pte.pte_low &= ~(_PAGE_MODIFIED | _PAGE_SILENT_WRITE); |
| 210 | pte.pte_high &= ~_PAGE_SILENT_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | return pte; |
| 212 | } |
| 213 | |
| 214 | static inline pte_t pte_mkold(pte_t pte) |
| 215 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 216 | pte.pte_low &= ~(_PAGE_ACCESSED | _PAGE_SILENT_READ); |
| 217 | pte.pte_high &= ~_PAGE_SILENT_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | return pte; |
| 219 | } |
| 220 | |
| 221 | static inline pte_t pte_mkwrite(pte_t pte) |
| 222 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 223 | pte.pte_low |= _PAGE_WRITE; |
| 224 | if (pte.pte_low & _PAGE_MODIFIED) { |
| 225 | pte.pte_low |= _PAGE_SILENT_WRITE; |
| 226 | pte.pte_high |= _PAGE_SILENT_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
| 228 | return pte; |
| 229 | } |
| 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | static inline pte_t pte_mkdirty(pte_t pte) |
| 232 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 233 | pte.pte_low |= _PAGE_MODIFIED; |
| 234 | if (pte.pte_low & _PAGE_WRITE) { |
| 235 | pte.pte_low |= _PAGE_SILENT_WRITE; |
| 236 | pte.pte_high |= _PAGE_SILENT_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | return pte; |
| 239 | } |
| 240 | |
| 241 | static inline pte_t pte_mkyoung(pte_t pte) |
| 242 | { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 243 | pte.pte_low |= _PAGE_ACCESSED; |
Ilpo Järvinen | 057229f | 2008-05-02 14:08:20 +0300 | [diff] [blame] | 244 | if (pte.pte_low & _PAGE_READ) { |
Sergei Shtylyov | 6e95389 | 2006-04-16 23:27:21 +0400 | [diff] [blame] | 245 | pte.pte_low |= _PAGE_SILENT_READ; |
| 246 | pte.pte_high |= _PAGE_SILENT_READ; |
Ilpo Järvinen | 057229f | 2008-05-02 14:08:20 +0300 | [diff] [blame] | 247 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return pte; |
| 249 | } |
| 250 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } |
| 252 | static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; } |
| 253 | static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } |
| 254 | static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; } |
| 255 | |
| 256 | static inline pte_t pte_wrprotect(pte_t pte) |
| 257 | { |
| 258 | pte_val(pte) &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE); |
| 259 | return pte; |
| 260 | } |
| 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | static inline pte_t pte_mkclean(pte_t pte) |
| 263 | { |
| 264 | pte_val(pte) &= ~(_PAGE_MODIFIED|_PAGE_SILENT_WRITE); |
| 265 | return pte; |
| 266 | } |
| 267 | |
| 268 | static inline pte_t pte_mkold(pte_t pte) |
| 269 | { |
| 270 | pte_val(pte) &= ~(_PAGE_ACCESSED|_PAGE_SILENT_READ); |
| 271 | return pte; |
| 272 | } |
| 273 | |
| 274 | static inline pte_t pte_mkwrite(pte_t pte) |
| 275 | { |
| 276 | pte_val(pte) |= _PAGE_WRITE; |
| 277 | if (pte_val(pte) & _PAGE_MODIFIED) |
| 278 | pte_val(pte) |= _PAGE_SILENT_WRITE; |
| 279 | return pte; |
| 280 | } |
| 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | static inline pte_t pte_mkdirty(pte_t pte) |
| 283 | { |
| 284 | pte_val(pte) |= _PAGE_MODIFIED; |
| 285 | if (pte_val(pte) & _PAGE_WRITE) |
| 286 | pte_val(pte) |= _PAGE_SILENT_WRITE; |
| 287 | return pte; |
| 288 | } |
| 289 | |
| 290 | static inline pte_t pte_mkyoung(pte_t pte) |
| 291 | { |
| 292 | pte_val(pte) |= _PAGE_ACCESSED; |
Steven J. Hill | 05857c6 | 2012-09-13 16:51:46 -0500 | [diff] [blame] | 293 | if (cpu_has_rixi) { |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 294 | if (!(pte_val(pte) & _PAGE_NO_READ)) |
| 295 | pte_val(pte) |= _PAGE_SILENT_READ; |
| 296 | } else { |
| 297 | if (pte_val(pte) & _PAGE_READ) |
| 298 | pte_val(pte) |= _PAGE_SILENT_READ; |
| 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | return pte; |
| 301 | } |
David Daney | dd79439 | 2009-05-27 17:47:43 -0700 | [diff] [blame] | 302 | |
| 303 | #ifdef _PAGE_HUGE |
| 304 | static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; } |
| 305 | |
| 306 | static inline pte_t pte_mkhuge(pte_t pte) |
| 307 | { |
| 308 | pte_val(pte) |= _PAGE_HUGE; |
| 309 | return pte; |
| 310 | } |
| 311 | #endif /* _PAGE_HUGE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | #endif |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 313 | static inline int pte_special(pte_t pte) { return 0; } |
| 314 | static inline pte_t pte_mkspecial(pte_t pte) { return pte; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
| 316 | /* |
| 317 | * Macro to make mark a page protection value as "uncacheable". Note |
| 318 | * that "protection" is really a misnomer here as the protection value |
| 319 | * contains the memory attribute bits, dirty bits, and various other |
| 320 | * bits as well. |
| 321 | */ |
| 322 | #define pgprot_noncached pgprot_noncached |
| 323 | |
| 324 | static inline pgprot_t pgprot_noncached(pgprot_t _prot) |
| 325 | { |
| 326 | unsigned long prot = pgprot_val(_prot); |
| 327 | |
| 328 | prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED; |
| 329 | |
| 330 | return __pgprot(prot); |
| 331 | } |
| 332 | |
| 333 | /* |
| 334 | * Conversion functions: convert a page and protection to a page entry, |
| 335 | * and a page entry and page directory to the page they refer to. |
| 336 | */ |
| 337 | #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot)) |
| 338 | |
Chris Dearman | 962f480 | 2007-09-19 00:46:32 +0100 | [diff] [blame] | 339 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) |
| 341 | { |
Sergei Shtylyov | 79e0bc3 | 2006-05-03 22:56:43 +0400 | [diff] [blame] | 342 | pte.pte_low &= _PAGE_CHG_MASK; |
| 343 | pte.pte_high &= ~0x3f; |
| 344 | pte.pte_low |= pgprot_val(newprot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | pte.pte_high |= pgprot_val(newprot) & 0x3f; |
| 346 | return pte; |
| 347 | } |
| 348 | #else |
| 349 | static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) |
| 350 | { |
| 351 | return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)); |
| 352 | } |
| 353 | #endif |
| 354 | |
| 355 | |
| 356 | extern void __update_tlb(struct vm_area_struct *vma, unsigned long address, |
| 357 | pte_t pte); |
| 358 | extern void __update_cache(struct vm_area_struct *vma, unsigned long address, |
| 359 | pte_t pte); |
| 360 | |
| 361 | static inline void update_mmu_cache(struct vm_area_struct *vma, |
Russell King | 4b3073e | 2009-12-18 16:40:18 +0000 | [diff] [blame] | 362 | unsigned long address, pte_t *ptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
Russell King | 4b3073e | 2009-12-18 16:40:18 +0000 | [diff] [blame] | 364 | pte_t pte = *ptep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | __update_tlb(vma, address, pte); |
| 366 | __update_cache(vma, address, pte); |
| 367 | } |
| 368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | #define kern_addr_valid(addr) (1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | #ifdef CONFIG_64BIT_PHYS_ADDR |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | extern int remap_pfn_range(struct vm_area_struct *vma, unsigned long from, unsigned long pfn, unsigned long size, pgprot_t prot); |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | static inline int io_remap_pfn_range(struct vm_area_struct *vma, |
| 375 | unsigned long vaddr, |
| 376 | unsigned long pfn, |
| 377 | unsigned long size, |
| 378 | pgprot_t prot) |
| 379 | { |
| 380 | phys_t phys_addr_high = fixup_bigphys_addr(pfn << PAGE_SHIFT, size); |
Thiemo Seufer | ac5d8c0 | 2005-04-11 12:24:16 +0000 | [diff] [blame] | 381 | return remap_pfn_range(vma, vaddr, phys_addr_high >> PAGE_SHIFT, size, prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } |
| 383 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \ |
| 385 | remap_pfn_range(vma, vaddr, pfn, size, prot) |
| 386 | #endif |
| 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | #include <asm-generic/pgtable.h> |
| 389 | |
| 390 | /* |
Wu Zhangjin | 22f1fdf | 2009-11-11 13:59:23 +0800 | [diff] [blame] | 391 | * uncached accelerated TLB map for video memory access |
| 392 | */ |
| 393 | #ifdef CONFIG_CPU_SUPPORTS_UNCACHED_ACCELERATED |
| 394 | #define __HAVE_PHYS_MEM_ACCESS_PROT |
| 395 | |
| 396 | struct file; |
| 397 | pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn, |
| 398 | unsigned long size, pgprot_t vma_prot); |
| 399 | int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn, |
| 400 | unsigned long size, pgprot_t *vma_prot); |
| 401 | #endif |
| 402 | |
| 403 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | * We provide our own get_unmapped area to cope with the virtual aliasing |
| 405 | * constraints placed on us by the cache architecture. |
| 406 | */ |
| 407 | #define HAVE_ARCH_UNMAPPED_AREA |
Jian Peng | d0be89f | 2011-05-17 12:27:49 -0700 | [diff] [blame] | 408 | #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
| 410 | /* |
| 411 | * No page table caches to initialise |
| 412 | */ |
| 413 | #define pgtable_cache_init() do { } while (0) |
| 414 | |
| 415 | #endif /* _ASM_PGTABLE_H */ |