2 * arch/metag/mm/hugetlbpage.c
4 * METAG HugeTLB page support.
8 * Cloned from sparc64 by Paul Mundt.
10 * Copyright (C) 2002, 2003 David S. Miller (davem@redhat.com)
13 #include <linux/init.h>
16 #include <linux/hugetlb.h>
17 #include <linux/pagemap.h>
18 #include <linux/sysctl.h>
21 #include <asm/pgalloc.h>
23 #include <asm/tlbflush.h>
24 #include <asm/cacheflush.h>
27 * If the arch doesn't supply something else, assume that hugepage
28 * size aligned regions are ok without further preparation.
30 int prepare_hugepage_range(struct file
*file
, unsigned long addr
,
33 struct mm_struct
*mm
= current
->mm
;
34 struct hstate
*h
= hstate_file(file
);
35 struct vm_area_struct
*vma
;
37 if (len
& ~huge_page_mask(h
))
39 if (addr
& ~huge_page_mask(h
))
41 if (TASK_SIZE
- len
< addr
)
44 vma
= find_vma(mm
, ALIGN_HUGEPT(addr
));
45 if (vma
&& !(vma
->vm_flags
& MAP_HUGETLB
))
48 vma
= find_vma(mm
, addr
);
50 if (addr
+ len
> vma
->vm_start
)
52 if (!(vma
->vm_flags
& MAP_HUGETLB
) &&
53 (ALIGN_HUGEPT(addr
+ len
) > vma
->vm_start
))
59 pte_t
*huge_pte_alloc(struct mm_struct
*mm
,
60 unsigned long addr
, unsigned long sz
)
67 pgd
= pgd_offset(mm
, addr
);
68 pud
= pud_offset(pgd
, addr
);
69 pmd
= pmd_offset(pud
, addr
);
70 pte
= pte_alloc_map(mm
, NULL
, pmd
, addr
);
71 pgd
->pgd
&= ~_PAGE_SZ_MASK
;
72 pgd
->pgd
|= _PAGE_SZHUGE
;
77 pte_t
*huge_pte_offset(struct mm_struct
*mm
, unsigned long addr
)
84 pgd
= pgd_offset(mm
, addr
);
85 pud
= pud_offset(pgd
, addr
);
86 pmd
= pmd_offset(pud
, addr
);
87 pte
= pte_offset_kernel(pmd
, addr
);
92 int huge_pmd_unshare(struct mm_struct
*mm
, unsigned long *addr
, pte_t
*ptep
)
97 struct page
*follow_huge_addr(struct mm_struct
*mm
,
98 unsigned long address
, int write
)
100 return ERR_PTR(-EINVAL
);
103 int pmd_huge(pmd_t pmd
)
105 return pmd_page_shift(pmd
) > PAGE_SHIFT
;
108 int pud_huge(pud_t pud
)
113 struct page
*follow_huge_pmd(struct mm_struct
*mm
, unsigned long address
,
114 pmd_t
*pmd
, int write
)
119 #ifdef HAVE_ARCH_HUGETLB_UNMAPPED_AREA
122 * Look for an unmapped area starting after another hugetlb vma.
123 * There are guaranteed to be no huge pte's spare if all the huge pages are
124 * full size (4MB), so in that case compile out this search.
126 #if HPAGE_SHIFT == HUGEPT_SHIFT
127 static inline unsigned long
128 hugetlb_get_unmapped_area_existing(unsigned long len
)
134 hugetlb_get_unmapped_area_existing(unsigned long len
)
136 struct mm_struct
*mm
= current
->mm
;
137 struct vm_area_struct
*vma
;
138 unsigned long start_addr
, addr
;
141 if (mm
->context
.part_huge
) {
142 start_addr
= mm
->context
.part_huge
;
145 start_addr
= TASK_UNMAPPED_BASE
;
151 for (vma
= find_vma(mm
, addr
); ; vma
= vma
->vm_next
) {
152 if ((!vma
&& !after_huge
) || TASK_SIZE
- len
< addr
) {
154 * Start a new search - just in case we missed
157 if (start_addr
!= TASK_UNMAPPED_BASE
) {
158 start_addr
= TASK_UNMAPPED_BASE
;
163 /* skip ahead if we've aligned right over some vmas */
164 if (vma
&& vma
->vm_end
<= addr
)
166 /* space before the next vma? */
167 if (after_huge
&& (!vma
|| ALIGN_HUGEPT(addr
+ len
)
169 unsigned long end
= addr
+ len
;
170 if (end
& HUGEPT_MASK
)
171 mm
->context
.part_huge
= end
;
172 else if (addr
== mm
->context
.part_huge
)
173 mm
->context
.part_huge
= 0;
176 if (vma
&& (vma
->vm_flags
& MAP_HUGETLB
)) {
177 /* space after a huge vma in 2nd level page table? */
178 if (vma
->vm_end
& HUGEPT_MASK
) {
180 /* no need to align to the next PT block */
186 addr
= ALIGN_HUGEPT(vma
->vm_end
);
191 /* Do a full search to find an area without any nearby normal pages. */
193 hugetlb_get_unmapped_area_new_pmd(unsigned long len
)
195 struct vm_unmapped_area_info info
;
199 info
.low_limit
= TASK_UNMAPPED_BASE
;
200 info
.high_limit
= TASK_SIZE
;
201 info
.align_mask
= PAGE_MASK
& HUGEPT_MASK
;
202 info
.align_offset
= 0;
203 return vm_unmapped_area(&info
);
207 hugetlb_get_unmapped_area(struct file
*file
, unsigned long addr
,
208 unsigned long len
, unsigned long pgoff
, unsigned long flags
)
210 struct hstate
*h
= hstate_file(file
);
212 if (len
& ~huge_page_mask(h
))
217 if (flags
& MAP_FIXED
) {
218 if (prepare_hugepage_range(file
, addr
, len
))
224 addr
= ALIGN(addr
, huge_page_size(h
));
225 if (!prepare_hugepage_range(file
, addr
, len
))
230 * Look for an existing hugetlb vma with space after it (this is to to
231 * minimise fragmentation caused by huge pages.
233 addr
= hugetlb_get_unmapped_area_existing(len
);
238 * Find an unmapped naturally aligned set of 4MB blocks that we can use
241 return hugetlb_get_unmapped_area_new_pmd(len
);
244 #endif /*HAVE_ARCH_HUGETLB_UNMAPPED_AREA*/
246 /* necessary for boot time 4MB huge page allocation */
247 static __init
int setup_hugepagesz(char *opt
)
249 unsigned long ps
= memparse(opt
, &opt
);
250 if (ps
== (1 << HPAGE_SHIFT
)) {
251 hugetlb_add_hstate(HPAGE_SHIFT
- PAGE_SHIFT
);
253 pr_err("hugepagesz: Unsupported page size %lu M\n",
259 __setup("hugepagesz=", setup_hugepagesz
);