page.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. /* PAGE_SHIFT determines the page size */
  22. #ifdef CONFIG_ARM64_64K_PAGES
  23. #define PAGE_SHIFT 16
  24. #else
  25. #define PAGE_SHIFT 12
  26. #endif
  27. #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
  28. #define PAGE_MASK (~(PAGE_SIZE-1))
  29. /*
  30. * The idmap and swapper page tables need some space reserved in the kernel
  31. * image. Both require pgd, pud (4 levels only) and pmd tables to (section)
  32. * map the kernel. With the 64K page configuration, swapper and idmap need to
  33. * map to pte level. The swapper also maps the FDT (see __create_page_tables
  34. * for more information). Note that the number of ID map translation levels
  35. * could be increased on the fly if system RAM is out of reach for the default
  36. * VA range, so 3 pages are reserved in all cases.
  37. */
  38. #ifdef CONFIG_ARM64_64K_PAGES
  39. #define SWAPPER_PGTABLE_LEVELS (CONFIG_PGTABLE_LEVELS)
  40. #else
  41. #define SWAPPER_PGTABLE_LEVELS (CONFIG_PGTABLE_LEVELS - 1)
  42. #endif
  43. #define SWAPPER_DIR_SIZE (SWAPPER_PGTABLE_LEVELS * PAGE_SIZE)
  44. #define IDMAP_DIR_SIZE (3 * PAGE_SIZE)
  45. #ifndef __ASSEMBLY__
  46. #include <asm/pgtable-types.h>
  47. extern void __cpu_clear_user_page(void *p, unsigned long user);
  48. extern void __cpu_copy_user_page(void *to, const void *from,
  49. unsigned long user);
  50. extern void copy_page(void *to, const void *from);
  51. extern void clear_page(void *to);
  52. #define clear_user_page(addr,vaddr,pg) __cpu_clear_user_page(addr, vaddr)
  53. #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr)
  54. typedef struct page *pgtable_t;
  55. #ifdef CONFIG_HAVE_ARCH_PFN_VALID
  56. extern int pfn_valid(unsigned long);
  57. #endif
  58. #include <asm/memory.h>
  59. #endif /* !__ASSEMBLY__ */
  60. #define VM_DATA_DEFAULT_FLAGS \
  61. (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \
  62. VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
  63. #include <asm-generic/getorder.h>
  64. #endif