page.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. #ifndef _ASM_M32R_PAGE_H
  2. #define _ASM_M32R_PAGE_H
  3. #include <linux/config.h>
  4. /* PAGE_SHIFT determines the page size */
  5. #define PAGE_SHIFT 12
  6. #define PAGE_SIZE (1UL << PAGE_SHIFT)
  7. #define PAGE_MASK (~(PAGE_SIZE-1))
  8. #ifdef __KERNEL__
  9. #ifndef __ASSEMBLY__
  10. extern void clear_page(void *to);
  11. extern void copy_page(void *to, void *from);
  12. #define clear_user_page(page, vaddr, pg) clear_page(page)
  13. #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
  14. #define alloc_zeroed_user_highpage(vma, vaddr) alloc_page_vma(GFP_HIGHUSER | __GFP_ZERO, vma, vaddr)
  15. #define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
  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. #define pte_val(x) ((x).pte)
  23. #define PTE_MASK PAGE_MASK
  24. typedef struct { unsigned long pgprot; } pgprot_t;
  25. #define pmd_val(x) ((x).pmd)
  26. #define pgd_val(x) ((x).pgd)
  27. #define pgprot_val(x) ((x).pgprot)
  28. #define __pte(x) ((pte_t) { (x) } )
  29. #define __pmd(x) ((pmd_t) { (x) } )
  30. #define __pgd(x) ((pgd_t) { (x) } )
  31. #define __pgprot(x) ((pgprot_t) { (x) } )
  32. #endif /* !__ASSEMBLY__ */
  33. /* to align the pointer to the (next) page boundary */
  34. #define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
  35. /*
  36. * This handles the memory map.. We could make this a config
  37. * option, but too many people screw it up, and too few need
  38. * it.
  39. *
  40. * A __PAGE_OFFSET of 0xC0000000 means that the kernel has
  41. * a virtual address space of one gigabyte, which limits the
  42. * amount of physical memory you can use to about 950MB.
  43. *
  44. * If you want more physical memory than this then see the CONFIG_HIGHMEM4G
  45. * and CONFIG_HIGHMEM64G options in the kernel configuration.
  46. */
  47. /* This handles the memory map.. */
  48. #ifndef __ASSEMBLY__
  49. /* Pure 2^n version of get_order */
  50. static __inline__ int get_order(unsigned long size)
  51. {
  52. int order;
  53. size = (size - 1) >> (PAGE_SHIFT - 1);
  54. order = -1;
  55. do {
  56. size >>= 1;
  57. order++;
  58. } while (size);
  59. return order;
  60. }
  61. #endif /* __ASSEMBLY__ */
  62. #define __MEMORY_START CONFIG_MEMORY_START
  63. #define __MEMORY_SIZE CONFIG_MEMORY_SIZE
  64. #ifdef CONFIG_MMU
  65. #define __PAGE_OFFSET (0x80000000)
  66. #else
  67. #define __PAGE_OFFSET (0x00000000)
  68. #endif
  69. #define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
  70. #define __pa(x) ((unsigned long)(x) - PAGE_OFFSET)
  71. #define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET))
  72. #ifndef CONFIG_DISCONTIGMEM
  73. #define PFN_BASE (CONFIG_MEMORY_START >> PAGE_SHIFT)
  74. #define pfn_to_page(pfn) (mem_map + ((pfn) - PFN_BASE))
  75. #define page_to_pfn(page) \
  76. ((unsigned long)((page) - mem_map) + PFN_BASE)
  77. #define pfn_valid(pfn) (((pfn) - PFN_BASE) < max_mapnr)
  78. #endif /* !CONFIG_DISCONTIGMEM */
  79. #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
  80. #define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
  81. #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
  82. VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC )
  83. #define devmem_is_allowed(x) 1
  84. #endif /* __KERNEL__ */
  85. #endif /* _ASM_M32R_PAGE_H */