page.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. #define __MEMORY_START CONFIG_MEMORY_START
  49. #define __MEMORY_SIZE CONFIG_MEMORY_SIZE
  50. #ifdef CONFIG_MMU
  51. #define __PAGE_OFFSET (0x80000000)
  52. #else
  53. #define __PAGE_OFFSET (0x00000000)
  54. #endif
  55. #define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
  56. #define __pa(x) ((unsigned long)(x) - PAGE_OFFSET)
  57. #define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET))
  58. #ifndef CONFIG_DISCONTIGMEM
  59. #define PFN_BASE (CONFIG_MEMORY_START >> PAGE_SHIFT)
  60. #define pfn_to_page(pfn) (mem_map + ((pfn) - PFN_BASE))
  61. #define page_to_pfn(page) \
  62. ((unsigned long)((page) - mem_map) + PFN_BASE)
  63. #define pfn_valid(pfn) (((pfn) - PFN_BASE) < max_mapnr)
  64. #endif /* !CONFIG_DISCONTIGMEM */
  65. #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
  66. #define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
  67. #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
  68. VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC )
  69. #define devmem_is_allowed(x) 1
  70. #endif /* __KERNEL__ */
  71. #include <asm-generic/page.h>
  72. #endif /* _ASM_M32R_PAGE_H */