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