page.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

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.  */
  74. #ifdef CONFIG_DEBUG_BUGVERBOSE
  75. extern void do_BUG(const char *file, int line);
  76. #define BUG() do {
  77. do_BUG(__FILE__, __LINE__);
  78. __asm__ __volatile__("ud2");
  79. } while (0)
  80. #else
  81. #define BUG() __asm__ __volatile__(".byte 0x0f,0x0b")
  82. #endif
  83. #define PAGE_BUG(page) do { 
  84. BUG(); 
  85. } while (0)
  86. /* Pure 2^n version of get_order */
  87. static __inline__ int get_order(unsigned long size)
  88. {
  89. int order;
  90. size = (size-1) >> (PAGE_SHIFT-1);
  91. order = -1;
  92. do {
  93. size >>= 1;
  94. order++;
  95. } while (size);
  96. return order;
  97. }
  98. #endif /* __ASSEMBLY__ */
  99. #define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
  100. #define VMALLOC_RESERVE ((unsigned long)__VMALLOC_RESERVE)
  101. #define __MAXMEM (-__PAGE_OFFSET-__VMALLOC_RESERVE)
  102. #define MAXMEM ((unsigned long)(-PAGE_OFFSET-VMALLOC_RESERVE))
  103. #define __pa(x) ((unsigned long)(x)-PAGE_OFFSET)
  104. #define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET))
  105. #define virt_to_page(kaddr) (mem_map + (__pa(kaddr) >> PAGE_SHIFT))
  106. #define VALID_PAGE(page) ((page - mem_map) < max_mapnr)
  107. #endif /* __KERNEL__ */
  108. #endif /* _I386_PAGE_H */