page.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #ifndef _CRIS_PAGE_H
  2. #define _CRIS_PAGE_H
  3. #include <linux/config.h>
  4. #include <asm/arch/page.h>
  5. /* PAGE_SHIFT determines the page size */
  6. #define PAGE_SHIFT 13
  7. #ifndef __ASSEMBLY__
  8. #define PAGE_SIZE (1UL << PAGE_SHIFT)
  9. #else
  10. #define PAGE_SIZE (1 << PAGE_SHIFT)
  11. #endif
  12. #define PAGE_MASK (~(PAGE_SIZE-1))
  13. #ifdef __KERNEL__
  14. #define clear_page(page) memset((void *)(page), 0, PAGE_SIZE)
  15. #define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
  16. #define clear_user_page(page, vaddr, pg) clear_page(page)
  17. #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
  18. #define alloc_zeroed_user_highpage(vma, vaddr) alloc_page_vma(GFP_HIGHUSER | __GFP_ZERO, vma, vaddr)
  19. #define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
  20. /*
  21. * These are used to make use of C type-checking..
  22. */
  23. #ifndef __ASSEMBLY__
  24. typedef struct { unsigned long pte; } pte_t;
  25. typedef struct { unsigned long pgd; } pgd_t;
  26. typedef struct { unsigned long pgprot; } pgprot_t;
  27. #endif
  28. #define pte_val(x) ((x).pte)
  29. #define pgd_val(x) ((x).pgd)
  30. #define pgprot_val(x) ((x).pgprot)
  31. #define __pte(x) ((pte_t) { (x) } )
  32. #define __pgd(x) ((pgd_t) { (x) } )
  33. #define __pgprot(x) ((pgprot_t) { (x) } )
  34. /* On CRIS the PFN numbers doesn't start at 0 so we have to compensate */
  35. /* for that before indexing into the page table starting at mem_map */
  36. #define ARCH_PFN_OFFSET (PAGE_OFFSET >> PAGE_SHIFT)
  37. #define pfn_valid(pfn) (((pfn) - (PAGE_OFFSET >> PAGE_SHIFT)) < max_mapnr)
  38. /* to index into the page map. our pages all start at physical addr PAGE_OFFSET so
  39. * we can let the map start there. notice that we subtract PAGE_OFFSET because
  40. * we start our mem_map there - in other ports they map mem_map physically and
  41. * use __pa instead. in our system both the physical and virtual address of DRAM
  42. * is too high to let mem_map start at 0, so we do it this way instead (similar
  43. * to arm and m68k I think)
  44. */
  45. #define virt_to_page(kaddr) (mem_map + (((unsigned long)(kaddr) - PAGE_OFFSET) >> PAGE_SHIFT))
  46. #define VALID_PAGE(page) (((page) - mem_map) < max_mapnr)
  47. #define virt_addr_valid(kaddr) pfn_valid((unsigned)(kaddr) >> PAGE_SHIFT)
  48. /* convert a page (based on mem_map and forward) to a physical address
  49. * do this by figuring out the virtual address and then use __pa
  50. */
  51. #define page_to_phys(page) __pa((((page) - mem_map) << PAGE_SHIFT) + PAGE_OFFSET)
  52. /* to align the pointer to the (next) page boundary */
  53. #define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
  54. #ifndef __ASSEMBLY__
  55. #endif /* __ASSEMBLY__ */
  56. #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
  57. VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
  58. #endif /* __KERNEL__ */
  59. #include <asm-generic/memory_model.h>
  60. #include <asm-generic/page.h>
  61. #endif /* _CRIS_PAGE_H */