blob: 1eca0deaf89b0c9683c53aca4eed1117d3d88506 [file] [log] [blame]
Aneesh Kumar K.V48483762016-04-29 23:26:25 +10001#include <linux/mm.h>
2#include <linux/hugetlb.h>
3#include <asm/pgtable.h>
4#include <asm/pgalloc.h>
5#include <asm/cacheflush.h>
6#include <asm/machdep.h>
7#include <asm/mman.h>
Aneesh Kumar K.Vfbfa26d2016-07-13 15:06:42 +05308#include <asm/tlb.h>
Aneesh Kumar K.V48483762016-04-29 23:26:25 +10009
10void radix__flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
11{
Aneesh Kumar K.Vfbfa26d2016-07-13 15:06:42 +053012 int psize;
Aneesh Kumar K.V48483762016-04-29 23:26:25 +100013 struct hstate *hstate = hstate_file(vma->vm_file);
14
Aneesh Kumar K.Vfbfa26d2016-07-13 15:06:42 +053015 psize = hstate_get_psize(hstate);
16 radix__flush_tlb_page_psize(vma->vm_mm, vmaddr, psize);
Aneesh Kumar K.V48483762016-04-29 23:26:25 +100017}
18
19void radix__local_flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
20{
Aneesh Kumar K.Vfbfa26d2016-07-13 15:06:42 +053021 int psize;
Aneesh Kumar K.V48483762016-04-29 23:26:25 +100022 struct hstate *hstate = hstate_file(vma->vm_file);
23
Aneesh Kumar K.Vfbfa26d2016-07-13 15:06:42 +053024 psize = hstate_get_psize(hstate);
25 radix__local_flush_tlb_page_psize(vma->vm_mm, vmaddr, psize);
Aneesh Kumar K.V48483762016-04-29 23:26:25 +100026}
27
28/*
29 * A vairant of hugetlb_get_unmapped_area doing topdown search
30 * FIXME!! should we do as x86 does or non hugetlb area does ?
31 * ie, use topdown or not based on mmap_is_legacy check ?
32 */
33unsigned long
34radix__hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
35 unsigned long len, unsigned long pgoff,
36 unsigned long flags)
37{
38 struct mm_struct *mm = current->mm;
39 struct vm_area_struct *vma;
40 struct hstate *h = hstate_file(file);
41 struct vm_unmapped_area_info info;
42
43 if (len & ~huge_page_mask(h))
44 return -EINVAL;
45 if (len > TASK_SIZE)
46 return -ENOMEM;
47
48 if (flags & MAP_FIXED) {
49 if (prepare_hugepage_range(file, addr, len))
50 return -EINVAL;
51 return addr;
52 }
53
54 if (addr) {
55 addr = ALIGN(addr, huge_page_size(h));
56 vma = find_vma(mm, addr);
57 if (TASK_SIZE - len >= addr &&
58 (!vma || addr + len <= vma->vm_start))
59 return addr;
60 }
61 /*
62 * We are always doing an topdown search here. Slice code
63 * does that too.
64 */
65 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
66 info.length = len;
67 info.low_limit = PAGE_SIZE;
68 info.high_limit = current->mm->mmap_base;
69 info.align_mask = PAGE_MASK & ~huge_page_mask(h);
70 info.align_offset = 0;
71 return vm_unmapped_area(&info);
72}