pgalloc.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Based on arch/arm/include/asm/pgalloc.h
  3. *
  4. * Copyright (C) 2000-2001 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_PGALLOC_H
  20. #define __ASM_PGALLOC_H
  21. #include <asm/pgtable-hwdef.h>
  22. #include <asm/processor.h>
  23. #include <asm/cacheflush.h>
  24. #include <asm/tlbflush.h>
  25. #define check_pgt_cache() do { } while (0)
  26. #define PGALLOC_GFP (GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO)
  27. #define PGD_SIZE (PTRS_PER_PGD * sizeof(pgd_t))
  28. #if CONFIG_PGTABLE_LEVELS > 2
  29. static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
  30. {
  31. return (pmd_t *)__get_free_page(PGALLOC_GFP);
  32. }
  33. static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
  34. {
  35. BUG_ON((unsigned long)pmd & (PAGE_SIZE-1));
  36. free_page((unsigned long)pmd);
  37. }
  38. static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
  39. {
  40. set_pud(pud, __pud(__pa(pmd) | PMD_TYPE_TABLE));
  41. }
  42. #endif /* CONFIG_PGTABLE_LEVELS > 2 */
  43. #if CONFIG_PGTABLE_LEVELS > 3
  44. static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
  45. {
  46. return (pud_t *)__get_free_page(PGALLOC_GFP);
  47. }
  48. static inline void pud_free(struct mm_struct *mm, pud_t *pud)
  49. {
  50. BUG_ON((unsigned long)pud & (PAGE_SIZE-1));
  51. free_page((unsigned long)pud);
  52. }
  53. static inline void pgd_populate(struct mm_struct *mm, pgd_t *pgd, pud_t *pud)
  54. {
  55. set_pgd(pgd, __pgd(__pa(pud) | PUD_TYPE_TABLE));
  56. }
  57. #endif /* CONFIG_PGTABLE_LEVELS > 3 */
  58. extern pgd_t *pgd_alloc(struct mm_struct *mm);
  59. extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);
  60. static inline pte_t *
  61. pte_alloc_one_kernel(struct mm_struct *mm, unsigned long addr)
  62. {
  63. return (pte_t *)__get_free_page(PGALLOC_GFP);
  64. }
  65. static inline pgtable_t
  66. pte_alloc_one(struct mm_struct *mm, unsigned long addr)
  67. {
  68. struct page *pte;
  69. pte = alloc_pages(PGALLOC_GFP, 0);
  70. if (!pte)
  71. return NULL;
  72. if (!pgtable_page_ctor(pte)) {
  73. __free_page(pte);
  74. return NULL;
  75. }
  76. return pte;
  77. }
  78. /*
  79. * Free a PTE table.
  80. */
  81. static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
  82. {
  83. if (pte)
  84. free_page((unsigned long)pte);
  85. }
  86. static inline void pte_free(struct mm_struct *mm, pgtable_t pte)
  87. {
  88. pgtable_page_dtor(pte);
  89. __free_page(pte);
  90. }
  91. static inline void __pmd_populate(pmd_t *pmdp, phys_addr_t pte,
  92. pmdval_t prot)
  93. {
  94. set_pmd(pmdp, __pmd(pte | prot));
  95. }
  96. /*
  97. * Populate the pmdp entry with a pointer to the pte. This pmd is part
  98. * of the mm address space.
  99. */
  100. static inline void
  101. pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmdp, pte_t *ptep)
  102. {
  103. /*
  104. * The pmd must be loaded with the physical address of the PTE table
  105. */
  106. __pmd_populate(pmdp, __pa(ptep), PMD_TYPE_TABLE);
  107. }
  108. static inline void
  109. pmd_populate(struct mm_struct *mm, pmd_t *pmdp, pgtable_t ptep)
  110. {
  111. __pmd_populate(pmdp, page_to_phys(ptep), PMD_TYPE_TABLE);
  112. }
  113. #define pmd_pgtable(pmd) pmd_page(pmd)
  114. #endif