-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powerpc/mm: Add radix support for hugetlb
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
- Loading branch information
Aneesh Kumar K.V
authored and
Michael Ellerman
committed
May 11, 2016
1 parent
2f5f0df
commit 4848376
Showing
6 changed files
with
132 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef _ASM_POWERPC_BOOK3S_64_HUGETLB_RADIX_H | ||
#define _ASM_POWERPC_BOOK3S_64_HUGETLB_RADIX_H | ||
/* | ||
* For radix we want generic code to handle hugetlb. But then if we want | ||
* both hash and radix to be enabled together we need to workaround the | ||
* limitations. | ||
*/ | ||
void radix__flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); | ||
void radix__local_flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); | ||
extern unsigned long | ||
radix__hugetlb_get_unmapped_area(struct file *file, unsigned long addr, | ||
unsigned long len, unsigned long pgoff, | ||
unsigned long flags); | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
#include <linux/mm.h> | ||
#include <linux/hugetlb.h> | ||
#include <asm/pgtable.h> | ||
#include <asm/pgalloc.h> | ||
#include <asm/cacheflush.h> | ||
#include <asm/machdep.h> | ||
#include <asm/mman.h> | ||
|
||
void radix__flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr) | ||
{ | ||
unsigned long ap, shift; | ||
struct hstate *hstate = hstate_file(vma->vm_file); | ||
|
||
shift = huge_page_shift(hstate); | ||
if (shift == mmu_psize_defs[MMU_PAGE_2M].shift) | ||
ap = mmu_get_ap(MMU_PAGE_2M); | ||
else if (shift == mmu_psize_defs[MMU_PAGE_1G].shift) | ||
ap = mmu_get_ap(MMU_PAGE_1G); | ||
else { | ||
WARN(1, "Wrong huge page shift\n"); | ||
return ; | ||
} | ||
radix___flush_tlb_page(vma->vm_mm, vmaddr, ap, 0); | ||
} | ||
|
||
void radix__local_flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr) | ||
{ | ||
unsigned long ap, shift; | ||
struct hstate *hstate = hstate_file(vma->vm_file); | ||
|
||
shift = huge_page_shift(hstate); | ||
if (shift == mmu_psize_defs[MMU_PAGE_2M].shift) | ||
ap = mmu_get_ap(MMU_PAGE_2M); | ||
else if (shift == mmu_psize_defs[MMU_PAGE_1G].shift) | ||
ap = mmu_get_ap(MMU_PAGE_1G); | ||
else { | ||
WARN(1, "Wrong huge page shift\n"); | ||
return ; | ||
} | ||
radix___local_flush_tlb_page(vma->vm_mm, vmaddr, ap, 0); | ||
} | ||
|
||
/* | ||
* A vairant of hugetlb_get_unmapped_area doing topdown search | ||
* FIXME!! should we do as x86 does or non hugetlb area does ? | ||
* ie, use topdown or not based on mmap_is_legacy check ? | ||
*/ | ||
unsigned long | ||
radix__hugetlb_get_unmapped_area(struct file *file, unsigned long addr, | ||
unsigned long len, unsigned long pgoff, | ||
unsigned long flags) | ||
{ | ||
struct mm_struct *mm = current->mm; | ||
struct vm_area_struct *vma; | ||
struct hstate *h = hstate_file(file); | ||
struct vm_unmapped_area_info info; | ||
|
||
if (len & ~huge_page_mask(h)) | ||
return -EINVAL; | ||
if (len > TASK_SIZE) | ||
return -ENOMEM; | ||
|
||
if (flags & MAP_FIXED) { | ||
if (prepare_hugepage_range(file, addr, len)) | ||
return -EINVAL; | ||
return addr; | ||
} | ||
|
||
if (addr) { | ||
addr = ALIGN(addr, huge_page_size(h)); | ||
vma = find_vma(mm, addr); | ||
if (TASK_SIZE - len >= addr && | ||
(!vma || addr + len <= vma->vm_start)) | ||
return addr; | ||
} | ||
/* | ||
* We are always doing an topdown search here. Slice code | ||
* does that too. | ||
*/ | ||
info.flags = VM_UNMAPPED_AREA_TOPDOWN; | ||
info.length = len; | ||
info.low_limit = PAGE_SIZE; | ||
info.high_limit = current->mm->mmap_base; | ||
info.align_mask = PAGE_MASK & ~huge_page_mask(h); | ||
info.align_offset = 0; | ||
return vm_unmapped_area(&info); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters