blob: fa66daa2dfa9636895388eb20bb636fc31036b54 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh64/mm/hugetlbpage.c
3 *
4 * SuperH HugeTLB page support.
5 *
6 * Cloned from sparc64 by Paul Mundt.
7 *
8 * Copyright (C) 2002, 2003 David S. Miller (davem@redhat.com)
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
12#include <linux/fs.h>
13#include <linux/mm.h>
14#include <linux/hugetlb.h>
15#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
17#include <linux/sysctl.h>
18
19#include <asm/mman.h>
20#include <asm/pgalloc.h>
21#include <asm/tlb.h>
22#include <asm/tlbflush.h>
23#include <asm/cacheflush.h>
24
David Gibson63551ae2005-06-21 17:14:44 -070025pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
27 pgd_t *pgd;
28 pmd_t *pmd;
29 pte_t *pte = NULL;
30
31 pgd = pgd_offset(mm, addr);
32 if (pgd) {
33 pmd = pmd_alloc(mm, pgd, addr);
34 if (pmd)
35 pte = pte_alloc_map(mm, pmd, addr);
36 }
37 return pte;
38}
39
David Gibson63551ae2005-06-21 17:14:44 -070040pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 pgd_t *pgd;
43 pmd_t *pmd;
44 pte_t *pte = NULL;
45
46 pgd = pgd_offset(mm, addr);
47 if (pgd) {
48 pmd = pmd_offset(pgd, addr);
49 if (pmd)
50 pte = pte_offset_map(pmd, addr);
51 }
52 return pte;
53}
54
Chen, Kenneth W39dde652006-12-06 20:32:03 -080055int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
56{
57 return 0;
58}
59
Hugh Dickins147efea2005-10-29 18:16:09 -070060void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
61 pte_t *ptep, pte_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Hugh Dickins147efea2005-10-29 18:16:09 -070063 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 for (i = 0; i < (1 << HUGETLB_PAGE_ORDER); i++) {
Hugh Dickins147efea2005-10-29 18:16:09 -070066 set_pte_at(mm, addr, ptep, entry);
67 ptep++;
68 addr += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 pte_val(entry) += PAGE_SIZE;
70 }
71}
72
Hugh Dickins147efea2005-10-29 18:16:09 -070073pte_t huge_ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
74 pte_t *ptep)
David Gibson63551ae2005-06-21 17:14:44 -070075{
76 pte_t entry;
Hugh Dickins147efea2005-10-29 18:16:09 -070077 int i;
David Gibson63551ae2005-06-21 17:14:44 -070078
79 entry = *ptep;
80
81 for (i = 0; i < (1 << HUGETLB_PAGE_ORDER); i++) {
Hugh Dickins147efea2005-10-29 18:16:09 -070082 pte_clear(mm, addr, ptep);
83 addr += PAGE_SIZE;
84 ptep++;
David Gibson63551ae2005-06-21 17:14:44 -070085 }
86
87 return entry;
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090struct page *follow_huge_addr(struct mm_struct *mm,
91 unsigned long address, int write)
92{
93 return ERR_PTR(-EINVAL);
94}
95
96int pmd_huge(pmd_t pmd)
97{
98 return 0;
99}
100
101struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address,
102 pmd_t *pmd, int write)
103{
104 return NULL;
105}