page.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _I386_PAGE_H
  2. #define _I386_PAGE_H
  3. /* PAGE_SHIFT determines the page size */
  4. #define PAGE_SHIFT 12
  5. #define PAGE_SIZE (1UL << PAGE_SHIFT)
  6. #define PAGE_MASK (~(PAGE_SIZE-1))
  7. #ifdef __KERNEL__
  8. #ifndef __ASSEMBLY__
  9. #include <linux/config.h>
  10. #ifdef CONFIG_X86_USE_3DNOW
  11. #include <asm/mmx.h>
  12. #define clear_page(page) mmx_clear_page((void *)(page))
  13. #define copy_page(to,from) mmx_copy_page(to,from)
  14. #else
  15. /*
  16.  * On older X86 processors its not a win to use MMX here it seems.
  17.  * Maybe the K6-III ?
  18.  */
  19.  
  20. #define clear_page(page) memset((void *)(page), 0, PAGE_SIZE)
  21. #define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
  22. #endif
  23. #define clear_user_page(page, vaddr) clear_page(page)
  24. #define copy_user_page(to, from, vaddr) copy_page(to, from)
  25. /*
  26.  * These are used to make use of C type-checking..
  27.  */
  28. #if CONFIG_X86_PAE
  29. typedef struct { unsigned long pte_low, pte_high; } pte_t;
  30. typedef struct { unsigned long long pmd; } pmd_t;
  31. typedef struct { unsigned long long pgd; } pgd_t;
  32. #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
  33. #else
  34. typedef struct { unsigned long pte_low; } pte_t;
  35. typedef struct { unsigned long pmd; } pmd_t;
  36. typedef struct { unsigned long pgd; } pgd_t;
  37. #define pte_val(x) ((x).pte_low)
  38. #endif
  39. #define PTE_MASK PAGE_MASK
  40. typedef struct { unsigned long pgprot; } pgprot_t;
  41. #define pmd_val(x) ((x).pmd)
  42. #define pgd_val(x) ((x).pgd)
  43. #define pgprot_val(x) ((x).pgprot)
  44. #define __pte(x) ((pte_t) { (x) } )
  45. #define __pmd(x) ((pmd_t) { (x) } )
  46. #define __pgd(x) ((pgd_t) { (x) } )
  47. #define __pgprot(x) ((pgprot_t) { (x) } )
  48. #endif /* !__ASSEMBLY__ */
  49. /* to align the pointer to the (next) page boundary */
  50. #define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
  51. /*
  52.  * This handles the memory map.. We could make this a config
  53.  * option, but too many people screw it up, and too few need
  54.  * it.
  55.  *
  56.  * A __PAGE_OFFSET of 0xC0000000 means that the kernel has
  57.  * a virtual address space of one gigabyte, which limits the
  58.  * amount of physical memory you can use to about 950MB. 
  59.  *
  60.  * If you want more physical memory than this then see the CONFIG_HIGHMEM4G
  61.  * and CONFIG_HIGHMEM64G options in the kernel configuration.
  62.  */
  63. #define __PAGE_OFFSET (0xC0000000)
  64. /*
  65.  * This much address space is reserved for vmalloc() and iomap()
  66.  * as well as fixmap mappings.
  67.  */
  68. #define __VMALLOC_RESERVE (128 << 20)
  69. #ifndef __ASSEMBLY__
  70. /*
  71.  * Tell the user there is some problem. Beep too, so we can
  72.  * see^H^H^Hhear bugs in early bootup as well!
  73.  * The offending file and line are encoded after the "officially
  74.  * undefined" opcode for parsing in the trap handler.
  75.  */
  76. #if 1 /* Set to zero for a slightly smaller kernel */
  77. #define BUG()
  78.  __asm__ __volatile__( "ud2n"
  79. "t.word %c0n"
  80. "t.long %c1n"
  81.  : : "i" (__LINE__), "i" (__FILE__))
  82. #else
  83. #define BUG() __asm__ __volatile__("ud2n")
  84. #endif
  85. #define PAGE_BUG(page) do { 
  86. BUG(); 
  87. } while (0)
  88. /* Pure 2^n version of get_order */
  89. static __inline__ int get_order(unsigned long size)
  90. {
  91. int order;
  92. size = (size-1) >> (PAGE_SHIFT-1);
  93. order = -1;
  94. do {
  95. size >>= 1;
  96. order++;
  97. } while (size);
  98. return order;
  99. }
  100. #endif /* __ASSEMBLY__ */
  101. #define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
  102. #define VMALLOC_RESERVE ((unsigned long)__VMALLOC_RESERVE)
  103. #define __MAXMEM (-__PAGE_OFFSET-__VMALLOC_RESERVE)
  104. #define MAXMEM ((unsigned long)(-PAGE_OFFSET-VMALLOC_RESERVE))
  105. #define __pa(x) ((unsigned long)(x)-PAGE_OFFSET)
  106. #define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET))
  107. #define virt_to_page(kaddr) (mem_map + (__pa(kaddr) >> PAGE_SHIFT))
  108. #define VALID_PAGE(page) ((page - mem_map) < max_mapnr)
  109. #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | 
  110.  VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
  111. #endif /* __KERNEL__ */
  112. #endif /* _I386_PAGE_H */