2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* IA-64 Huge TLB Page Support for Kernel.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002-2004 Rohit Seth <rohit.seth@intel.com>
|
|
|
|
* Copyright (C) 2003-2004 Ken Chen <kenneth.w.chen@intel.com>
|
|
|
|
*
|
|
|
|
* Sep, 2003: add numa support
|
|
|
|
* Feb, 2004: dynamic hugetlb page size via boot parameter
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/hugetlb.h>
|
|
|
|
#include <linux/pagemap.h>
|
2008-07-30 05:33:54 +00:00
|
|
|
#include <linux/module.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/sysctl.h>
|
2007-06-07 09:57:46 +00:00
|
|
|
#include <linux/log2.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/mman.h>
|
|
|
|
#include <asm/pgalloc.h>
|
|
|
|
#include <asm/tlb.h>
|
|
|
|
#include <asm/tlbflush.h>
|
|
|
|
|
2008-07-30 05:33:54 +00:00
|
|
|
unsigned int hpage_shift = HPAGE_SHIFT_DEFAULT;
|
|
|
|
EXPORT_SYMBOL(hpage_shift);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-22 00:14:44 +00:00
|
|
|
pte_t *
|
2008-07-24 04:27:41 +00:00
|
|
|
huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long taddr = htlbpage_to_page(addr);
|
|
|
|
pgd_t *pgd;
|
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
pte_t *pte = NULL;
|
|
|
|
|
|
|
|
pgd = pgd_offset(mm, taddr);
|
|
|
|
pud = pud_alloc(mm, pgd, taddr);
|
|
|
|
if (pud) {
|
|
|
|
pmd = pmd_alloc(mm, pud, taddr);
|
|
|
|
if (pmd)
|
2016-03-17 21:19:11 +00:00
|
|
|
pte = pte_alloc_map(mm, pmd, taddr);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
return pte;
|
|
|
|
}
|
|
|
|
|
2005-06-22 00:14:44 +00:00
|
|
|
pte_t *
|
2017-07-06 22:39:42 +00:00
|
|
|
huge_pte_offset (struct mm_struct *mm, unsigned long addr, unsigned long sz)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long taddr = htlbpage_to_page(addr);
|
|
|
|
pgd_t *pgd;
|
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
pte_t *pte = NULL;
|
|
|
|
|
|
|
|
pgd = pgd_offset(mm, taddr);
|
|
|
|
if (pgd_present(*pgd)) {
|
|
|
|
pud = pud_offset(pgd, taddr);
|
|
|
|
if (pud_present(*pud)) {
|
|
|
|
pmd = pmd_offset(pud, taddr);
|
|
|
|
if (pmd_present(*pmd))
|
|
|
|
pte = pte_offset_map(pmd, taddr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pte;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define mk_pte_huge(entry) { pte_val(entry) |= _PAGE_P; }
|
|
|
|
|
|
|
|
/*
|
2006-03-22 08:09:01 +00:00
|
|
|
* Don't actually need to do any preparation, but need to make sure
|
|
|
|
* the address is in the right region.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2008-07-24 04:27:41 +00:00
|
|
|
int prepare_hugepage_range(struct file *file,
|
|
|
|
unsigned long addr, unsigned long len)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (len & ~HPAGE_MASK)
|
|
|
|
return -EINVAL;
|
|
|
|
if (addr & ~HPAGE_MASK)
|
|
|
|
return -EINVAL;
|
2005-08-17 02:54:00 +00:00
|
|
|
if (REGION_NUMBER(addr) != RGN_HPAGE)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct page *follow_huge_addr(struct mm_struct *mm, unsigned long addr, int write)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
pte_t *ptep;
|
|
|
|
|
2005-08-17 02:54:00 +00:00
|
|
|
if (REGION_NUMBER(addr) != RGN_HPAGE)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
2017-07-06 22:39:42 +00:00
|
|
|
ptep = huge_pte_offset(mm, addr, HPAGE_SIZE);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!ptep || pte_none(*ptep))
|
|
|
|
return NULL;
|
|
|
|
page = pte_page(*ptep);
|
|
|
|
page += ((addr & ~HPAGE_MASK) >> PAGE_SHIFT);
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
int pmd_huge(pmd_t pmd)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2008-07-24 04:27:50 +00:00
|
|
|
|
|
|
|
int pud_huge(pud_t pud)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-24 04:27:10 +00:00
|
|
|
void hugetlb_free_pgd_range(struct mmu_gather *tlb,
|
2005-04-19 20:29:16 +00:00
|
|
|
unsigned long addr, unsigned long end,
|
|
|
|
unsigned long floor, unsigned long ceiling)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-04-19 20:29:16 +00:00
|
|
|
/*
|
2006-03-22 18:49:00 +00:00
|
|
|
* This is called to free hugetlb page tables.
|
2005-04-19 20:29:16 +00:00
|
|
|
*
|
|
|
|
* The offset of these addresses from the base of the hugetlb
|
|
|
|
* region must be scaled down by HPAGE_SIZE/PAGE_SIZE so that
|
|
|
|
* the standard free_pgd_range will free the right page tables.
|
|
|
|
*
|
|
|
|
* If floor and ceiling are also in the hugetlb region, they
|
|
|
|
* must likewise be scaled down; but if outside, left unchanged.
|
|
|
|
*/
|
|
|
|
|
|
|
|
addr = htlbpage_to_page(addr);
|
|
|
|
end = htlbpage_to_page(end);
|
2006-03-22 18:49:00 +00:00
|
|
|
if (REGION_NUMBER(floor) == RGN_HPAGE)
|
2005-04-19 20:29:16 +00:00
|
|
|
floor = htlbpage_to_page(floor);
|
2006-03-22 18:49:00 +00:00
|
|
|
if (REGION_NUMBER(ceiling) == RGN_HPAGE)
|
2005-04-19 20:29:16 +00:00
|
|
|
ceiling = htlbpage_to_page(ceiling);
|
|
|
|
|
|
|
|
free_pgd_range(tlb, addr, end, floor, ceiling);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
|
|
|
|
unsigned long pgoff, unsigned long flags)
|
|
|
|
{
|
2013-02-21 23:10:29 +00:00
|
|
|
struct vm_unmapped_area_info info;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (len > RGN_MAP_LIMIT)
|
|
|
|
return -ENOMEM;
|
|
|
|
if (len & ~HPAGE_MASK)
|
|
|
|
return -EINVAL;
|
2007-05-06 21:50:09 +00:00
|
|
|
|
|
|
|
/* Handle MAP_FIXED */
|
|
|
|
if (flags & MAP_FIXED) {
|
2008-07-24 04:27:41 +00:00
|
|
|
if (prepare_hugepage_range(file, addr, len))
|
2007-05-06 21:50:09 +00:00
|
|
|
return -EINVAL;
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2005-08-17 02:54:00 +00:00
|
|
|
/* This code assumes that RGN_HPAGE != 0. */
|
|
|
|
if ((REGION_NUMBER(addr) != RGN_HPAGE) || (addr & (HPAGE_SIZE - 1)))
|
2005-04-16 22:20:36 +00:00
|
|
|
addr = HPAGE_REGION_BASE;
|
2013-02-21 23:10:29 +00:00
|
|
|
|
|
|
|
info.flags = 0;
|
|
|
|
info.length = len;
|
|
|
|
info.low_limit = addr;
|
|
|
|
info.high_limit = HPAGE_REGION_BASE + RGN_MAP_LIMIT;
|
|
|
|
info.align_mask = PAGE_MASK & (HPAGE_SIZE - 1);
|
|
|
|
info.align_offset = 0;
|
|
|
|
return vm_unmapped_area(&info);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int __init hugetlb_setup_sz(char *str)
|
|
|
|
{
|
|
|
|
u64 tr_pages;
|
|
|
|
unsigned long long size;
|
|
|
|
|
|
|
|
if (ia64_pal_vm_page_size(&tr_pages, NULL) != 0)
|
|
|
|
/*
|
|
|
|
* shouldn't happen, but just in case.
|
|
|
|
*/
|
|
|
|
tr_pages = 0x15557000UL;
|
|
|
|
|
|
|
|
size = memparse(str, &str);
|
2007-06-07 09:57:46 +00:00
|
|
|
if (*str || !is_power_of_2(size) || !(tr_pages & size) ||
|
2005-04-16 22:20:36 +00:00
|
|
|
size <= PAGE_SIZE ||
|
|
|
|
size >= (1UL << PAGE_SHIFT << MAX_ORDER)) {
|
|
|
|
printk(KERN_WARNING "Invalid huge page size specified\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hpage_shift = __ffs(size);
|
|
|
|
/*
|
|
|
|
* boot cpu already executed ia64_mmu_init, and has HPAGE_SHIFT_DEFAULT
|
|
|
|
* override here with new page shift.
|
|
|
|
*/
|
|
|
|
ia64_set_rr(HPAGE_REGION_BASE, hpage_shift << 2);
|
2007-10-16 08:26:01 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-10-16 08:26:01 +00:00
|
|
|
early_param("hugepagesz", hugetlb_setup_sz);
|