root/include/asm-i386/pgtable.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. pte_none
  2. pte_present
  3. pte_inuse
  4. pte_clear
  5. pte_reuse
  6. pmd_none
  7. pmd_bad
  8. pmd_present
  9. pmd_inuse
  10. pmd_inuse
  11. pmd_clear
  12. pmd_reuse
  13. pgd_none
  14. pgd_bad
  15. pgd_present
  16. pgd_inuse
  17. pgd_clear
  18. pgd_reuse
  19. pte_read
  20. pte_write
  21. pte_exec
  22. pte_dirty
  23. pte_young
  24. pte_cow
  25. pte_wrprotect
  26. pte_rdprotect
  27. pte_exprotect
  28. pte_mkclean
  29. pte_mkold
  30. pte_uncow
  31. pte_mkwrite
  32. pte_mkread
  33. pte_mkexec
  34. pte_mkdirty
  35. pte_mkyoung
  36. pte_mkcow
  37. mk_pte
  38. pte_modify
  39. pte_page
  40. pmd_page
  41. pgd_offset
  42. pmd_offset
  43. pte_offset
  44. pte_free_kernel
  45. pte_alloc_kernel
  46. pmd_free_kernel
  47. pmd_alloc_kernel
  48. pte_free
  49. pte_alloc
  50. pmd_free
  51. pmd_alloc
  52. pgd_free
  53. pgd_alloc
  54. update_mmu_cache

   1 #ifndef _I386_PGTABLE_H
   2 #define _I386_PGTABLE_H
   3 
   4 /*
   5  * Define CONFIG_PENTIUM_MM if you want the 4MB page table optimizations.
   6  * This works only on a intel Pentium.
   7  */
   8 #define CONFIG_PENTIUM_MM 1
   9 
  10 /*
  11  * The Linux memory management assumes a three-level page table setup. On
  12  * the i386, we use that, but "fold" the mid level into the top-level page
  13  * table, so that we physically have the same two-level page table as the
  14  * i386 mmu expects.
  15  *
  16  * This file contains the functions and defines necessary to modify and use
  17  * the i386 page table tree.
  18  */
  19 
  20 /* PMD_SHIFT determines the size of the area a second-level page table can map */
  21 #define PMD_SHIFT       22
  22 #define PMD_SIZE        (1UL << PMD_SHIFT)
  23 #define PMD_MASK        (~(PMD_SIZE-1))
  24 
  25 /* PGDIR_SHIFT determines what a third-level page table entry can map */
  26 #define PGDIR_SHIFT     22
  27 #define PGDIR_SIZE      (1UL << PGDIR_SHIFT)
  28 #define PGDIR_MASK      (~(PGDIR_SIZE-1))
  29 
  30 /*
  31  * entries per page directory level: the i386 is two-level, so
  32  * we don't really have any PMD directory physically.
  33  */
  34 #define PTRS_PER_PTE    1024
  35 #define PTRS_PER_PMD    1
  36 #define PTRS_PER_PGD    1024
  37 
  38 /* Just any arbitrary offset to the start of the vmalloc VM area: the
  39  * current 8MB value just means that there will be a 8MB "hole" after the
  40  * physical memory until the kernel virtual memory starts.  That means that
  41  * any out-of-bounds memory accesses will hopefully be caught.
  42  * The vmalloc() routines leaves a hole of 4kB between each vmalloced
  43  * area for the same reason. ;)
  44  */
  45 #define VMALLOC_OFFSET  (8*1024*1024)
  46 #define VMALLOC_START ((high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
  47 #define VMALLOC_VMADDR(x) (TASK_SIZE + (unsigned long)(x))
  48 
  49 /*
  50  * The 4MB page is guessing..  Detailed in the infamous "Chapter H"
  51  * of the Pentium details, but assuming intel did the straigtforward
  52  * thing, this bit set in the page directory entry just means that
  53  * the page directory entry points directly to a 4MB-aligned block of
  54  * memory. 
  55  */
  56 #define _PAGE_PRESENT   0x001
  57 #define _PAGE_RW        0x002
  58 #define _PAGE_USER      0x004
  59 #define _PAGE_PCD       0x010
  60 #define _PAGE_ACCESSED  0x020
  61 #define _PAGE_DIRTY     0x040
  62 #define _PAGE_4M        0x080   /* 4 MB page, Pentium+.. */
  63 #define _PAGE_COW       0x200   /* implemented in software (one of the AVL bits) */
  64 
  65 #define _PAGE_TABLE     (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
  66 #define _PAGE_CHG_MASK  (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  67 
  68 #define PAGE_NONE       __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED)
  69 #define PAGE_SHARED     __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
  70 #define PAGE_COPY       __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
  71 #define PAGE_READONLY   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  72 #define PAGE_KERNEL     __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
  73 
  74 /*
  75  * The i386 can't do page protection for execute, and considers that the same are read.
  76  * Also, write permissions imply read permissions. This is the closest we can get..
  77  */
  78 #define __P000  PAGE_NONE
  79 #define __P001  PAGE_READONLY
  80 #define __P010  PAGE_COPY
  81 #define __P011  PAGE_COPY
  82 #define __P100  PAGE_READONLY
  83 #define __P101  PAGE_READONLY
  84 #define __P110  PAGE_COPY
  85 #define __P111  PAGE_COPY
  86 
  87 #define __S000  PAGE_NONE
  88 #define __S001  PAGE_READONLY
  89 #define __S010  PAGE_SHARED
  90 #define __S011  PAGE_SHARED
  91 #define __S100  PAGE_READONLY
  92 #define __S101  PAGE_READONLY
  93 #define __S110  PAGE_SHARED
  94 #define __S111  PAGE_SHARED
  95 
  96 /*
  97  * Define this if things work differently on a i386 and a i486:
  98  * it will (on a i486) warn about kernel memory accesses that are
  99  * done without a 'verify_area(VERIFY_WRITE,..)'
 100  */
 101 #undef CONFIG_TEST_VERIFY_AREA
 102 
 103 /* page table for 0-4MB for everybody */
 104 extern unsigned long pg0[1024];
 105 /* zero page used for unitialized stuff */
 106 extern unsigned long empty_zero_page[1024];
 107 
 108 /*
 109  * BAD_PAGETABLE is used when we need a bogus page-table, while
 110  * BAD_PAGE is used for a bogus page.
 111  *
 112  * ZERO_PAGE is a global shared page that is always zero: used
 113  * for zero-mapped memory areas etc..
 114  */
 115 extern pte_t __bad_page(void);
 116 extern pte_t * __bad_pagetable(void);
 117 
 118 #define BAD_PAGETABLE __bad_pagetable()
 119 #define BAD_PAGE __bad_page()
 120 #define ZERO_PAGE ((unsigned long) empty_zero_page)
 121 
 122 /* number of bits that fit into a memory pointer */
 123 #define BITS_PER_PTR                    (8*sizeof(unsigned long))
 124 
 125 /* to align the pointer to a pointer address */
 126 #define PTR_MASK                        (~(sizeof(void*)-1))
 127 
 128 /* sizeof(void*)==1<<SIZEOF_PTR_LOG2 */
 129 /* 64-bit machines, beware!  SRB. */
 130 #define SIZEOF_PTR_LOG2                 2
 131 
 132 /* to find an entry in a page-table */
 133 #define PAGE_PTR(address) \
 134 ((unsigned long)(address)>>(PAGE_SHIFT-SIZEOF_PTR_LOG2)&PTR_MASK&~PAGE_MASK)
 135 
 136 /* to set the page-dir */
 137 #define SET_PAGE_DIR(tsk,pgdir) \
 138 do { \
 139         (tsk)->tss.cr3 = (unsigned long) (pgdir); \
 140         if ((tsk) == current) \
 141                 __asm__ __volatile__("movl %0,%%cr3": :"a" ((tsk)->tss.cr3)); \
 142 } while (0)
 143 
 144 extern inline int pte_none(pte_t pte)           { return !pte_val(pte); }
     /* [previous][next][first][last][top][bottom][index][help] */
 145 extern inline int pte_present(pte_t pte)        { return pte_val(pte) & _PAGE_PRESENT; }
     /* [previous][next][first][last][top][bottom][index][help] */
 146 extern inline int pte_inuse(pte_t *ptep)        { return mem_map[MAP_NR(ptep)] != 1; }
     /* [previous][next][first][last][top][bottom][index][help] */
 147 extern inline void pte_clear(pte_t *ptep)       { pte_val(*ptep) = 0; }
     /* [previous][next][first][last][top][bottom][index][help] */
 148 extern inline void pte_reuse(pte_t * ptep)
     /* [previous][next][first][last][top][bottom][index][help] */
 149 {
 150         if (!(mem_map[MAP_NR(ptep)] & MAP_PAGE_RESERVED))
 151                 mem_map[MAP_NR(ptep)]++;
 152 }
 153 
 154 extern inline int pmd_none(pmd_t pmd)           { return !pmd_val(pmd); }
     /* [previous][next][first][last][top][bottom][index][help] */
 155 extern inline int pmd_bad(pmd_t pmd)            { return (pmd_val(pmd) & ~PAGE_MASK) != _PAGE_TABLE || pmd_val(pmd) > high_memory; }
     /* [previous][next][first][last][top][bottom][index][help] */
 156 extern inline int pmd_present(pmd_t pmd)        { return pmd_val(pmd) & _PAGE_PRESENT; }
     /* [previous][next][first][last][top][bottom][index][help] */
 157 #ifdef CONFIG_PENTIUM_MM
 158 extern inline int pmd_inuse(pmd_t *pmdp)        { return (pmd_val(*pmdp) & _PAGE_4M) != 0; }
     /* [previous][next][first][last][top][bottom][index][help] */
 159 #else
 160 extern inline int pmd_inuse(pmd_t *pmdp)        { return 0; }
     /* [previous][next][first][last][top][bottom][index][help] */
 161 #endif
 162 extern inline void pmd_clear(pmd_t * pmdp)      { pmd_val(*pmdp) = 0; }
     /* [previous][next][first][last][top][bottom][index][help] */
 163 extern inline void pmd_reuse(pmd_t * pmdp)      { }
     /* [previous][next][first][last][top][bottom][index][help] */
 164 
 165 /*
 166  * The "pgd_xxx()" functions here are trivial for a folded two-level
 167  * setup: the pgd is never bad, and a pmd always exists (as it's folded
 168  * into the pgd entry)
 169  */
 170 extern inline int pgd_none(pgd_t pgd)           { return 0; }
     /* [previous][next][first][last][top][bottom][index][help] */
 171 extern inline int pgd_bad(pgd_t pgd)            { return 0; }
     /* [previous][next][first][last][top][bottom][index][help] */
 172 extern inline int pgd_present(pgd_t pgd)        { return 1; }
     /* [previous][next][first][last][top][bottom][index][help] */
 173 extern inline int pgd_inuse(pgd_t * pgdp)       { return mem_map[MAP_NR(pgdp)] != 1; }
     /* [previous][next][first][last][top][bottom][index][help] */
 174 extern inline void pgd_clear(pgd_t * pgdp)      { }
     /* [previous][next][first][last][top][bottom][index][help] */
 175 extern inline void pgd_reuse(pgd_t * pgdp)
     /* [previous][next][first][last][top][bottom][index][help] */
 176 {
 177         if (!(mem_map[MAP_NR(pgdp)] & MAP_PAGE_RESERVED))
 178                 mem_map[MAP_NR(pgdp)]++;
 179 }
 180 
 181 /*
 182  * The following only work if pte_present() is true.
 183  * Undefined behaviour if not..
 184  */
 185 extern inline int pte_read(pte_t pte)           { return pte_val(pte) & _PAGE_USER; }
     /* [previous][next][first][last][top][bottom][index][help] */
 186 extern inline int pte_write(pte_t pte)          { return pte_val(pte) & _PAGE_RW; }
     /* [previous][next][first][last][top][bottom][index][help] */
 187 extern inline int pte_exec(pte_t pte)           { return pte_val(pte) & _PAGE_USER; }
     /* [previous][next][first][last][top][bottom][index][help] */
 188 extern inline int pte_dirty(pte_t pte)          { return pte_val(pte) & _PAGE_DIRTY; }
     /* [previous][next][first][last][top][bottom][index][help] */
 189 extern inline int pte_young(pte_t pte)          { return pte_val(pte) & _PAGE_ACCESSED; }
     /* [previous][next][first][last][top][bottom][index][help] */
 190 extern inline int pte_cow(pte_t pte)            { return pte_val(pte) & _PAGE_COW; }
     /* [previous][next][first][last][top][bottom][index][help] */
 191 
 192 extern inline pte_t pte_wrprotect(pte_t pte)    { pte_val(pte) &= ~_PAGE_RW; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 193 extern inline pte_t pte_rdprotect(pte_t pte)    { pte_val(pte) &= ~_PAGE_USER; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 194 extern inline pte_t pte_exprotect(pte_t pte)    { pte_val(pte) &= ~_PAGE_USER; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 195 extern inline pte_t pte_mkclean(pte_t pte)      { pte_val(pte) &= ~_PAGE_DIRTY; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 196 extern inline pte_t pte_mkold(pte_t pte)        { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 197 extern inline pte_t pte_uncow(pte_t pte)        { pte_val(pte) &= ~_PAGE_COW; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 198 extern inline pte_t pte_mkwrite(pte_t pte)      { pte_val(pte) |= _PAGE_RW; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 199 extern inline pte_t pte_mkread(pte_t pte)       { pte_val(pte) |= _PAGE_USER; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 200 extern inline pte_t pte_mkexec(pte_t pte)       { pte_val(pte) |= _PAGE_USER; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 201 extern inline pte_t pte_mkdirty(pte_t pte)      { pte_val(pte) |= _PAGE_DIRTY; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 202 extern inline pte_t pte_mkyoung(pte_t pte)      { pte_val(pte) |= _PAGE_ACCESSED; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 203 extern inline pte_t pte_mkcow(pte_t pte)        { pte_val(pte) |= _PAGE_COW; return pte; }
     /* [previous][next][first][last][top][bottom][index][help] */
 204 
 205 /*
 206  * Conversion functions: convert a page and protection to a page entry,
 207  * and a page entry and page directory to the page they refer to.
 208  */
 209 extern inline pte_t mk_pte(unsigned long page, pgprot_t pgprot)
     /* [previous][next][first][last][top][bottom][index][help] */
 210 { pte_t pte; pte_val(pte) = page | pgprot_val(pgprot); return pte; }
 211 
 212 extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
     /* [previous][next][first][last][top][bottom][index][help] */
 213 { pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; }
 214 
 215 extern inline unsigned long pte_page(pte_t pte)
     /* [previous][next][first][last][top][bottom][index][help] */
 216 { return pte_val(pte) & PAGE_MASK; }
 217 
 218 extern inline unsigned long pmd_page(pmd_t pmd)
     /* [previous][next][first][last][top][bottom][index][help] */
 219 { return pmd_val(pmd) & PAGE_MASK; }
 220 
 221 /* to find an entry in a page-table-directory */
 222 extern inline pgd_t * pgd_offset(struct task_struct * tsk, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 223 {
 224         return (pgd_t *) tsk->tss.cr3 + (address >> PGDIR_SHIFT);
 225 }
 226 
 227 /* Find an entry in the second-level page table.. */
 228 extern inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 229 {
 230         return (pmd_t *) dir;
 231 }
 232 
 233 /* Find an entry in the third-level page table.. */ 
 234 extern inline pte_t * pte_offset(pmd_t * dir, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 235 {
 236         return (pte_t *) pmd_page(*dir) + ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1));
 237 }
 238 
 239 /*
 240  * Allocate and free page tables. The xxx_kernel() versions are
 241  * used to allocate a kernel page table - this turns on ASN bits
 242  * if any, and marks the page tables reserved.
 243  */
 244 extern inline void pte_free_kernel(pte_t * pte)
     /* [previous][next][first][last][top][bottom][index][help] */
 245 {
 246         mem_map[MAP_NR(pte)] = 1;
 247         free_page((unsigned long) pte);
 248 }
 249 
 250 extern inline pte_t * pte_alloc_kernel(pmd_t * pmd, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 251 {
 252         address = (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
 253         if (pmd_none(*pmd)) {
 254                 pte_t * page = (pte_t *) get_free_page(GFP_KERNEL);
 255                 if (pmd_none(*pmd)) {
 256                         if (page) {
 257                                 pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) page;
 258                                 mem_map[MAP_NR(page)] = MAP_PAGE_RESERVED;
 259                                 return page + address;
 260                         }
 261                         pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) BAD_PAGETABLE;
 262                         return NULL;
 263                 }
 264                 free_page((unsigned long) page);
 265         }
 266         if (pmd_bad(*pmd)) {
 267                 printk("Bad pmd in pte_alloc: %08lx\n", pmd_val(*pmd));
 268                 pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) BAD_PAGETABLE;
 269                 return NULL;
 270         }
 271         return (pte_t *) pmd_page(*pmd) + address;
 272 }
 273 
 274 /*
 275  * allocating and freeing a pmd is trivial: the 1-entry pmd is
 276  * inside the pgd, so has no extra memory associated with it.
 277  */
 278 extern inline void pmd_free_kernel(pmd_t * pmd)
     /* [previous][next][first][last][top][bottom][index][help] */
 279 {
 280         pmd_val(*pmd) = 0;
 281 }
 282 
 283 extern inline pmd_t * pmd_alloc_kernel(pgd_t * pgd, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 284 {
 285         return (pmd_t *) pgd;
 286 }
 287 
 288 extern inline void pte_free(pte_t * pte)
     /* [previous][next][first][last][top][bottom][index][help] */
 289 {
 290         free_page((unsigned long) pte);
 291 }
 292 
 293 extern inline pte_t * pte_alloc(pmd_t * pmd, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 294 {
 295         address = (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
 296         if (pmd_none(*pmd)) {
 297                 pte_t * page = (pte_t *) get_free_page(GFP_KERNEL);
 298                 if (pmd_none(*pmd)) {
 299                         if (page) {
 300                                 pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) page;
 301                                 return page + address;
 302                         }
 303                         pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) BAD_PAGETABLE;
 304                         return NULL;
 305                 }
 306                 free_page((unsigned long) page);
 307         }
 308         if (pmd_bad(*pmd)) {
 309                 printk("Bad pmd in pte_alloc: %08lx\n", pmd_val(*pmd));
 310                 pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) BAD_PAGETABLE;
 311                 return NULL;
 312         }
 313         return (pte_t *) pmd_page(*pmd) + address;
 314 }
 315 
 316 /*
 317  * allocating and freeing a pmd is trivial: the 1-entry pmd is
 318  * inside the pgd, so has no extra memory associated with it.
 319  */
 320 extern inline void pmd_free(pmd_t * pmd)
     /* [previous][next][first][last][top][bottom][index][help] */
 321 {
 322         pmd_val(*pmd) = 0;
 323 }
 324 
 325 extern inline pmd_t * pmd_alloc(pgd_t * pgd, unsigned long address)
     /* [previous][next][first][last][top][bottom][index][help] */
 326 {
 327         return (pmd_t *) pgd;
 328 }
 329 
 330 extern inline void pgd_free(pgd_t * pgd)
     /* [previous][next][first][last][top][bottom][index][help] */
 331 {
 332         free_page((unsigned long) pgd);
 333 }
 334 
 335 extern inline pgd_t * pgd_alloc(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 336 {
 337         return (pgd_t *) get_free_page(GFP_KERNEL);
 338 }
 339 
 340 extern pgd_t swapper_pg_dir[1024];
 341 
 342 /*
 343  * The i386 doesn't have any external MMU info: the kernel page
 344  * tables contain all the necessary information.
 345  */
 346 extern inline void update_mmu_cache(struct vm_area_struct * vma,
     /* [previous][next][first][last][top][bottom][index][help] */
 347         unsigned long address, pte_t pte)
 348 {
 349 }
 350 
 351 #define SWP_TYPE(entry) (((entry) >> 1) & 0x7f)
 352 #define SWP_OFFSET(entry) ((entry) >> 8)
 353 #define SWP_ENTRY(type,offset) (((type) << 1) | ((offset) << 8))
 354 
 355 #endif /* _I386_PAGE_H */

/* [previous][next][first][last][top][bottom][index][help] */