page.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Based on arch/arm/include/asm/page.h
  3. *
  4. * Copyright (C) 1995-2003 Russell King
  5. * Copyright (C) 2012 ARM Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __ASM_PAGE_H
  20. #define __ASM_PAGE_H
  21. #include <linux/const.h>
  22. /* PAGE_SHIFT determines the page size */
  23. /* CONT_SHIFT determines the number of pages which can be tracked together */
  24. #ifdef CONFIG_ARM64_64K_PAGES
  25. #define PAGE_SHIFT 16
  26. #define CONT_SHIFT 5
  27. #elif defined(CONFIG_ARM64_16K_PAGES)
  28. #define PAGE_SHIFT 14
  29. #define CONT_SHIFT 7
  30. #else
  31. #define PAGE_SHIFT 12
  32. #define CONT_SHIFT 4
  33. #endif
  34. #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
  35. #define PAGE_MASK (~(PAGE_SIZE-1))
  36. #define CONT_SIZE (_AC(1, UL) << (CONT_SHIFT + PAGE_SHIFT))
  37. #define CONT_MASK (~(CONT_SIZE-1))
  38. #ifndef __ASSEMBLY__
  39. #include <asm/pgtable-types.h>
  40. extern void __cpu_clear_user_page(void *p, unsigned long user);
  41. extern void __cpu_copy_user_page(void *to, const void *from,
  42. unsigned long user);
  43. extern void copy_page(void *to, const void *from);
  44. extern void clear_page(void *to);
  45. #define clear_user_page(addr,vaddr,pg) __cpu_clear_user_page(addr, vaddr)
  46. #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr)
  47. typedef struct page *pgtable_t;
  48. #ifdef CONFIG_HAVE_ARCH_PFN_VALID
  49. extern int pfn_valid(unsigned long);
  50. #endif
  51. #include <asm/memory.h>
  52. #endif /* !__ASSEMBLY__ */
  53. #define VM_DATA_DEFAULT_FLAGS \
  54. (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \
  55. VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
  56. #include <asm-generic/getorder.h>
  57. #endif