page.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/page.h
  3.  *
  4.  *  Copyright (C) 1995-2003 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #ifndef _ASMARM_PAGE_H
  11. #define _ASMARM_PAGE_H
  12. #include <linux/config.h>
  13. /* PAGE_SHIFT determines the page size */
  14. #define PAGE_SHIFT 12
  15. #define PAGE_SIZE (1UL << PAGE_SHIFT)
  16. #define PAGE_MASK (~(PAGE_SIZE-1))
  17. #ifdef __KERNEL__
  18. /* to align the pointer to the (next) page boundary */
  19. #define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
  20. #ifndef __ASSEMBLY__
  21. #include <asm/glue.h>
  22. /*
  23.  * User Space Model
  24.  * ================
  25.  *
  26.  * This section selects the correct set of functions for dealing with
  27.  * page-based copying and clearing for user space for the particular
  28.  * processor(s) we're building for.
  29.  *
  30.  * We have the following to choose from:
  31.  *   v3 - ARMv3
  32.  *   v4wt - ARMv4 with writethrough cache, without minicache
  33.  *   v4wb - ARMv4 with writeback cache, without minicache
  34.  *   v4_mc - ARMv4 with minicache
  35.  *   xscale - Xscale
  36.  */
  37. #undef _USER
  38. #undef MULTI_USER
  39. #ifdef CONFIG_CPU_COPY_V3
  40. # ifdef _USER
  41. #  define MULTI_USER 1
  42. # else
  43. #  define _USER v3
  44. # endif
  45. #endif
  46. #ifdef CONFIG_CPU_COPY_V4WT
  47. # ifdef _USER
  48. #  define MULTI_USER 1
  49. # else
  50. #  define _USER v4wt
  51. # endif
  52. #endif
  53. #ifdef CONFIG_CPU_COPY_V4WB
  54. # ifdef _USER
  55. #  define MULTI_USER 1
  56. # else
  57. #  define _USER v4wb
  58. # endif
  59. #endif
  60. #ifdef CONFIG_CPU_SA1100
  61. # ifdef _USER
  62. #  define MULTI_USER 1
  63. # else
  64. #  define _USER v4_mc
  65. # endif
  66. #endif
  67. #ifdef CONFIG_CPU_XSCALE
  68. # ifdef _USER
  69. #  define MULTI_USER 1
  70. # else
  71. #  define _USER xscale_mc
  72. # endif
  73. #endif
  74. #ifdef CONFIG_CPU_COPY_V6
  75. # define MULTI_USER 1
  76. #endif
  77. #if !defined(_USER) && !defined(MULTI_USER)
  78. #error Unknown user operations model
  79. #endif
  80. struct cpu_user_fns {
  81. void (*cpu_clear_user_page)(void *p, unsigned long user);
  82. void (*cpu_copy_user_page)(void *to, const void *from,
  83.    unsigned long user);
  84. };
  85. #ifdef MULTI_USER
  86. extern struct cpu_user_fns cpu_user;
  87. #define __cpu_clear_user_page cpu_user.cpu_clear_user_page
  88. #define __cpu_copy_user_page cpu_user.cpu_copy_user_page
  89. #else
  90. #define __cpu_clear_user_page __glue(_USER,_clear_user_page)
  91. #define __cpu_copy_user_page __glue(_USER,_copy_user_page)
  92. extern void __cpu_clear_user_page(void *p, unsigned long user);
  93. extern void __cpu_copy_user_page(void *to, const void *from,
  94.  unsigned long user);
  95. #endif
  96. #define clear_user_page(addr,vaddr,pg)  __cpu_clear_user_page(addr, vaddr)
  97. #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr)
  98. #define clear_page(page) memzero((void *)(page), PAGE_SIZE)
  99. extern void copy_page(void *to, const void *from);
  100. #undef STRICT_MM_TYPECHECKS
  101. #ifdef STRICT_MM_TYPECHECKS
  102. /*
  103.  * These are used to make use of C type-checking..
  104.  */
  105. typedef struct { unsigned long pte; } pte_t;
  106. typedef struct { unsigned long pmd; } pmd_t;
  107. typedef struct { unsigned long pgd[2]; } pgd_t;
  108. typedef struct { unsigned long pgprot; } pgprot_t;
  109. #define pte_val(x)      ((x).pte)
  110. #define pmd_val(x)      ((x).pmd)
  111. #define pgd_val(x) ((x).pgd[0])
  112. #define pgprot_val(x)   ((x).pgprot)
  113. #define __pte(x)        ((pte_t) { (x) } )
  114. #define __pmd(x)        ((pmd_t) { (x) } )
  115. #define __pgprot(x)     ((pgprot_t) { (x) } )
  116. #else
  117. /*
  118.  * .. while these make it easier on the compiler
  119.  */
  120. typedef unsigned long pte_t;
  121. typedef unsigned long pmd_t;
  122. typedef unsigned long pgd_t[2];
  123. typedef unsigned long pgprot_t;
  124. #define pte_val(x)      (x)
  125. #define pmd_val(x)      (x)
  126. #define pgd_val(x) ((x)[0])
  127. #define pgprot_val(x)   (x)
  128. #define __pte(x)        (x)
  129. #define __pmd(x)        (x)
  130. #define __pgprot(x)     (x)
  131. #endif /* STRICT_MM_TYPECHECKS */
  132. /* the upper-most page table pointer */
  133. extern pmd_t *top_pmd;
  134. #include <asm/memory.h>
  135. #endif /* !__ASSEMBLY__ */
  136. #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | 
  137.  VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
  138. #endif /* __KERNEL__ */
  139. #include <asm-generic/page.h>
  140. #endif