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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _CRIS_PAGE_H
  2. #define _CRIS_PAGE_H
  3. #include <linux/config.h>
  4. #include <asm/mmu.h>
  5. /* PAGE_SHIFT determines the page size */
  6. #define PAGE_SHIFT 13
  7. #define PAGE_SIZE (1UL << PAGE_SHIFT)
  8. #define PAGE_MASK (~(PAGE_SIZE-1))
  9. #ifdef __KERNEL__
  10. #define clear_page(page)        memset((void *)(page), 0, PAGE_SIZE)
  11. #define copy_page(to,from)      memcpy((void *)(to), (void *)(from), PAGE_SIZE)
  12. #define clear_user_page(page, vaddr)    clear_page(page)
  13. #define copy_user_page(to, from, vaddr) copy_page(to, from)
  14. #define STRICT_MM_TYPECHECKS
  15. #ifdef STRICT_MM_TYPECHECKS
  16. /*
  17.  * These are used to make use of C type-checking..
  18.  */
  19. typedef struct { unsigned long pte; } pte_t;
  20. typedef struct { unsigned long pmd; } pmd_t;
  21. typedef struct { unsigned long pgd; } pgd_t;
  22. typedef struct { unsigned long pgprot; } pgprot_t;
  23. #define pte_val(x) ((x).pte)
  24. #define pmd_val(x) ((x).pmd)
  25. #define pgd_val(x) ((x).pgd)
  26. #define pgprot_val(x) ((x).pgprot)
  27. #define __pte(x) ((pte_t) { (x) } )
  28. #define __pmd(x) ((pmd_t) { (x) } )
  29. #define __pgd(x) ((pgd_t) { (x) } )
  30. #define __pgprot(x) ((pgprot_t) { (x) } )
  31. #else
  32. /*
  33.  * .. while these make it easier on the compiler
  34.  */
  35. typedef unsigned long pte_t;
  36. typedef unsigned long pmd_t;
  37. typedef unsigned long pgd_t;
  38. typedef unsigned long pgprot_t;
  39. #define pte_val(x) (x)
  40. #define pmd_val(x) (x)
  41. #define pgd_val(x) (x)
  42. #define pgprot_val(x) (x)
  43. #define __pte(x) (x)
  44. #define __pmd(x) (x)
  45. #define __pgd(x) (x)
  46. #define __pgprot(x) (x)
  47. #endif
  48. /* to align the pointer to the (next) page boundary */
  49. #define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
  50. /* This handles the memory map.. */
  51. #ifdef CONFIG_CRIS_LOW_MAP
  52. #define PAGE_OFFSET KSEG_6   /* kseg_6 is mapped to physical ram */
  53. #else
  54. #define PAGE_OFFSET KSEG_C   /* kseg_c is mapped to physical ram */
  55. #endif
  56. #ifndef __ASSEMBLY__
  57. #define BUG() do { 
  58.   printk("kernel BUG at %s:%d!n", __FILE__, __LINE__); 
  59. } while (0)
  60. #define PAGE_BUG(page) do { 
  61.          BUG(); 
  62. } while (0)
  63. #endif /* __ASSEMBLY__ */
  64. /* macros to convert between really physical and virtual addresses
  65.  * by stripping a selected bit, we can convert between KSEG_x and 0x40000000 where
  66.  * the DRAM really resides
  67.  */
  68. #ifdef CONFIG_CRIS_LOW_MAP
  69. /* we have DRAM virtually at 0x6 */
  70. #define __pa(x)                 ((unsigned long)(x) & 0xdfffffff)
  71. #define __va(x)                 ((void *)((unsigned long)(x) | 0x20000000))
  72. #else
  73. /* we have DRAM virtually at 0xc */
  74. #define __pa(x)                 ((unsigned long)(x) & 0x7fffffff)
  75. #define __va(x)                 ((void *)((unsigned long)(x) | 0x80000000))
  76. #endif
  77. /* to index into the page map. our pages all start at physical addr PAGE_OFFSET so
  78.  * we can let the map start there. notice that we subtract PAGE_OFFSET because
  79.  * we start our mem_map there - in other ports they map mem_map physically and
  80.  * use __pa instead. in our system both the physical and virtual address of DRAM
  81.  * is too high to let mem_map start at 0, so we do it this way instead (similar
  82.  * to arm and m68k I think)
  83.  */ 
  84. #define virt_to_page(kaddr)    (mem_map + (((unsigned long)kaddr - PAGE_OFFSET) >> PAGE_SHIFT))
  85. #define VALID_PAGE(page)       ((page - mem_map) < max_mapnr)
  86. /* from linker script */
  87. extern unsigned long dram_start, dram_end;
  88. #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | 
  89.  VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
  90. #endif /* __KERNEL__ */
  91. #endif /* _CRIS_PAGE_H */